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

2015-10-28 Thread Michał Górny
commit: 96ff5a24ed44cd94407d3f856a067e649b33d94b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 28 07:19:21 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 28 07:19:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96ff5a24

dev-python/pyxdg: Merge "Remove unused patch"

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

 dev-python/pyxdg/files/pyxdg-subprocess.patch | 38 ---
 1 file changed, 38 deletions(-)



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

2015-10-28 Thread Michał Górny
commit: ee4570ca72c2be138f732d1507a706835a3e40fa
Author: Anthony Ryan  gmail  com>
AuthorDate: Tue Oct 27 22:17:44 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 27 22:21:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee4570ca

dev-python/pyxdg: Removed unused patch

files/pyxdg-subprocess.patch is no longer used

Fixes https://bugs.gentoo.org/540940

 dev-python/pyxdg/files/pyxdg-subprocess.patch | 38 ---
 1 file changed, 38 deletions(-)

diff --git a/dev-python/pyxdg/files/pyxdg-subprocess.patch 
b/dev-python/pyxdg/files/pyxdg-subprocess.patch
deleted file mode 100644
index 7b9a1ba..000
--- a/dev-python/pyxdg/files/pyxdg-subprocess.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-#Patch sent to upstream on March 1st, 2009
-#Jesus Rivero (Neurogeek)
-#Replaced deprecated os.popen3 for subprocess
-
-diff -uNr xdg.orig/Menu.py xdg/Menu.py
 xdg.orig/Menu.py   2009-03-01 04:34:38.0 -0430
-+++ xdg/Menu.py2009-03-01 04:41:27.0 -0430
-@@ -12,6 +12,7 @@
- 
- import xdg.Locale
- import xdg.Config
-+from subprocess import Popen, PIPE
- 
- ELEMENT_NODE = xml.dom.Node.ELEMENT_NODE
- 
-@@ -841,13 +842,16 @@
- return m
- 
- def __parseKDELegacyDirs(filename, parent):
--f=os.popen3("kde-config --path apps")
--output = f[1].readlines()
- try:
--for dir in output[0].split(":"):
--__parseLegacyDir(dir,"kde", filename, parent)
--except IndexError:
--pass
-+f=Popen("kde-config --path apps", shell=True, stdout=PIPE).stdout
-+output = f.readlines()
-+try:
-+for dir in output[0].split(":"):
-+__parseLegacyDir(dir,"kde", filename, parent)
-+except IndexError:
-+pass
-+except:
-+raise Exception, "kde-config failed"
- 
- # remove duplicate entries from a list
- def __removeDuplicates(list):



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

2015-10-28 Thread Michał Górny
commit: 9144bab088fc6d4f2f7964cbdfada44466afbaf2
Author: Anthony Ryan  gmail  com>
AuthorDate: Tue Oct 27 22:24:17 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 27 22:24:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9144bab0

dev-python/pyxdg: Add upstream metadata

Package-Manager: portage-2.2.23

 dev-python/pyxdg/metadata.xml | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/pyxdg/metadata.xml b/dev-python/pyxdg/metadata.xml
index de483c5..182ba5b 100644
--- a/dev-python/pyxdg/metadata.xml
+++ b/dev-python/pyxdg/metadata.xml
@@ -1,5 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-python
+  python
+  
+https://pyxdg.readthedocs.org/en/latest/
+https://bugs.freedesktop.org/
+pyxdg
+pyxdg
+  
 



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

2015-10-28 Thread Michał Górny
commit: 092e66e732104878aac7804357500438eb43ea4e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 28 07:21:19 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 28 07:21:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=092e66e7

dev-python/pyxdg: Merge "Add upstream metadata"

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

 dev-python/pyxdg/metadata.xml | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)



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

2015-10-28 Thread Michał Górny
commit: eca676636078bad3c537dae10681c74d5cddcba7
Author: Alexander Tsoy  tsoy  me>
AuthorDate: Wed Oct 28 01:05:23 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 28 02:12:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca67663

media-libs/libwmf: revbump with security fixes

Fixed security issues:

CVE-2015-0848: heap overflow when decoding BMP images
CVE-2015-4695: heap buffer overread in meta.h
CVE-2015-4696: use-after-free flaw in meta.h
CVE-2015-4588: heap overflow within the RLE decoding of embedded
   BMP images

Gentoo-Bug: 553818

 ...ibwmf-0.2.8.4-CVE-2015-0848+CVE-2015-4588.patch | 118 +
 .../files/libwmf-0.2.8.4-CVE-2015-4695.patch   |  56 ++
 .../files/libwmf-0.2.8.4-CVE-2015-4696.patch   |  23 
 media-libs/libwmf/libwmf-0.2.8.4-r6.ebuild | 113 
 4 files changed, 310 insertions(+)

diff --git 
a/media-libs/libwmf/files/libwmf-0.2.8.4-CVE-2015-0848+CVE-2015-4588.patch 
b/media-libs/libwmf/files/libwmf-0.2.8.4-CVE-2015-0848+CVE-2015-4588.patch
new file mode 100644
index 000..e8ba8db
--- /dev/null
+++ b/media-libs/libwmf/files/libwmf-0.2.8.4-CVE-2015-0848+CVE-2015-4588.patch
@@ -0,0 +1,118 @@
+--- libwmf-0.2.8.4/src/ipa/ipa/bmp.h   2015-06-08 14:46:24.591876404 +0100
 libwmf-0.2.8.4/src/ipa/ipa/bmp.h   2015-06-08 14:46:35.345993247 +0100
+@@ -859,7 +859,7 @@
+ %
+ %
+ */
+-static void DecodeImage (wmfAPI* API,wmfBMP* bmp,BMPSource* src,unsigned int 
compression,unsigned char* pixels)
++static int DecodeImage (wmfAPI* API,wmfBMP* bmp,BMPSource* src,unsigned int 
compression,unsigned char* pixels)
+ { int byte;
+   int count;
+   int i;
+@@ -870,12 +870,14 @@
+   U32 u;
+ 
+   unsigned char* q;
++  unsigned char* end;
+ 
+   for (u = 0; u < ((U32) bmp->width * (U32) bmp->height); u++) pixels[u] 
= 0;
+ 
+   byte = 0;
+   x = 0;
+   q = pixels;
++  end = pixels + bmp->width * bmp->height;
+ 
+   for (y = 0; y < bmp->height; )
+   {   count = ReadBlobByte (src);
+@@ -884,7 +886,10 @@
+   {   /* Encoded mode. */
+   byte = ReadBlobByte (src);
+   for (i = 0; i < count; i++)
+-  {   if (compression == 1)
++  {   
++  if (q == end)
++  return 0;
++  if (compression == 1)
+   {   (*(q++)) = (unsigned char) byte;
+   }
+   else
+@@ -896,13 +901,15 @@
+   else
+   {   /* Escape mode. */
+   count = ReadBlobByte (src);
+-  if (count == 0x01) return;
++  if (count == 0x01) return 1;
+   switch (count)
+   {
+   case 0x00:
+{  /* End of line. */
+   x = 0;
+   y++;
++  if (y >= bmp->height)
++  return 0;
+   q = pixels + y * bmp->width;
+   break;
+}
+@@ -910,13 +917,20 @@
+{  /* Delta mode. */
+   x += ReadBlobByte (src);
+   y += ReadBlobByte (src);
++  if (y >= bmp->height)
++  return 0;
++  if (x >= bmp->width)
++  return 0;
+   q = pixels + y * bmp->width + x;
+   break;
+}
+   default:
+{  /* Absolute mode. */
+   for (i = 0; i < count; i++)
+-  {   if (compression == 1)
++  {
++  if (q == end)
++  return 0;
++  if (compression == 1)
+   {   (*(q++)) = ReadBlobByte (src);
+   }
+   else
+@@ -943,7 +957,7 @@
+   byte = ReadBlobByte (src);  /* end of line */
+   byte = ReadBlobByte (src);
+ 
+-  return;
++  return 1;
+ }
+ 
+ /*
+@@ -1143,8 +1157,18 @@
+   }
+   }
+   else
+-  {   /* Convert run-length encoded raster pixels. */
+-  DecodeImage (API,bmp,src,(unsigned int) 
bmp_info.compression,data->image);
++  {
++  if (bmp_info.bits_per_pixel == 8)   /* Convert run-length 
encoded raster pixels. */
++  {
++   

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

2015-10-28 Thread Michał Górny
commit: af3c48d0087c983bf084b7fa65f5ffa6615888b3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 28 07:26:03 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 28 07:26:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3c48d0

media-libs/libwmf: Merge "revbump with security fixes"

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

 ...ibwmf-0.2.8.4-CVE-2015-0848+CVE-2015-4588.patch | 118 +
 .../files/libwmf-0.2.8.4-CVE-2015-4695.patch   |  56 ++
 .../files/libwmf-0.2.8.4-CVE-2015-4696.patch   |  23 
 media-libs/libwmf/libwmf-0.2.8.4-r6.ebuild | 113 
 4 files changed, 310 insertions(+)



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

2015-10-28 Thread Lars Wendler
commit: 6afa08ea62e3f744da7f291a4bb68de307645395
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Oct 28 07:46:34 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Oct 28 07:47:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6afa08ea

net-libs/gsoap: Bump to version 2.8.24

Package-Manager: portage-2.2.23
Signed-off-by: Lars Wendler  gentoo.org>

 net-libs/gsoap/Manifest|  1 +
 net-libs/gsoap/gsoap-2.8.24.ebuild | 78 ++
 2 files changed, 79 insertions(+)

diff --git a/net-libs/gsoap/Manifest b/net-libs/gsoap/Manifest
index e6a2615..e0be556 100644
--- a/net-libs/gsoap/Manifest
+++ b/net-libs/gsoap/Manifest
@@ -1,3 +1,4 @@
 DIST gsoap_2.7.17.zip 1022 SHA256 
d3af1ce9464b28cacdf1dfbe09b689f8927cbcf3948479996aef52a39afa2c16 SHA512 
efb5332e90cbed6013ac2f16b940404cc4de9e84bc85e671cb3588bc6620cd86c8db646a4f3cd77bb3b866dfcc8a793186736ab2241bb8cbaca8d313345d14ac
 WHIRLPOOL 
955e845b5a8b9af1697ca8bcdbb77813f149f7ff162ec51e680c398dab9934c36418572004b7bd24200476b6d45b623f294053b932da2fce94f415becd369af7
 DIST gsoap_2.8.12.zip 19974348 SHA256 
51eef118544fa846f4d2dea2eedf91c84c46a1abeafc5eee3dcff783f4015a00 SHA512 
7f162936d8d331d94b0aa52042c512167198a8de5a279747f49494b0f17442feb4db2ac5abff54e46350562e774b6bdddc577049f7cb59807cab29b12d797a87
 WHIRLPOOL 
7557396a154405606b2b2a962ac5f19d4853a792c8f96333576e6229506c9fedd8c5652cc1560566dfb51203362063566d2780becb1e1bb0ca2714fabe0a0330
 DIST gsoap_2.8.23.zip 22482000 SHA256 
e1c30743f1c2cf40b2760568127e14af1b2a00c3026b2e5f0750e8c33d94c061 SHA512 
cc90aadfe09aa6406172c9ffa07696851ff594ca7c5b40819494badd8ce978d908d66de63a5831e7aec1bca18ee8b51ed02187057688a3b36eb0a21fe6e0f5a4
 WHIRLPOOL 
e5cfc9c5758847d1fc94cbd38108b80c7548abc0316fe201b58604a3b22d30b9748c81d4aec13f53356593f3ddc2dcba14170a53d63795eab9229ec49d4bc585
+DIST gsoap_2.8.24.zip 23449177 SHA256 
6c67bdda7ce9cff62e1faa33c53fb38aa256e2af48b2645a0e5a43142f88b7e8 SHA512 
20cad888aa75aa4f715e1120375be7e430554fd0626b8e8684da190ca0547b0d506aac1bc971a674116899fb0fccbb7bc73d03ea46d9af48d72c62e0dfe8e7a7
 WHIRLPOOL 
37f475317cdfc625b995a67c62f5275950ef886b478ac3adec1402431429650b29406cb45d411b12972d347a1fe176fdbcdbe8f87dc371080418e9bb5566a4a2

diff --git a/net-libs/gsoap/gsoap-2.8.24.ebuild 
b/net-libs/gsoap/gsoap-2.8.24.ebuild
new file mode 100644
index 000..a565476
--- /dev/null
+++ b/net-libs/gsoap/gsoap-2.8.24.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils
+
+MY_P="${PN}-2.8"
+
+DESCRIPTION="A cross-platform open source C and C++ SDK for SOAP/XML Web 
services"
+HOMEPAGE="http://gsoap2.sourceforge.net";
+SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip"
+
+LICENSE="GPL-2 gSOAP"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc debug examples ipv6 libressl gnutls +ssl"
+
+RDEPEND="
+   sys-libs/zlib
+   gnutls? ( net-libs/gnutls )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )
+"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   sys-devel/flex
+   sys-devel/bison
+"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Fix Pre-ISO headers
+   epatch 
"${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch"
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=()
+   use ssl || myconf+=( --disable-ssl )
+   use gnutls && myconf+=( --enable-gnutls )
+   use ipv6 && myconf+=( --enable-ipv6 )
+   econf \
+   ${myconf[@]} \
+   $(use_enable debug) \
+   $(use_enable examples samples)
+}
+
+src_compile() {
+   emake -j1
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   # yes, we also install the license-file since
+   # it contains info about how to apply the licenses
+   dodoc *.txt
+
+   dohtml changelog.md
+
+   prune_libtool_files --all
+
+   if use examples; then
+   rm -rf gsoap/samples/Makefile* gsoap/samples/*/Makefile* 
gsoap/samples/*/*.o
+   insinto /usr/share/doc/${PF}/examples
+   doins -r gsoap/samples/*
+   fi
+
+   if use doc; then
+   dohtml -r gsoap/doc/*
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: www-servers/monkeyd/

2015-10-28 Thread Anthony G. Basile
commit: 5ea69423dcf4cbfe34cff712e3a54cbc8bcf49bf
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Oct 28 08:08:17 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Oct 28 08:08:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ea69423

www-servers/monkeyd: remove older unstable version 1.6.3.

Package-Manager: portage-2.2.20.1

 www-servers/monkeyd/Manifest |   1 -
 www-servers/monkeyd/monkeyd-1.6.3.ebuild | 141 ---
 2 files changed, 142 deletions(-)

diff --git a/www-servers/monkeyd/Manifest b/www-servers/monkeyd/Manifest
index 60f417f..ec9f86a 100644
--- a/www-servers/monkeyd/Manifest
+++ b/www-servers/monkeyd/Manifest
@@ -1,3 +1,2 @@
 DIST monkey-1.5.6.tar.gz 902636 SHA256 
7c3d845306aa74ee6effd7ab6169d16ac4e6450e564954d0d0baa2d1e9be1a22 SHA512 
4c7c627cb047252252b22da5fba179a21fb5b8dc6280b96307af52757ad049d24b0daaaea51dca4f0429af5e6499c239f6b62a03654cc9e7ad98ae8f5149b64c
 WHIRLPOOL 
aba1a928023fc67224f254182eb9707c6594c7092d9ff98ecfa297c91d5c61f79235e7467192b5d46ac114ae67a3cee98e06704721348a40ee825755ab39d9a1
-DIST monkey-1.6.3.tar.gz 2032771 SHA256 
47973b12cc45c185b054e251a6c3d8a36cae70301f614b4132bb1ef504f01cfa SHA512 
21d317b55bc22e0ef34a2ff545103fbba3728a47e888db58506891e525e926397af81d0ad42ac134f67ab30548853ea4c98df264fab6238901dd05c5b0f55abe
 WHIRLPOOL 
acda82625c281f31212eb22d4cef0f64fa251fad25ba5e8aa9e2f4f2146d5bd626a6c66cdb2d17f6559cc858d09fd0afd2383bcdccbf225b8956e2f8b272726c
 DIST monkey-1.6.4.tar.gz 2033295 SHA256 
351a18a15f3ad8f64c75281105bb2f321da69d58a8034d23757b7ce29fdc9cb3 SHA512 
0de83a47806529fa04d60bdf3f69c1f2e2e5980a03d82a8322bb146afff8db85f7f689add876f739133ed262951533382909cd1a3f0f51a8750dde4b15459d25
 WHIRLPOOL 
6498f74d122b46912065ea060a596d1badc0144069270ea4e949d6debad025ba309e66e1f4e28fb9c595d560c3a37e1a5f01e6ac5a00d31eb5909a31abe3c105

diff --git a/www-servers/monkeyd/monkeyd-1.6.3.ebuild 
b/www-servers/monkeyd/monkeyd-1.6.3.ebuild
deleted file mode 100644
index fc9146e..000
--- a/www-servers/monkeyd/monkeyd-1.6.3.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils flag-o-matic toolchain-funcs multilib
-
-DESCRIPTION="A small, fast, and scalable web server"
-HOMEPAGE="http://www.monkey-project.com/";
-MY_P="${PN/d}-${PV}"
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/monkey/monkey.git";
-   inherit git-2
-   KEYWORDS=""
-else
-   SRC_URI="http://monkey-project.com/releases/${PV:0:3}/${MY_P}.tar.gz";
-   KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-# jemalloc is also off until we figure out how to work CMakeLists.txt magic.
-#IUSE="cgi -debug fastcgi jemalloc php static-plugins ${PLUGINS}"
-
-PLUGINS="monkeyd_plugins_auth monkeyd_plugins_cheetah 
monkeyd_plugins_dirlisting +monkeyd_plugins_liana monkeyd_plugins_logger 
monkeyd_plugins_mandril monkeyd_plugins_tls"
-IUSE="cgi -debug fastcgi php static-plugins ${PLUGINS}"
-
-# uclibc is often compiled without backtrace info so we should
-# force this off.  If someone complains, consider relaxing it.
-REQUIRED_USE="
-   monkeyd_plugins_tls? ( !static-plugins )
-   elibc_uclibc? ( !debug )
-   cgi? ( php )"
-
-#DEPEND="jemalloc? ( >=dev-libs/jemalloc-3.3.1 )"
-DEPEND="
-   dev-util/cmake
-   monkeyd_plugins_tls? ( net-libs/mbedtls:= )"
-RDEPEND="
-   php? ( dev-lang/php )
-   cgi? ( dev-lang/php[cgi] )"
-
-S="${WORKDIR}/${MY_P}"
-
-WEBROOT="/var/www/localhost"
-
-pkg_setup() {
-   if use debug; then
-   ewarn
-   ewarn 
"\033[1;33m**\033[00m"
-   ewarn "Do not use debug in production!"
-   ewarn 
"\033[1;33m**\033[00m"
-   ewarn
-   fi
-}
-
-src_prepare() {
-   # Unconditionally get rid of the bundled jemalloc
-   rm -rf "${S}"/deps
-   epatch "${FILESDIR}"/${P}-system-mbedtls.patch
-}
-
-src_configure() {
-   local myconf=""
-
-   use elibc_uclibc && myconf+=" --uclib-mode"
-   use elibc_musl && myconf+=" --musl-mode"
-
-   #use jemalloc || myconf+=" --malloc-libc"
-   myconf+=" --malloc-libc"
-
-   if use debug; then
-   myconf+=" --debug --trace"
-   else
-   myconf+=" --no-backtrace"
-   fi
-
-   local enable_plugins=""
-   local disable_plugins=""
-   # We use 'cgi' and 'fastcgi' because they are global flags
-   # instead of the corresponding monkeyd_plugins_*
-   use cgi && enable_plugins+="cgi," || disable_plugins+="cgi,"
-   use fastcgi && enable_plugins+="fastcgi," || disable_plugins+="fastcgi,"
-   # For the rest, we scan the monkeyd_plugins_* and parse out the plugin 
name.
-   for p in ${PLUGINS}; do
-

[gentoo-commits] repo/gentoo:master commit in: www-servers/monkeyd/

2015-10-28 Thread Anthony G. Basile
commit: 315047e745e9210b9279845aaae12931e2cceebe
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Oct 28 08:11:26 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Oct 28 08:11:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=315047e7

www-servers/monkeyd: minor cleanups to the ebuild.

Package-Manager: portage-2.2.20.1

 www-servers/monkeyd/monkeyd-1.6.4.ebuild | 4 ++--
 www-servers/monkeyd/monkeyd-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-servers/monkeyd/monkeyd-1.6.4.ebuild 
b/www-servers/monkeyd/monkeyd-1.6.4.ebuild
index 33b478d..add07dc 100644
--- a/www-servers/monkeyd/monkeyd-1.6.4.ebuild
+++ b/www-servers/monkeyd/monkeyd-1.6.4.ebuild
@@ -84,6 +84,7 @@ src_configure() {
use cgi && enable_plugins+="cgi," || disable_plugins+="cgi,"
use fastcgi && enable_plugins+="fastcgi," || disable_plugins+="fastcgi,"
# For the rest, we scan the monkeyd_plugins_* and parse out the plugin 
name.
+   local p
for p in ${PLUGINS}; do
pp=${p/+/}
cp=${pp/monkeyd_plugins_/}
@@ -129,8 +130,7 @@ src_install() {
# Move htdocs to docdir, bug #429632
docompress -x /usr/share/doc/"${PF}"/htdocs.dist
mv "${D}"${WEBROOT}/htdocs \
-   "${D}"/usr/share/doc/"${PF}"/htdocs.dist
-   mkdir "${D}"${WEBROOT}/htdocs
+   "${D}"/usr/share/doc/"${PF}"/htdocs.dist || die
 
keepdir \
/var/log/monkeyd \

diff --git a/www-servers/monkeyd/monkeyd-.ebuild 
b/www-servers/monkeyd/monkeyd-.ebuild
index fc9146e..2323b63 100644
--- a/www-servers/monkeyd/monkeyd-.ebuild
+++ b/www-servers/monkeyd/monkeyd-.ebuild
@@ -84,6 +84,7 @@ src_configure() {
use cgi && enable_plugins+="cgi," || disable_plugins+="cgi,"
use fastcgi && enable_plugins+="fastcgi," || disable_plugins+="fastcgi,"
# For the rest, we scan the monkeyd_plugins_* and parse out the plugin 
name.
+   local p
for p in ${PLUGINS}; do
pp=${p/+/}
cp=${pp/monkeyd_plugins_/}
@@ -129,8 +130,7 @@ src_install() {
# Move htdocs to docdir, bug #429632
docompress -x /usr/share/doc/"${PF}"/htdocs.dist
mv "${D}"${WEBROOT}/htdocs \
-   "${D}"/usr/share/doc/"${PF}"/htdocs.dist
-   mkdir "${D}"${WEBROOT}/htdocs
+   "${D}"/usr/share/doc/"${PF}"/htdocs.dist || die
 
keepdir \
/var/log/monkeyd \



[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2015-10-28 Thread Lars Wendler
commit: 03d0dc6dafcfe20992e5203a266e865e878b581f
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Oct 28 08:22:32 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Oct 28 08:23:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03d0dc6d

net-fs/samba: Bump to version 4.2.5

Package-Manager: portage-2.2.23
Signed-off-by: Lars Wendler  gentoo.org>

 net-fs/samba/Manifest   |   1 +
 net-fs/samba/samba-4.2.5.ebuild | 197 
 2 files changed, 198 insertions(+)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 803ffec..dab76f2 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -5,6 +5,7 @@ DIST samba-4.0.26.tar.gz 22155521 SHA256 
ce2441992c6d18950d752edb2d1274b3f7e056b
 DIST samba-4.1.20.tar.gz 19561057 SHA256 
adcf021c2ee7ebdba99ed90bb06e45bcc8e3fd9419667622704276607b832038 SHA512 
abdd696bb19ac458f72304208d62c21f0fee5459b9f8c4241e4cd8c1654e07455c0876013236a10296ba7ef72a7fca3de0bb6e1cd9d03817500720fb493b1988
 WHIRLPOOL 
48302e865be9860db7775ad864e30b4ca4bc30f9e791d529353b67e29bec79a11e1409e4b59a97471927d73193fec46ae1dc40197e5a72ade775e82cd41d
 DIST samba-4.1.21.tar.gz 19561830 SHA256 
00f1c26cd310811afb2fa1a3fb72a23bd2e5c2f6466e6efdcb530305d7c3ce2e SHA512 
e51652964ff193c9a2e3900198ba557268c405811332a32a7a545fb9eaa6cc8dccbf37d2c664a5a8d6ea3f460b08a24bcedcc7334c1bbdc1bda0b469c448fc0e
 WHIRLPOOL 
7d96aa909cb088e4d11fd070e46a615c65a2ca653d3da0ba06ad5e94e3af8c3428dc304704002d86f58f7464d6694be9533913be74fe8a9eca6523aeaa34
 DIST samba-4.2.4.tar.gz 20735687 SHA256 
fb326ea486973ab684f183774e93bb943fc231ab89937512e70331b86acdf6ae SHA512 
a389fb2540858b778677197f01b5e2aa90c85c28e008d2f8e13a422cbf00a19ce862320b57b8141bd7838f74cbd4641efbe030c0fc2d86058f6584f9f8504d2f
 WHIRLPOOL 
90dffe178647233fc8dec9b9ac15c7864f1700fc2aa739f24e33714e81f04ed364f6837ec95827a8ed6af6c7646e1b0eca83f22eaf196706ad9ea1ef8f425635
+DIST samba-4.2.5.tar.gz 20734836 SHA256 
8191c4c0730daf7f9e9a3ea1cc6e680798d76bf855269807778ad8d706cf SHA512 
b3581bd6ff33ce107ab2fb3cc8797852e441ed296df680083bcb25164941c08f870c2edadf5cf41280648c012bb264274854890ca8704ba17289a30efbbd1709
 WHIRLPOOL 
a35bf488b81ba8f753871db35c611b2ad99b90e8bf6afd97df85785a9c84e1d7ad120a76832c09347031e0c895346e150ae9c7353e6bee16e4beccfbeaf7fad8
 DIST samba-4.3.0.tar.gz 20417699 SHA256 
d8dbb6b29dec1d9aa295655c4aa4eadd1e5367ef7047be22f4d6a18ba8acdb63 SHA512 
7edad171dd98a332ebfd51c7c380b1def3d1508399755fc2d333671ce4a7d5e73782871c5760341cb71460d3f7fc4b666d906d61b9e2b28f977301d08bc9a872
 WHIRLPOOL 
cd204bb122cc344b63b01aebc151aeb01e533402eb511ba7c440fc718a568f8004f754a4502c74dfd58869e2e22cfd0f9822c2602e3642da5b69d2bdd2b76d39
 DIST samba-4.3.1.tar.gz 20424516 SHA256 
9908a80d95b9e2583906ed4347a8c80b769539a2788158992fb48ea9fb4d2c82 SHA512 
4a7c7e27e0d231b852b47407fb51cbe2b7851138d9a957c8149346afe1b14a2afa8fff66505abdbafe1ea43fc78b53800941c96c925fbc281b9ff24ef5ecfc98
 WHIRLPOOL 
de09a933e222acf60e03a085370d218f26c917d98fde77535f55ca2f4a3bdcda0877fc8e0666c17ab271731ecdfa34e4ad4425fe83460a169d9ee2061007f059
 DIST smb_traffic_analyzer_v2.diff.bz2 12226 SHA256 
1bae7eafbe8ac2382313d5ab9d43d73ba64b63a714f0f588516952d476fb868d SHA512 
aa0e457a0dd282e61e6dfcd5705c29b319832dca9711b1b5baf8373e2f079991399c3537c050219ccb861a93f86353ebff677a5c625d2e3f1f3a13ee5c4087d0
 WHIRLPOOL 
85ee72a360f67ebe71be5cd400ecd635280a0d7c64ebb8b94656a5ef1a94f74a987de86408af00ce1b81cc8363b1b3cf14726860d29b72ee610d4bab73d6b139

diff --git a/net-fs/samba/samba-4.2.5.ebuild b/net-fs/samba/samba-4.2.5.ebuild
new file mode 100644
index 000..2d125c0
--- /dev/null
+++ b/net-fs/samba/samba-4.2.5.ebuild
@@ -0,0 +1,197 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-single-r1 waf-utils multilib linux-info systemd eutils
+
+MY_PV="${PV/_rc/rc}"
+MY_P="${PN}-${MY_PV}"
+
+SRC_PATH="stable"
+[[ ${PV} = *_rc* ]] && SRC_PATH="rc"
+
+SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+[[ ${PV} = *_rc* ]] && KEYWORDS=""
+
+DESCRIPTION="Samba Suite Version 4"
+HOMEPAGE="http://www.samba.org/";
+LICENSE="GPL-3"
+
+SLOT="0"
+
+IUSE="acl addc addns ads aio avahi client cluster cups dmapi fam gnutls iprint
+ldap pam quota selinux syslog +system-mitkrb5 systemd test winbind"
+
+# sys-apps/attr is an automagic dependency (see bug #489748)
+# sys-libs/pam is an automagic dependency (see bug #489770)
+CDEPEND="${PYTHON_DEPS}
+   dev-libs/iniparser:0
+   dev-libs/popt
+   sys-libs/readline:=
+   virtual/libiconv
+   dev-python/subunit[${PYTHON_USEDEP}]
+   >=net-libs/socket_wrapper-1.1.2
+   sys-apps/attr
+   sys-libs/libcap
+   >=sys-libs/ldb-1.1.20
+   sys-libs/ncurses:0=
+   >=sys-libs/nss_wrapper-1.0.2
+   >=sys-libs/ntdb-1.0[python,${PYTHON_USEDEP}]
+   >=sys-libs/talloc-2

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

2015-10-28 Thread Alexis Ballier
commit: 3c14210edd30c5b1934f3ceacb575f7013d61a27
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Oct 28 08:29:09 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Oct 28 08:29:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c14210e

media-video/ffmpeg: Enable nonfree when enabling nvenc.

Package-Manager: portage-2.2.23

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

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index 7844b8f..14e3a3a 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -315,7 +315,7 @@ multilib_src_configure() {
if use aac || use amrenc ; then
myconf+=( --enable-version3 )
fi
-   if use aacplus || use faac ; then
+   if use aacplus || use faac || use nvenc ; then
myconf+=( --enable-nonfree )
fi
else



[gentoo-commits] proj/sci:master commit in: sci-chemistry/ambertools/files/, sci-chemistry/ambertools/

2015-10-28 Thread Justin Lecher
commit: f457d5639ad562f52d697a2b33a7474a8c76d0a2
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 09:06:45 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 09:06:56 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f457d563

sci-chemistry/ambertools: Fix for gcc-5 and format-security

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

 sci-chemistry/ambertools/ambertools-12_p38.ebuild  |  16 ++--
 .../files/ambertools-12_p38-format-security.patch  | 100 +
 .../ambertools/files/ambertools-12_p38-gcc5.patch  |  28 ++
 3 files changed, 136 insertions(+), 8 deletions(-)

diff --git a/sci-chemistry/ambertools/ambertools-12_p38.ebuild 
b/sci-chemistry/ambertools/ambertools-12_p38.ebuild
index 812bbdb..1c907c4 100644
--- a/sci-chemistry/ambertools/ambertools-12_p38.ebuild
+++ b/sci-chemistry/ambertools/ambertools-12_p38.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-inherit eutils fortran-2 multilib toolchain-funcs
+inherit eutils fortran-2 multilib multiprocessing toolchain-funcs
 
 DESCRIPTION="A suite for carrying out complete molecular mechanics 
investigations"
 HOMEPAGE="http://ambermd.org/#AmberTools";
@@ -54,6 +54,8 @@ pkg_setup() {
 
 src_prepare() {
epatch \
+   "${FILESDIR}"/${P}-gcc5.patch \
+   "${FILESDIR}"/${P}-format-security.patch \
"${FILESDIR}"/${PN}-12-gentoo.patch \
"${WORKDIR}"/bugfixes/bugfix.{14..38}
cd "${S}"/AmberTools/src || die
@@ -69,9 +71,7 @@ src_prepare() {
reduce \
ucpp-1.3 \
|| die
-}
 
-src_configure() {
cd "${S}"/AmberTools/src || die
sed \
-e "s:\$(LIBDIR)/arpack.a:-larpack:g" \
@@ -94,6 +94,9 @@ src_configure() {
-e "s:arsecond_:arscnd_:g" \
-i sff/time.c sff/sff.h sff/sff.c || die
 
+}
+
+src_configure() {
local myconf="--no-updates"
 
use X || myconf="${myconf} -noX11"
@@ -114,10 +117,7 @@ src_configure() {
 }
 
 src_test() {
-   # Get the number of physical cores
-   local ncpus=$(grep "^core id" /proc/cpuinfo | sort -u | wc -l)
-   # Limit number of OpenMP threads
-   use openmp && export OMP_NUM_THREADS=$((1+${ncpus}/2))
+   use openmp && export OMP_NUM_THREADS=$(makeopts_jobs)
 
emake test
 }

diff --git 
a/sci-chemistry/ambertools/files/ambertools-12_p38-format-security.patch 
b/sci-chemistry/ambertools/files/ambertools-12_p38-format-security.patch
new file mode 100644
index 000..bb22a62
--- /dev/null
+++ b/sci-chemistry/ambertools/files/ambertools-12_p38-format-security.patch
@@ -0,0 +1,100 @@
+ AmberTools/src/mdgx/ChargeFit.c  | 4 ++--
+ AmberTools/src/nab/cgen.c| 2 +-
+ AmberTools/src/nab/traceback.c   | 2 +-
+ AmberTools/src/ptraj/cluster.c   | 2 +-
+ AmberTools/src/ptraj/interface.c | 6 +++---
+ AmberTools/src/semantics/parse.c | 2 +-
+ 6 files changed, 9 insertions(+), 9 deletions(-)
+
+diff --git a/AmberTools/src/mdgx/ChargeFit.c b/AmberTools/src/mdgx/ChargeFit.c
+index fccf5d0..fe4afac 100644
+--- a/AmberTools/src/mdgx/ChargeFit.c
 b/AmberTools/src/mdgx/ChargeFit.c
+@@ -77,9 +77,9 @@ static void AssignGridTopologies(fset *myfit, prmtop *tp)
+   }
+   for (i = 0; i < myfit->ngrd; i++) {
+ if (myfit->tpname.map[i][0] == '\0') {
+-  sprintf(myfit->tpname.map[i], tp->source);
++  sprintf(myfit->tpname.map[i], "%s", tp->source);
+   if (myfit->eprule.map[i][0] == '\0' && tp->eprulesource[0] != '\0') {
+-  sprintf(myfit->eprule.map[i], tp->eprulesource);
++  sprintf(myfit->eprule.map[i], "%s", tp->eprulesource);
+   }
+ }
+   }
+diff --git a/AmberTools/src/nab/cgen.c b/AmberTools/src/nab/cgen.c
+index 6254d44..e206879 100644
+--- a/AmberTools/src/nab/cgen.c
 b/AmberTools/src/nab/cgen.c
+@@ -1642,7 +1642,7 @@ static   char*CG_gentype( char *csp, NODE_T *npt )
+   strcpy( csp, tname );
+   csp += strlen( csp );
+   }else
+-  fprintf( cg_cfp, tname );
++  fprintf( cg_cfp, "%s", tname );
+   needspace = TRUE;
+   return( csp );
+ }
+diff --git a/AmberTools/src/nab/traceback.c b/AmberTools/src/nab/traceback.c
+index f916474..e376552 100644
+--- a/AmberTools/src/nab/traceback.c
 b/AmberTools/src/nab/traceback.c
+@@ -6,7 +6,7 @@
+ int   rt_errormsg( int fatal, char msg[] )
+ {
+ 
+-  fprintf( stderr, msg );
++  fprintf( stderr, "%s", msg );
+   if( fatal )
+   exit( 1 );
+   return(0);
+diff --git a/AmberTools/src/ptraj/cluster.c b/AmberTools/src/ptraj/cluster.c
+index 2cb60f0..5e0f33d 100644
+--- a/AmberTools/src/ptraj/cluster.c
 b/AmberTools/src/ptraj/cluster.c
+@@ -1240,7 +1240,7 @@ void ClusteringMergeNames(PtrajClustering* This, 
Clus

[gentoo-commits] proj/sci:master commit in: dev-python/ipyparallel/

2015-10-28 Thread Justin Lecher
commit: 8ffcba1cb3eeaf2a71050b70113ce4da9df7f286
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 10:45:41 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 10:45:41 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8ffcba1c

dev-python/ipyparallel: Version Bump

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

 dev-python/ipyparallel/ipyparallel-4.1.0.ebuild | 58 +
 1 file changed, 58 insertions(+)

diff --git a/dev-python/ipyparallel/ipyparallel-4.1.0.ebuild 
b/dev-python/ipyparallel/ipyparallel-4.1.0.ebuild
new file mode 100644
index 000..f951657
--- /dev/null
+++ b/dev-python/ipyparallel/ipyparallel-4.1.0.ebuild
@@ -0,0 +1,58 @@
+# 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,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Interactive Parallel Computing with IPython"
+HOMEPAGE="http://ipython.org/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   dev-python/ipython_genutils[${PYTHON_USEDEP}]
+   dev-python/decorator[${PYTHON_USEDEP}]
+   >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}]
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   !=dev-python/ipython-4.0.0[${PYTHON_USEDEP}]
+   dev-python/jupyter_client[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   )
+   "
+
+python_prepare_all() {
+   # Prevent un-needed download during build
+   if use doc; then
+   sed -e "/^'sphinx.ext.intersphinx',/d" -i 
docs/source/conf.py || die
+   fi
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   iptest --coverage xml ipyparallel.tests || die
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( docs/build/html/. )
+   distutils-r1_python_install_all
+}



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

2015-10-28 Thread Justin Lecher
commit: a94dc9e67e5383c836f9b23408b40c648e0256ae
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 09:34:11 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 09:34:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a94dc9e6

dev-python/simplejson: Version Bump

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

 dev-python/simplejson/Manifest|  1 +
 dev-python/simplejson/simplejson-3.8.1.ebuild | 33 +++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/simplejson/Manifest b/dev-python/simplejson/Manifest
index a881982..1fbe838 100644
--- a/dev-python/simplejson/Manifest
+++ b/dev-python/simplejson/Manifest
@@ -1,2 +1,3 @@
 DIST simplejson-3.7.2.tar.gz 74877 SHA256 
8358ecc05541be4068109acf26a4ae89ba14450d20e92e0973d0d67bea3d7431 SHA512 
5e2874c4d627035b3e205b5208b46beb172ac934742b0cb68f43f70aa2f401ec568c2b69fccdb1d870bf5196df0f6e37b790332a6e4d7969a296c8c104bdfe0b
 WHIRLPOOL 
26f5e23250031d9b20b121a7110a1b623f32128721281b2554f2727f815b03b39b0680d21b41bb8729288f2774d38e92301bcf72188d054aa03497818edefdca
 DIST simplejson-3.8.0.tar.gz 75875 SHA256 
217e4797da3a9a4a9fbe6722e0db98070b8443a88212d7acdbd241a7668141d9 SHA512 
c985a0f56170f78b6c6e8f0e4b4bf50f258c8f2639524f5b14d8e07b547e336acf96ac55cf562243fff06752ceba4a05f1e6dd43f6c918159a7b3640af0f0c1d
 WHIRLPOOL 
368779f57bc1186d3b30ae80f74d0eca50709dfe6063d52c359d665eaacc9caa751fbbb9f4437e8bf8908f3569f85424632208d8f7c6146ebc8e8cc9c77b723d
+DIST simplejson-3.8.1.tar.gz 76033 SHA256 
428ac8f3219c78fb04ce05895d5dff9bd813c05a9a7922c53dc879cd32a12493 SHA512 
9c135347a015f5fbb4373da61282230430320c89bc1114f7487eb632bccbe29a4b2c396d724c6c72af5c7df78f1676869a037be9d137b4f29f18e82a9eb2b1f5
 WHIRLPOOL 
8441ccaff4e4115d58461f528179c4fc25139b5f7f86cc85826798e392e664154468f1fa2471f18fc7bd518adf06a75b493218765ca4df022d92e6ee24552e38

diff --git a/dev-python/simplejson/simplejson-3.8.1.ebuild 
b/dev-python/simplejson/simplejson-3.8.1.ebuild
new file mode 100644
index 000..5043687
--- /dev/null
+++ b/dev-python/simplejson/simplejson-3.8.1.ebuild
@@ -0,0 +1,33 @@
+# 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 pypy3 )
+
+inherit distutils-r1 flag-o-matic
+
+DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
+HOMEPAGE="http://undefined.org/python/#simplejson 
https://pypi.python.org/pypi/simplejson";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="|| ( MIT AFL-2.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+DOCS=( README.rst CHANGES.txt )
+
+python_compile() {
+   if ! python_is_python3; then
+   local CFLAGS=${CFLAGS}
+   append-cflags -fno-strict-aliasing
+   fi
+   distutils-r1_python_compile
+}
+
+python_test() {
+   esetup.py test
+}



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

2015-10-28 Thread Justin Lecher
commit: 08e9e965f325352323f8a17a1013cb851038abd9
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 09:36:19 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 09:36:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e9e965

dev-python/coloredlogs: Version Bump

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

 dev-python/coloredlogs/Manifest |  1 +
 dev-python/coloredlogs/coloredlogs-3.1.3.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-python/coloredlogs/Manifest b/dev-python/coloredlogs/Manifest
index 2f22371..b1d422e 100644
--- a/dev-python/coloredlogs/Manifest
+++ b/dev-python/coloredlogs/Manifest
@@ -1,4 +1,5 @@
 DIST coloredlogs-1.0.1.tar.gz 13926 SHA256 
11067ca91532ba4a316fa53b005152a08b3e015dcb1234d393cfc25af88ebc3e SHA512 
098aa22b371ffdb6400fac7d2f000aa73f8956eae71f48ceed2110eb35a4b4d11f814f8cacca643c4deccd82da058a750c700264e7c71c2351514a6f887101a5
 WHIRLPOOL 
71b447498d5e91a0cda131046f7545230bc0c13aa814f0d79cfbd60934dee7c5cc54a729dd36b0a937451f80302384fb0733fd94e43e09c2ce9258c950fd
 DIST coloredlogs-2.0.tar.gz 15486 SHA256 
532198042eac7560f5292961bfb6f844343132fda805575684f67deeb780b2c2 SHA512 
b42e18b563caef4506377fba754e976fed31b7402d418ca79d1875504986572b36fe90b602afcb952dc8b06b9f7bc7ed6861abc2239ae5b5340e006377f9a14d
 WHIRLPOOL 
6cbec16a204f91a218428c8056e2c39d94aeaedbf3356b2548fa288a386b8583bf639a40f0c40dc596096bf44ccb28acb7c2d66403d19cf72143599ba88a82b5
 DIST coloredlogs-3.1.2.tar.gz 22914 SHA256 
ad559e2f2e08eadfb63a210344acf0d00855ba0896fc5662e8d57e1a488e3209 SHA512 
872d041f732bb30a0cc3decd5dc677cf58aad300d6cd37fc0a38dcdb24bad2e6640f332ab58e469b07e2a37d6b7fdbfdf6e804431df175c48add00d86a3b5624
 WHIRLPOOL 
6d9593d8db8eac3ec558581a0772e7264e74e3c4e084c76af58402b2627b3b97689f947ee6eb871bd1fc65c3a2855d66f9f64434b8f612d55b7cefbf3670edf2
+DIST coloredlogs-3.1.3.tar.gz 22911 SHA256 
d2195daa0e310bfaaf3dae47e22feaa3ee3631885e2ffc19aa765ad02196bf03 SHA512 
81ff3476ee44dae3b08b1849189cfd03f7eb0e3c97414b463aeba1f7c6b3a3539f234dd058a0b05a503c5e5f4490236e8145fcb8bc019abb1888d8f10f542ca9
 WHIRLPOOL 
78f668fbac2ac9c61aa82a831c1ca2fd36bbb52557677f565b495dc9ce3206f048fd6e3d6493166559f9a7111f97f9466782d7a643675cea9615303d6a9dbc53
 DIST coloredlogs-3.1.tar.gz 22876 SHA256 
d3ef1ae85c3a1af335f116f634832691873dd87e5872b94bee1dd0a1e43a SHA512 
01ed7841a79278b21fc0588b527803f8092b371c866785949d57f8c04649457fbe34c98ec77d3921f05f224b6d21e1a8fc8f835e4ea542886b948124d9d02bb1
 WHIRLPOOL 
c59cbbd0e773763dcc95c45986385ca518ed9f0c59030d2421af0a4f62c9e3a08586f894e591058dc5e3cfb3a2c39c7886ec0673d59c40d1d811755bd109

diff --git a/dev-python/coloredlogs/coloredlogs-3.1.3.ebuild 
b/dev-python/coloredlogs/coloredlogs-3.1.3.ebuild
new file mode 100644
index 000..5145699
--- /dev/null
+++ b/dev-python/coloredlogs/coloredlogs-3.1.3.ebuild
@@ -0,0 +1,34 @@
+# 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,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Colored stream handler for the logging module"
+HOMEPAGE="https://pypi.python.org/pypi/coloredlogs 
https://github.com/xolox/python-coloredlogs http://coloredlogs.readthedocs.org";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/humanfriendly-1.42[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/capturer[${PYTHON_USEDEP}]
+   dev-python/verboselogs[${PYTHON_USEDEP}]
+   )"
+
+DOCS=( README.rst )
+
+PATCHES=( "${FILESDIR}"/${PN}-2.0-skip-cli-test.patch )
+
+python_test() {
+   esetup.py test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/dj-database-url/

2015-10-28 Thread Justin Lecher
commit: 8bc9a2ea365c25154004311b1983970cbc21b5f5
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 09:51:19 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 10:45:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc9a2ea

dev-python/dj-database-url: New package written by me

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

 dev-python/dj-database-url/Manifest|  1 +
 .../dj-database-url/dj-database-url-0.3.0.ebuild   | 30 ++
 dev-python/dj-database-url/metadata.xml|  5 
 3 files changed, 36 insertions(+)

diff --git a/dev-python/dj-database-url/Manifest 
b/dev-python/dj-database-url/Manifest
new file mode 100644
index 000..f3db680
--- /dev/null
+++ b/dev-python/dj-database-url/Manifest
@@ -0,0 +1 @@
+DIST dj-database-url-0.3.0.tar.gz 2747 SHA256 
f2e273ed34acbb560962d5cf12917936d8df02297df09bd3089b8546d4584138 SHA512 
a27fa974edcc0fcfb99f8b74b25324a7afbf70ae4161576ec72733a3b305e170b23677106b85dbc075c5888330d6187ad9e95fbecc41cf7455c26ebf6f3f86e3
 WHIRLPOOL 
60e0c50f353ea314c6562a05d5a39042e3db15aca4018e8b35646c991a15fda59ed72b213fcbdef303d3eb47a2cff856b1c1d3d80c3e7868bc619794cf0330f3

diff --git a/dev-python/dj-database-url/dj-database-url-0.3.0.ebuild 
b/dev-python/dj-database-url/dj-database-url-0.3.0.ebuild
new file mode 100644
index 000..e9320c5
--- /dev/null
+++ b/dev-python/dj-database-url/dj-database-url-0.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
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Use Database URLs in your Django Application"
+HOMEPAGE="https://pypi.python.org/pypi/dj-database-url 
https://github.com/kennethreitz/dj-database-url";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+# Not contained in the tarball
+RESTRICT=test
+
+python_test() {
+   "${PYTHON}" test_dj_database_url.py || die
+}

diff --git a/dev-python/dj-database-url/metadata.xml 
b/dev-python/dj-database-url/metadata.xml
new file mode 100644
index 000..ee7e8b2
--- /dev/null
+++ b/dev-python/dj-database-url/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  python
+



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

2015-10-28 Thread Justin Lecher
commit: bb2706ed5bb7aa81b42986f6c2755c9c0afa9822
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 10:52:54 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 10:52:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb2706ed

dev-python/django-nose: Version Bump

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

 dev-python/django-nose/Manifest |  1 +
 dev-python/django-nose/django-nose-1.4.2.ebuild | 31 +
 2 files changed, 32 insertions(+)

diff --git a/dev-python/django-nose/Manifest b/dev-python/django-nose/Manifest
index 76cc2b5..6ad897c 100644
--- a/dev-python/django-nose/Manifest
+++ b/dev-python/django-nose/Manifest
@@ -1,3 +1,4 @@
 DIST django-nose-1.3.tar.gz 25149 SHA256 
3667d26a41fec30364a0ef72580832ca5328802d553f6d6e72af5ac21cb36365 SHA512 
0e7f18d32340f912fcde96c3ed4ff63caec71ad178f9bd01e61087a228d7e93ecfd87c5d320a66093bce438561638daacd586a4ecb3198573b28607d33eb853f
 WHIRLPOOL 
0acbbe147c0e434ef641843d10f9781ef26f3dc428ba8e613165ed43d6f5d1dea27bf513d9efcbd551c38c7a1945ae3b06aafb0a6d01c8714479f0c4836f1863
 DIST django-nose-1.4.1.tar.gz 26792 SHA256 
224dd1bfd8fcdb9f67256c5430147b4c0105d72f6ac8ce3bca6b486449ec6062 SHA512 
9ba42767bdfb0c359d9c693c5a7775767ba1a56c54531e75ff2b97e2e12d2a9f535c771c5b076b9024f3662a4143f115aa4bd84b9844ce8cb71f99c47722dcef
 WHIRLPOOL 
49c285867adcbf0b17a388bfd6c8cd2603d8c7b50ec162b088409c1a049e43718f9bc37167d914327d474f6177fb38e01797a80f0c47bc02fd7db31cbe7e8761
+DIST django-nose-1.4.2.tar.gz 44842 SHA256 
736ae53e3ec47dbbb304c18ce54585af299ef88172d9a27cb5fda29daa00 SHA512 
b29ac1e9b10b8316c851857498c4cea7e76f91da87583d83591d28348622be9aba19cde6067185a4870274c349857654ef4debde29fdd91974eb539cd5c7a281
 WHIRLPOOL 
03b6bbd16b079a1f9042d4b57af7f59f669798403927a619ab658f7c16001cf586dd3d661eb4efbff94ae7870007fcadfc852fb93fc09e3bd400f29acd5f6cb9
 DIST django-nose-1.4.tar.gz 26477 SHA256 
26cef3c6f62df2eee955a25195de6f793881317c0f5fd1a1c6f9e22f351a9313 SHA512 
2df1377146304bc0356e24a212bee8ee55c05ccaafcd6fceca4afe5ae528335192c4a89c842f4c2df6965965c9536f0862903aff2141139cfc83695b41d56e32
 WHIRLPOOL 
7da21678b2b955972f14dc806aac7c5615048b5edae96bdcc17ee4d1302d714519a223356398f89b0d512aa3aa6979567682dd81b8bb6c99cd7cdd340fa66293

diff --git a/dev-python/django-nose/django-nose-1.4.2.ebuild 
b/dev-python/django-nose/django-nose-1.4.2.ebuild
new file mode 100644
index 000..e63592d
--- /dev/null
+++ b/dev-python/django-nose/django-nose-1.4.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Django test runner that uses nose"
+HOMEPAGE="https://github.com/jbalogh/django-nose";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+#RESTRICT="test"  # The testsuite currently broken See notes below
+
+RDEPEND="
+   >=dev-python/nose-1.2.1[${PYTHON_USEDEP}]
+   dev-python/django[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND}
+   >=dev-python/dj-database-url-0.3.0[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   ./runtests.sh --verbose || die
+}



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

2015-10-28 Thread Justin Lecher
commit: 5f93a9013dda494c3bfa33d42b8510dd3bff41b2
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 09:41:32 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 09:41:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f93a901

dev-python/mako: Version Bump

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

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

 dev-python/mako/Manifest  |  1 +
 dev-python/mako/mako-1.0.3.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/mako/Manifest b/dev-python/mako/Manifest
index 5fb58e0..6752676 100644
--- a/dev-python/mako/Manifest
+++ b/dev-python/mako/Manifest
@@ -1,2 +1,3 @@
 DIST Mako-1.0.0.tar.gz 470006 SHA256 
a3cd72cfef507204b50f74ffcbfcfde7e856437891d3f6cfe780866986d006fe SHA512 
81a6b7637e26d561350a591e3490e7140db218ae7f6b43fec8fca5b767fc6e57d0e8cc901d28fecb9863b2170c824a35c578a94579f991359fa0873f62ec578a
 WHIRLPOOL 
aa27b63e3832f03120312fbfec939b05606081e67a5cb4c9a056c27259631c2e159cf7506292d44e2c17c5950d7e4255d19f4beba78502bdbb52fbf11e1a872c
 DIST Mako-1.0.2.tar.gz 564592 SHA256 
2550c2e4528820db68cbcbe668add5c71ab7fa332b7eada7919044bf8697679e SHA512 
d297f9050049ac37612b10d61d3f1bb2cb7f6e238e7afdce092ba95d6117e064b4dfebaa3219093d88f75c6ef691fe3a0aaebd4188a5ba571867d3a3dfe986bc
 WHIRLPOOL 
63f1b0a094dcbd5ab9fb86ba56764ad517b60c24d58b7e51b5220d2df4426e47d0c65d0409f9f7c499c7eaa0747b5bac06326718574038c2276b4b52147274fe
+DIST Mako-1.0.3.tar.gz 565224 SHA256 
7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c SHA512 
1652cb3f7ea6484975c16f914ce9c070e503ff532564f76a048dd316e5eb12ff2b2445f272be55147d4d62b45906d5e14b3799c9136622ed0867a00875a0e52d
 WHIRLPOOL 
4ac07778b58d8b4c95853a07dcb8755e560cb7225f68b606582ef9883fe632caead44d4a56ae1662b42f0ecdee2117942b3c500385558aa8f9763a3ce755b583

diff --git a/dev-python/mako/mako-1.0.3.ebuild 
b/dev-python/mako/mako-1.0.3.ebuild
new file mode 100644
index 000..1bdcc80
--- /dev/null
+++ b/dev-python/mako/mako-1.0.3.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,5} )
+
+inherit distutils-r1 eutils versionator
+
+MY_PN="Mako"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="A Python templating language"
+HOMEPAGE="http://www.makotemplates.org/ https://pypi.python.org/pypi/Mako";
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_test() {
+   nosetests "${S}"/test || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+   rm -rf doc/build || die
+
+   use doc && local HTML_DOCS=( doc/. )
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   optfeature "Caching support" dev-python/beaker
+   for v in ${REPLACING_VERSIONS}; do
+   if ! version_is_at_least 0.7.3-r2 $v; then
+   ewarn "dev-python/beaker is no longer hard dependency 
of ${P}"
+   ewarn "If you rely on it, you should add beaker to your 
world"
+   ewarn "file:"
+   ewarn "# emerge --noreplace beaker"
+   break
+   fi
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/et_xmlfile/, dev-python/cassandra-driver/, dev-python/pytidylib/, ...

2015-10-28 Thread Justin Lecher
commit: a50ffb6cf0dbf61709ff87a20a87d8f8842b1cbd
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 10:55:38 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 10:55:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a50ffb6c

Update remote-ids

Signed-off-by: Justin Lecher  gentoo.org>

 app-crypt/pius/metadata.xml  |  3 ++-
 dev-haskell/extra/metadata.xml   |  5 -
 dev-haskell/fclabels/metadata.xml| 11 +++
 dev-haskell/ghc-syb-utils/metadata.xml   |  5 -
 dev-haskell/monad-journal/metadata.xml   |  5 -
 dev-python/cassandra-driver/metadata.xml |  5 -
 dev-python/d2to1/metadata.xml|  3 ++-
 dev-python/dj-database-url/metadata.xml  |  6 +-
 dev-python/et_xmlfile/metadata.xml   |  6 +-
 dev-python/markdown/metadata.xml |  3 ++-
 dev-python/pytidylib/metadata.xml|  6 +-
 dev-ruby/dnsruby/metadata.xml|  3 +++
 sci-geosciences/laszip/metadata.xml  |  9 ++---
 x11-misc/albert/metadata.xml |  5 -
 14 files changed, 57 insertions(+), 18 deletions(-)

diff --git a/app-crypt/pius/metadata.xml b/app-crypt/pius/metadata.xml
index bf95fd0..37d8499 100644
--- a/app-crypt/pius/metadata.xml
+++ b/app-crypt/pius/metadata.xml
@@ -1,4 +1,4 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>
 
crypto
@@ -14,5 +14,6 @@


pgpius
+   jaymzh/pius

 

diff --git a/dev-haskell/extra/metadata.xml b/dev-haskell/extra/metadata.xml
index ecc6a87..3fc3088 100644
--- a/dev-haskell/extra/metadata.xml
+++ b/dev-haskell/extra/metadata.xml
@@ -1,4 +1,4 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>
 
haskell
@@ -8,4 +8,7 @@

use network-uri package

+   
+   ddssff/haskell-extra
+   
 

diff --git a/dev-haskell/fclabels/metadata.xml 
b/dev-haskell/fclabels/metadata.xml
index 1ad0433..5a4a3c8 100644
--- a/dev-haskell/fclabels/metadata.xml
+++ b/dev-haskell/fclabels/metadata.xml
@@ -1,16 +1,16 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>
 
haskell

This package provides first class labels that can act as
bidirectional record fields. The labels can be derived
-   automatically using Template Haskell which means you don't 
have
+   automatically using Template Haskell which means you don't have
to write any boilerplate yourself. The labels are implemented as
lenses and are fully composable. Labels can be used to /get/,
/set/ and /modify/ parts of a datatype in a consistent way.

-   See "Data.Label" for an introductory explanation.
+   See "Data.Label" for an introductory explanation.

Internally lenses are not tied to Haskell functions directly,
but are implemented as arrows. Arrows allow the lenses to be run
@@ -18,9 +18,12 @@
make partial lenses that point to fields of multi-constructor
datatypes in an elegant way.

-   See the "Data.Label.Maybe" module for the use of 
partial labels.
+   See the "Data.Label.Maybe" module for the use of partial labels.

> 1.0.3 -> 1.0.4
>   - Bugfix to compile on GHC 6.12 again.

+   
+   sebastiaanvisser/fclabels
+   
 

diff --git a/dev-haskell/ghc-syb-utils/metadata.xml 
b/dev-haskell/ghc-syb-utils/metadata.xml
index 52a967b..e20125f 100644
--- a/dev-haskell/ghc-syb-utils/metadata.xml
+++ b/dev-haskell/ghc-syb-utils/metadata.xml
@@ -1,8 +1,11 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>
 
haskell

Scrap Your Boilerplate utilities for the GHC API.

+   
+   nominolo/ghc-syb
+   
 

diff --git a/dev-haskell/monad-journal/metadata.xml 
b/dev-haskell/monad-journal/metadata.xml
index 2ba2db8..bf88292 100644
--- a/dev-haskell/monad-journal/metadata.xml
+++ b/dev-haskell/monad-journal/metadata.xml
@@ -1,4 +1,4 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>
 
haskell
@@ -10,4 +10,7 @@
sink them through `IO` if you're logging in
`(MonadIO m) => m`.

+   
+   phaazon/monad-journal
+   
 

diff --git a/dev-python/cassandra-driver/metadata.xml 
b/dev-python/cassandra-driver/metadata.xml
index 74e61dd..f615e39 100644
--- a/dev-python/cassandra-driver/metadata.xml
+++ b/dev-python/cassandra-driver/metadata.xml
@@ -1,4 +1,4 @@
-
+
 http://www.gentoo.org/dtd/metadata.dtd";>
 
python
@@ -24,4 +24,7 @@
Faster hashing for token-aware routing


+   
+   datastax/python-driver
+   
 

diff --git a/dev-python/d2to1/metadata.xml b/dev-python/d2to1/meta

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

2015-10-28 Thread Nicolas Bock
commit: 1d2e24fed8135675a7ddafee37dad9b6f3d27add
Author: Nicolas Bock  gentoo  org>
AuthorDate: Wed Oct 28 12:10:21 2015 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Wed Oct 28 12:11:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d2e24fe

sci-physics/lammps: Version bump.

Package-Manager: portage-2.2.20.1

 sci-physics/lammps/Manifest   |   2 +
 sci-physics/lammps/lammps-20151023.ebuild | 241 ++
 sci-physics/lammps/lammps-20151026.ebuild | 241 ++
 3 files changed, 484 insertions(+)

diff --git a/sci-physics/lammps/Manifest b/sci-physics/lammps/Manifest
index 8d361b7..65e5628 100644
--- a/sci-physics/lammps/Manifest
+++ b/sci-physics/lammps/Manifest
@@ -5,7 +5,9 @@ DIST lammps-15May15.tar.gz 63835027 SHA256 
0233ea98c7d77d31bd0a538bb674c0ee8f000
 DIST lammps-18Aug15.tar.gz 87893731 SHA256 
513237934cda7c1e026f4983096fd53cb510fadee12c55b13b4735086155245a SHA512 
5816509f5b988dbe74c9f40a9faa42b3bcf260388dfe70703a1544517acd3f868d3bc398fb4c2fa7713d24409075d44ad80b8e91a25a28db783c2605aff30977
 WHIRLPOOL 
7022f3aabadffdfa2ef4c8219589e46fba2572d9ed4b52591f6516a61d4895b39d637d88535ba83881db5d48661e34ca6ff2f22a6819dbec015af979721a0f53
 DIST lammps-21Aug15.tar.gz 87096749 SHA256 
46f68e7b61e50ab3e790c53cadd82fde7c7aa58aa73e8a3257f24facff2ed0a4 SHA512 
b1dd90890c43a6cf55a57a61279dcc4c10fdedb4ad90f225a06c0e93eb139d30f2d56baa233c081b38adeeb0a8419a0315ccc4b0fa15c3ffbf7db626ca261e9d
 WHIRLPOOL 
a1d7d4ab30f9ecca3fd64216e729fef6fa1b3f7a6698b9eaf104bcbfa03a66862cd8c5882e94f73e841064d94bf030aaf569ebb457d89fbd345b391f9cee6822
 DIST lammps-22Oct15.tar.gz 87938562 SHA256 
8376b52e8eef4d1c3628c15ff358ecf74303e308566f41fd055701f6af3b6484 SHA512 
cbe61420cccd11cd23214802dfd2d1b2b1b28511a53dbf22e993fa3592404e8dda29fcb7bcd4e6e2d1e2251ddc6f020d48bafa66c8fceaa27d4af2e21640
 WHIRLPOOL 
11d09b18ff742d6ac4fcb400df93d7ac29144ee554f7241e58da80d039a99ef23b4b81709170ed12215693de97b6b48c9a6967d7d0539fd7f2f172a1e0a83661
+DIST lammps-23Oct15.tar.gz 87933918 SHA256 
3500cdeb22344c7f3a040834a232d6c5ddb9f601820794441fcc24dadedc49b6 SHA512 
a26d214b3e7c47d63cf00a364753a829d1c8f0cf4f8b73e829a4463650303d6905b6c942df5890387413b44496c8615b286296b34df9181e54806bb2f361b39a
 WHIRLPOOL 
9a2d6e8fb57f1af2969345d9b250ed1244d2e40c97d5e2994c0ef6225ca265b490809848faa7cdc29a3eaa7c51a6223320039863f6c382a1a51da6f474e52088
 DIST lammps-24Sep15.tar.gz 87307191 SHA256 
e03cdeb2b3b6107d98969febea26575c85590603ab4f79d26efc46bac6d6cc60 SHA512 
356dd556f845cec456865062375120c0898cef1870617d80b31b0e8e964585140120b21f891cd9b40ecde7aaf43beb34d7b15396830e08273624a9b14da551e4
 WHIRLPOOL 
667b8aaf927d268c569a192c835b7dbdc80a0f25abb1f2c96007517ea218a69b2816dde4ebe28ca82974d01472c0e1126b67e89a19fb3ef49e4020f3d9c69fba
+DIST lammps-26Oct15.tar.gz 89265403 SHA256 
c69356b3056881cbbb7eb659eb9cd4fc9d86e7f010502fe47c91ed865cbabea7 SHA512 
738cd9fb7b11cb1e7304814ac4463d534f0a5dda1c70cc483d3c19b038c15cd61a2c03c697269afbe42d88bf01ef33d0972bba9516a840026891fc3f144a
 WHIRLPOOL 
c7c7882e32b026cdba0d5bceb1ecfa4127e77edeb9d567760e19d6103109fdf9cefe79a17fd6e3291d04347984cfdb1a999136ead0be20f0173a73e53f106d95
 DIST lammps-29Aug15.tar.gz 87253305 SHA256 
fff69b47c40936d4ccd90a8443ce5bb1bcf4cb449ae06a5822c1b11a2ab2dd67 SHA512 
991c56608a3288ebdcd2fb0857c595d42047b5ed0780b6d4ddb98388627499727b6c04fe0eff3e7221238dba2a8601f0b4b4067b5aa5ec2f356b4ee13f6c129c
 WHIRLPOOL 
88da74fa65aeb187330439417512d516fe8adf4a5df4be48fdafafa198e8c4d657ecce7f04f749d77cb2f8a7881ac47f4604cf6bc8eb3ca8b2cbc7988d866a87
 DIST lammps-4Sep15.tar.gz 87259558 SHA256 
8652c801e4ce8b6b7d42a6c71f76b68a6e741dc8efb8d7d3dad36b624fe8f150 SHA512 
ee730c8bd96e14931192a68c12e4ebde301cc3525b20816d051059f155b70c6edcea7dc2ed911e0b89685d751cd5a74b4bb5eedd6c16a042a2191bf8a9665fc9
 WHIRLPOOL 
271ac0d74e03d3e3e118a8b2385d98ce3f566ead67f1c329a219c265f886dc267b11be17c2caa52749ebac212bbc7456fba2d0d6ec69cd25815316e601b3360a
 DIST lammps-5Oct15.tar.gz 88451532 SHA256 
a76f92ae05b99f9257abf7d79d9365c5743fa5a16b941a5e40f74036c5879211 SHA512 
e0a034778cd5e3b9a27c9fc6257f1f7a6a9161732cd83bac2c4b0f82c39d5a6a385bb4640322478bfbe9467afb28b998cd19108b3d4a21e369b80c39a486e065
 WHIRLPOOL 
291e7820d4736421aeda9a1295854bd7b52d8ca3f14900e9394373410ee5db02ad6ab53991cf4dc8e73328b24fa44659d10693aca7cb48301227299ad622ce31

diff --git a/sci-physics/lammps/lammps-20151023.ebuild 
b/sci-physics/lammps/lammps-20151023.ebuild
new file mode 100644
index 000..39fd779
--- /dev/null
+++ b/sci-physics/lammps/lammps-20151023.ebuild
@@ -0,0 +1,241 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3} )
+
+inherit eutils flag-o-matic fortran-2 multilib python-r1
+
+convert_month() {
+   local months=( "" Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec )
+   echo ${months[${1#0}]}
+}
+
+MY_P=${PN}-$((10#${PV:6:2}))$(convert_month ${PV:

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

2015-10-28 Thread Nicolas Bock
commit: 4977c2bf7cf1cb6821e5eaea276a89803a06f8ea
Author: Nicolas Bock  gentoo  org>
AuthorDate: Wed Oct 28 12:25:14 2015 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Wed Oct 28 12:25:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4977c2bf

sci-physics/lammps: Add python-3.4 support to latest version.

Package-Manager: portage-2.2.20.1

 sci-physics/lammps/lammps-20151026.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/lammps/lammps-20151026.ebuild 
b/sci-physics/lammps/lammps-20151026.ebuild
index 39fd779..2c75712 100644
--- a/sci-physics/lammps/lammps-20151026.ebuild
+++ b/sci-physics/lammps/lammps-20151026.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit eutils flag-o-matic fortran-2 multilib python-r1
 



[gentoo-commits] repo/gentoo:master commit in: games-simulation/pmars-sdl/files/, games-simulation/pmars-sdl/

2015-10-28 Thread Alfredo Tupone
commit: cd699b6b53a171ea727bddd3c73298339fd70b74
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Wed Oct 28 12:29:54 2015 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Oct 28 12:30:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd699b6b

games-simulation/pmars-sdl: compile with format-security. Bug #544358

Package-Manager: portage-2.2.20.1

 .../pmars-sdl/files/pmars-sdl-0.9.2e-format.patch  | 65 ++
 games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild |  6 +-
 2 files changed, 70 insertions(+), 1 deletion(-)

diff --git a/games-simulation/pmars-sdl/files/pmars-sdl-0.9.2e-format.patch 
b/games-simulation/pmars-sdl/files/pmars-sdl-0.9.2e-format.patch
new file mode 100644
index 000..d8c588a
--- /dev/null
+++ b/games-simulation/pmars-sdl/files/pmars-sdl-0.9.2e-format.patch
@@ -0,0 +1,65 @@
+--- src/asm.c.old  2015-10-28 13:23:53.465014342 +0100
 src/asm.c  2015-10-28 13:23:10.502813377 +0100
+@@ -652,7 +652,7 @@
+   macputs(str);
+ #else
+   if (!inCdb)
+-fprintf(stderr, str);
++fprintf(stderr, "%s", str);
+ #if defined DOSALLGRAPHX
+   else {
+ if (displayMode == TEXT)
+@@ -833,7 +833,7 @@
+ #ifdef __MAC__
+ textout(notEnoughMemErr);
+ #else
+-fprintf(stderr, notEnoughMemErr);
++fprintf(stderr, "%s", notEnoughMemErr);
+ #endif
+ Exit(MEMERR);
+ break;
+@@ -916,7 +916,7 @@
+   }
+ 
+   if (ierr >= ERRMAX) {
+-sprintf(outs, tooManyMsgErr);
++sprintf(outs, "%s", tooManyMsgErr);
+ #ifndef VMS
+ textout(outs);
+ #else
+--- src/cdb.c.old  2015-10-28 13:24:04.669805966 +0100
 src/cdb.c  2015-10-28 13:23:10.502813377 +0100
+@@ -2760,7 +2760,7 @@
+   fprintf(outp, nameByAuthorScores, warrior[idxV[i]].name, 
warrior[idxV[i]].authorName,
+   scrV[idxV[i]]);
+   if (warriors > 2) {
+-fprintf(outp, resultsAre);
++fprintf(outp, "%s", resultsAre);
+ for (j = 0; j < warriors; ++j) {
+   fprintf(outp, " %d", warrior[idxV[i]].score[j]);
+ }
+--- src/clparse.c.old  2015-10-28 13:24:10.648694768 +0100
 src/clparse.c  2015-10-28 13:23:10.502813377 +0100
+@@ -289,7 +289,7 @@
+   if (next_input(filep, inputs)) {
+ if (!strcmp(inputs, "-")) {
+   newFile = stdin;
+-  fprintf(stderr, readingStdin);
++  fprintf(stderr, "%s", readingStdin);
+ } else {
+   if ((newFile = fopen(inputs, "r")) == NULL) {
+ code = FILENAME;/* command file not found */
+@@ -430,11 +430,11 @@
+ errout(outs);
+ break;
+   case MEMORY:
+-sprintf(outs, outOfMemory);
++sprintf(outs, "%s", outOfMemory);
+ errout(outs);
+ break;
+   case FILENAME:
+-sprintf(outs, cannotOpenParameterFile);
++sprintf(outs, "%s", cannotOpenParameterFile);
+ errout(outs);
+ break;
+   }

diff --git a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild 
b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild
index 3efe83a..3429dd0 100644
--- a/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild
+++ b/games-simulation/pmars-sdl/pmars-sdl-0.9.2e.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-inherit toolchain-funcs games
+inherit toolchain-funcs games eutils
 
 MY_PN="${PN/-sdl/}"
 MY_PV="${PV/e/-5}"
@@ -24,6 +24,10 @@ DEPEND="sdl? ( x11-libs/libX11 media-libs/libsdl[video] )
 
 S=${WORKDIR}/${MY_P}
 
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-format.patch
+}
+
 src_compile() {
CFLAGS="${CFLAGS} -DEXT94 -DPERMUTATE"
LFLAGS="-x"



[gentoo-commits] proj/sci:master commit in: sci-chemistry/xplor-nih/

2015-10-28 Thread Justin Lecher
commit: 2f24b0946eae75e0f427ecec93dd7d61ccc420e3
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 12:41:16 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 12:41:16 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2f24b094

sci-chemistry/xplor-nih: Add missing dep on dev-libs/libedit

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

 sci-chemistry/xplor-nih/xplor-nih-2.38.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-chemistry/xplor-nih/xplor-nih-2.38.ebuild 
b/sci-chemistry/xplor-nih/xplor-nih-2.38.ebuild
index bb29472..a2d078c 100644
--- a/sci-chemistry/xplor-nih/xplor-nih-2.38.ebuild
+++ b/sci-chemistry/xplor-nih/xplor-nih-2.38.ebuild
@@ -25,6 +25,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RDEPEND="${PYTHON_DEPS}
dev-lang/tcl:8.5
dev-lang/tk:8.5
+   dev-libs/libedit
|| (
sys-libs/ncurses:0/5
sys-libs/ncurses:5/5



[gentoo-commits] repo/gentoo:master commit in: net-libs/signon-oauth2/files/, net-libs/signon-oauth2/

2015-10-28 Thread Michael Palimaka
commit: c41e09e64b1ddde8c06b629e1ad4a0f2f0fdef34
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Oct 28 13:11:24 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Oct 28 13:11:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c41e09e6

net-libs/signon-oauth2: avoid build failure when unused dependency is not 
installed

Gentoo-bug: 564316

Package-Manager: portage-2.2.20.1

 .../files/signon-oauth2-0.21-unused-dependency.patch | 16 
 net-libs/signon-oauth2/signon-oauth2-0.21.ebuild |  4 +++-
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git 
a/net-libs/signon-oauth2/files/signon-oauth2-0.21-unused-dependency.patch 
b/net-libs/signon-oauth2/files/signon-oauth2-0.21-unused-dependency.patch
new file mode 100644
index 000..3e6656d
--- /dev/null
+++ b/net-libs/signon-oauth2/files/signon-oauth2-0.21-unused-dependency.patch
@@ -0,0 +1,16 @@
+Qt5XmlPatterns is not actually used, but build will fail if it's missing.
+
+Gentoo-bug: 564316
+
+--- src/src.pro
 src/src.pro
+@@ -4,8 +4,7 @@
+ TARGET = oauth2plugin
+ DESTDIR = lib/signon
+ QT += core \
+-network \
+-xmlpatterns
++network
+ QT -= gui
+ CONFIG += plugin \
+ build_all \

diff --git a/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild 
b/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild
index 2c5b49b..2bbabd6 100644
--- a/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild
+++ b/net-libs/signon-oauth2/signon-oauth2-0.21.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit qmake-utils
+inherit eutils qmake-utils
 
 DESCRIPTION="OAuth2 plugin for Signon daemon"
 HOMEPAGE="https://01.org/gsso/";
@@ -30,6 +30,8 @@ src_prepare() {
else
sed -i -e '/^INSTALLS.*/,+1d' tests/tests.pro || die "couldn't 
remove tests from install target"
fi
+
+   epatch "${FILESDIR}/${P}-unused-dependency.patch"
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: x11-apps/fusion-icon/

2015-10-28 Thread Justin Lecher
commit: d583f8c9ee328a82c2e7391c4f056260a720f27c
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 11:32:00 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 13:35:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d583f8c9

x11-apps/fusion-icon: Drop old

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

 x11-apps/fusion-icon/fusion-icon-0.1-r2.ebuild | 57 ---
 x11-apps/fusion-icon/fusion-icon-0.1-r3.ebuild | 62 --
 x11-apps/fusion-icon/metadata.xml  |  4 +-
 3 files changed, 2 insertions(+), 121 deletions(-)

diff --git a/x11-apps/fusion-icon/fusion-icon-0.1-r2.ebuild 
b/x11-apps/fusion-icon/fusion-icon-0.1-r2.ebuild
deleted file mode 100644
index 79515c6..000
--- a/x11-apps/fusion-icon/fusion-icon-0.1-r2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-PYTHON_DEPEND="2"
-
-inherit distutils gnome2-utils
-
-MINIMUM_COMPIZ_RELEASE=0.6.0
-
-DESCRIPTION="Compiz Fusion Tray Icon and Manager"
-HOMEPAGE="http://compiz.org";
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+gtk qt4"
-
-REQUIRED_USE="|| ( gtk qt4 )"
-
-RDEPEND="
-   >=dev-python/compizconfig-python-${MINIMUM_COMPIZ_RELEASE}
-   >=x11-wm/compiz-${MINIMUM_COMPIZ_RELEASE}
-   x11-apps/xvinfo
-   gtk? ( >=dev-python/pygtk-2.10:2 )
-   qt4? ( dev-python/PyQt4[X] )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-PYTHON_MODNAME="FusionIcon"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
-src_install() {
-   distutils_src_install
-
-   use gtk || rm -fr "${ED}$(python_get_sitedir)/FusionIcon/interface_gtk"
-   use qt4 || rm -fr "${ED}$(python_get_sitedir)/FusionIcon/interface_qt4"
-}
-
-pkg_postinst() {
-   distutils_pkg_postinst
-
-   use gtk && gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   distutils_pkg_postrm
-
-   use gtk && gnome2_icon_cache_update
-}

diff --git a/x11-apps/fusion-icon/fusion-icon-0.1-r3.ebuild 
b/x11-apps/fusion-icon/fusion-icon-0.1-r3.ebuild
deleted file mode 100644
index 2c1bf38..000
--- a/x11-apps/fusion-icon/fusion-icon-0.1-r3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-PYTHON_DEPEND="2"
-
-inherit distutils eutils gnome2-utils
-
-MINIMUM_COMPIZ_RELEASE=0.6.0
-
-DESCRIPTION="Compiz Fusion Tray Icon and Manager"
-HOMEPAGE="http://compiz.org";
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+gtk qt4"
-
-REQUIRED_USE="|| ( gtk qt4 )"
-
-RDEPEND="
-   >=dev-python/compizconfig-python-${MINIMUM_COMPIZ_RELEASE}
-   >=x11-wm/compiz-${MINIMUM_COMPIZ_RELEASE}
-   x11-apps/xvinfo
-   gtk? ( >=dev-python/pygtk-2.10:2 )
-   qt4? ( dev-python/PyQt4[X] )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-PYTHON_MODNAME="FusionIcon"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-qt4-interface-subprocess-call.patch
-   distutils_src_prepare
-}
-
-src_install() {
-   distutils_src_install
-
-   use gtk || rm -fr "${ED}$(python_get_sitedir)/FusionIcon/interface_gtk"
-   use qt4 || rm -fr "${ED}$(python_get_sitedir)/FusionIcon/interface_qt4"
-}
-
-pkg_postinst() {
-   distutils_pkg_postinst
-
-   use gtk && gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   distutils_pkg_postrm
-
-   use gtk && gnome2_icon_cache_update
-}

diff --git a/x11-apps/fusion-icon/metadata.xml 
b/x11-apps/fusion-icon/metadata.xml
index b19d782..36b9293 100644
--- a/x11-apps/fusion-icon/metadata.xml
+++ b/x11-apps/fusion-icon/metadata.xml
@@ -1,6 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-desktop-effects
-Compiz Fusion Tray Icon and 
Manager.
+   desktop-effects
+   Compiz Fusion Tray Icon and 
Manager.
 



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

2015-10-28 Thread Justin Lecher
commit: bae15fe5f02da3da58013381e1b5f06b0ce73b31
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 11:38:53 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 13:35:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae15fe5

sys-libs/talloc: Fix for prefix

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

 sys-libs/talloc/talloc-2.1.0-r1.ebuild | 2 +-
 sys-libs/talloc/talloc-2.1.3.ebuild| 2 +-
 sys-libs/talloc/talloc-2.1.4.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-libs/talloc/talloc-2.1.0-r1.ebuild 
b/sys-libs/talloc/talloc-2.1.0-r1.ebuild
index 79589e9..867d31d 100644
--- a/sys-libs/talloc/talloc-2.1.0-r1.ebuild
+++ b/sys-libs/talloc/talloc-2.1.0-r1.ebuild
@@ -79,7 +79,7 @@ multilib_src_install() {
install_name_tool \
-change "${S}/bin/default/libtalloc.dylib" \

"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
-   "${ED}"$(python_get_sitedir)/talloc.bundle || 
die
+   "${D}"$(python_get_sitedir)/talloc.bundle || die
fi
fi
 }

diff --git a/sys-libs/talloc/talloc-2.1.3.ebuild 
b/sys-libs/talloc/talloc-2.1.3.ebuild
index a0633c2..6efd84b 100644
--- a/sys-libs/talloc/talloc-2.1.3.ebuild
+++ b/sys-libs/talloc/talloc-2.1.3.ebuild
@@ -79,7 +79,7 @@ multilib_src_install() {
install_name_tool \
-change "${S}/bin/default/libtalloc.dylib" \

"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
-   "${ED}"$(python_get_sitedir)/talloc.bundle || 
die
+   "${D}"$(python_get_sitedir)/talloc.bundle || die
fi
fi
 }

diff --git a/sys-libs/talloc/talloc-2.1.4.ebuild 
b/sys-libs/talloc/talloc-2.1.4.ebuild
index a0633c2..6efd84b 100644
--- a/sys-libs/talloc/talloc-2.1.4.ebuild
+++ b/sys-libs/talloc/talloc-2.1.4.ebuild
@@ -79,7 +79,7 @@ multilib_src_install() {
install_name_tool \
-change "${S}/bin/default/libtalloc.dylib" \

"${EPREFIX}"/usr/$(get_libdir)/libtalloc.2.dylib \
-   "${ED}"$(python_get_sitedir)/talloc.bundle || 
die
+   "${D}"$(python_get_sitedir)/talloc.bundle || die
fi
fi
 }



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

2015-10-28 Thread Justin Lecher
commit: 65beef0476c9f8a4b22a7cebb66d6bcd039915c9
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 11:45:01 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 13:35:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65beef04

sys-devel/distcc: Fix for prefix

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

 sys-devel/distcc/distcc-3.1-r10.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-devel/distcc/distcc-3.1-r10.ebuild 
b/sys-devel/distcc/distcc-3.1-r10.ebuild
index f700ea2..23d1793 100644
--- a/sys-devel/distcc/distcc-3.1-r10.ebuild
+++ b/sys-devel/distcc/distcc-3.1-r10.ebuild
@@ -130,12 +130,12 @@ src_install() {
newins "doc/example/xinetd" distcc
fi
 
-   rm -rf "${D}/etc/default" || die
-   rm -f "${D}/etc/distcc/clients.allow" || die
-   rm -f "${D}/etc/distcc/commands.allow.sh" || die
+   rm -rf "${ED}/etc/default" || die
+   rm -f "${ED}/etc/distcc/clients.allow" || die
+   rm -f "${ED}/etc/distcc/commands.allow.sh" || die
 
python_fix_shebang "${ED}"
-   python_optimize "${ED}"/$(python_get_sitedir)
+   python_optimize
 }
 
 pkg_postinst() {



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

2015-10-28 Thread Justin Lecher
commit: c1903d8f3d67d89a15e898b71f37b0050dc54b0f
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 11:54:12 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 13:35:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1903d8f

sys-devel/clang: Prefix love

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

 sys-devel/clang/clang-2.8-r3.ebuild | 4 ++--
 sys-devel/clang/clang-2.9-r1.ebuild | 4 ++--
 sys-devel/clang/clang-3.0-r4.ebuild | 4 ++--
 sys-devel/clang/clang-3.1-r5.ebuild | 4 ++--
 sys-devel/clang/metadata.xml| 6 +++---
 5 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/sys-devel/clang/clang-2.8-r3.ebuild 
b/sys-devel/clang/clang-2.8-r3.ebuild
index 3a4b53a..ac9afde 100644
--- a/sys-devel/clang/clang-2.8-r3.ebuild
+++ b/sys-devel/clang/clang-2.8-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -156,7 +156,7 @@ src_install() {
install-scan-view() {
insinto "$(python_get_sitedir)"/clang
doins Reporter.py Resources ScanView.py startfile.py
-   touch "${ED}"/"$(python_get_sitedir)"/clang/__init__.py
+   touch "${D}"/"$(python_get_sitedir)"/clang/__init__.py
}
python_execute_function install-scan-view
fi

diff --git a/sys-devel/clang/clang-2.9-r1.ebuild 
b/sys-devel/clang/clang-2.9-r1.ebuild
index b53bf23..e0b2413 100644
--- a/sys-devel/clang/clang-2.9-r1.ebuild
+++ b/sys-devel/clang/clang-2.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -145,7 +145,7 @@ src_install() {
install-scan-view() {
insinto "$(python_get_sitedir)"/clang
doins Reporter.py Resources ScanView.py startfile.py
-   touch "${ED}"/"$(python_get_sitedir)"/clang/__init__.py
+   touch "${D}"/"$(python_get_sitedir)"/clang/__init__.py
}
python_execute_function install-scan-view
fi

diff --git a/sys-devel/clang/clang-3.0-r4.ebuild 
b/sys-devel/clang/clang-3.0-r4.ebuild
index 3834aa4..dfd288b 100644
--- a/sys-devel/clang/clang-3.0-r4.ebuild
+++ b/sys-devel/clang/clang-3.0-r4.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$
 
@@ -163,7 +163,7 @@ src_install() {
install-scan-view() {
insinto "$(python_get_sitedir)"/clang
doins Reporter.py Resources ScanView.py startfile.py
-   touch "${ED}"/"$(python_get_sitedir)"/clang/__init__.py
+   touch "${D}"/"$(python_get_sitedir)"/clang/__init__.py
}
python_execute_function install-scan-view
fi

diff --git a/sys-devel/clang/clang-3.1-r5.ebuild 
b/sys-devel/clang/clang-3.1-r5.ebuild
index f98c997..34f3243 100644
--- a/sys-devel/clang/clang-3.1-r5.ebuild
+++ b/sys-devel/clang/clang-3.1-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -163,7 +163,7 @@ src_install() {
install-scan-view() {
insinto "$(python_get_sitedir)"/clang
doins Reporter.py Resources ScanView.py startfile.py
-   touch "${ED}"/"$(python_get_sitedir)"/clang/__init__.py
+   touch "${D}"/"$(python_get_sitedir)"/clang/__init__.py
}
python_execute_function install-scan-view
fi

diff --git a/sys-devel/clang/metadata.xml b/sys-devel/clang/metadata.xml
index 466ad97..8c2afb8 100644
--- a/sys-devel/clang/metadata.xml
+++ b/sys-devel/clang/metadata.xml
@@ -28,8 +28,8 @@ A simple and hackable code base
 A single unified parser for C, Objective C, C++, and Objective C++
 Conformance with C/C++/ObjC and their variants

-   Build all host targets (default: host 
only)
-   Install the Clang static 
analyzer
-   By default, clang++ searchs for 
C++ headers in a series of hardcoded paths. Enabling this flag will force it to 
use the active gcc profile ones
+   Build all host targets (default: host 
only)
+   Install the Clang static 
analyzer
+   By default, clang++ searchs for 
C++ headers in a series of hardcoded paths. Enabling this flag will force it to 
use the active gcc profile ones

 



[gentoo-commits] repo/gentoo:master commit in: app-arch/p7zip/, app-arch/p7zip/files/

2015-10-28 Thread Justin Lecher
commit: 2b72affac85585328eb48f5933ea13345aa733bf
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Oct 28 13:44:09 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Oct 28 13:44:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b72affa

app-arch/p7zip: Version Bump

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

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

 app-arch/p7zip/Manifest|   1 +
 .../p7zip/files/p7zip-15.09-CVE-2015-1038.patch| 284 +
 app-arch/p7zip/p7zip-15.09.ebuild  | 158 
 3 files changed, 443 insertions(+)

diff --git a/app-arch/p7zip/Manifest b/app-arch/p7zip/Manifest
index 44c4c61..9b0a188 100644
--- a/app-arch/p7zip/Manifest
+++ b/app-arch/p7zip/Manifest
@@ -1,2 +1,3 @@
+DIST p7zip_15.09_src_all.tar.bz2 4048481 SHA256 
8783acf747e210e00150f7311cc06c4cd8ecf7b0c27b4adf2194284cc49b4d6f SHA512 
4f020b13632ef7a85aa8a98586b59bef2dde3c1cbebdbd17e01f1d09b2e13a56ecfe82546d7efc677c45df67456a71cfdb67826b53ebea4c0fb4878f20c2f6dd
 WHIRLPOOL 
71d1cdb9b3b1208197b2c056670d057b00e9a5f80cf08b5914b5d25f2f6756d4cb53e5a000ec76b7b879f82302fca6d012a2cd397e8aa95ae4fc21fd620eb1ab
 DIST p7zip_9.20.1_src_all.tar.bz2 3835235 SHA256 
49557e7ffca08100f9fc687f4dfc5aea703ca207640c76d9dee7b66f03cb4782 SHA512 
7bb8a276aaefc4a83364e45633c48527de44c6b1205344f3356db570582f30f81d82a94938c99a7ad193587b584cc1c03219c28249de40018bdaee6c3b2a022a
 WHIRLPOOL 
cb20f37d3f796931a9b330728aa7148afe98bbf8a49bb91bfd80e4667c16416206b23bf34298e9ec37825e8b43f92a5710f0cea1f974296d5c17aa2c7b0931f3
 DIST p7zip_9.38.1_src_all.tar.bz2 3917925 SHA256 
fd5019109c9a1bf34ad3257d37a6853eae8151ff50345f0a3ffba7d8c5fdb995 SHA512 
f524ffae54e0d9563a509cc4b243e830d882a925e682eb2e15e2d19cb72c947fddecd72c8507d6c1538b997b240b0827046fc2fb4f5e3f7d49840257c92b9c04
 WHIRLPOOL 
6bad1cde056ab1e8db4079c0e649665fbc7e6b9a565261188bd0acaec6c583d8bd9425cb26d39315408d0180ba0be0069a77b704633cf05ec855220cb31f1c24

diff --git a/app-arch/p7zip/files/p7zip-15.09-CVE-2015-1038.patch 
b/app-arch/p7zip/files/p7zip-15.09-CVE-2015-1038.patch
new file mode 100644
index 000..dc81317
--- /dev/null
+++ b/app-arch/p7zip/files/p7zip-15.09-CVE-2015-1038.patch
@@ -0,0 +1,284 @@
+ CPP/7zip/UI/Agent/Agent.cpp   |  2 +-
+ CPP/7zip/UI/Client7z/Client7z.cpp | 19 ++-
+ CPP/7zip/UI/Common/ArchiveExtractCallback.cpp | 14 +++--
+ CPP/7zip/UI/Common/ArchiveExtractCallback.h   |  6 +++-
+ CPP/7zip/UI/Common/Extract.cpp|  2 +-
+ CPP/Windows/FileDir.cpp   | 45 +--
+ CPP/Windows/FileDir.h | 31 +-
+ 7 files changed, 109 insertions(+), 10 deletions(-)
+
+diff --git a/CPP/7zip/UI/Agent/Agent.cpp b/CPP/7zip/UI/Agent/Agent.cpp
+index 201e82c..b0b8316 100644
+--- a/CPP/7zip/UI/Agent/Agent.cpp
 b/CPP/7zip/UI/Agent/Agent.cpp
+@@ -1515,7 +1515,7 @@ STDMETHODIMP CAgentFolder::Extract(const UInt32 *indices,
+   HRESULT result = _agentSpec->GetArchive()->Extract(&realIndices.Front(),
+   realIndices.Size(), testMode, extractCallback);
+   if (result == S_OK)
+-result = extractCallbackSpec->SetDirsTimes();
++result = extractCallbackSpec->SetFinalAttribs();
+   return result;
+   COM_TRY_END
+ }
+diff --git a/CPP/7zip/UI/Client7z/Client7z.cpp 
b/CPP/7zip/UI/Client7z/Client7z.cpp
+index c6522fe..1919389 100644
+--- a/CPP/7zip/UI/Client7z/Client7z.cpp
 b/CPP/7zip/UI/Client7z/Client7z.cpp
+@@ -230,8 +230,11 @@ private:
+   COutFileStream *_outFileStreamSpec;
+   CMyComPtr _outFileStream;
+ 
++  CObjectVector _delayedSymLinks;
++
+ public:
+   void Init(IInArchive *archiveHandler, const FString &directoryPath);
++  HRESULT SetFinalAttribs();
+ 
+   UInt64 NumErrors;
+   bool PasswordIsDefined;
+@@ -449,11 +452,23 @@ STDMETHODIMP 
CArchiveExtractCallback::SetOperationResult(Int32 operationResult)
+   }
+   _outFileStream.Release();
+   if (_extractMode && _processedFileInfo.AttribDefined)
+-SetFileAttrib(_diskFilePath, _processedFileInfo.Attrib);
++SetFileAttrib(_diskFilePath, _processedFileInfo.Attrib, 
&_delayedSymLinks);
+   PrintNewLine();
+   return S_OK;
+ }
+ 
++HRESULT CArchiveExtractCallback::SetFinalAttribs()
++{
++  HRESULT result = S_OK;
++
++  for (int i = 0; i != _delayedSymLinks.Size(); ++i)
++if (!_delayedSymLinks[i].Create())
++  result = E_FAIL;
++
++  _delayedSymLinks.Clear();
++
++  return result;
++}
+ 
+ STDMETHODIMP CArchiveExtractCallback::CryptoGetTextPassword(BSTR *password)
+ {
+@@ -914,6 +929,8 @@ int MY_CDECL main(int numArgs, const char *args[])
+   // extractCallbackSpec->PasswordIsDefined = true;
+   // extractCallbackSpec->Password = L"1";
+   HRESULT result = archive->Extract(NULL, (UInt32)(Int32)(-1), false, 
extractCallback);
++  if (result == S_OK)
++  result = extractCallbackSpec->SetFinalAttribs();
+   if (r

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

2015-10-28 Thread Agostino Sarubbo
commit: c6fa081bb29558a0b0f910c6739f48c53fe7578b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Oct 28 14:22:16 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Oct 28 14:22:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6fa081b

dev-lang/php: amd64 stable wrt bug #562882

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

 dev-lang/php/php-5.5.30.ebuild | 2 +-
 dev-lang/php/php-5.6.14.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-5.5.30.ebuild b/dev-lang/php/php-5.5.30.ebuild
index dcf8362..1d4c398 100644
--- a/dev-lang/php/php-5.5.30.ebuild
+++ b/dev-lang/php/php-5.5.30.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {

diff --git a/dev-lang/php/php-5.6.14.ebuild b/dev-lang/php/php-5.6.14.ebuild
index dcf8362..1d4c398 100644
--- a/dev-lang/php/php-5.6.14.ebuild
+++ b/dev-lang/php/php-5.6.14.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



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

2015-10-28 Thread Agostino Sarubbo
commit: a908a95e7e950ea59c11f49d58a514b840049595
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Oct 28 14:22:42 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Oct 28 14:22:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a908a95e

dev-lang/php: x86 stable wrt bug #562882

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

 dev-lang/php/php-5.5.30.ebuild | 2 +-
 dev-lang/php/php-5.6.14.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-5.5.30.ebuild b/dev-lang/php/php-5.5.30.ebuild
index 1d4c398..374ed62 100644
--- a/dev-lang/php/php-5.5.30.ebuild
+++ b/dev-lang/php/php-5.5.30.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {

diff --git a/dev-lang/php/php-5.6.14.ebuild b/dev-lang/php/php-5.6.14.ebuild
index 1d4c398..374ed62 100644
--- a/dev-lang/php/php-5.6.14.ebuild
+++ b/dev-lang/php/php-5.6.14.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



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

2015-10-28 Thread Amy Winston
commit: a1243d0b81a0a940591d795faf84b9bc27d8e6e4
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Oct 28 15:03:38 2015 +
Commit: Amy Winston  gentoo  org>
CommitDate: Wed Oct 28 15:03:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1243d0b

sci-geosciences/grass: revbump to 7.0.1-r3

Fixes sandbox violation when build with USE=opencl, remove USE=gdal and
add hard dependency based on upstream requirements to resolve build
failure, tidy patches into to PATCHES array, ebuild submitted by wraeth.

Gentoo-bug: 563854
Gentoo-bug: 564188

Package-Manager: portage-2.2.20.1

 sci-geosciences/grass/grass-7.0.1-r1.ebuild| 263 -
 ...grass-7.0.1-r2.ebuild => grass-7.0.1-r3.ebuild} |  31 +--
 2 files changed, 17 insertions(+), 277 deletions(-)

diff --git a/sci-geosciences/grass/grass-7.0.1-r1.ebuild 
b/sci-geosciences/grass/grass-7.0.1-r1.ebuild
deleted file mode 100644
index 797d5cd..000
--- a/sci-geosciences/grass/grass-7.0.1-r1.ebuild
+++ /dev/null
@@ -1,263 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite(-)?"
-WANT_AUTOCONF="2.1"
-
-inherit eutils gnome2 multilib python-single-r1 versionator wxwidgets autotools
-
-MY_PM=${PN}$(get_version_component_range 1-2 ${PV})
-MY_PM=${MY_PM/.}
-MY_P=${P/_rc/RC}
-
-DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D 
vizualization"
-HOMEPAGE="http://grass.osgeo.org/";
-SRC_URI="http://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="7"
-KEYWORDS="~amd64 ~x86"
-IUSE="X blas cxx fftw gdal geos lapack mysql netcdf nls odbc opencl opengl 
openmp png postgres readline sqlite threads tiff truetype"
-
-RDEPEND="${PYTHON_DEPS}
-   >=app-admin/eselect-1.2
-   media-libs/libprojectm
-   sci-libs/proj
-   sci-libs/xdrfile
-   sys-libs/gdbm
-   sys-libs/ncurses:0=
-   sys-libs/zlib
-   fftw? ( sci-libs/fftw:3.0 )
-   gdal? ( sci-libs/gdal )
-   geos? ( sci-libs/geos )
-   blas? ( virtual/blas
-   sci-libs/cblas-reference )
-   lapack? ( virtual/lapack )
-   mysql? ( virtual/mysql )
-   netcdf? ( sci-libs/netcdf )
-   odbc? ( dev-db/unixODBC )
-   opencl? ( virtual/opencl )
-   opengl? ( virtual/opengl )
-   png? ( media-libs/libpng:0= )
-   postgres? ( >=dev-db/postgresql-8.4:= )
-   readline? ( sys-libs/readline:0= )
-   sqlite? ( dev-db/sqlite:3 )
-   tiff? ( media-libs/tiff:0= )
-   truetype? ( media-libs/freetype:2 )
-   X? (
-   >=dev-python/wxpython-2.8.10.1:2.8[cairo,opengl?]
-   x11-libs/cairo[X,opengl?]
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXaw
-   x11-libs/libXext
-   x11-libs/libXmu
-   x11-libs/libXp
-   x11-libs/libXpm
-   x11-libs/libXt
-   )"
-
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   sys-devel/flex
-   sys-devel/gettext
-   sys-devel/bison
-   X? (
-   dev-lang/swig
-   x11-proto/xextproto
-   x11-proto/xproto
-   )"
-
-S="${WORKDIR}/${MY_P}"
-
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   opengl? ( X )"
-
-pkg_setup() {
-   if use lapack; then
-   local mylapack
-   mylapack=$(eselect lapack show) || die
-   if [[ -z "${mylapack/.*reference.*/}" ]] && \
-   [[ -z "${mylapack/.*atlas.*/}" ]]; then
-   ewarn "You need to set lapack to atlas or reference. 
Do:"
-   ewarn "   eselect lapack set "
-   ewarn "where  is atlas, threaded-atlas or 
reference"
-   die "setup failed"
-   fi
-   fi
-
-   if use blas; then
-   local myblas
-   myblas=$(eselect blas show) || die
-   if [[ -z "${myblas/.*reference.*/}" ]] && \
-   [[ -z "${myblas/.*atlas.*/}" ]]; then
-   ewarn "You need to set blas to atlas or reference. Do:"
-   ewarn "   eselect blas set "
-   ewarn "where  is atlas, threaded-atlas or 
reference"
-   die "setup failed"
-   fi
-   fi
-
-   python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   # Fix undefined reference to errno in lib/raster/open.c
-   # see http://trac.osgeo.org/grass/changeset/66398
-   epatch "${FILESDIR}/${P}"-include-errno.patch
-
-   # Fix undeclared variable if OSG is disabled
-   epatch "${FILESDIR}/${P}"-declare-inespg.patch
-
-   # Bug #563490
-   epatch "${FILESDIR}/${PV}"-sec-format.patch
-
-   # Fix unversioned python calls
-   local pyver=${EPYTHON/python/}
-   sed -e "s:GRAS

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

2015-10-28 Thread Michael Palimaka
commit: d510dea86414cd02542f4f4f08fa539a08fcf0d7
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Oct 28 15:42:36 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Oct 28 15:43:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d510dea8

app-text/kchmviewer: version bump

Gentoo-bug: 538470

Package-Manager: portage-2.2.20.1

 app-text/kchmviewer/Manifest  |  1 +
 app-text/kchmviewer/kchmviewer-7.3.ebuild | 69 +++
 2 files changed, 70 insertions(+)

diff --git a/app-text/kchmviewer/Manifest b/app-text/kchmviewer/Manifest
index 915f49e..942455e 100644
--- a/app-text/kchmviewer/Manifest
+++ b/app-text/kchmviewer/Manifest
@@ -1,3 +1,4 @@
 DIST kchmviewer-6.0.tar.gz 310642 SHA256 
81c856434a86977039c36cb10f2427cc8cb1ea29a778f24fff2285d49c717979 SHA512 
029335e4acea711f31c7d17751292c6b755504b97b73864b5d25a7a8a2853c0499658056bad9f9c0b6324f61c024feb5a943dc670fdccb37fcdee1346d7334d9
 WHIRLPOOL 
2b368654d50d0e553d116ca52f3b1ebe3d709a6b52933d54a54d2360c51356628d58c3cc789e32da54a5897b1cbee185380dbcbe0b6824146ec1ad39dc5c9280
 DIST kchmviewer-6.1.tar.gz 346587 SHA256 
f673c3aaca735d799d14b9f6f1b302e9bb77d5c0a0b601b4b5e0beed1c99fe78 SHA512 
aabcf98510a5a0cd38f3937e14c86e15b2514cf118e7d17e96a3a4779bb7c0985248f352844a021a66d482cfecdc3c405c816f71a7bec02d1765f8e4d7510126
 WHIRLPOOL 
1585726cdf4295a49c16733ee9a93d97d6087977dd8e151681bb73d19d34052c9a9423e3488e4152b7736ce8e9bf3cf02be26554ea6fffe2ccaaef9297f593a7
 DIST kchmviewer-7.1.tar.gz 340934 SHA256 
a410d0a343d8a871cc860e2983079981806eb70cbf0c970fa1bcf5689821144f SHA512 
6e98441358eab74d80adee437b1ad24dbf3e5b5a6ae4c5d7744537a169a6a64303b8e2b4bf1e636c0f6d955bdd1a59b7f1db2d45fc6dfecb6bb3a31088abce61
 WHIRLPOOL 
6e5bf2639057aa5f55ce25e9d457ca267b2ab015b5553e9edbc7bbe2997bc1d6ebcdadc656b06b15ada115eb196104a3770fdd68234b47bb3f352d3d6a9b23b3
+DIST kchmviewer-7.3.tar.gz 344483 SHA256 
7cb805c9a836b7622bbea1d5df8873fb711979285abb21bccf095f25cf3f6007 SHA512 
b4861e157f850413051df70dbdf90c7bcc9eebd58a0e6a4990a0eab232ec02ace44c4fe4367f74d23bbc0fab32e61e149b474db43efb45ef08f42af97e6af093
 WHIRLPOOL 
3705f565f1b5333471b75b5e48e9b10cb795b195b4d2cc44b7bd9905743082264993ed25c7fc4618dc8e5bc13f41abf1b3a8a4783f54adf98b6512f411735ef9

diff --git a/app-text/kchmviewer/kchmviewer-7.3.ebuild 
b/app-text/kchmviewer/kchmviewer-7.3.ebuild
new file mode 100644
index 000..d3a3ee1
--- /dev/null
+++ b/app-text/kchmviewer/kchmviewer-7.3.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils fdo-mime qmake-utils
+
+DESCRIPTION="A feature rich chm file viewer, based on Qt"
+HOMEPAGE="http://www.kchmviewer.net/";
+SRC_URI="mirror://sourceforge/kchmviewer/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug qt5"
+
+RDEPEND="
+   dev-libs/chmlib
+   dev-libs/libzip
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   )
+   !qt5? (
+   dev-qt/qtcore:4
+   dev-qt/qtdbus:4
+   dev-qt/qtgui:4
+   dev-qt/qtwebkit:4
+   )
+
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   # fix parallel build wrt bug #527192
+   echo "src.depends = lib" >> ${PN}.pro || die
+}
+
+src_configure() {
+   if use qt5; then
+   eqmake5
+   else
+   eqmake4
+   fi
+}
+
+src_install() {
+   dodoc ChangeLog DBUS-bindings FAQ README
+   doicon packages/kchmviewer.png
+
+   dobin bin/kchmviewer
+   domenu packages/kchmviewer.desktop
+
+}
+
+pkg_postinst() {
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   fdo-mime_desktop_database_update
+}



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

2015-10-28 Thread Julian Ospald
commit: 6726730f1297aaad5ec7d98cde271c9c5d491a94
Author: Julian Ospald  gentoo  org>
AuthorDate: Wed Oct 28 15:44:35 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Wed Oct 28 15:44:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6726730f

www-servers/hiawatha: version bump to 9.15

Fixes: 558532

 www-servers/hiawatha/Manifest|   1 +
 www-servers/hiawatha/files/hiawatha.initd-r1 |  26 +
 www-servers/hiawatha/hiawatha-9.15.ebuild| 145 +++
 www-servers/hiawatha/metadata.xml|  13 ++-
 4 files changed, 180 insertions(+), 5 deletions(-)

diff --git a/www-servers/hiawatha/Manifest b/www-servers/hiawatha/Manifest
index d351f96..9a62e6a 100644
--- a/www-servers/hiawatha/Manifest
+++ b/www-servers/hiawatha/Manifest
@@ -1,2 +1,3 @@
 DIST hiawatha-9.14.tar.gz 891930 SHA256 
79c92587cd86a0461d952c99036f5615dacdcaccabe0a9a29359e6044d809bfa SHA512 
66ad77c132d34daa5eb597ce67d7b26581c59534e5cf83dd65f78567a9a1798030cd42fef2d612bd1935243db979a2ef1df873f01b0d0a009395ef3da1dca6e6
 WHIRLPOOL 
8dbeb2c33e9111a27b76f3e5e307872314e85c481a600c39a1e02e7f9e08e1cc0d64f79838dad92a4a5a555cb86334487dd247efb56f0ef9c15a7735da27ddae
+DIST hiawatha-9.15.tar.gz 869922 SHA256 
e9252133a1114095d1a9a89144b88828ee3b9754f435bd88270f7bf444dd9421 SHA512 
e5f0459475863c7cb2d15bdf2a9712f13c96ac450f349fd89e60fd600aad9010f25182aa6353a3014069a9798544a56ef79695918613946b63fecd3806b1982b
 WHIRLPOOL 
80840072765430b05ecaf1ec631d3f1981c6f420edc18b4bcc7957f53f28ed2800170bbcec943c287da2968e6ac769514843fc54aa2a927d7d451057ed76d4d3
 DIST hiawatha-9.8.tar.gz 888977 SHA256 
6fe9bd408361bc07b47fe6eeaf98d6b644e1cd258b3470da3e70aba510e83b64 SHA512 
f55b6065e0dd1dab11ccbbb44e981944aab5b542077fc2b4a03ec8c055be80bedb7b639fe9c52ccf0fc279648b9f4bfc0cbfa018b195b155907810bdfc4ec51a
 WHIRLPOOL 
342c19df23dbe4eef7056f2424d53badede5a8dcf8bb713e7d3892f21e1061ae5e1a0c985f1fc824b10f25eb9fcc9cf0cbf8d384240bf814df4f9dca45dd96f2

diff --git a/www-servers/hiawatha/files/hiawatha.initd-r1 
b/www-servers/hiawatha/files/hiawatha.initd-r1
new file mode 100644
index 000..5635aba
--- /dev/null
+++ b/www-servers/hiawatha/files/hiawatha.initd-r1
@@ -0,0 +1,26 @@
+#!/sbin/runscript
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+depend() {
+   need net
+}
+
+start() {
+   ebegin "Starting ${SVCNAME}"
+   start-stop-daemon \
+   --start \
+   --exec "/usr/sbin/hiawatha" \
+   --pidfile "@HIAWATHA_PID_DIR@/hiawatha.pid"
+   eend $?
+}
+
+stop() {
+   ebegin "Stopping ${SVCNAME}"
+   start-stop-daemon \
+   --stop \
+   --exec "/usr/sbin/hiawatha" \
+   --pidfile "@HIAWATHA_PID_DIR@/hiawatha.pid"
+   eend $?
+}

diff --git a/www-servers/hiawatha/hiawatha-9.15.ebuild 
b/www-servers/hiawatha/hiawatha-9.15.ebuild
new file mode 100644
index 000..3165070
--- /dev/null
+++ b/www-servers/hiawatha/hiawatha-9.15.ebuild
@@ -0,0 +1,145 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+CMAKE_MIN_VERSION="2.8.2"
+
+inherit cmake-utils eutils systemd user
+
+DESCRIPTION="Advanced and secure webserver"
+HOMEPAGE="http://www.hiawatha-webserver.org";
+SRC_URI="http://www.hiawatha-webserver.org/files/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cache ipv6 monitor +rewrite +rproxy +ssl tomahawk +xslt"
+
+RDEPEND="
+   sys-libs/zlib
+   ssl? ( >=net-libs/mbedtls-2.0[threads] )
+   xslt? ( dev-libs/libxslt
+   dev-libs/libxml2 )"
+DEPEND="${RDEPEND}"
+PDEPEND="monitor? ( www-apps/hiawatha-monitor )"
+
+# set these in the environment of your PM if you want to use different values
+HIAWATHA_CONFIG_DIR="${HIAWATHA_CONFIG_DIR:-/etc/hiawatha}"
+HIAWATHA_LOG_DIR="${HIAWATHA_LOG_DIR:-/var/log/hiawatha}"
+HIAWATHA_PID_DIR="${HIAWATHA_PID_DIR:-/var/run}"
+HIAWATHA_WEBROOT_DIR="${HIAWATHA_WEBROOT_DIR:-/var/www/hiawatha}"
+HIAWATHA_WORK_DIR="${HIAWATHA_WORK_DIR:-/var/lib/hiawatha}"
+HIAWATHA_USER="${HIAWATHA_USER:-hiawatha}"
+HIAWATHA_GROUP="${HIAWATHA_GROUP:-hiawatha}"
+
+safe_sed() {
+   local replace_of=$1
+   local replace_with=$2
+   local file=$3
+   # optional
+   local outfile=$4
+
+   grep -E "${replace_of}" "${file}" 1>/dev/null \
+   || die "\"${replace_of}\" not found in ${file}!"
+
+   if [[ -n ${outfile} ]] ; then
+   einfo "Sedding ${file} into ${outfile}"
+   sed -r \
+   -e "s|${replace_of}|${replace_with}|" \
+   "${file}" > ${outfile} || die "sed on ${file} to 
${outfile} failed!"
+   else
+   einfo "Sedding ${file} in-place"
+   sed -r -i \
+   -e "s|${replace_of}|${replace_with}|" \
+   "${file}" || die "

[gentoo-commits] repo/gentoo:master commit in: www-servers/hiawatha/

2015-10-28 Thread Julian Ospald
commit: 37b558603ef1bf50fc6bbcf9edeff6c3bde6a6cf
Author: Julian Ospald  gentoo  org>
AuthorDate: Wed Oct 28 15:40:14 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Wed Oct 28 15:44:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b55860

www-servers/hiawatha: add myself as maintainer

 www-servers/hiawatha/metadata.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www-servers/hiawatha/metadata.xml 
b/www-servers/hiawatha/metadata.xml
index f9fc424..2cc59f2 100644
--- a/www-servers/hiawatha/metadata.xml
+++ b/www-servers/hiawatha/metadata.xml
@@ -2,7 +2,8 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 

-   maintainer-nee...@gentoo.org
+   hasuf...@gentoo.org
+   Julian Ospald


Enable caching of content.



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

2015-10-28 Thread Patrice Clement
commit: 3ca34bf37d4bb5adeacb8d6d99e9216e52b71d6f
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:32:45 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:56:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca34bf3

dev-java/jsr181: Clean up old.

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

 dev-java/jsr181/Manifest |  1 -
 dev-java/jsr181/files/build.xml  | 25 
 dev-java/jsr181/jsr181-1.0-r1.ebuild | 38 
 dev-java/jsr181/jsr181-1.0.ebuild| 36 --
 4 files changed, 100 deletions(-)

diff --git a/dev-java/jsr181/Manifest b/dev-java/jsr181/Manifest
index 3e7631d..6039b18 100644
--- a/dev-java/jsr181/Manifest
+++ b/dev-java/jsr181/Manifest
@@ -1,2 +1 @@
-DIST JAXWS2.0.1m1_source_20060817.jar 8993405 SHA256 
9725cfb91cecff833055d7af45c3413ca9d1a818a4cfdb86211ed82f383f3865 SHA512 
55454a8270310b9778c69aad8b8ace45dc4ba3059b33ac48dcfd5d771fade2d6e4c46a5a65a522ae5cca0438f159ba84c90d8e74d54731a9c6c0caa9d84a0314
 WHIRLPOOL 
fe0727935c592b538b7042808fffa987ea5ae47554367ea0cfc91f65d765bd234713aaa142b2297988d74eec01fce9cd4bedceb0fb7b0068eb38084a1d5f5ba7
 DIST jsr181-api-1.0-MR1-sources.jar 3929 SHA256 
abb37e9c15043bde98ad27bae9b955bb43ccf5c27c1a0f88d57d2bb8bc509b14 SHA512 
383806428ebe80e94af2c80a3d383f24e934cde57d5628e60b2e2335052ac037ad45f1e8c265c579cf60ed7383b15fd8f2e8dda6b08d8edf1d171b9f0ef0080e
 WHIRLPOOL 
0e611e08d8aa78555fecefd7a6e56a488e555db0dfdc62c1ff1e96f643f8e5b67f62142d1935190ac7a23aa7555a2ce389bd459f0d482cbba03bdedf365408e2

diff --git a/dev-java/jsr181/files/build.xml b/dev-java/jsr181/files/build.xml
deleted file mode 100644
index cfc6aab..000
--- a/dev-java/jsr181/files/build.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-  
-
-
-  
-  
-
-  
-
-  
-
-  
-  
-
-  
-
-  
-  
-
-
-  
-
-  
-

diff --git a/dev-java/jsr181/jsr181-1.0-r1.ebuild 
b/dev-java/jsr181/jsr181-1.0-r1.ebuild
deleted file mode 100644
index 2dce026..000
--- a/dev-java/jsr181/jsr181-1.0-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit java-pkg-2
-
-DESCRIPTION="JSR 181 API classes"
-HOMEPAGE="http://jax-ws.dev.java.net/";
-DATE="20060817"
-MY_P="JAXWS2.0.1m1_source_${DATE}.jar"
-SRC_URI="https://jax-ws.dev.java.net/jax-ws-201-m1/${MY_P}";
-
-LICENSE="CDDL"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.6"
-DEPEND=">=virtual/jdk-1.6
-   app-arch/unzip
-   ${RDEPEND}"
-
-S="${WORKDIR}/jaxws-si"
-
-src_unpack() {
-   printf '%s\n' "A" | $(java-config --java) -jar "${DISTDIR}/${A}" 
-console > /dev/null || die "unpack failed"
-   unpack ./jaxws-src.zip || die "unzip failed"
-}
-
-src_compile() {
-   :
-}
-
-src_install() {
-   java-pkg_newjar lib/jsr181-api.jar
-}

diff --git a/dev-java/jsr181/jsr181-1.0.ebuild 
b/dev-java/jsr181/jsr181-1.0.ebuild
deleted file mode 100644
index f18794b..000
--- a/dev-java/jsr181/jsr181-1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit java-pkg-2
-
-DESCRIPTION="JSR 181 API classes"
-HOMEPAGE="http://jax-ws.dev.java.net/";
-DATE="20060817"
-MY_P="JAXWS2.0.1m1_source_${DATE}.jar"
-SRC_URI="https://jax-ws.dev.java.net/jax-ws-201-m1/${MY_P}";
-
-LICENSE="CDDL"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.6"
-DEPEND=">=virtual/jdk-1.6
-   app-arch/unzip
-   ${RDEPEND}"
-
-S="${WORKDIR}/jaxws-si"
-
-src_unpack() {
-   printf '%s\n' "A" | $(java-config --java) -jar "${DISTDIR}/${A}" 
-console > /dev/null || die "unpack failed"
-   unpack ./jaxws-src.zip || die "unzip failed"
-}
-
-src_compile() {
-   :
-}
-
-src_install() {
-   java-pkg_newjar lib/jsr181-api.jar
-}



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

2015-10-28 Thread Patrice Clement
commit: ab0ce73f1e810eaf957a4e399dbb7ddcaf5cf263
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:55:28 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:57:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab0ce73f

dev-java/lzmajio: Clean up old.

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

 dev-java/lzmajio/lzmajio-0.95.ebuild | 38 
 1 file changed, 38 deletions(-)

diff --git a/dev-java/lzmajio/lzmajio-0.95.ebuild 
b/dev-java/lzmajio/lzmajio-0.95.ebuild
deleted file mode 100644
index f7b6f15..000
--- a/dev-java/lzmajio/lzmajio-0.95.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2012 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="Implementations of LzmaInputStream/LzmaOutputStream interacting 
with underlying LZMA en-/decoders"
-HOMEPAGE="http://contrapunctus.net/league/haques/lzmajio/";
-SRC_URI="http://comsci.liu.edu/~league/dist/${PN}/${P}.tar.gz";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE=""
-
-COMMON_DEP=">=dev-java/lzma-4.61"
-
-RDEPEND=">=virtual/jre-1.5
-   ${COMMON_DEP}"
-DEPEND=">=virtual/jdk-1.5
-   app-arch/unzip
-   ${COMMON_DEP}"
-
-EANT_GENTOO_CLASSPATH="lzma"
-
-src_prepare() {
-   java-pkg_jar-from lzma
-}
-
-src_install() {
-   java-pkg_dojar ${PN}.jar
-   use doc && java-pkg_dojavadoc docs
-   use source && java-pkg_dosrc net
-}



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

2015-10-28 Thread Patrice Clement
commit: 8bfb09b8b67ffb211ff699e571519a3236e2cd65
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:38:14 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:56:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bfb09b8

dev-java/jsr311-api: Clean up old.

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

 dev-java/jsr311-api/Manifest   |   1 -
 dev-java/jsr311-api/files/jsr311-api-1.0-build.xml |  26 ---
 dev-java/jsr311-api/files/jsr311-api-1.0-manifest  |  17 --
 .../files/jsr311-api-1.0-maven-build.xml   | 183 -
 dev-java/jsr311-api/files/jsr311-api-1.1-build.xml |  26 ---
 dev-java/jsr311-api/files/jsr311-api-1.1-manifest  |  17 --
 .../files/jsr311-api-1.1-maven-build.xml   | 183 -
 dev-java/jsr311-api/jsr311-api-1.1.ebuild  |  61 ---
 8 files changed, 514 deletions(-)

diff --git a/dev-java/jsr311-api/Manifest b/dev-java/jsr311-api/Manifest
index 796db45..94f9512 100644
--- a/dev-java/jsr311-api/Manifest
+++ b/dev-java/jsr311-api/Manifest
@@ -1,2 +1 @@
-DIST jsr311-api-1.1-src.tar.bz2 84225 SHA256 
c048e69dae1282e345de8cc169d3ead0a2bde9054b385b8b15f24074d4c779ef SHA512 
d7d07b1587914f1b060fb780eb96aae98d4d6d78c6f40822bc5e60e1eb2d0956fe048c7dc3f21a8e40160d67ca208eb2e731ae72215e52a7c545eac79ca4ba76
 WHIRLPOOL 
4cc66526547dbcefa6f1a300c8d16e6ae3e95423a23d2452fc4fbb0a449af84bff6fb739d167e5f0718bfcfa43d58d379bf24e4a3ed85ead81ff0779105def4e
 DIST jsr311-api-1.1.1-sources.jar 70022 SHA256 
99227bada18620d29406be240e7c749da68e646ce1d2a61d6f320863f05a30da SHA512 
4f32eb290aa312794ae91b3b4e2baa72efbcf2036962c7223320f7f7e7cd9b5de10c4acb1c92277df946b12710e0699bc1d3ddd7459903c43107437c21cb5542
 WHIRLPOOL 
022dbf28ddbc7df4a4a020b710c3b64a9f639acc388e3d6370cd426eadfc7aaf1c5ee731c15cd20d75c80829e8e5423714df6007c4cd7408111c8d48c52d2e05

diff --git a/dev-java/jsr311-api/files/jsr311-api-1.0-build.xml 
b/dev-java/jsr311-api/files/jsr311-api-1.0-build.xml
deleted file mode 100644
index 00edede..000
--- a/dev-java/jsr311-api/files/jsr311-api-1.0-build.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  
-  
-  
-  
-  
-
-  
-
-  
-
-

diff --git a/dev-java/jsr311-api/files/jsr311-api-1.0-manifest 
b/dev-java/jsr311-api/files/jsr311-api-1.0-manifest
deleted file mode 100644
index 9c4e64d..000
--- a/dev-java/jsr311-api/files/jsr311-api-1.0-manifest
+++ /dev/null
@@ -1,17 +0,0 @@
-Manifest-Version: 1.0
-Extension-Name: javax.ws.rs
-Specification-Title: JAX-RS: Java API for RESTful Web Services
-Specification-Vendor: Sun Microsystems, Inc.
-Specification-Version: 1.0
-Bundle-DocURL: http://www.sun.com/
-Bundle-License: http://www.opensource.org/licenses/cddl1.php
-Bundle-ManifestVersion: 2
-Bundle-Name: jsr311-api
-Bundle-SymbolicName: javax.ws.rs.jsr311-api
-Bundle-Vendor: Sun Microsystems, Inc
-Bundle-Version: 1.0
-Import-Package: javax.ws.rs;version="1.0",javax.ws.rs.core;version="1.
- 0",javax.ws.rs.ext;version="1.0"
-Export-Package: javax.ws.rs;uses:="javax.ws.rs.core";version="1.0",jav
- ax.ws.rs.ext;uses:="javax.ws.rs,javax.ws.rs.core";version="1.0",javax
- .ws.rs.core;uses:="javax.ws.rs,javax.ws.rs.ext";version="1.0"

diff --git a/dev-java/jsr311-api/files/jsr311-api-1.0-maven-build.xml 
b/dev-java/jsr311-api/files/jsr311-api-1.0-maven-build.xml
deleted file mode 100644
index d8761bd..000
--- a/dev-java/jsr311-api/files/jsr311-api-1.0-maven-build.xml
+++ /dev/null
@@ -1,183 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-  
-
-  
-  
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-
-  
-
-  
-  
-
-  
-
-  
-  
-  
-
-  
-
-
-  
-
-  
-  
-
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-
-  
-  
-  
-  
-
-
-
-  
-  
-
-  
-  
-  
-  
-
-  
-  
-
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-  
-
-  
-  
-  
-
-  
-
-

diff --git a/dev-java/jsr311-api/files/jsr311-api-1.1-build.xml 
b/dev-java/jsr311-api/files/jsr311-api-1.1-build.xml
deleted file mode 100644
index 00edede..000
--- a/dev-java/jsr311-api/files/jsr311-api-1.1-build.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-  
-  
-  
-
-  
-  
-  
-  
-  
-
-  
-
-  
-
-

diff --git a/dev-java/jsr311-api/files/jsr311-api-1.1-manifest 
b/dev-java/jsr311-api/files/jsr311-api-1.1-manifest
deleted file mode 100644
index 9318415..000
--- a/dev-java/jsr311-api/files/jsr311-api-1.1-manifest
+++ /dev/null
@@ -1,17 +0,0 @@
-Manifest-Version: 1.0
-Extension-Name: javax.ws.rs
-Specification-Title: JAX-RS: Java API for RESTful Web Services
-Specification-Vendor: Sun Microsystems, Inc

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

2015-10-28 Thread Patrice Clement
commit: 5b193c23360561f3710ca504b0c36d6708750a10
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:37:44 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:56:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b193c23

dev-java/jsr311-api: Stable for amd64. Stable for ppc+ppc64+x86 using the 
ALLARCHES policy.

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

 dev-java/jsr311-api/jsr311-api-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild 
b/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild
index 688391e..d3f0dd2 100644
--- a/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild
+++ b/dev-java/jsr311-api/jsr311-api-1.1.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://repo1.maven.org/maven2/javax/ws/rs/${PN}/${PV}/${P}-sources.jar";
 
 LICENSE="CDDL"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=virtual/jre-1.6"



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

2015-10-28 Thread Patrice Clement
commit: 8edd7c83dfcadbe9caa644f297e76c3dcba1f2d8
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:32:16 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:56:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8edd7c83

dev-java/jsr181: Stable for amd64. Stable for ppc+ppc64+x86 using the ALLARCHES 
policy. Add doc+source USE flag.

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

 dev-java/jsr181/jsr181-1.0-r2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-java/jsr181/jsr181-1.0-r2.ebuild 
b/dev-java/jsr181/jsr181-1.0-r2.ebuild
index c0cb7da..4e26906 100644
--- a/dev-java/jsr181/jsr181-1.0-r2.ebuild
+++ b/dev-java/jsr181/jsr181-1.0-r2.ebuild
@@ -3,6 +3,7 @@
 # $Id$
 
 EAPI=5
+JAVA_PKG_IUSE="source doc"
 
 inherit java-pkg-2 java-pkg-simple
 
@@ -16,7 +17,7 @@ 
SRC_URI="http://central.maven.org/maven2/javax/jws/${MY_PN}/${MY_PV}/${MY_P}-sou
 
 LICENSE="CDDL"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=virtual/jre-1.6"



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

2015-10-28 Thread Patrice Clement
commit: 08611cb847c747256de2dd8248dc99c2c4194a85
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:55:08 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:57:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08611cb8

dev-java/lzmajio: Stable for amd64. Stable for x86 using the ALLARCHES policy.

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

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

diff --git a/dev-java/lzmajio/lzmajio-0.95-r1.ebuild 
b/dev-java/lzmajio/lzmajio-0.95-r1.ebuild
index 7e312ef..5072a7d 100644
--- a/dev-java/lzmajio/lzmajio-0.95-r1.ebuild
+++ b/dev-java/lzmajio/lzmajio-0.95-r1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://contrapunctus.net/league/haques/lzmajio/";
 SRC_URI="http://comsci.liu.edu/~league/dist/${PN}/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE=""
 



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

2015-10-28 Thread Patrice Clement
commit: 44b80e8179c635969a1e07f4120df24c2ec59d9f
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 15:52:54 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 15:56:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b80e81

dev-java/jsr93: Get rid of the cruft and make use of java-pkg-simple eclass. 
Keyword for ppc64.

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

 dev-java/jsr93/Manifest|  1 +
 dev-java/jsr93/jsr93-1.0-r2.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-java/jsr93/Manifest b/dev-java/jsr93/Manifest
index 73522cf..d80c1e6 100644
--- a/dev-java/jsr93/Manifest
+++ b/dev-java/jsr93/Manifest
@@ -1 +1,2 @@
 DIST jaxr-1_0-fr-spec.zip 1443243 SHA256 
b90e753fa51c6b0ac4cbcffafe73bcdc6a139804fe562916d3604d49e5fe3c58 SHA512 
a60f2da27defd5ddecfabf1fb00464c111b4e8264d3bd26f91b9c1195022eecf7e8aeaa904aa8f7cb6f0aa35a713b45d2b7e5fdaa474c2e29341ad64c04ed5e2
 WHIRLPOOL 
9460536353e73f88298de207e4bba3f13d88a63714ac34be397c60f8973667cd8b68626a987bb35e7594be0ea10d643e438e5aec37bea8624b6e96c340f0fe5a
+DIST jaxr-api-1.0-sources.jar 45175 SHA256 
c3ab05d8218c623746d21d291df8f4dbe5ef6db6ee0c062fb2cfba059d048ccf SHA512 
efba6dd09cb9ff796019c6b750f44a5858cbde34b4fb93e74f3bed43178122a8591b1ae75996ed645ecde02862142b3d9f229cdc8059f9e5e95fedbdabae0d44
 WHIRLPOOL 
66e3185f253dc9a4c2bc86370f06351effd3c6df026845176253f9ffd3fd0ced06cc4c84e05151fd3f18da9cb2ef2a1723279b5af9f147ae2fa24bd2142c54b2

diff --git a/dev-java/jsr93/jsr93-1.0-r2.ebuild 
b/dev-java/jsr93/jsr93-1.0-r2.ebuild
new file mode 100644
index 000..84d1643
--- /dev/null
+++ b/dev-java/jsr93/jsr93-1.0-r2.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=5
+JAVA_PKG_IUSE="source doc"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_PN="jaxr-api"
+MY_P="${MY_PN}-${PV}"
+DESCRIPTION="Java API for XML Registries (JAXR) - API"
+HOMEPAGE="https://jcp.org/ja/jsr/detail?id=93";
+SRC_URI="http://repo1.maven.org/maven2/org/apache/ws/scout/${MY_PN}/${PV}/${MY_P}-sources.jar";
+LICENSE="sun-jsr93"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+RDEPEND=">=virtual/jre-1.6"
+DEPEND=">=virtual/jdk-1.6"



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

2015-10-28 Thread Michael Palimaka
commit: 4cd5021a7dc48059df274bebb3eaf16202ce4a06
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Oct 28 16:12:44 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Oct 28 16:13:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cd5021a

profiles: stable mask media-video/vlc[kde] on arm

Gentoo-bug: 564136

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

diff --git a/profiles/arch/arm/package.use.stable.mask 
b/profiles/arch/arm/package.use.stable.mask
index 8fcdbd2..ce7f7f1 100644
--- a/profiles/arch/arm/package.use.stable.mask
+++ b/profiles/arch/arm/package.use.stable.mask
@@ -2,6 +2,10 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Michael Palimaka  (28 Oct 2015)
+# KDE is not stable on arm
+media-video/vlc kde
+
 # Pacho Ramos  (03 Oct 2015)
 # Missing stable, bug #529462
 media-gfx/graphviz java



[gentoo-commits] proj/catalyst:master commit in: catalyst/base/

2015-10-28 Thread Mike Frysinger
commit: 06fd1a0cd1a957c14343d9c0440dd606a883ee12
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sun Oct 11 18:23:26 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Oct 28 16:49:56 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=06fd1a0c

stagebase: robustify portage_confdir setup

When setting up the portage_confdir, we should make sure it exists,
and that we rsync it properly (regardless of the settings given by
the user).

Bugzilla: https://bugs.gentoo.org/538652
Reported-by: Joshua Kinard  gentoo.org>

 catalyst/base/stagebase.py | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 3c24dbd..6094109 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -893,8 +893,12 @@ class StageBase(TargetBase, ClearBase, GenBase):
else:
if "portage_confdir" in self.settings:
log.info('Configuring %s...', 
self.settings['port_conf'])
-   cmd("rsync -a " + 
self.settings["portage_confdir"] + "/ " +
-   self.settings["chroot_path"] + 
self.settings["port_conf"],
+   dest = normpath(self.settings['chroot_path'] + 
'/' + self.settings['port_conf'])
+   ensure_dirs(dest)
+   # The trailing slashes on both paths are 
important:
+   # We want to make sure rsync copies the dirs 
into each
+   # other and not as subdirs.
+   cmd('rsync -a %s/ %s/' % 
(self.settings['portage_confdir'], dest),
"Error copying %s" % 
self.settings["port_conf"],
env=self.env)
self.resume.enable("setup_confdir")



[gentoo-commits] proj/catalyst:master commit in: doc/

2015-10-28 Thread Mike Frysinger
commit: 6a38e62e143df9bda84da1ce8a54948c57e833fa
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Oct 12 00:55:05 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Oct 28 16:49:56 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6a38e62e

make_target_table: rewrite for py3/stability

 doc/make_target_table.py | 32 ++--
 1 file changed, 18 insertions(+), 14 deletions(-)

diff --git a/doc/make_target_table.py b/doc/make_target_table.py
index f127c37..9eb072b 100755
--- a/doc/make_target_table.py
+++ b/doc/make_target_table.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/python
 # Copyright (C) 2012 W. Trevor King 
 # Copyright (C) 2012 Sebastian Pipping 
 # Copyright (C) 2013 Brian dolbec 
@@ -10,34 +10,38 @@
 
 from __future__ import print_function
 
-import sys as _sys
-
 import glob
-import re
+import locale
+import os
+import sys
 
 
-def key_netboot_before_netboot2((target_name, _module)):
-   return target_name + '1'
+def main(_argv):
+   source_root = 
os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
 
+   # Force consistent sorting order.
+   locale.setlocale(locale.LC_COLLATE, 'C')
 
-if __name__ == '__main__':
-   extractor = re.compile('^catalyst/targets/(([^ ]+)).py$')
targets = list()
-   for filename in sorted(glob.glob('catalyst/targets/*.py')):
+   for filename in glob.glob(os.path.join(source_root, 
'catalyst/targets/*.py')):
if '__init__' in filename:
continue
 
-   match = extractor.match(filename)
-   target_name = match.group(2).replace('_', '-')
-   module_name = 'catalyst.targets.' + match.group(1)
+   name = os.path.basename(filename)[0:-3]
+   target_name = name.replace('_', '-')
+   module_name = 'catalyst.targets.' + name
 
__import__(module_name)
-   module = _sys.modules[module_name]
+   module = sys.modules[module_name]
 
targets.append((target_name, module))
 
-   for target_name, module in sorted(targets, 
key=key_netboot_before_netboot2):
+   for target_name, module in sorted(targets, key=lambda x: x[0]):
print('`%s`;;' % target_name)
# Replace blank lines with `+` (asciidoc list item continuation)
print(module.__doc__.strip().replace('\n\n', '\n+\n'))
print('')
+
+
+if __name__ == '__main__':
+   main(sys.argv[1:])



[gentoo-commits] proj/catalyst:master commit in: /, doc/, catalyst/

2015-10-28 Thread Mike Frysinger
commit: b3cfe6e0c7754a9e17b681581b2a317b7861b486
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Oct 12 03:59:28 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Oct 28 16:49:56 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b3cfe6e0

lint: fix redefined-outer-name warnings

The doc module just needs a main func to hold all the variables
instead of coding it all in global scope.

 .pylintrc  | 3 +--
 catalyst/log.py| 4 
 doc/make_subarch_table_guidexml.py | 9 +++--
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/.pylintrc b/.pylintrc
index 2a03f23..e657daf 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -32,10 +32,9 @@ load-plugins=
 # bad-continuation -- might be hard with tab indentation policy
 # invalid-name -- need to manage constants better
 # line-too-long -- figure out a length and stick to it
-# redefined-outer-name -- clean up code to not do this
 # super-init-not-called -- fix the classes __init__ structure
 # no-init -- update classes w/missing __init__ functions
-disable=missing-docstring, too-many-lines, too-many-branches, 
too-many-statements, too-few-public-methods, too-many-instance-attributes, 
too-many-public-methods, too-many-locals, too-many-arguments, locally-enabled, 
locally-disabled, fixme, broad-except, bad-whitespace, bad-continuation, 
invalid-name, line-too-long, redefined-outer-name, super-init-not-called, 
no-init
+disable=missing-docstring, too-many-lines, too-many-branches, 
too-many-statements, too-few-public-methods, too-many-instance-attributes, 
too-many-public-methods, too-many-locals, too-many-arguments, locally-enabled, 
locally-disabled, fixme, broad-except, bad-whitespace, bad-continuation, 
invalid-name, line-too-long, super-init-not-called, no-init
 
 
 [REPORTS]

diff --git a/catalyst/log.py b/catalyst/log.py
index 5938199..d640dec 100644
--- a/catalyst/log.py
+++ b/catalyst/log.py
@@ -98,6 +98,10 @@ class CatalystFormatter(logging.Formatter):
return msg
 
 
+# We define |debug| in global scope so people can call log.debug(), but it
+# makes the linter complain when we have a |debug| keyword.  Since we don't
+# use that func in here, it's not a problem, so silence the warning.
+# pylint: disable=redefined-outer-name
 def setup_logging(level, output=None, debug=False, color=None):
"""Initialize the logging module using the |level| level"""
# The incoming level will be things like "info", but setLevel wants

diff --git a/doc/make_subarch_table_guidexml.py 
b/doc/make_subarch_table_guidexml.py
index a6a9022..0699d2a 100755
--- a/doc/make_subarch_table_guidexml.py
+++ b/doc/make_subarch_table_guidexml.py
@@ -6,6 +6,7 @@
 
 import os
 import re
+import sys
 import textwrap
 
 
@@ -99,11 +100,11 @@ def dump(subarch_title_to_subarch_id, 
subarch_id_to_pattern_arch_genericrch_id):
f.close()
 
 
-if __name__ == '__main__':
+def main(_argv):
subarch_title_to_subarch_id = dict()
subarch_id_to_pattern_arch_genericrch_id = dict()
 
-   for (dirpath, dirnames, filenames) in os.walk('catalyst/arch'):
+   for dirpath, _dirnames, filenames in os.walk('catalyst/arch'):
for _fn in filenames:
if not _fn.endswith('.py'):
continue
@@ -114,3 +115,7 @@ if __name__ == '__main__':
handle_file(fn, subarch_title_to_subarch_id, 
subarch_id_to_pattern_arch_genericrch_id)
 
dump(subarch_title_to_subarch_id, 
subarch_id_to_pattern_arch_genericrch_id)
+
+
+if __name__ == '__main__':
+   main(sys.argv[1:])



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

2015-10-28 Thread Mike Frysinger
commit: 328650032448425d64ec186fe24d84930f95d037
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Oct 12 03:28:59 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Oct 28 16:49:56 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=32865003

hash_utils: decode output of popen

In py3, the return of popen is binary data.  We need
to decode it to get a string we can work with.

 catalyst/hash_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catalyst/hash_utils.py b/catalyst/hash_utils.py
index 1161da3..6e08967 100644
--- a/catalyst/hash_utils.py
+++ b/catalyst/hash_utils.py
@@ -117,7 +117,7 @@ class HashMap(object):
log.debug('args = %r', args)
source = Popen(args, stdout=PIPE)
output = source.communicate()
-   lines = output[0].split('\n')
+   lines = output[0].decode('ascii').split('\n')
log.debug('output = %s', output)
header = lines[0]
h_f = lines[1].split()



[gentoo-commits] proj/catalyst:master commit in: /, catalyst/targets/, catalyst/, catalyst/base/

2015-10-28 Thread Mike Frysinger
commit: 9b0ba31859207264f5bf7af048d5d89725dd4025
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Oct 12 03:54:33 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Oct 28 16:49:56 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=9b0ba318

lint: convert type/types to isinstance

pylint complains about using (type(...) == types.xxx) checks as it
prefers isinstance(..., xxx) instead.  Convert the code base to it.

 .pylintrc |  3 +--
 catalyst/base/stagebase.py| 57 +--
 catalyst/support.py   |  3 +--
 catalyst/targets/grp.py   |  5 ++--
 catalyst/targets/livecd_stage1.py |  5 ++--
 catalyst/targets/netboot.py   |  9 +++
 catalyst/targets/netboot2.py  | 11 
 7 files changed, 39 insertions(+), 54 deletions(-)

diff --git a/.pylintrc b/.pylintrc
index b3327cf..2a03f23 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -32,11 +32,10 @@ load-plugins=
 # bad-continuation -- might be hard with tab indentation policy
 # invalid-name -- need to manage constants better
 # line-too-long -- figure out a length and stick to it
-# unidiomatic-typecheck -- convert to isinstance
 # redefined-outer-name -- clean up code to not do this
 # super-init-not-called -- fix the classes __init__ structure
 # no-init -- update classes w/missing __init__ functions
-disable=missing-docstring, too-many-lines, too-many-branches, 
too-many-statements, too-few-public-methods, too-many-instance-attributes, 
too-many-public-methods, too-many-locals, too-many-arguments, locally-enabled, 
locally-disabled, fixme, broad-except, bad-whitespace, bad-continuation, 
invalid-name, line-too-long, unidiomatic-typecheck, redefined-outer-name, 
super-init-not-called, no-init
+disable=missing-docstring, too-many-lines, too-many-branches, 
too-many-statements, too-few-public-methods, too-many-instance-attributes, 
too-many-public-methods, too-many-locals, too-many-arguments, locally-enabled, 
locally-disabled, fixme, broad-except, bad-whitespace, bad-continuation, 
invalid-name, line-too-long, redefined-outer-name, super-init-not-called, 
no-init
 
 
 [REPORTS]

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 6094109..0e4d8c2 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -1,7 +1,6 @@
 
 import os
 import imp
-import types
 import shutil
 import sys
 from stat import ST_UID, ST_GID, ST_MODE
@@ -297,7 +296,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 
def set_install_mask(self):
if "install_mask" in self.settings:
-   if 
type(self.settings["install_mask"])!=types.StringType:
+   if not isinstance(self.settings['install_mask'], str):
self.settings["install_mask"]=\
' '.join(self.settings["install_mask"])
 
@@ -313,14 +312,14 @@ class StageBase(TargetBase, ClearBase, GenBase):
self.settings["version_stamp"] +'/'
 
def set_source_subpath(self):
-   if type(self.settings["source_subpath"])!=types.StringType:
+   if not isinstance(self.settings['source_subpath'], str):
raise CatalystError(
"source_subpath should have been a string. 
Perhaps you have " +\
"something wrong in your spec file?")
 
def set_pkgcache_path(self):
if "pkgcache_path" in self.settings:
-   if 
type(self.settings["pkgcache_path"])!=types.StringType:
+   if not isinstance(self.settings['pkgcache_path'], str):
self.settings["pkgcache_path"]=\
normpath(self.settings["pkgcache_path"])
else:
@@ -330,7 +329,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 
def set_kerncache_path(self):
if "kerncache_path" in self.settings:
-   if 
type(self.settings["kerncache_path"])!=types.StringType:
+   if not isinstance(self.settings['kerncache_path'], str):
self.settings["kerncache_path"]=\

normpath(self.settings["kerncache_path"])
else:
@@ -536,7 +535,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
del self.settings[self.settings["spec_prefix"]+"/use"]
if "use" not in self.settings:
self.settings["use"]=""
-   if type(self.settings["use"])==types.StringType:
+   if isinstance(self.settings['use'], str):
self.settings["use"]=self.settings["use"].split()
 
# Force bindist when options ask for it
@@ -554,30 +553,27 @@ class StageBase(TargetBase, ClearBase, GenBase):
 
  

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

2015-10-28 Thread Mike Frysinger
commit: d307242bf41554640a8966d79f6f36738d3391ee
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Oct 27 05:51:52 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Oct 28 16:49:56 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d307242b

main: extend the -c option to accept multiple files

There's no real reason people can't load multiple config files, so extend
the --config option into --configs and let people specify multiple ones.

 catalyst/defaults.py |  2 ++
 catalyst/main.py | 55 +---
 2 files changed, 20 insertions(+), 37 deletions(-)

diff --git a/catalyst/defaults.py b/catalyst/defaults.py
index 666afca..c5162d6 100644
--- a/catalyst/defaults.py
+++ b/catalyst/defaults.py
@@ -46,6 +46,8 @@ confdefaults={
"storedir": "/var/tmp/catalyst",
}
 
+DEFAULT_CONFIG_FILE = '/etc/catalyst/catalyst.conf'
+
 PORT_LOGDIR_CLEAN = \
'find "${PORT_LOGDIR}" -type f ! -name "summary.log*" -mtime +30 
-delete'
 

diff --git a/catalyst/main.py b/catalyst/main.py
index 9f563cf..176871d 100644
--- a/catalyst/main.py
+++ b/catalyst/main.py
@@ -21,7 +21,7 @@ from DeComp.contents import ContentsMap
 
 from catalyst import log
 import catalyst.config
-from catalyst.defaults import confdefaults, option_messages
+from catalyst.defaults import confdefaults, option_messages, 
DEFAULT_CONFIG_FILE
 from catalyst.hash_utils import HashMap, HASH_DEFINITIONS
 from catalyst.support import CatalystError
 from catalyst.version import get_version
@@ -36,40 +36,19 @@ def version():
log.info('Copyright 2008-2012 various authors')
log.info('Distributed under the GNU General Public License version 2.1')
 
-def parse_config(myconfig):
+def parse_config(config_files):
# search a couple of different areas for the main config file
myconf={}
-   config_file=""
-   default_config_file = '/etc/catalyst/catalyst.conf'
 
-   # first, try the one passed (presumably from the cmdline)
-   if myconfig:
-   if os.path.exists(myconfig):
-   log.notice('Using command line specified Catalyst 
configuration file: %s',
-   myconfig)
-   config_file=myconfig
-
-   else:
-   log.critical('Specified configuration file does not 
exist: %s', myconfig)
-
-   # next, try the default location
-   elif os.path.exists(default_config_file):
-   log.notice('Using default Catalyst configuration file: %s',
-   default_config_file)
-   config_file = default_config_file
-
-   # can't find a config file (we are screwed), so bail out
-   else:
-   log.critical('Could not find a suitable configuration file')
-
-   # now, try and parse the config file "config_file"
-   try:
-#  execfile(config_file, myconf, myconf)
-   myconfig = catalyst.config.ConfigParser(config_file)
-   myconf.update(myconfig.get_values())
-
-   except Exception:
-   log.critical('Could not find parse configuration file: %s', 
myconfig)
+   # try and parse the config file "config_file"
+   for config_file in config_files:
+   log.notice('Loading configuration file: %s', config_file)
+   try:
+   config = catalyst.config.ConfigParser(config_file)
+   myconf.update(config.get_values())
+   except Exception as e:
+   log.critical('Could not find parse configuration file: 
%s: %s',
+   config_file, e)
 
# now, load up the values into conf_values so that we can use them
for x in list(confdefaults):
@@ -209,9 +188,9 @@ $ catalyst -f stage1-specfile.spec"""
group.add_argument('-F', '--fetchonly',
default=False, action='store_true',
help='fetch files only')
-   group.add_argument('-c', '--config',
-   type=FilePath(),
-   help='use specified configuration file')
+   group.add_argument('-c', '--configs',
+   type=FilePath(), action='append',
+   help='use specified configuration files')
group.add_argument('-f', '--file',
type=FilePath(),
help='read specfile')
@@ -241,7 +220,9 @@ def main():
color=opts.color)
 
# Parse the command line options.
-   myconfig = opts.config
+   myconfigs = opts.configs
+   if not myconfigs:
+   myconfigs = [DEFAULT_CONFIG_FILE]
myspecfile = opts.file
mycmdline = opts.cli[:]
 
@@ -271,7 +252,7 @@ def main():
# made it this far so start by outputting our version info
version()
# import configuration file and import our main module using those 
settings
-   parse_config(myconfig)
+   parse_config

[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/

2015-10-28 Thread Jeroen Roovers
commit: f033ebd858ab7b6faaad0a824d0a0393a7845d92
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Oct 28 16:59:43 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Oct 28 16:59:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f033ebd8

net-mail/dovecot: Stable for HPPA PPC64 (bug #564154).

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

 net-mail/dovecot/dovecot-2.2.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/dovecot/dovecot-2.2.19.ebuild 
b/net-mail/dovecot/dovecot-2.2.19.ebuild
index 5bef5f2..01f9725 100644
--- a/net-mail/dovecot/dovecot-2.2.19.ebuild
+++ b/net-mail/dovecot/dovecot-2.2.19.ebuild
@@ -25,7 +25,7 @@ HOMEPAGE="http://www.dovecot.org/";
 
 SLOT="0"
 LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86"
 
 IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
 IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"



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

2015-10-28 Thread Manuel Rüger
commit: a86925383c3f2101e4d34798c5c46aa9a98bd44c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Oct 28 18:38:07 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Oct 28 18:38:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8692538

dev-tex/biblatex: Version bump

Package-Manager: portage-2.2.23

 dev-tex/biblatex/Manifest|  1 +
 dev-tex/biblatex/biblatex-3.1.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-tex/biblatex/Manifest b/dev-tex/biblatex/Manifest
index 238aca2..b54e59c 100644
--- a/dev-tex/biblatex/Manifest
+++ b/dev-tex/biblatex/Manifest
@@ -1,2 +1,3 @@
 DIST biblatex-2.9a.tds.tgz 17829003 SHA256 
d3e6490505728113bcc5332f1a83fca1db6d50950e0ffaade495f4c5052e5175 SHA512 
1341e530bc68096498306b9933a014eaf2e4ebc573b344776ae3f3addd93301927f31da84b368b812e364aae45bdab1624da69a63dfcd0589b3a28c7795f6ab8
 WHIRLPOOL 
51f30f41e323077a24958e0724d1357763f2c5e9b05ebf6dd11b254cde0d5d20f4a93cf66d9f722d550908d1d0c9856f430edc2067aabd4e4d3c11b293e465df
 DIST biblatex-3.0.tds.tgz 18965624 SHA256 
8de8554eea84dce59a652d61a11e5fcd52c89f303471eb9ca58304b82155e889 SHA512 
a8db58907953010c0376bda823ef03250428a2df0172a6e74f2725b19212a8df95c8e742b27f5301a5ca401ccee394d1aa4485bafc2263c985fbde1ce5de4c93
 WHIRLPOOL 
b444a55a0149a5147e1142c4ba8a4ee2251e1f92cece83a8ee7b6ff79a46d46bbb9a22b4f34cdb06aba55eb9b13efb9465d32de60753f27d5c48931044411719
+DIST biblatex-3.1.tds.tgz 18983013 SHA256 
96280c084f7f1a5ccde679130f80ae0b7e43265aa51b0ea083caadd01c5ec7d1 SHA512 
62a4be3d875f70987c2faf83b7558b46ae936ef4e52afa357a2ac80a65afc15dfd783c1a4a4e140d9aa906bb49153ddec2b4e8233ed2d2a26599468190cde951
 WHIRLPOOL 
5e75313543b5b36a18e593dda68e3c655142e378877bb74513406ca6515a3d8eea5d67ef802594834a766af270d44e23d9f887f8d71e66e6fc8948c6180af864

diff --git a/dev-tex/biblatex/biblatex-3.1.ebuild 
b/dev-tex/biblatex/biblatex-3.1.ebuild
new file mode 100644
index 000..47aae74
--- /dev/null
+++ b/dev-tex/biblatex/biblatex-3.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit latex-package
+
+DESCRIPTION="Reimplementation of the bibliographic facilities provided by 
LaTeX"
+HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex 
https://github.com/plk/biblatex/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz"
+
+LICENSE="LPPL-1.3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+RDEPEND="dev-texlive/texlive-bibtexextra
+   dev-texlive/texlive-latexextra"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}
+TEXMF=/usr/share/texmf-site
+
+src_install() {
+   insinto "${TEXMF}"
+   doins -r bibtex tex
+
+   dodoc doc/latex/biblatex/{README,RELEASE}
+   use doc && { pushd doc/ ; latex-package_src_doinstall doc ; popd ; }
+   if use examples ; then
+   docinto examples
+   dodoc -r doc/latex/biblatex/examples
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-evdev/

2015-10-28 Thread Manuel Rüger
commit: e834c2831a1a2d161fdced8660bfe60a698acc30
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Oct 28 18:51:51 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Oct 28 18:51:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e834c283

x11-drivers/xf86-input-evdev: Version bump

Package-Manager: portage-2.2.23

 x11-drivers/xf86-input-evdev/Manifest  |  1 +
 .../xf86-input-evdev-2.10.0.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/x11-drivers/xf86-input-evdev/Manifest 
b/x11-drivers/xf86-input-evdev/Manifest
index 9e2e975..f647d57 100644
--- a/x11-drivers/xf86-input-evdev/Manifest
+++ b/x11-drivers/xf86-input-evdev/Manifest
@@ -1,3 +1,4 @@
+DIST xf86-input-evdev-2.10.0.tar.bz2 388811 SHA256 
d097298eb07b7a9edf4493b5c3c058041458ca52c8c62dbd4f40b84c5086d117 SHA512 
b17e2f315b5291ccb234e2b9eeec9c32828091ca935fdc7463a75eccc7fcc9d465c88970c12d2128db6e0b49df23714c794fbaa5767e7b91ef58efb40aadaa30
 WHIRLPOOL 
c86325e64a382b955e47c458891e880f275b928b12e42e3e9740e72c3f5a853f34c3cbe1e0f6e72ab6057277f2ccaab618eaa44cd7229573548a8245858af8db
 DIST xf86-input-evdev-2.7.3.tar.bz2 364819 SHA256 
eb389413602c3d28c44bbfab0477c98582f0e2f5be5f41986e58e93a033fa504 SHA512 
edd5691bc6878bb491d7ffb04b35ab60cd70853ae702883c672c53c9f6cb8e81817f94cc03feaaca4e4a02a2a436f1417bd1e1e5f52a151a416fd04306159879
 WHIRLPOOL 
750605a0efabcb078e65d08b7ea610fdfc4cab49b73a2676247f95f50fcf7d17e80ab2186ef103830865a564dc695f035739f1b88e28f68c981fc703e26610a6
 DIST xf86-input-evdev-2.8.1.tar.bz2 369337 SHA256 
09f887e1ce6cdb92154035db9044e0795a5c80f1ffb9efc599aed9a9dc1ff539 SHA512 
8a9fce3b1d7a577a914d662b5a36dc43d56f16ae9318bbaf09fbd28ee572a69f40b7960d6d51ede9074284eed5a01732a4a246b43f8a1140cb8f1c0073ea189c
 WHIRLPOOL 
f0b337aebb5168efe382d69f47c2b332097470c82bcd3dfcb61e4d599a73da2cec36c4a51c77584ffa548e5a2ce1c512a2ebc304e64e37ce8e74fa551d1efd99
 DIST xf86-input-evdev-2.8.2.tar.bz2 369981 SHA256 
750461749a83bdee7771592aa5c0db5e267b18d847078a4b8622f55b04797eb3 SHA512 
20ff24785333f3742b191a6cbfad79ab9ac67ea97fa78cc8037fbc6946c437ee61a717aa3b7e21d5942a282917667d93d65ef424c4db4cec38e38dc41197386b
 WHIRLPOOL 
432e22c5f12f33175f70c379a7d0e872b81e413046c9138f9e5daaf59e4e86b4a075dc38a696ad2f84292c13107c91e2a3315582acbfb57f93528dfb102a8a13

diff --git a/x11-drivers/xf86-input-evdev/xf86-input-evdev-2.10.0.ebuild 
b/x11-drivers/xf86-input-evdev/xf86-input-evdev-2.10.0.ebuild
new file mode 100644
index 000..1414041
--- /dev/null
+++ b/x11-drivers/xf86-input-evdev/xf86-input-evdev-2.10.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit linux-info xorg-2
+
+DESCRIPTION="Generic Linux input driver"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
+IUSE=""
+
+RDEPEND=">=x11-base/xorg-server-1.12[udev]
+   dev-libs/libevdev
+   sys-libs/mtdev"
+DEPEND="${RDEPEND}
+   >=x11-proto/inputproto-2.1.99.3
+   >=sys-kernel/linux-headers-2.6"
+
+pkg_pretend() {
+   if use kernel_linux ; then
+   CONFIG_CHECK="~INPUT_EVDEV"
+   fi
+   check_extra_config
+}



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/

2015-10-28 Thread Manuel Rüger
commit: df027d08b0273a29481942d54401651e9aa885bb
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Oct 28 19:02:03 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Oct 28 19:02:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df027d08

x11-base/xorg-server: Version bump

Package-Manager: portage-2.2.23

 x11-base/xorg-server/Manifest  |   1 +
 x11-base/xorg-server/xorg-server-1.17.4.ebuild | 245 +
 2 files changed, 246 insertions(+)

diff --git a/x11-base/xorg-server/Manifest b/x11-base/xorg-server/Manifest
index a1703a0..2363cbf 100644
--- a/x11-base/xorg-server/Manifest
+++ b/x11-base/xorg-server/Manifest
@@ -5,3 +5,4 @@ DIST xorg-server-1.16-cve-2014-8091..8103.patches.tar.xz 27892 
SHA256 47d8c9bb79
 DIST xorg-server-1.16.4.tar.bz2 5817330 SHA256 
abb6e1cc9213a9915a121f48576ff6739a0b8cdb3d32796f9a7743c9a6efc871 SHA512 
f756fca65535aa921a85d8d8eb36ea2ba5b7af90a46d640b0ca76259a9abd9d323885087e11156528d95240937c70373045001ae20266a1b9e89909f007e9e74
 WHIRLPOOL 
63980a3e2b57d2860998344f21a6524598b3dc135c277e5a868e34b57ab5060681ae7137358b3ba8b9ca5fd622a91aeb06bd0ac9e3e5ce1f4dc55df2b2dc0e33
 DIST xorg-server-1.17.1.tar.bz2 5852385 SHA256 
2bf8e9f6f0a710dec1d2472467bff1f4e247cb6dcd76eb469aafdc8a2d7db2ab SHA512 
195a0e0a6bd9c7655e62dd40dfbd7dea77d10f1143d4fd6154e8bdbb463d3729f81ecd1e379d66f68e828d4f4583782c15ce260de2802076844aec552c4f
 WHIRLPOOL 
a8a78b0bfa6137941e3434f083319a827f0332fd9c190922bb0a33381e86173868d236c96a89ee3049400f37521fe052838416f009713f004227f05b8717d776
 DIST xorg-server-1.17.2.tar.bz2 5767983 SHA256 
f61120612728f2c5034671d0ca3e2273438c60aba93b3dda4a8aa40e6a257993 SHA512 
7e7b7620890cc8db696695758fa22fa879f9d3c33946663611ec0b37f02116e9c6f08779f9eece59907b430d3df93f0c0548939683ea156b3c4cbe02571b7551
 WHIRLPOOL 
bfa04d9a6fba776138ec239183bd9f7badd73da520f1c4c62f7bf00bc264431959cd73ba145b5698429a6d5f3ae71d8dc07ab3f9442f365fae94ba2a98d69b96
+DIST xorg-server-1.17.4.tar.bz2 5791384 SHA256 
0c4b45c116a812a996eb432d8508cf26c2ec8c3916ff2a50781796882f8d6457 SHA512 
4b8377b86ca88f27dcf59db2996b2ee620ce6f181a37dc47600365db588d48f2f3ca66a3149e7c856e686e5783b1cccb2ba0827aa7413299163dfca869f4d376
 WHIRLPOOL 
c5baa1b01e57eac9e18bd1890c0a7e2246836524645057d5e05a1a19225d863645616aafaadbf9d083ffb672d47ea1934ad8323d813533e9519f0d92f9a1c6ab

diff --git a/x11-base/xorg-server/xorg-server-1.17.4.ebuild 
b/x11-base/xorg-server/xorg-server-1.17.4.ebuild
new file mode 100644
index 000..fc8f46a
--- /dev/null
+++ b/x11-base/xorg-server/xorg-server-1.17.4.ebuild
@@ -0,0 +1,245 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+XORG_DOC=doc
+inherit xorg-2 multilib versionator flag-o-matic
+EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/xserver"
+
+DESCRIPTION="X.Org X servers"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+
+IUSE_SERVERS="dmx kdrive xephyr xnest xorg xvfb"
+IUSE="${IUSE_SERVERS} glamor ipv6 libressl minimal nptl selinux +suid systemd 
tslib +udev unwind wayland"
+
+CDEPEND=">=app-eselect/eselect-opengl-1.3.0
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )
+   media-libs/freetype
+   >=x11-apps/iceauth-1.0.2
+   >=x11-apps/rgb-1.0.3
+   >=x11-apps/xauth-1.0.3
+   x11-apps/xkbcomp
+   >=x11-libs/libdrm-2.4.46
+   >=x11-libs/libpciaccess-0.12.901
+   >=x11-libs/libXau-1.0.4
+   >=x11-libs/libXdmcp-1.0.2
+   >=x11-libs/libXfont-1.4.2
+   >=x11-libs/libxkbfile-1.0.4
+   >=x11-libs/libxshmfence-1.1
+   >=x11-libs/pixman-0.27.2
+   >=x11-libs/xtrans-1.3.5
+   >=x11-misc/xbitmaps-1.0.1
+   >=x11-misc/xkeyboard-config-2.4.1-r3
+   dmx? (
+   x11-libs/libXt
+   >=x11-libs/libdmx-1.0.99.1
+   >=x11-libs/libX11-1.1.5
+   >=x11-libs/libXaw-1.0.4
+   >=x11-libs/libXext-1.0.99.4
+   >=x11-libs/libXfixes-5.0
+   >=x11-libs/libXi-1.2.99.1
+   >=x11-libs/libXmu-1.0.3
+   x11-libs/libXrender
+   >=x11-libs/libXres-1.0.3
+   >=x11-libs/libXtst-1.0.99.2
+   )
+   glamor? (
+   media-libs/libepoxy
+   >=media-libs/mesa-10.3.4-r1[egl,gbm]
+   !x11-libs/glamor
+   )
+   kdrive? (
+   >=x11-libs/libXext-1.0.5
+   x11-libs/libXv
+   )
+   xephyr? (
+   x11-libs/libxcb
+   x11-libs/xcb-util
+   x11-libs/xcb-util-image
+   x11-libs/xcb-util-keysyms
+   x11-libs/xcb-util-renderutil
+   x11-libs/xcb-util-wm
+   )
+   !minimal? (
+   >=x11-libs/libX11-1.1.5
+   >=x11-libs/libXext-1.0.5
+   >=media-lib

[gentoo-commits] repo/gentoo:master commit in: perl-core/Unicode-Collate/

2015-10-28 Thread Andreas Hüttel
commit: 3b947b18ac2a3eb19bf2b1fec692df1b230356df
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Wed Oct 28 19:04:54 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Oct 28 19:04:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b947b18

perl-core/Unicode-Collate: Version bump, needed for biber

Package-Manager: portage-2.2.21

 perl-core/Unicode-Collate/Manifest |  1 +
 .../Unicode-Collate/Unicode-Collate-1.140.0.ebuild | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/perl-core/Unicode-Collate/Manifest 
b/perl-core/Unicode-Collate/Manifest
index ab25b20..f0f1f74 100644
--- a/perl-core/Unicode-Collate/Manifest
+++ b/perl-core/Unicode-Collate/Manifest
@@ -1 +1,2 @@
 DIST Unicode-Collate-1.12.tar.gz 863579 SHA256 
d4a71dca428e1a76a235a0cde8d0c59c85288cc4de9c3dafadb375b2a55f45af SHA512 
d09a60450c836ddcdad9d5714827bf54f8115e6c1d2983d1496ee654b87cacadcdbacad4f12343a43ef73090d29236fb98140c5942cc36ceceff6bf337a42eac
 WHIRLPOOL 
2c98584efa51c785e36711f5a425b14c447564c0a35fb02ae2248a96d35ba236cb9ed534cbd8d8f80af899c1db501015a2fe2e98c79291b3c7692ab0154f8334
+DIST Unicode-Collate-1.14.tar.gz 866047 SHA256 
628a5bb3b5e81c1d4cdf680bc882f2296a50892860af1800b31e796ee166767a SHA512 
a234c7ebb2f92886a68e39b681cb428bf99dd999f6a12ce137b132824072a07a60df3d26a4b147b2ec52c61df4f7c2fab5dad5cb40cce27fdff021cdf8208568
 WHIRLPOOL 
862769708fce1e60bcc53d5a320af222f9b3d79348ec9d415c0f5bd6f382d9ee39cdcf4b4a71c4ec27b015e78d69e4b4fa55a2ffc86a75b7db7580abeca39cc2

diff --git a/perl-core/Unicode-Collate/Unicode-Collate-1.140.0.ebuild 
b/perl-core/Unicode-Collate/Unicode-Collate-1.140.0.ebuild
new file mode 100644
index 000..f127d1e
--- /dev/null
+++ b/perl-core/Unicode-Collate/Unicode-Collate-1.140.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=SADAHIRO
+MODULE_VERSION=1.14
+inherit perl-module
+
+DESCRIPTION="Unicode Collate Algorithm"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-File-Spec
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"
+
+SRC_TEST="do parallel"



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Unicode-Collate/

2015-10-28 Thread Andreas Hüttel
commit: 456e52587ee4c5c9d91ebfa9c580a96d5b8fbb03
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Wed Oct 28 19:06:17 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Wed Oct 28 19:06:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=456e5258

virtual/perl-Unicode-Collate: Version bump, needed for biber

Package-Manager: portage-2.2.21

 .../perl-Unicode-Collate-1.140.0.ebuild   | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/virtual/perl-Unicode-Collate/perl-Unicode-Collate-1.140.0.ebuild 
b/virtual/perl-Unicode-Collate/perl-Unicode-Collate-1.140.0.ebuild
new file mode 100644
index 000..b628e6c
--- /dev/null
+++ b/virtual/perl-Unicode-Collate/perl-Unicode-Collate-1.140.0.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Virtual for ${PN#perl-}"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+   ~perl-core/${PN#perl-}-${PV}
+"



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

2015-10-28 Thread Nicolas Bock
commit: 773a7b8c58d010078f1ac85a9b9921a373d2c7e5
Author: Nicolas Bock  gentoo  org>
AuthorDate: Wed Oct 28 19:21:31 2015 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Wed Oct 28 19:24:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=773a7b8c

sci-physics/lammps: Ebuild cleanup

Package-Manager: portage-2.2.20.1

 sci-physics/lammps/lammps-20151026.ebuild | 68 +--
 1 file changed, 20 insertions(+), 48 deletions(-)

diff --git a/sci-physics/lammps/lammps-20151026.ebuild 
b/sci-physics/lammps/lammps-20151026.ebuild
index 2c75712..55f834d 100644
--- a/sci-physics/lammps/lammps-20151026.ebuild
+++ b/sci-physics/lammps/lammps-20151026.ebuild
@@ -47,64 +47,36 @@ lmp_emake() {
 
# The lammps makefile uses CC to indicate the C++ compiler.
emake \
-   ARCHIVE=$(tc-getAR) \
-   CC=$(usex mpi "mpic++" "$(tc-getCXX)") \
-   F90=$(usex mpi "mpif90" "$(tc-getFC)") \
-   LINK=$(usex mpi "mpic++" "$(tc-getCXX)") \
+   ARCHIVE="$(tc-getAR)" \
+   CC="$(usex mpi "mpic++" "$(tc-getCXX)")" \
+   F90="$(usex mpi "mpif90" "$(tc-getFC)")" \
+   LINK="$(usex mpi "mpic++" "$(tc-getCXX)")" \
CCFLAGS="${CXXFLAGS}" \
F90FLAGS="${FCFLAGS}" \
LINKFLAGS="${LDFLAGS}" \
LMP_INC="${LAMMPS_INCLUDEFLAGS}" \
-   MPI_INC=$(usex mpi "" "-I../STUBS") \
-   MPI_PATH=$(usex mpi "" "-L../STUBS") \
-   MPI_LIB=$(usex mpi "" "-lmpi_stubs") \
+   MPI_INC="$(usex mpi "" "-I../STUBS")" \
+   MPI_PATH="$(usex mpi "" "-L../STUBS")" \
+   MPI_LIB="$(usex mpi "" "-lmpi_stubs")" \
user-atc_SYSLIB="$(usex mpi "$($(tc-getPKG_CONFIG) --libs blas) 
$($(tc-getPKG_CONFIG) --libs lapack)" '')"\
"$@"
 }
 
 lmp_activate_packages() {
# Build packages
-   lmp_emake -C src yes-asphere
-   lmp_emake -C src yes-body
-   lmp_emake -C src yes-class2
-   lmp_emake -C src yes-colloid
-   lmp_emake -C src yes-coreshell
-   lmp_emake -C src yes-dipole
-   lmp_emake -C src yes-fld
-   #lmp_emake -C src yes-gpu
-   lmp_emake -C src yes-granular
-   # Need OpenKIM external dependency.
-   #lmp_emake -C src yes-kim
-   # Need Kokkos external dependency.
-   #lmp_emake -C src yes-kokkos
-   lmp_emake -C src yes-kspace
-   lmp_emake -C src yes-manybody
-   lmp_emake -C src yes-mc
-   lmp_emake -C src yes-meam
-   lmp_emake -C src yes-misc
-   lmp_emake -C src yes-molecule
-   #lmp_emake -C src yes-mpiio
-   lmp_emake -C src yes-opt
-   lmp_emake -C src yes-peri
-   lmp_emake -C src yes-poems
-   lmp_emake -C src yes-qeq
-   lmp_emake -C src yes-reax
-   lmp_emake -C src yes-replica
-   lmp_emake -C src yes-rigid
-   lmp_emake -C src yes-shock
-   lmp_emake -C src yes-snap
-   lmp_emake -C src yes-srd
-   lmp_emake -C src yes-voronoi
-   lmp_emake -C src yes-xtc
-
-   if use mpi; then
-   lmp_emake -C src yes-user-atc
-   fi
-   lmp_emake -C src yes-user-eff
-   lmp_emake -C src yes-user-fep
-   use mpi && lmp_emake -C src yes-user-lb
-   lmp_emake -C src yes-user-phonon
-   lmp_emake -C src yes-user-sph
+   local packages=( yes-asphere yes-body yes-class2 yes-colloid \
+   yes-coreshell yes-dipole yes-fld yes-granular yes-kspace \
+   yes-manybody yes-mc yes-meam yes-misc \
+   $(usex mpi "yes-user-atc" "") \
+   yes-molecule yes-opt yes-peri yes-poems yes-qeq yes-reax \
+   yes-replica yes-rigid yes-shock yes-snap yes-srd \
+   yes-user-eff yes-user-fep \
+   $(usex mpi "yes-user-lb" "") \
+   yes-user-phonon yes-user-sph yes-voronoi yes-xtc )
+
+   for p in ${packages[@]}; do
+   lmp_emake -C src ${p}
+   done
 }
 
 lmp_build_packages() {



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

2015-10-28 Thread Nicolas Bock
commit: 9ec5a07446cdd2ab66a71b34e3d6815fd357bb47
Author: Nicolas Bock  gentoo  org>
AuthorDate: Wed Oct 28 19:30:02 2015 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Wed Oct 28 19:30:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec5a074

sci-physics/lammps: Remove old versions

Package-Manager: portage-2.2.20.1

 sci-physics/lammps/Manifest   |   3 -
 sci-physics/lammps/lammps-20150818.ebuild | 267 --
 sci-physics/lammps/lammps-20150821.ebuild | 267 --
 sci-physics/lammps/lammps-20150829.ebuild | 267 --
 4 files changed, 804 deletions(-)

diff --git a/sci-physics/lammps/Manifest b/sci-physics/lammps/Manifest
index 65e5628..6db6fd5 100644
--- a/sci-physics/lammps/Manifest
+++ b/sci-physics/lammps/Manifest
@@ -2,13 +2,10 @@ DIST lammps-10Aug15.tar.gz 87890369 SHA256 
450a765f94b70a6f38637854f1d7496dca98d
 DIST lammps-10Feb15.tar.gz 62912048 SHA256 
59373e9b5592f7b697a144bbce1fb742726e03536b7bb355dac7a9e013ddf9b8 SHA512 
a7804377a23f03f338bdaf443439dffcdc52293b4c45e6369b340a1107510fed0b8a198e3b5afcff2e04e109985b52ee62e7b28276697bae37ac6f783d1ab9f2
 WHIRLPOOL 
09f29cadf8b072d388abe45ec219341d2a14a6c9cc9e4010a0f7945e930e9984738f7837748d117ab95ca76ce0c8d9160fe88dcec17e8d21b81f385dec8f7005
 DIST lammps-11Sep15.tar.gz 87274144 SHA256 
79a40bc395a9052345cf1c7caa8da69f6ec0603e0be09503b060c51672a9734f SHA512 
a478470d6e90c870dad606649009c085451d3890632dfc05a84890ff9d69e8465eff52d4853b4dc4a82ebcb15074c8f2fd07bbde132404a01c1c5df0867ee3f2
 WHIRLPOOL 
21225df1baadd02dbdc9f0b7aea6a2323ac1a1ac177453b67d5387b87a711e505395d17efada9ca5d079d919842da69c6d41d9a3a6ec6375d8526c3ed32f8ad3
 DIST lammps-15May15.tar.gz 63835027 SHA256 
0233ea98c7d77d31bd0a538bb674c0ee8f000f1d0ee1b8c049072873192aa228 SHA512 
a23c16b98117590b15ca7662b878fb2f76ec41399c329c98deb48e28a0ffce293443269513a96c2503389894b598787b19dadc210d4b4dbc6a7432caf633e7d1
 WHIRLPOOL 
4c4edfd772bbf534e42fc43e1feaf3b8f76e74c58ec1e985e3c29ee0d8e64aa8c501b8e45e078643409c320a1d834b0d5eb699e7d1ec29df06be0126d12492f1
-DIST lammps-18Aug15.tar.gz 87893731 SHA256 
513237934cda7c1e026f4983096fd53cb510fadee12c55b13b4735086155245a SHA512 
5816509f5b988dbe74c9f40a9faa42b3bcf260388dfe70703a1544517acd3f868d3bc398fb4c2fa7713d24409075d44ad80b8e91a25a28db783c2605aff30977
 WHIRLPOOL 
7022f3aabadffdfa2ef4c8219589e46fba2572d9ed4b52591f6516a61d4895b39d637d88535ba83881db5d48661e34ca6ff2f22a6819dbec015af979721a0f53
-DIST lammps-21Aug15.tar.gz 87096749 SHA256 
46f68e7b61e50ab3e790c53cadd82fde7c7aa58aa73e8a3257f24facff2ed0a4 SHA512 
b1dd90890c43a6cf55a57a61279dcc4c10fdedb4ad90f225a06c0e93eb139d30f2d56baa233c081b38adeeb0a8419a0315ccc4b0fa15c3ffbf7db626ca261e9d
 WHIRLPOOL 
a1d7d4ab30f9ecca3fd64216e729fef6fa1b3f7a6698b9eaf104bcbfa03a66862cd8c5882e94f73e841064d94bf030aaf569ebb457d89fbd345b391f9cee6822
 DIST lammps-22Oct15.tar.gz 87938562 SHA256 
8376b52e8eef4d1c3628c15ff358ecf74303e308566f41fd055701f6af3b6484 SHA512 
cbe61420cccd11cd23214802dfd2d1b2b1b28511a53dbf22e993fa3592404e8dda29fcb7bcd4e6e2d1e2251ddc6f020d48bafa66c8fceaa27d4af2e21640
 WHIRLPOOL 
11d09b18ff742d6ac4fcb400df93d7ac29144ee554f7241e58da80d039a99ef23b4b81709170ed12215693de97b6b48c9a6967d7d0539fd7f2f172a1e0a83661
 DIST lammps-23Oct15.tar.gz 87933918 SHA256 
3500cdeb22344c7f3a040834a232d6c5ddb9f601820794441fcc24dadedc49b6 SHA512 
a26d214b3e7c47d63cf00a364753a829d1c8f0cf4f8b73e829a4463650303d6905b6c942df5890387413b44496c8615b286296b34df9181e54806bb2f361b39a
 WHIRLPOOL 
9a2d6e8fb57f1af2969345d9b250ed1244d2e40c97d5e2994c0ef6225ca265b490809848faa7cdc29a3eaa7c51a6223320039863f6c382a1a51da6f474e52088
 DIST lammps-24Sep15.tar.gz 87307191 SHA256 
e03cdeb2b3b6107d98969febea26575c85590603ab4f79d26efc46bac6d6cc60 SHA512 
356dd556f845cec456865062375120c0898cef1870617d80b31b0e8e964585140120b21f891cd9b40ecde7aaf43beb34d7b15396830e08273624a9b14da551e4
 WHIRLPOOL 
667b8aaf927d268c569a192c835b7dbdc80a0f25abb1f2c96007517ea218a69b2816dde4ebe28ca82974d01472c0e1126b67e89a19fb3ef49e4020f3d9c69fba
 DIST lammps-26Oct15.tar.gz 89265403 SHA256 
c69356b3056881cbbb7eb659eb9cd4fc9d86e7f010502fe47c91ed865cbabea7 SHA512 
738cd9fb7b11cb1e7304814ac4463d534f0a5dda1c70cc483d3c19b038c15cd61a2c03c697269afbe42d88bf01ef33d0972bba9516a840026891fc3f144a
 WHIRLPOOL 
c7c7882e32b026cdba0d5bceb1ecfa4127e77edeb9d567760e19d6103109fdf9cefe79a17fd6e3291d04347984cfdb1a999136ead0be20f0173a73e53f106d95
-DIST lammps-29Aug15.tar.gz 87253305 SHA256 
fff69b47c40936d4ccd90a8443ce5bb1bcf4cb449ae06a5822c1b11a2ab2dd67 SHA512 
991c56608a3288ebdcd2fb0857c595d42047b5ed0780b6d4ddb98388627499727b6c04fe0eff3e7221238dba2a8601f0b4b4067b5aa5ec2f356b4ee13f6c129c
 WHIRLPOOL 
88da74fa65aeb187330439417512d516fe8adf4a5df4be48fdafafa198e8c4d657ecce7f04f749d77cb2f8a7881ac47f4604cf6bc8eb3ca8b2cbc7988d866a87
 DIST lammps-4Sep15.tar.gz 87259558 SHA256 
8652c801e4ce8b6b7d42a6c71f76b68a6e741dc8efb8d7d3dad36b624fe8f150 SHA512 
ee730c8bd96e14931192a68c12e4ebde301cc3

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

2015-10-28 Thread James Le Cuirot
commit: e57404de9e98484fb627e22c092b029b42e7f322
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Oct 28 20:19:05 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Oct 28 20:19:05 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=e57404de

Merge remote-tracking branch 'github/pr/24'

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



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

2015-10-28 Thread James Le Cuirot
commit: 44832a437bd6ab8d5c7624f62bca8c38ab3c4bd1
Author: Manuel Rüger  rueg  eu>
AuthorDate: Wed Oct 28 19:59:37 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Oct 28 19:59:37 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=44832a43

Update portage version in .travis.yml

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 256837d..943475c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,7 @@ language: python
 python:
 - pypy
 env:
-- PORTAGE_VER="2.2.22"
+- PORTAGE_VER="2.2.23"
 before_script:
 - mkdir travis-overlay
 - mv !(travis-overlay) travis-overlay/



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

2015-10-28 Thread Patrice Clement
commit: b32e48228fdea1dc5b7b0ace2128f7d7178d19f4
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 20:49:20 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 20:51:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32e4822

dev-perl/Pango: Add patch preventing failure at compile time. Fixes bug 562216.

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

 dev-perl/Pango/Pango-1.224.0-r1.ebuild   | 36 
 dev-perl/Pango/files/Pango-1.224.0-linking.patch | 10 +++
 2 files changed, 46 insertions(+)

diff --git a/dev-perl/Pango/Pango-1.224.0-r1.ebuild 
b/dev-perl/Pango/Pango-1.224.0-r1.ebuild
new file mode 100644
index 000..60b8bba
--- /dev/null
+++ b/dev-perl/Pango/Pango-1.224.0-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=XAOC
+MODULE_VERSION=1.224
+inherit perl-module
+
+DESCRIPTION="Layout and render international text"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   >=dev-perl/glib-perl-1.220.0
+   >=dev-perl/Cairo-1.0.0
+   >=x11-libs/pango-1.0.0
+"
+DEPEND="
+   ${RDEPEND}
+   >=dev-perl/ExtUtils-Depends-0.300.0
+   >=dev-perl/extutils-pkgconfig-1.30.0
+"
+
+PATCHES=(
+   "${FILESDIR}"/"${P}-linking.patch"
+)
+
+src_prepare() {
+   perl-module_src_prepare
+   sed -i -e "s:exit 0:exit 1:g" "${S}"/Makefile.PL || die "sed failed"
+}

diff --git a/dev-perl/Pango/files/Pango-1.224.0-linking.patch 
b/dev-perl/Pango/files/Pango-1.224.0-linking.patch
new file mode 100644
index 000..e93069b
--- /dev/null
+++ b/dev-perl/Pango/files/Pango-1.224.0-linking.patch
@@ -0,0 +1,10 @@
+--- Makefile.PL
 Makefile.PL
+@@ -161,6 +161,7 @@
+ if ($have_cairo) {
+   push @deps, qw/Cairo/;
+   $inc .= $pangocairo_pkgcfg{cflags};
++  $libs .= ' ';
+   $libs .= $pangocairo_pkgcfg{libs};
+ }
+ 



[gentoo-commits] repo/gentoo:master commit in: java-virtuals/jmx/

2015-10-28 Thread Patrice Clement
commit: eb58cef2bb19eef4234e3a89a07e8ccedf350d5d
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 18:34:21 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 20:51:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb58cef2

java-virtuals/jmx: Clean up old.

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

 java-virtuals/jmx/jmx-1.0-r3.ebuild | 28 
 java-virtuals/jmx/jmx-1.0-r4.ebuild |  2 +-
 2 files changed, 1 insertion(+), 29 deletions(-)

diff --git a/java-virtuals/jmx/jmx-1.0-r3.ebuild 
b/java-virtuals/jmx/jmx-1.0-r3.ebuild
deleted file mode 100644
index 4e2412b..000
--- a/java-virtuals/jmx/jmx-1.0-r3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit java-virtuals-2
-
-DESCRIPTION="Virtual for Java Management Extensions (JMX)"
-HOMEPAGE="https://www.gentoo.org";
-SRC_URI=""
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="|| (
-   virtual/jre:1.7
-   virtual/jre:1.6
-   virtual/jre:1.5
-   dev-java/sun-jmx:0
-   )
-   >=dev-java/java-config-2.1.8
-   "
-
-JAVA_VIRTUAL_PROVIDES="sun-jmx"
-JAVA_VIRTUAL_VM="=virtual/jre-1.7 =virtual/jre-1.6 =virtual/jre-1.5"

diff --git a/java-virtuals/jmx/jmx-1.0-r4.ebuild 
b/java-virtuals/jmx/jmx-1.0-r4.ebuild
index af36ec7..662640a 100644
--- a/java-virtuals/jmx/jmx-1.0-r4.ebuild
+++ b/java-virtuals/jmx/jmx-1.0-r4.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: java-virtuals/jmx/

2015-10-28 Thread Patrice Clement
commit: 4ffb7a90bd90863936a74d12cda1999f6a0d35dc
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 18:33:48 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 20:51:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ffb7a90

java-virtuals/jmx: Stable for amd64. Stable for ppc+ppc64+x86 using the 
ALLARCHES policy.

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

 java-virtuals/jmx/jmx-1.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java-virtuals/jmx/jmx-1.0-r4.ebuild 
b/java-virtuals/jmx/jmx-1.0-r4.ebuild
index 8f8f4b3..af36ec7 100644
--- a/java-virtuals/jmx/jmx-1.0-r4.ebuild
+++ b/java-virtuals/jmx/jmx-1.0-r4.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-pulseaudio-plugin/

2015-10-28 Thread Michał Górny
commit: 6c8330e03645f18866a038e1df348ec1365dde3b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 28 21:00:31 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 28 21:00:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c8330e0

xfce-extra/xfce4-pulseaudio-plugin: bump to 0.2.4 (minor fixes)

Release notes for 0.2.4
===
* Added a configuration option "show-notifications".
* Reconnect to the PA server when the connection is lost.
* Fixes to the notification update mechanism.

 xfce-extra/xfce4-pulseaudio-plugin/Manifest|  1 +
 .../xfce4-pulseaudio-plugin-0.2.4.ebuild   | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/xfce-extra/xfce4-pulseaudio-plugin/Manifest 
b/xfce-extra/xfce4-pulseaudio-plugin/Manifest
index 1e0ed0f..9b7620a 100644
--- a/xfce-extra/xfce4-pulseaudio-plugin/Manifest
+++ b/xfce-extra/xfce4-pulseaudio-plugin/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-pulseaudio-plugin-0.2.2.tar.bz2 324250 SHA256 
67c04ab9a3932d74480f42461aafe779b68de4388db3f7546966a3967376c6d8 SHA512 
d7640637de7fb295bea0b1d29e8b75e854926aab96847018a60a86f6fdb6a408328688285767ee1b34109df06bd7fb1ee907798b7f60bcbb095294d743e1b32f
 WHIRLPOOL 
10b5df905e7d3ff6beec9bc11c0d572ae38635fc18c114ad42a10e61e0a0e24c1bc2813b08926896f1f529a053c021e13a5af291158e989cf3ce4ef4579fbdbf
 DIST xfce4-pulseaudio-plugin-0.2.3.tar.bz2 306349 SHA256 
e82836bc8cf7d905b4e60d43dc630ba8e32dea785989700c71d4aeee9f583b33 SHA512 
9440e68b81be0845be4da88154db6e407891d5cc7504e46bc5dd7deac36bfba7354b38b7658e099fdd40fe581bd6e549ae1c6655a2d05df1f297ec944db47cc6
 WHIRLPOOL 
e1fef58d0a510b9121a36e131f72f5b8333bf86ee8c50ece978ca66697cd8fbf21903d35d67639b4ec2dd2493c18f8603efe14ebd51626168721807ad5091143
+DIST xfce4-pulseaudio-plugin-0.2.4.tar.bz2 307315 SHA256 
8d9330ddf1d44a864a36d566cce4b76d4f859c5984bba7653d7dc39aa24d5c3e SHA512 
b53ab48e282a506fc7fe91fa70520f0db32f2f73653a0210681bf7389f13441d5af8f855604b59817b1fe7a3f41e2d4fe52b052ac0c3479f3f4e37b2afedb193
 WHIRLPOOL 
8763a9422a7519b5603703306d968f9e020c1bd4b304be0d21bd6353c54e8fa979ef68c513d6e1c398ce6857ad88807a7cb7eefc29d6fba4f12a243eb7205e26

diff --git 
a/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.2.4.ebuild 
b/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.2.4.ebuild
new file mode 100644
index 000..01b5123
--- /dev/null
+++ b/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.2.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit xfconf
+
+DESCRIPTION="A panel plug-in for PulseAudio volume control"
+HOMEPAGE="https://github.com/andrzej-r/xfce4-pulseaudio-plugin";
+SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86"
+IUSE="debug keybinder libnotify"
+
+RDEPEND=">=dev-libs/glib-2.24.0:=
+   media-sound/pulseaudio:=
+   >=x11-libs/gtk+-3.6.0:3=
+   >=xfce-base/libxfce4ui-4.11.0:=[gtk3(+)]
+   >=xfce-base/libxfce4util-4.9.0:=
+   >=xfce-base/xfce4-panel-4.11.0:=
+   >=xfce-base/xfconf-4.6.0:=
+   keybinder? ( dev-libs/keybinder:3= )
+   libnotify? ( x11-libs/libnotify:= )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig"
+
+pkg_setup() {
+   XFCONF=(
+   $(use_enable keybinder)
+   $(use_enable libnotify)
+   $(xfconf_use_debug)
+   )
+
+   DOCS=( AUTHORS ChangeLog NEWS README )
+}



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

2015-10-28 Thread Manuel Rüger
commit: 04949da71e1600812fbdd6e5932852ab7df85d5e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Oct 28 21:09:09 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Oct 28 21:09:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04949da7

dev-tex/biber: Version bump

Package-Manager: portage-2.2.23

 dev-tex/biber/Manifest |  1 +
 dev-tex/biber/biber-2.2.ebuild | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/dev-tex/biber/Manifest b/dev-tex/biber/Manifest
index dbc6684..5ff0fa9 100644
--- a/dev-tex/biber/Manifest
+++ b/dev-tex/biber/Manifest
@@ -1,2 +1,3 @@
 DIST biber-1.9.tar.gz 2046569 SHA256 
4b8f7ab78f326f2c862c99f8dbb3b224c49f9289820dc226c9529dfa945d9066 SHA512 
6b417fd2537e832e8309e3cd1405037a0e1a6e1bc2f2759a208a97f1107a787c269eb3dd9a5b3875855dd50d641dbe7d61b7127d11f986a05d1ceb08ec6ecfda
 WHIRLPOOL 
47b39ab2e0c35e48f4d627bf24f4c03bbeb6b8f499c6492d403da31098b1eb13cd998713f7fbe38c260dff1418b1bd03aede7fa86cd04baf4d5dbe04816e4377
 DIST biber-2.1.tar.gz 706 SHA256 
7b20049557869a994ed9e0373f620720370981b6412ca415f0408d1af893f8f4 SHA512 
4a19bf9781cb90da52d9f08163b9ed400233db5c446054b12ab339786456e85bc7aba16ff8c0a36351ecc66b90e4a93e594e820b52f93566449b8c96b27852fb
 WHIRLPOOL 
0c7b1827e3e9ede6aebd45a00b63eac8cc3e7896d89c219fa2c467b4b6b10f48f2180aeb70d727f14620267943d59646daf4d0f09ddb1bd7b6b4b945d973dc03
+DIST biber-2.2.tar.gz 2296128 SHA256 
6dd93476b27ac7603bc9f224a3b00558f86617209f93b74f8cb4a51f54480c2f SHA512 
508b5a8046a1ff7ef6482b5c1f86ce427fa47f669ca224ee52252109dd6488ff242ea5076cafd47f66f288fed994b5425eab4c2566346046e0b2f656ca679d7c
 WHIRLPOOL 
2006b26277eaeb707211a1828e70c4bbfd04030f56e91062c57050a5b0479d317455352730976f3f9206eafbafdccc71d9f071f4e9dedace1c77e8c79ab826b4

diff --git a/dev-tex/biber/biber-2.2.ebuild b/dev-tex/biber/biber-2.2.ebuild
new file mode 100644
index 000..47125b8
--- /dev/null
+++ b/dev-tex/biber/biber-2.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils perl-module
+
+MY_PN=biblatex-${PN}
+
+DESCRIPTION="A BibTeX replacement for users of biblatex"
+HOMEPAGE="http://biblatex-biber.sourceforge.net/ https://github.com/plk/biber/";
+SRC_URI="https://github.com/plk/biber/archive/v${PV}.tar.gz  -> ${P}.tar.gz"
+
+LICENSE="|| ( Artistic-2 GPL-1 GPL-2 GPL-3 )"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+RDEPEND=">=dev-lang/perl-5.16
+   dev-perl/autovivification
+   dev-perl/Business-ISBN
+   dev-perl/Business-ISMN
+   dev-perl/Business-ISSN
+   dev-perl/Data-Compare
+   dev-perl/Data-Dump
+   dev-perl/Date-Simple
+   dev-perl/Encode-EUCJPASCII
+   dev-perl/Encode-HanExtra
+   dev-perl/Encode-JIS2K
+   dev-perl/File-Slurp-Unicode
+   dev-perl/IPC-Run3
+   dev-perl/libwww-perl[ssl]
+   dev-perl/List-AllUtils
+   >=dev-perl/List-MoreUtils-0.408.0
+   dev-perl/Log-Log4perl
+   dev-perl/LWP-Protocol-https
+   dev-perl/regexp-common
+   dev-perl/Readonly
+   dev-perl/Readonly-XS
+   dev-perl/Text-Roman
+   >=dev-perl/Text-BibTeX-0.700.0
+   dev-perl/URI
+   dev-perl/Unicode-LineBreak
+   dev-perl/Unicode-Normalize
+   dev-perl/XML-LibXML-Simple
+   dev-perl/XML-LibXSLT
+   dev-perl/XML-SAX-Base
+   dev-perl/XML-Writer
+   >=dev-tex/biblatex-3.1
+   virtual/perl-IPC-Cmd
+   >=virtual/perl-Unicode-Collate-1.140.0"
+DEPEND="${RDEPEND}
+   dev-perl/Config-AutoConf
+   dev-perl/Module-Build
+   test? ( dev-perl/File-Which
+   dev-perl/Test-Differences
+   dev-perl/Test-Pod
+   dev-perl/Test-Pod-Coverage )"
+
+SRC_TEST="parallel"
+
+src_prepare(){
+   epatch "${FILESDIR}"/${PN}-2.1-drop-mozilla-ca.patch
+}
+
+src_install(){
+   perl-module_src_install
+   use doc && dodoc -r doc/*
+}
+
+src_test() {
+   BIBER_SKIP_DEV_TESTS=1 perl-module_src_test
+}



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

2015-10-28 Thread Patrice Clement
commit: 8ab02abd6848d300382e6849e2fff5d65685659f
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 20:59:36 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 21:08:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab02abd

dev-java/rhino: Stable for amd64. Stable for ppc+ppc64+x86 using the ALLARCHES 
policy.

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

 dev-java/rhino/rhino-1.7.7-r1.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/dev-java/rhino/rhino-1.7.7-r1.ebuild 
b/dev-java/rhino/rhino-1.7.7-r1.ebuild
index 1d9411c..ebdf486 100644
--- a/dev-java/rhino/rhino-1.7.7-r1.ebuild
+++ b/dev-java/rhino/rhino-1.7.7-r1.ebuild
@@ -24,7 +24,7 @@ HOMEPAGE="http://www.mozilla.org/rhino/";
 
 LICENSE="MPL-1.1 GPL-2"
 SLOT="1.6"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 # ../rhino-Rhino1_7_7_RELEASE
@@ -56,13 +56,9 @@ EANT_TEST_TARGET="junit"
 RESTRICT="test"
 
 java_prepare() {
-   find . \
-   -type f \
-   -name \*.jar \
-   -print \
-   -exec rm -v {} \; || die "Couldn't delete bundled jar files."
+   java-pkg_clean
 
-   epatch ${PATCHES[@]}
+   epatch "${PATCHES[@]}"
 
if use test; then
mkdir lib || die



[gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/, dev-tex/biber/

2015-10-28 Thread Manuel Rüger
commit: 87bbf167b6c9f59c5bb18213efcd6db909f7c1ac
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Oct 28 21:09:35 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Oct 28 21:09:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87bbf167

dev-tex/biber: Remove old

Package-Manager: portage-2.2.23

 dev-tex/biber/Manifest |   1 -
 dev-tex/biber/biber-1.9.ebuild |  70 ---
 .../biber/files/biber-1.9-drop-mozilla-ca.patch| 221 -
 3 files changed, 292 deletions(-)

diff --git a/dev-tex/biber/Manifest b/dev-tex/biber/Manifest
index 5ff0fa9..e1c2d04 100644
--- a/dev-tex/biber/Manifest
+++ b/dev-tex/biber/Manifest
@@ -1,3 +1,2 @@
-DIST biber-1.9.tar.gz 2046569 SHA256 
4b8f7ab78f326f2c862c99f8dbb3b224c49f9289820dc226c9529dfa945d9066 SHA512 
6b417fd2537e832e8309e3cd1405037a0e1a6e1bc2f2759a208a97f1107a787c269eb3dd9a5b3875855dd50d641dbe7d61b7127d11f986a05d1ceb08ec6ecfda
 WHIRLPOOL 
47b39ab2e0c35e48f4d627bf24f4c03bbeb6b8f499c6492d403da31098b1eb13cd998713f7fbe38c260dff1418b1bd03aede7fa86cd04baf4d5dbe04816e4377
 DIST biber-2.1.tar.gz 706 SHA256 
7b20049557869a994ed9e0373f620720370981b6412ca415f0408d1af893f8f4 SHA512 
4a19bf9781cb90da52d9f08163b9ed400233db5c446054b12ab339786456e85bc7aba16ff8c0a36351ecc66b90e4a93e594e820b52f93566449b8c96b27852fb
 WHIRLPOOL 
0c7b1827e3e9ede6aebd45a00b63eac8cc3e7896d89c219fa2c467b4b6b10f48f2180aeb70d727f14620267943d59646daf4d0f09ddb1bd7b6b4b945d973dc03
 DIST biber-2.2.tar.gz 2296128 SHA256 
6dd93476b27ac7603bc9f224a3b00558f86617209f93b74f8cb4a51f54480c2f SHA512 
508b5a8046a1ff7ef6482b5c1f86ce427fa47f669ca224ee52252109dd6488ff242ea5076cafd47f66f288fed994b5425eab4c2566346046e0b2f656ca679d7c
 WHIRLPOOL 
2006b26277eaeb707211a1828e70c4bbfd04030f56e91062c57050a5b0479d317455352730976f3f9206eafbafdccc71d9f071f4e9dedace1c77e8c79ab826b4

diff --git a/dev-tex/biber/biber-1.9.ebuild b/dev-tex/biber/biber-1.9.ebuild
deleted file mode 100644
index 376fe96..000
--- a/dev-tex/biber/biber-1.9.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils perl-module
-
-MY_PN=biblatex-${PN}
-
-DESCRIPTION="A BibTeX replacement for users of biblatex"
-HOMEPAGE="http://biblatex-biber.sourceforge.net/";
-SRC_URI="mirror://sourceforge/project/${MY_PN}/${MY_PN}/${PV}/${MY_PN}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="|| ( Artistic-2 GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-RDEPEND=">=dev-lang/perl-5.16
-   dev-perl/autovivification
-   dev-perl/Business-ISBN
-   dev-perl/Business-ISMN
-   dev-perl/Business-ISSN
-   dev-perl/Data-Compare
-   dev-perl/Data-Dump
-   dev-perl/Date-Simple
-   dev-perl/Encode-EUCJPASCII
-   dev-perl/Encode-HanExtra
-   dev-perl/Encode-JIS2K
-   dev-perl/File-Slurp-Unicode
-   dev-perl/IPC-Run3
-   dev-perl/libwww-perl[ssl]
-   dev-perl/List-AllUtils
-   dev-perl/Log-Log4perl
-   dev-perl/regexp-common
-   dev-perl/Readonly
-   dev-perl/Readonly-XS
-   >=dev-perl/Text-BibTeX-0.66
-   dev-perl/URI
-   dev-perl/Unicode-LineBreak
-   dev-perl/XML-LibXML-Simple
-   dev-perl/XML-LibXSLT
-   dev-perl/XML-SAX-Base
-   dev-perl/XML-Writer
-   >=dev-tex/biblatex-2.7
-   virtual/perl-IPC-Cmd"
-DEPEND="${RDEPEND}
-   dev-perl/Config-AutoConf
-   dev-perl/Module-Build
-   test? ( dev-perl/File-Which
-   dev-perl/Test-Pod
-   dev-perl/Test-Pod-Coverage )"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-SRC_TEST="parallel"
-
-src_prepare(){
-   epatch "${FILESDIR}"/${P}-drop-mozilla-ca.patch
-}
-
-src_install(){
-   perl-module_src_install
-   use doc && dodoc -r doc/*
-}
-
-src_test() {
-   BIBER_SKIP_DEV_TESTS=1 perl-module_src_test
-}

diff --git a/dev-tex/biber/files/biber-1.9-drop-mozilla-ca.patch 
b/dev-tex/biber/files/biber-1.9-drop-mozilla-ca.patch
deleted file mode 100644
index 54732a6..000
--- a/dev-tex/biber/files/biber-1.9-drop-mozilla-ca.patch
+++ /dev/null
@@ -1,221 +0,0 @@
-From f31062a94aefff64cc193aa3a394fd3a623c2aa7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Manuel=20R=C3=BCger?= 
-Date: Thu, 29 May 2014 14:23:06 +0200
-Subject: [PATCH] Remove Mozilla::CA dependency.
-
-
-diff --git a/Build.PL b/Build.PL
-index 3ea589b..76acdc7 100644
 a/Build.PL
-+++ b/Build.PL
-@@ -49,7 +49,6 @@ my $builder = $class->new(
- 'IPC::Run3' => 0,
- 'List::AllUtils' => 0,
- 'List::MoreUtils' => 0,
--'Mozilla::CA' =>  '20130114',
- 'Regexp::Common' => 0,
- 'Log::Log4perl' => 0,
- 'Unicode::Collate' => '1.04',
-diff --git a/META.json b/META.json
-index cf91a91..1855294 100644
 a/META.json
-+++ b/META.json
-@@ -44,7 +44,6 @@
- "List::AllUtils" : "0",
- "List::MoreUtils" : "0",
-  

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

2015-10-28 Thread Manuel Rüger
commit: a40412c62030339bb598c9e080daac0750566188
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Oct 28 21:11:03 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Oct 28 21:11:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a40412c6

dev-tex/biblatex: Remove old

Package-Manager: portage-2.2.23

 dev-tex/biblatex/Manifest|  1 -
 dev-tex/biblatex/biblatex-2.9a-r1.ebuild | 35 
 2 files changed, 36 deletions(-)

diff --git a/dev-tex/biblatex/Manifest b/dev-tex/biblatex/Manifest
index b54e59c..d429932 100644
--- a/dev-tex/biblatex/Manifest
+++ b/dev-tex/biblatex/Manifest
@@ -1,3 +1,2 @@
-DIST biblatex-2.9a.tds.tgz 17829003 SHA256 
d3e6490505728113bcc5332f1a83fca1db6d50950e0ffaade495f4c5052e5175 SHA512 
1341e530bc68096498306b9933a014eaf2e4ebc573b344776ae3f3addd93301927f31da84b368b812e364aae45bdab1624da69a63dfcd0589b3a28c7795f6ab8
 WHIRLPOOL 
51f30f41e323077a24958e0724d1357763f2c5e9b05ebf6dd11b254cde0d5d20f4a93cf66d9f722d550908d1d0c9856f430edc2067aabd4e4d3c11b293e465df
 DIST biblatex-3.0.tds.tgz 18965624 SHA256 
8de8554eea84dce59a652d61a11e5fcd52c89f303471eb9ca58304b82155e889 SHA512 
a8db58907953010c0376bda823ef03250428a2df0172a6e74f2725b19212a8df95c8e742b27f5301a5ca401ccee394d1aa4485bafc2263c985fbde1ce5de4c93
 WHIRLPOOL 
b444a55a0149a5147e1142c4ba8a4ee2251e1f92cece83a8ee7b6ff79a46d46bbb9a22b4f34cdb06aba55eb9b13efb9465d32de60753f27d5c48931044411719
 DIST biblatex-3.1.tds.tgz 18983013 SHA256 
96280c084f7f1a5ccde679130f80ae0b7e43265aa51b0ea083caadd01c5ec7d1 SHA512 
62a4be3d875f70987c2faf83b7558b46ae936ef4e52afa357a2ac80a65afc15dfd783c1a4a4e140d9aa906bb49153ddec2b4e8233ed2d2a26599468190cde951
 WHIRLPOOL 
5e75313543b5b36a18e593dda68e3c655142e378877bb74513406ca6515a3d8eea5d67ef802594834a766af270d44e23d9f887f8d71e66e6fc8948c6180af864

diff --git a/dev-tex/biblatex/biblatex-2.9a-r1.ebuild 
b/dev-tex/biblatex/biblatex-2.9a-r1.ebuild
deleted file mode 100644
index e9a5d90..000
--- a/dev-tex/biblatex/biblatex-2.9a-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit latex-package
-
-DESCRIPTION="Reimplementation of the bibliographic facilities provided by 
LaTeX"
-HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz"
-
-LICENSE="LPPL-1.3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-RDEPEND="dev-texlive/texlive-bibtexextra
-   dev-texlive/texlive-latexextra"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}
-TEXMF=/usr/share/texmf-site
-
-src_install() {
-   insinto "${TEXMF}"
-   doins -r bibtex tex
-
-   dodoc doc/latex/biblatex/{README,RELEASE}
-   use doc && { pushd doc/ ; latex-package_src_doinstall doc ; popd ; }
-   if use examples ; then
-   docinto examples
-   dodoc -r doc/latex/biblatex/examples
-   fi
-}



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

2015-10-28 Thread Patrice Clement
commit: d53ff204309b1e75190277f93c2eaeea0b4a64a0
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 21:00:47 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 21:08:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d53ff204

dev-java/rhino: Clean up old.

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

 dev-java/rhino/Manifest   |  3 -
 dev-java/rhino/files/00_dont-fetch-swing-ex.patch | 10 ---
 dev-java/rhino/files/1.5.5_jdk15.patch| 23 --
 dev-java/rhino/files/public-NativeScript.patch| 11 ---
 dev-java/rhino/files/rhino-1.6-noget.patch| 12 ---
 dev-java/rhino/rhino-1.6.5.ebuild | 61 --
 dev-java/rhino/rhino-1.7.2-r2.ebuild  | 63 ---
 dev-java/rhino/rhino-1.7.7.ebuild | 98 ---
 8 files changed, 281 deletions(-)

diff --git a/dev-java/rhino/Manifest b/dev-java/rhino/Manifest
index 69f4fab..3fc41b1 100644
--- a/dev-java/rhino/Manifest
+++ b/dev-java/rhino/Manifest
@@ -1,4 +1 @@
 DIST Rhino1_7_7_RELEASE.zip 6059127 SHA256 
0ef505aee093c690025c4484ce108b6e735e05baa3181bb56fdec4cb6b8b0107 SHA512 
ce89b6a153d62dd459a86360c67d6db4b05922d8ab49a8d45ccb0deb0f639cd819f0ad75cb4929eda6b7f0fd6ddb5879a4035de6968283317bfd0e93d2bb744e
 WHIRLPOOL 
0f54840077e46a6ac31e23784b3c13881a774356df14274fc9ffdf93eb3d7b92e830d8e51494931819a609a971bb6744cf961c2c168bb94b4e42d3eb0896
-DIST rhino-swing-ex-1.0.zip 19708 SHA256 
062837ddb18951ace41ba0050aec95a690c00190a6218e5c9591c381035dfa7d SHA512 
f2c1f970595cb08ac301d2fc21e0a2f1090b2007c849d993094ef3215a39456a5865bcaaf9424da93a09d6f0d151be6ec77f844bde2540d725c85c4b54a5f248
 WHIRLPOOL 
4dd40c1c80a70cd08584ac44abd3b42a790080f93449da8e241ed568ff5b3a5ac6cef12951632eba91547845be49401102d072b05a83a3ed78705acd768b1ced
-DIST rhino1_6R5.zip 1822832 SHA256 
02a4f17121f148c94ac65fb6d9eb4a817ce86c378c96cc94e9fc1b087b34526f SHA512 
bd10b2e687925e06a5a4da5bc0e29a65cff08fc26792e3183f2ab28efb71efcdbc2fb08142be2fd2622c0b94dfa2691ce898ba847935def780e8686a879720f0
 WHIRLPOOL 
5fda95c5a99a6e99322a81fda513135cece56df0c7d17efcaea0b5f9f8f63b3adccd47bf30f26521b36e33f34e642e05107d7e0f202b8d532356884954d01049
-DIST rhino1_7R2.zip 2996867 SHA256 
677f7dc1b67a1587bc03974d5f0720474a56b8f29835e1d860739908df8462dc SHA512 
e4472e11377e93b64df3a2a9f266956d86ba78c85ceba57ff05c983d577143351fcbbbc0b63f7034718fd74c13a9e50bac6e8813f320b86fcd09b571e919b858
 WHIRLPOOL 
546f9a0e565881dd6128e000ca8c8e017cf7432e40df885268c4827e2dbd28f86cde37dbc7284bd1b08b062060eca1465716f850dbd54f176ead475b4b55351d

diff --git a/dev-java/rhino/files/00_dont-fetch-swing-ex.patch 
b/dev-java/rhino/files/00_dont-fetch-swing-ex.patch
deleted file mode 100644
index 9949751..000
--- a/dev-java/rhino/files/00_dont-fetch-swing-ex.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 toolsrc/build.xml  2004-03-25 15:54:34.0 +0100
-+++ toolsrc/build-patch.xml2004-06-19 23:48:07.225123288 +0200
-@@ -20,7 +20,6 @@
- 
--http://java.sun.com/products/jfc/tsc/articles/treetable2/downloads/src.zip";
 dest="${nest}/${build.dir}/swingExSrc.zip"/>
- 
- 
- 

diff --git a/dev-java/rhino/files/1.5.5_jdk15.patch 
b/dev-java/rhino/files/1.5.5_jdk15.patch
deleted file mode 100644
index 0948921..000
--- a/dev-java/rhino/files/1.5.5_jdk15.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -urpN 
rhino1_5R5.old/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java
 rhino1_5R5/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java
 
rhino1_5R5.old/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java
  2004-03-25 15:54:34.0 +0100
-+++ 
rhino1_5R5/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java   
   2005-02-01 13:58:26.521223264 +0100
-@@ -124,7 +124,7 @@ public class JavaPolicySecurity extends 
- 
- public JavaPolicySecurity() {
- // To trigger error on jdk-1.1 with lazy load
--new CodeSource(null, null);
-+new CodeSource(null, (java.security.cert.Certificate[])null);
- }
- 
- protected void callProcessFileSecure(final Context cx,
-@@ -167,8 +167,8 @@ public class JavaPolicySecurity extends 
- }
- 
- private ProtectionDomain getUrlDomain(URL url) {
--CodeSource cs = new CodeSource(url, null);
--PermissionCollection pc = Policy.getPolicy().getPermissions(cs);
-+CodeSource cs = new CodeSource(url, 
(java.security.cert.Certificate[])null);
-+  PermissionCollection pc = Policy.getPolicy().getPermissions(cs);
- return new ProtectionDomain(cs, pc);
- }
- 

diff --git a/dev-java/rhino/files/public-NativeScript.patch 
b/dev-java/rhino/files/public-NativeScript.patch
deleted file mode 100644
index 026bced..000
--- a/dev-java/rhino/files/public-NativeScript.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 rhino1_5R5/src/org/mozilla/javascript/NativeScript.java.orig   

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

2015-10-28 Thread Michael Sterrett
commit: 836af3c27c8b56ecea27a1afa7ed416c3cd0bcfb
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Oct 28 21:20:00 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Oct 28 21:20:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=836af3c2

version bump

Package-Manager: portage-2.2.20.1

 app-admin/syslog-ng/Manifest   |   1 +
 app-admin/syslog-ng/syslog-ng-3.7.2.ebuild | 143 +
 2 files changed, 144 insertions(+)

diff --git a/app-admin/syslog-ng/Manifest b/app-admin/syslog-ng/Manifest
index e434787..0f39aac 100644
--- a/app-admin/syslog-ng/Manifest
+++ b/app-admin/syslog-ng/Manifest
@@ -1,4 +1,5 @@
 DIST syslog-ng-3.7.1.tar.gz 3509575 SHA256 
4c19841b9079b377cd814b1e6ebbf273af41d04d51c648f4c31f19bfadc20220 SHA512 
6f9a68aec2594d83c43cf40e12a3d56e65661929a47c2a053ae120e34ad358d4dfd0b5b0303a374a5557f2ac0670114037a339530b111b1078b56e5baf284ed4
 WHIRLPOOL 
247498f144aec419d1214378332bc286795fa8f59ba33ce75b3d000be6340758f00a694d76b5cbfdd6b68d138a6cd373c06bb52c70e6ed6de29189c03a56d16b
+DIST syslog-ng-3.7.2.tar.gz 3558377 SHA256 
b1b3ccc0ce7f0d8bf15b23e59f2f4f5ded70eed410dfd27105219bc8856388a5 SHA512 
dbf58b51b68bc6616a136df5eb67a120718d8c83f785218d40f62e5f7b3691a3ad4d21db617551e4192e053dc9340440424e3d3b072b47ca590d4eac0dbf0e6f
 WHIRLPOOL 
3721841f6e5ea883cd5ee71bf1651fa0861904008eb1136127c36990e2fe8801deafdf31ce880677eff7739b0b07411eee4542d8d4a80b60819fa3bd9ab24b9e
 DIST syslog-ng_3.4.8.tar.gz 3169372 SHA256 
96c2f970fbba4fdd7659b1fee5e476d2858c911d4304d42099f495493762ff49 SHA512 
23ba9908664e594c186cbe4bd5dcfb5d2ed3faf02ec45b931bb91b078660547989c2340a08b478a33adb530d39a6d6f39a2e7519107a3f6b923ac9f39529620e
 WHIRLPOOL 
1085fa2c90e0c85421c64ed50e8a357f29006afea2f3e329e42d1e27f4210a10fe0f05d4af95a11c245d68b43644a4a829a50c05b7d541f59a6f580b3643b434
 DIST syslog-ng_3.6.2.tar.gz 3207456 SHA256 
ef47fada52981e09af570457a5af30f815f5d5b6c2e33754cedd4ca9780d8261 SHA512 
15603b4df2001e1ce7e0019d0dd9a0f4295445e3fd19a527ebf3d49486da7da27fac6c465727ec0354f8f70ca0f671a285ec132f9aa0de62b40f18b44af2a226
 WHIRLPOOL 
7135db242374d6e5789c0820a06187b7e325054fd214e3aee75aac5b8dde56786b432cc4519c07ce0cd413c3a560e8e74ee6eca319c21eaa750ca8140ef1b63f
 DIST syslog-ng_3.6.4.tar.gz 3276432 SHA256 
7be11df31ac7d716f1f952e22b5ae8e2049edd633a41b223776a853d9106f4e7 SHA512 
9c648628b9bd3ebb25bc44fa6586e88a4b9ed7c24b1c337569d3cccb04bf2f427ba1218900f8dfd8f668f245d6ab44ad45b67da661b7c2af68c6c42101b722e1
 WHIRLPOOL 
496a9b2e06e33b0c42726f3b13f859f356f136367c48363cd22b086b72f4f54a32cc057235636f2d2ea3ad7bdd622354ea67df1cbc770be608a84bc861fce93d

diff --git a/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild
new file mode 100644
index 000..0a1f050
--- /dev/null
+++ b/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-any-r1 eutils multilib systemd versionator
+
+MY_PV=${PV/_/}
+MY_PV_MM=$(get_version_component_range 1-2)
+DESCRIPTION="syslog replacement with advanced filtering features"
+HOMEPAGE="http://www.balabit.com/network-security/syslog-ng";
+SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz";
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
+IUSE="amqp caps dbi geoip ipv6 json libressl mongodb pacct python redis smtp 
spoof-source systemd tcpd"
+RESTRICT="test"
+
+RDEPEND="
+   caps? ( sys-libs/libcap )
+   dbi? ( >=dev-db/libdbi-0.8.3 )
+   geoip? ( >=dev-libs/geoip-1.5.0 )
+   json? ( >=dev-libs/json-c-0.9 )
+   python? ( ${PYTHON_DEPS} )
+   redis? ( dev-libs/hiredis )
+   smtp? ( net-libs/libesmtp )
+   spoof-source? ( net-libs/libnet:1.1 )
+   systemd? ( sys-apps/systemd )
+   tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
+   dev-libs/libpcre
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   >=dev-libs/eventlog-0.2.12
+   >=dev-libs/glib-2.10.1:2"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-devel/flex"
+
+S=${WORKDIR}/${PN}-${MY_PV}
+
+pkg_setup() {
+   use python && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   epatch_user
+   use python && python_fix_shebang .
+
+   if use !json ; then
+   sed -i \
+   -e '1 s/cim //' \
+   scl/Makefile.am || die
+   eautoreconf
+   fi
+
+   cp "${FILESDIR}"/*logrotate*.in "${TMPDIR}" || die
+   cd "${TMPDIR}" || die
+
+   for f in *logrotate*.in ; do
+   if use systemd ; then
+   sed \
+   's/@GENTOO_RESTART@/systemctl kill -s HUP 
syslog-ng/' \
+   $f > ${f/.in/} || die
+

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

2015-10-28 Thread Michael Sterrett
commit: aaeb4496c781b71c516577eaa7b17ca1409c903f
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Oct 28 17:15:59 2015 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Oct 28 21:19:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaeb4496

clean out old keyword shadowed versions

Package-Manager: portage-2.2.20.1

 sys-apps/busybox/Manifest |   5 -
 sys-apps/busybox/busybox-1.20.2.ebuild| 291 
 sys-apps/busybox/busybox-1.21.1.ebuild| 299 -
 sys-apps/busybox/busybox-1.22.0.ebuild| 299 -
 sys-apps/busybox/busybox-1.22.1-r1.ebuild | 300 -
 sys-apps/busybox/busybox-1.22.1.ebuild| 299 -
 sys-apps/busybox/busybox-1.23.0-r1.ebuild | 302 --
 7 files changed, 1795 deletions(-)

diff --git a/sys-apps/busybox/Manifest b/sys-apps/busybox/Manifest
index 70008b2..c7e1fc3 100644
--- a/sys-apps/busybox/Manifest
+++ b/sys-apps/busybox/Manifest
@@ -1,8 +1,3 @@
-DIST busybox-1.20.2.tar.bz2 2186738 SHA256 
eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882 SHA512 
089b67cd920f332daf910711739b1e55ba4c76cfa2122dfe5464432e0d76d3af8327837ebc3cc9954deef3e8f766d16a1928aecb2c169fe3de5a722eea7ea3dd
 WHIRLPOOL 
aa8fec92d0ac8bb246dea7353537d425a5fecfa0bb807d0e291c7351e8289b84aab83303c45b75f9b7a98cd10177e210511064f0709425c2f84b069fe6a06420
 DIST busybox-1.21.0.tar.bz2 2200841 SHA256 
eb9d268627783297f5f459cb9bd61a94e395dc7cb3647e10ec186e0159aa36ed SHA512 
ddafded24881f03db550d9793585bb5442c70f2a60a5d9770126f50981dadfe95fc0b280f83d5b8a8ce21c86bb7ce64e9f1a606cea140fb2f2599a21de55ba31
 WHIRLPOOL 
d50378bb823dd59e8a607ed6a72d4890f4e5ad3304f1ddba9f7f3d49b5ab820acc9daa2b3c4619f8b147dec085c53c3c6f4b4ebe4c60b431299031d2af00a4d3
-DIST busybox-1.21.1.tar.bz2 2201917 SHA256 
cd5be0912ec856110ae12c76c3ec9cd5cba1df45b5a9da2b095b8284d1481303 SHA512 
b1dd626e1c111214ebd9b933ce2465c943fd8a0a515b6962a31f3a76276ff7992c21b7f96eeb9baeb861a5e734689054e6df5dd6414c753c37084e2d705810e1
 WHIRLPOOL 
8ec0d9c23d8e2eb28e7f8e88f076908cf6a3f7b64aabd0a7a1af2200064a5337c82fdac9450726236e0632faa202ea08396ca5c35e5334c2128a307adbdd736c
-DIST busybox-1.22.0.tar.bz2 2218120 SHA256 
92f00cd391b7d5fa2215c8450abe2ba15f9d16c226e8855fb21b6c9a5b723a53 SHA512 
75d00fbad703d942c5a6882bda0c66fde32fb480ee9693c8da8107c2088ec5c95aad8eb3dbb2feceed095e133916fea27136328b7a1eba47e3b63bf50bc40a66
 WHIRLPOOL 
055aba8e8d116f664f61458f32c31c08bfdb0db97934eb00af02098981e25665aff16e9a371234a6859e4954d1568603a99ca7d6925cd42a27e7dae30523514f
-DIST busybox-1.22.1.tar.bz2 2218650 SHA256 
ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b SHA512 
3e99fe373d638f714c3a61e1b02493d85ca532f472df038f7557db518ded38347072882ed568852941be7aac46fc34007257b4287375335ff5a09b60b295ce80
 WHIRLPOOL 
8f022480960b81d673772bdda857b5b3860edd893a833a64f5184ec6816b6b0f328079ca67ec1ba1d288a7c4b805b39c6038f0d385884762a396a86ccea7b0c8
-DIST busybox-1.23.0.tar.bz2 2253001 SHA256 
483ab594dd962ddbb332fd24e36ffdd6e36ac2182fbff055c56e1ca49fda09e4 SHA512 
02c8f9dd9e47ad67b417fa58ba952bbdda6e79bad5399fba3d8217803053c2fd045228bd76d56e97d40c98296841dc66e4fa829887c05378a83bdeabafeb7f72
 WHIRLPOOL 
01d68487d4d3cff4fb807970446f42db1dec3309fdd3fb0402f138eee28dc0885dba324b5b12b417effd4fad87581a32da09a0e9f7c050377025a52ecce2308b
 DIST busybox-1.23.1.tar.bz2 2252635 SHA256 
300f1db0a7ca4ecee8f8d8027aba250b903372e8339b7d9123d37c1e900473bf SHA512 
60849c220dde596c4197f16dd844573b24dd46c8544345a2d5a2b1976fa0ac340d22fbc97f5a1437b7de1c04f4e16aa07b3d62bc77eb83b2467582a50ed4b362
 WHIRLPOOL 
7cd25e42e74663849b094df699a72deaf02b1088064a511341f76aaa419c936557bbafd54523c6818082dfd4e17605f06ee51abed238ef57a56a9be12c910f99
 DIST busybox-1.23.2.tar.bz2 2252786 SHA256 
05a6f9e21aad8c098e388ae77de7b2361941afa7157ef74216703395b14e319a SHA512 
209c8ef26e40ccb81510f6b663202b080f9bbecac7faf386bbabf7e36a43d63b15dd6ce9f7a84c1ccc5345c524999812251da1e113ef9faadc6af1fedd24c7c9
 WHIRLPOOL 
a0396f7f49ae702f1617e72d5d4646aceec4eba67219c7125bd8d0926d1acb1ef41ea15a7406c3cf5e5e0d8925cc75910ed5128e5fbdd257b80e2cb4f7a048a2

diff --git a/sys-apps/busybox/busybox-1.20.2.ebuild 
b/sys-apps/busybox/busybox-1.20.2.ebuild
deleted file mode 100644
index 465f436..000
--- a/sys-apps/busybox/busybox-1.20.2.ebuild
+++ /dev/null
@@ -1,291 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-inherit eutils flag-o-matic savedconfig toolchain-funcs multilib
-
-
-# BUSYBOX ALTERNATE CONFIG MINI-HOWTO
-#
-# Busybox can be modified in many different ways. Here's a few ways to do it:
-#
-# (1) Emerge busybox with FEATURES=keepwork so the work directory won't
-# get erased afterwards. Add a definition like ROOT=/my/root/path to the
-#

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

2015-10-28 Thread James Le Cuirot
commit: ee2e24cbf1902c1f00cd311261c868fe064314b6
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Oct 28 22:45:19 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Oct 28 23:12:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2e24cb

dev-java/emma: Add ~arm keyword

Package-Manager: portage-2.2.20.1

 dev-java/emma/emma-2.0.5312-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/emma/emma-2.0.5312-r2.ebuild 
b/dev-java/emma/emma-2.0.5312-r2.ebuild
index aa5d87c..66b1fc1 100644
--- a/dev-java/emma/emma-2.0.5312-r2.ebuild
+++ b/dev-java/emma/emma-2.0.5312-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
 
 LICENSE="CPL-1.0"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd"
 
 IUSE="+launcher"
 



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

2015-10-28 Thread Patrice Clement
commit: d3e6ea73df9a412ead85a59208c56e67585485c0
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Oct 28 22:59:51 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Oct 28 23:00:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e6ea73

profiles/package.mask: Masked dev-db/octopus for removal. See bug 564370.

Signed-off-by: Patrice Clement  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 597e08c..86786ba 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Patrice Clement  (29 Oct 2015)
+# No release since 2007. Has dependencies on old ebuilds.
+# Removal in 30 days. See #564370
+dev-db/octopus
+
 # Matt Turner  (Oct 27 2015)
 # xproto-7.0.28 breaks xorg-server
 >=x11-proto/xproto-7.0.28



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

2015-10-28 Thread James Le Cuirot
commit: 346168e31149bce833b378fe16c6f46163fd0aec
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Oct 28 23:23:22 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Oct 28 23:23:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=346168e3

dev-java/rhino: Add ~arm keyword to unbreak the tree

The test flag has been temporarily masked on arm until the jflex
sub-dependency is sorted out. This should happen shortly.

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-java/rhino/rhino-1.7.7-r1.ebuild 
b/dev-java/rhino/rhino-1.7.7-r1.ebuild
index ebdf486..753aa18 100644
--- a/dev-java/rhino/rhino-1.7.7-r1.ebuild
+++ b/dev-java/rhino/rhino-1.7.7-r1.ebuild
@@ -24,7 +24,7 @@ HOMEPAGE="http://www.mozilla.org/rhino/";
 
 LICENSE="MPL-1.1 GPL-2"
 SLOT="1.6"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 x86"
 IUSE=""
 
 # ../rhino-Rhino1_7_7_RELEASE



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

2015-10-28 Thread James Le Cuirot
commit: e49eedb51e0589bad3c74cd72cc1b7516400f821
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Oct 28 23:20:39 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Oct 28 23:20:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e49eedb5

profiles: Temporarily mask dev-java/rhino[test] on arm

Issue with keywording sub-dependency jflex but this should be resolved
very shortly. Masking this now to unbreak the tree.

 profiles/arch/arm/package.use.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 5961da1..51e1166 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -2,6 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# James Le Cuirot  (19 Oct 2015)
+# Issue with keywording sub-dependency jflex but this should be
+# resolved very shortly. Masking this now to unbreak the tree.
+dev-java/rhino test
+
 # Pawel Hajdan jr  (15 Oct 2015)
 # Repoman reports dependency issues on arm.
 www-client/chromium system-ffmpeg



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

2015-10-28 Thread Mike Pagano
commit: b29d1ccb38bc00a09069deb148ae32c8785dc502
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Oct 28 23:45:42 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Oct 28 23:45:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b29d1ccb

sys-kernel/gentoo-sources: Clean up old, unsupported 3.4.X versions

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest |  6 -
 .../gentoo-sources/gentoo-sources-3.4.107.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.4.108.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.4.109.ebuild   | 29 --
 4 files changed, 93 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 38908d4..d5ab008 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -68,12 +68,6 @@ DIST genpatches-3.18-21.extras.tar.xz 16192 SHA256 
76e21081cdcb3c1b38632ec5375b4
 DIST genpatches-3.18-22.base.tar.xz 651380 SHA256 
9c866ac44e0c716a5292c3ec907fc52edfce1a32d75cbc63e51f2adbd10067d0 SHA512 
d1183150a2ee641714dc85c873713936d862688d4314a6906a25943bbfb34566fe5d0e838d61eba2fc369a657aa762f6276a2a31a5c4e2e9429db4330a0fa03a
 WHIRLPOOL 
22d358be0bfd836ded82b5fc347f5bc266186ee0374120f2def7e6d8c4e87c43ab364eb64c6b141ee8d0705912ebc12f5525694c7d6fcbc9da38c0012ed09da2
 DIST genpatches-3.18-22.experimental.tar.xz 61604 SHA256 
a216f6a678d83ca91283adddaef52face5980718cc7eae9d8764f782422771c8 SHA512 
aa2819419490a7ea0ac06179c07a2139e671877b4a5109c019c8931f21069e4d313c75279b679a76ead8381bc1f709a77b8eb19da27f3d5e8d4d4fb97a0ae5c3
 WHIRLPOOL 
fb4364fc476edac40019c1215c5ba94e29ffd003aae37cb8bb642008e2f0a853ec174c4495699a2c7984dd190d895aeab17cae3ab6c6045ff497c07716a46939
 DIST genpatches-3.18-22.extras.tar.xz 16196 SHA256 
deeab880c0705b9a02492e2e73152614b7c7dd9f213303fd5284ee07debf0416 SHA512 
5ba6d42c5973daa52a54bc77f3f13312d9c6f496e002ab2ad613a08f18ee64dad39472ec0cdb0e545b2c95aee0d69fd30c38877d15f266768a22fabb8a06e2a3
 WHIRLPOOL 
84092c11122198958498e26d3c4fccbf06451ff9c880510f763968644d03c30160f01090c2bc5b411cb813715083682b90b750401ffd7c8f011ae24f203e90c0
-DIST genpatches-3.4-90.base.tar.xz 1325696 SHA256 
77764d0afc0e3a9db3b4e3314c86505ed8703834f8364fabf7bc21004d14425b SHA512 
df2583e5a939a2ae9a2fade243b128ad3b1d4f7370407bca15ad1dca2defde271ede16daa8c01f844053af5da7a5cfbb7ea04839fe93a4a21fe87d1d8551374f
 WHIRLPOOL 
17050e7e73b15106fb1831290a685810e65e41a345669e401ab324a3fa27576d02cb17e22b3f8c36961b501b31254cef82d849cac005504b8feb5b4113d9cbc3
-DIST genpatches-3.4-90.extras.tar.xz 18236 SHA256 
787d5a43bbadfcb40ac5f7aed21aca6bba239bcf495b0d051380f675487ecb42 SHA512 
9917f83e64c0705e0c810723ada2f14109d29cee03576027fb234229796c024d8092abbb91406e2ff9594e9e1840f718885e9e0ff294cdb2bfb0ef76fbcfde0d
 WHIRLPOOL 
255b4f46bd3f0685f6903eb04be187dfa3f821318c7bb8ae48fb17c35eabd88d0f14684f6031326cea4935246acd0766abe6e7363f1a527af686c7fa965cf9d3
-DIST genpatches-3.4-91.base.tar.xz 1363016 SHA256 
14bf3a56dae5a9c307c2bbf2cccda44b5bb8f7c460ef9711b858bc8475b0 SHA512 
f28f86bb302313b13c2de08d227e0bd0ca93ab5dd2071b6c0797c9b7e29f84b7abe2266c93bba15789a51d6d77c70b749105b5d4a1f7053b041ebd9eb5a80df5
 WHIRLPOOL 
8535d191d5482773a6d9aa8d45a6b8614b3ba936fc043e7ae5d52ee676ff89a65457c531bb14ce2ea447cb26083efc50c6748c04412b7d6b1a1c76d1d52a2ed6
-DIST genpatches-3.4-91.extras.tar.xz 18236 SHA256 
34a52d49b677ca2f528e47e08af64bf4b9e8b036710806ebc31ba31bd612dd1e SHA512 
04571d1f872a7dae516c8d20c99639039393f23f961650e4ed63d7cab72ca99b227bc0aafb82143c69890fb084fb51bb28367ad9b59a64c79702078fff9bd208
 WHIRLPOOL 
e70a665250cd5999f3b4906fc8ea8637ef703441aa6e51a06771f0cd906a16b83181bb317375fc3c604676bbf490336a6969e8748a81d4c5628107bbc38439af
-DIST genpatches-3.4-92.base.tar.xz 1396616 SHA256 
690030c86258faaac6d1dbc011023537e4becee793d4351307d965290612 SHA512 
af321be89ca243ed5920c12482afc7ed0b7e694b4154a2f83b4f35a432dda90fb5b1fc2bae91b99861d56c70cccd2bfb304b7b52e99b94a4bf3b87dd0980d53b
 WHIRLPOOL 
180749b1314707344c0db11edc0a57640741d1f610145b863bd0ded5f2bfb165b2bd454623899c146fe45927a12bf4e9a6c6c1e6323920c7721d42e791e9a284
-DIST genpatches-3.4-92.extras.tar.xz 18240 SHA256 
db4f7be2ce243c490895d551506486b7d56407c9f55fc2930202f0601d48317b SHA512 
8ed85c0a62d0d7f13256dd959ac029d5dfbd2bb25911bced52e23e0d5b8fca196c305efc7cfe31cb4c39dd99040e05064aa9456a6c97b00692efe489aa93f698
 WHIRLPOOL 
76d9a84c6dc7e6188a8aa92defe05db81a362b6a15e525e249b16a610b688089e4f84c81ed82fb88757cc162b5f7ddf6b5dbb193e50fd09f28e4d0fa0af42cdf
 DIST genpatches-3.4-93.base.tar.xz 1412220 SHA256 
dce2f6bce8058560fb4f005729a29fee9c6846147bca986b8b44d1554b78f0eb SHA512 
0f0cf52185a8a49f639a1f9d3ff302a72fd7cbf4403f7f5626c9f39c3f4e2e5ea69f402df429b0b3341655d9b7a4779b738f5d5fc6ecde3799861e0b6efb8cf4
 WHIRLPOOL 
ac2b82b6e749b945b79d2c21dc3081eaf399aafef80a3fc49ee71dc1f7ee753bf406d6e93bf2142ee4b25447e0304800de0adb9911274dc37172a9a9c63d624f
 DIST genp

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

2015-10-28 Thread Mike Pagano
commit: 5b87fd0881b4278b04c454cc6728c829fbd985e6
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Oct 28 23:50:13 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Oct 28 23:50:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b87fd08

sys-kernel/gentoo-sources: Auto stabilize per policy. Clean up of old 3.10.X 
kernels.

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest | 20 ---
 .../gentoo-sources/gentoo-sources-3.10.82.ebuild   | 30 --
 .../gentoo-sources/gentoo-sources-3.10.87.ebuild   | 30 --
 .../gentoo-sources/gentoo-sources-3.10.88.ebuild   | 30 --
 .../gentoo-sources/gentoo-sources-3.10.89.ebuild   | 30 --
 .../gentoo-sources/gentoo-sources-3.10.90.ebuild   | 30 --
 .../gentoo-sources/gentoo-sources-3.10.91.ebuild   | 30 --
 .../gentoo-sources/gentoo-sources-3.10.92.ebuild   |  4 +--
 8 files changed, 2 insertions(+), 202 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index d5ab008..b6fc4dd 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -1,31 +1,11 @@
-DIST deblob-3.10 117299 SHA256 
d48cad04fab6a802b3a3e34955c8e35b539c2441f9a62522ec5a132c3a5ae684 SHA512 
7b30f0f97ed97bf6b096d4a321b4b1e62f4b48f07972f2511870c3eaaf4f3877b0c6af2f30f6b985edf9c9c79267d40448b504c59016acfe06374630d1fdcba9
 WHIRLPOOL 
03a5963367cc6cb4f87e3d315ab61a8b3cb1fe577b20d7e2fb6ad83464075b3ed8176f543bb4c3b4e607d78cd55ef940f446bb75be09eb7496321930413ce2b9
 DIST deblob-3.12 120320 SHA256 
1d767acd3f461bcaa7ebef744dce1ca3eefde1cd41fde4c69a449e2470ab8c0e SHA512 
61073cb763e3e0c21a84c0ee888087fbbf37b667ce0efbbc6c2ebc46ccae8460553511e347cf23d3c3603eec64df738ad4552a1b527453c7d795b8f90c4cf678
 WHIRLPOOL 
c64cc566944ac241149a2a517da069185830be5b8ee25168b2b6b942bcf24fe3f2c0fe487b51a5b7e73e2910af2cabd7167cd1497ab7272c865d1eb3e68e4efe
 DIST deblob-3.14 121249 SHA256 
980400e0db952ccdb5a507f99444330af893ed0f8a7a052916fcf0c2b2631f7e SHA512 
2cbdf4f3947c12ade0931f0b3fb8b9c0312626a3bfea9d1c7d8d1d875b4673624ed3a6369653521998bbea0cde6730b573d6be918d052f1b553e093cb42a838f
 WHIRLPOOL 
7ba1738ac829d8848104843da6237576f235c0151d53944ff3a7e0308cfb91600ffb9253402a34c2ed106c5b0bb3ce36785ead990396465341a957c58319221c
 DIST deblob-3.18 127087 SHA256 
c720eabb3911f8dfa4398c4250853df4633018abebc01a509ee4a283c3e00941 SHA512 
6fe33762ba19aad7ff891b7b805cc26f6e2926f5e40c92fa45bc7f31bdeb5c8fc42b97e5d37d71b9422da239c7c54abd25f1fa2fa1e5733c6053abbf4c9e9011
 WHIRLPOOL 
c351a3ae15c59081fca69c1b5d9b9de10f024eb01f1426722a0d6ccb7caa34330be42897cd85cf19b22ff876352b0cec1c19707edc81c4cb01ad9c1df2e3d831
 DIST deblob-4.0 129952 SHA256 
c3d8e9a9728d5c1fc11b1112f5343b14e46a8cf2880e10399a840bc94b6e2ad3 SHA512 
055205394487dbc0022f9531fb76d0be51ca3ec4e119232cc0972790d1532c680e1367eb36a9f40529f0ab1d76f64240b1e8a07cb02d3605d594c06e3547f1bb
 WHIRLPOOL 
db32b66231e552ac6e3651152eb2b3212ef0863842cd352bd2f1b1080b9ea5543f1f7ed0e7958a9f4b115559233dc1817560e896c789378ea7b68b527b721ca8
-DIST deblob-check-3.10 612122 SHA256 
5a9552abac85cab9715a958785a3f901937fa135d85452647a16398181909c12 SHA512 
c52917e9de8211f66a1e6805282dd727f1ec86701f76cbf16d0909ec212a9429c0994e0993db95b57934b17d9d91b08b4fa29f80c501397a5acce84bf4e1aed9
 WHIRLPOOL 
d1c591fe7e229f9638945dd14f7dd16617ecff224b4cf2a6a3dd58913c23f7eb67496c26235d1d4637607bc9c9d260d990a0935b6b5bf2332f15e8ed58269856
 DIST deblob-check-3.12 612300 SHA256 
f29e34b141113ef9f71bf963b0e09bfe64e46db485ae1174bd212fed45a82ed3 SHA512 
5835725eecbb9c23740e80bf5a6bb826bf49244e8a90b82ba3e2eaabeb8199aaceb1b63b8615f9e4770d846a5218eddcd091e7ec4568f74f963eb177051e8da5
 WHIRLPOOL 
615b95b11a9c9514c94a064e6b5019d36faae384c55ba30da1014ce3676731042939331074ccb3e7136458d54f3a5ad1f88aeb8ea45fb6310734c9f455ddb750
 DIST deblob-check-3.14 613905 SHA256 
4c69ea1c225b1a84c41e75392dcaa94f77dd8e647aff3afe52f1ab16ac99c5e5 SHA512 
4dd7e785727ce29d78f5f68431fcb6ea9dfda5221dc8e699f40d13e3c85411707b13c288d23f8baa6b3c47f5a67ac58da0a7f1a51c4d9fdda82a7428ead88cf4
 WHIRLPOOL 
de1b67955662f072193f58b7e7dbd98c6680958c2d65632bfb831dc0681945a4d1c27abe978e6ee687ae8f48773eb71c2f9026f461377b28235e7f7e39832a67
 DIST deblob-check-3.18 654232 SHA256 
30f22602b6ddf2cbccc16ef25fdc4d92755f3972e1c671d7cab8b9d6865eb155 SHA512 
2cff9abef479a55dd6a0699371be8227ba63b18da1fb153d5df382e0a5e4f1b745b7de256a367a36efa9d12e2aad5622cc288efef009feebf81c108dbef4fe16
 WHIRLPOOL 
e92927ad1565e80ce87e8bda372f8f7eb42bc0f47ad9b19fe5cf737903b2021fd6e3756e8d22b70f3037a46c254fec8b7285b37beb10795ccb4ca99d38876f8c
 DIST deblob-check-4.0 670921 SHA256 
042b511913187672d9a0512765e662ba5d4283812ebebf424f778eb08fa359bc SHA512 
a27e3530cd3028041445cf8c5f49ad7827a7cf2b511de28851d2b09c28347cf2be667a7494bd698939c007fb77595699c1f61fb76249ae87658e1d12e855d2a1
 WHIRLPOOL 
953d8e6eed10971ed67a4573449b9a536ad693a21301

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

2015-10-28 Thread Mike Pagano
commit: 6a2ceeb4b2368290fa4cf8c9ea5553ee3638b95c
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Oct 28 23:54:01 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Oct 28 23:54:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a2ceeb4

sys-kernel/gentoo-sources: Auto stablize per policy and remove old, unsupported 
3.14.X versions

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest | 20 ---
 .../gentoo-sources/gentoo-sources-3.14.48.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.14.51.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.14.52.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.14.53.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.14.54.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.14.55.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.14.56.ebuild   |  2 +-
 8 files changed, 1 insertion(+), 195 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b6fc4dd..c74bdd3 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -1,9 +1,7 @@
 DIST deblob-3.12 120320 SHA256 
1d767acd3f461bcaa7ebef744dce1ca3eefde1cd41fde4c69a449e2470ab8c0e SHA512 
61073cb763e3e0c21a84c0ee888087fbbf37b667ce0efbbc6c2ebc46ccae8460553511e347cf23d3c3603eec64df738ad4552a1b527453c7d795b8f90c4cf678
 WHIRLPOOL 
c64cc566944ac241149a2a517da069185830be5b8ee25168b2b6b942bcf24fe3f2c0fe487b51a5b7e73e2910af2cabd7167cd1497ab7272c865d1eb3e68e4efe
-DIST deblob-3.14 121249 SHA256 
980400e0db952ccdb5a507f99444330af893ed0f8a7a052916fcf0c2b2631f7e SHA512 
2cbdf4f3947c12ade0931f0b3fb8b9c0312626a3bfea9d1c7d8d1d875b4673624ed3a6369653521998bbea0cde6730b573d6be918d052f1b553e093cb42a838f
 WHIRLPOOL 
7ba1738ac829d8848104843da6237576f235c0151d53944ff3a7e0308cfb91600ffb9253402a34c2ed106c5b0bb3ce36785ead990396465341a957c58319221c
 DIST deblob-3.18 127087 SHA256 
c720eabb3911f8dfa4398c4250853df4633018abebc01a509ee4a283c3e00941 SHA512 
6fe33762ba19aad7ff891b7b805cc26f6e2926f5e40c92fa45bc7f31bdeb5c8fc42b97e5d37d71b9422da239c7c54abd25f1fa2fa1e5733c6053abbf4c9e9011
 WHIRLPOOL 
c351a3ae15c59081fca69c1b5d9b9de10f024eb01f1426722a0d6ccb7caa34330be42897cd85cf19b22ff876352b0cec1c19707edc81c4cb01ad9c1df2e3d831
 DIST deblob-4.0 129952 SHA256 
c3d8e9a9728d5c1fc11b1112f5343b14e46a8cf2880e10399a840bc94b6e2ad3 SHA512 
055205394487dbc0022f9531fb76d0be51ca3ec4e119232cc0972790d1532c680e1367eb36a9f40529f0ab1d76f64240b1e8a07cb02d3605d594c06e3547f1bb
 WHIRLPOOL 
db32b66231e552ac6e3651152eb2b3212ef0863842cd352bd2f1b1080b9ea5543f1f7ed0e7958a9f4b115559233dc1817560e896c789378ea7b68b527b721ca8
 DIST deblob-check-3.12 612300 SHA256 
f29e34b141113ef9f71bf963b0e09bfe64e46db485ae1174bd212fed45a82ed3 SHA512 
5835725eecbb9c23740e80bf5a6bb826bf49244e8a90b82ba3e2eaabeb8199aaceb1b63b8615f9e4770d846a5218eddcd091e7ec4568f74f963eb177051e8da5
 WHIRLPOOL 
615b95b11a9c9514c94a064e6b5019d36faae384c55ba30da1014ce3676731042939331074ccb3e7136458d54f3a5ad1f88aeb8ea45fb6310734c9f455ddb750
-DIST deblob-check-3.14 613905 SHA256 
4c69ea1c225b1a84c41e75392dcaa94f77dd8e647aff3afe52f1ab16ac99c5e5 SHA512 
4dd7e785727ce29d78f5f68431fcb6ea9dfda5221dc8e699f40d13e3c85411707b13c288d23f8baa6b3c47f5a67ac58da0a7f1a51c4d9fdda82a7428ead88cf4
 WHIRLPOOL 
de1b67955662f072193f58b7e7dbd98c6680958c2d65632bfb831dc0681945a4d1c27abe978e6ee687ae8f48773eb71c2f9026f461377b28235e7f7e39832a67
 DIST deblob-check-3.18 654232 SHA256 
30f22602b6ddf2cbccc16ef25fdc4d92755f3972e1c671d7cab8b9d6865eb155 SHA512 
2cff9abef479a55dd6a0699371be8227ba63b18da1fb153d5df382e0a5e4f1b745b7de256a367a36efa9d12e2aad5622cc288efef009feebf81c108dbef4fe16
 WHIRLPOOL 
e92927ad1565e80ce87e8bda372f8f7eb42bc0f47ad9b19fe5cf737903b2021fd6e3756e8d22b70f3037a46c254fec8b7285b37beb10795ccb4ca99d38876f8c
 DIST deblob-check-4.0 670921 SHA256 
042b511913187672d9a0512765e662ba5d4283812ebebf424f778eb08fa359bc SHA512 
a27e3530cd3028041445cf8c5f49ad7827a7cf2b511de28851d2b09c28347cf2be667a7494bd698939c007fb77595699c1f61fb76249ae87658e1d12e855d2a1
 WHIRLPOOL 
953d8e6eed10971ed67a4573449b9a536ad693a2130153a6fc7cc9ea3e2daea21ca002c8df80126f7e318f75bec82c3f6e99fe43155817e2e2a52b5949dc5d2d
 DIST genpatches-3.10-97.base.tar.xz 1299308 SHA256 
d5407d2f91744519c407e1f74773e1861cf1ce46d82d5c035035a86e8189 SHA512 
2a91d0772002a079691ba1c0810fd3ac38e4b893a4da28c53b62bba790d402e36389275dbbc8df6d0bd76634cdfc319a6221da2a1bf07abf0657fc419084d141
 WHIRLPOOL 
b2a5a758695fdd6fa78926cd3eff3f7d3b074fb0d3ac35a51393662d6724f0abc2fd21647096a8a0a9805bde706314d085169ff10d8999af73d55934d4b66359
@@ -21,24 +19,6 @@ DIST genpatches-3.12-45.extras.tar.xz 18244 SHA256 
976054ba797b073b302e723ed
 DIST genpatches-3.12-46.base.tar.xz 1477068 SHA256 
62f8e7101afdf671a51e3beb9b01f8c06cc3df6b12274fdbfdb1bacf2d3f2952 SHA512 
8464d356a7267f41a5d4b8eaae24b3ba391d51157adb

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

2015-10-28 Thread Mike Pagano
commit: 17d148ccbf43a7af389b6bb67f9f6df8870d9b08
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Oct 28 23:55:38 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Oct 28 23:55:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d148cc

sys-kernel/gentoo-sources: Remove old, unsupported versions.

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-4.0.5.ebuild | 29 --
 2 files changed, 32 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index c74bdd3..023ec0c 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -36,9 +36,6 @@ DIST genpatches-4.0-11.extras.tar.xz 16288 SHA256 
84b7509ecc82f7ff1b90959b88e9e0
 DIST genpatches-4.0-6.base.tar.xz 118672 SHA256 
228c38e1e691fc3b3862a5de627c71ba9bcf1aafd10317a9ece83a13e041ed24 SHA512 
02c3cbe7982173121f03ca9424e5fa04b27f985c2f81b7469559eda4d8824e4bb348a0b9b341a9e34c7803ea341161ff306aee5d6cb73617e01fe7aad327e05f
 WHIRLPOOL 
685c62001c6e29efbf800471ed95f8413368c6dc194689c04dea44c5b9148e09d3d79e026f91a2054a84a991bd741dc8de08838c3cd9b9c94fb8dc981db9e953
 DIST genpatches-4.0-6.experimental.tar.xz 61620 SHA256 
ea7359c8a3e4e8c53ccfa0573158f080e4ed2a458f6de654097cf21134c0910d SHA512 
69b0f51e43c2a5712fd8eff3f8292fe31109e33a24b51bb0e637d15bbf2329767896d6c56f3f178ad6e9d1f69ebe6875108941f18a4a10747405be385e47ce86
 WHIRLPOOL 
657758e5a8b7a9c764f1d8a875be71ee079907aa6ab79c90ae2632c4ab8445a86ad97cb3ef70e424a6bd62d4c937de577cf44a10aeea4a41d8dd6d1bcf803952
 DIST genpatches-4.0-6.extras.tar.xz 16280 SHA256 
205c87c3d133a57d6ca42e2ce107cf64cbedd64fd356c601ca0af29248af5c1e SHA512 
61cea7f5a8919418bbea96599f7decf804d97d9e6b8729e7e5dc4f077d54c86db7b0087f70b87183420798f16c1036242f1b857ff2598edf0902ff4fa6bd2890
 WHIRLPOOL 
fde8c4c909a26d7bf2d00e35d1ee45e03c4710871f0a2cffdfbcd1109aac0b4f3215bf0ef5dc6562e9fb9d7447c1330f91a08ffa78912b3857cd3ddab5d10a3b
-DIST genpatches-4.0-7.base.tar.xz 159536 SHA256 
9d1e84cb5133489f76aa3ee4ffdc6a28331bed0c6557e383bdf288ec9461ff3c SHA512 
49f29bc5b8d0953431dbd1c2c0b5fa0ae0eaad6ed744cddc5e8eeb3a6dc7aeb2231d9f491149fd0e9a4a9c10bfd336746a0b544b96d9212bc401091ee586eb46
 WHIRLPOOL 
355dfcdf5eb508cd840e506b32f3a9a39ef885bfc605b271574cc906492ad7a82c3f3511bbc519a912c56ad2cd0ab11d51a45602f20b03bc6441a11adc53d9d1
-DIST genpatches-4.0-7.experimental.tar.xz 61636 SHA256 
419952353e98ed36dcdb9a45fe73b52449ec6b6d969dbf228f4dfc2da880f261 SHA512 
1dcb8ede976b65304f3550aa55fb5cd0881861bc3507658f3e1927754ec37956e656ff053d546e5edd4f4ba63fbeca50f4a5c766229d5d05e5a69a4f2002f8b4
 WHIRLPOOL 
881f738f577ac15b977e3d3fa7e2abae427df196a0b33e96bb457ba36118e912e84bb8e36ee0baa67ab92ccfbffdcc2265cbae3034d618e25ab9b25db0791388
-DIST genpatches-4.0-7.extras.tar.xz 16276 SHA256 
911ccb197f2c9514d8b4eacbdb7c059d709f64cb97632eae85cda99d61596ba4 SHA512 
ce94b88735fde37b1337f111c91da0610b14b22ce5ac68bb082170acf23b8875cc1d2e7bc8354959a91bcbf10dee9fdd81d0cd173e21e8bd8d6f2ba157a737d9
 WHIRLPOOL 
b8d32b09e5b9ec7af8307398fef31f5569c738dfdfc1832060e998f9fb5baa31cbb84eadab28b82d50fb7e6acbb381c55271128de4c5bc14febbb7dc4b1d1534
 DIST genpatches-4.1-10.base.tar.xz 210140 SHA256 
d0ac2a9175fe72d0ddf23307a9c8d06102f48220886468e4c19c92855024d829 SHA512 
fadf51efbda55e959cd4636e88c2a159ed967156acbe719b15056e9e56cf01652b0ac6b515203d4821853939fe8dc4dfb6e075e55530489d5a96e44e6dfe1be7
 WHIRLPOOL 
e384c68de2b4a4e23934cdaba6f8d02942931ea721b1730bd6e99e02547c28f6219bb6a38425c5c04bd1ee13afbf091dcb9eedadc2aca2246e05e465c07cb974
 DIST genpatches-4.1-10.experimental.tar.xz 215988 SHA256 
b4ab62875339a60623db576533638e12342815ba93091d16dca7a975c10ebf4c SHA512 
e51eadd26e1db63ec558fa0f4a83b8e5fb40902c9e7c96e269b4102d048b9f90defc071f42faa058605af047790bc410b2186d6c06a5fd2b8f6fe957da8cfc96
 WHIRLPOOL 
3061975198673a38775b78004dcdf088fd01fdc2ce784aead81425d25f6b831267e9840fee56db96253a09290ab09d01bd4fcb916b8fbe654ac32027c702d4bc
 DIST genpatches-4.1-10.extras.tar.xz 16184 SHA256 
5d4492d3d535b3904fe917532b52d314bd52566832acdb1d01362e03472945da SHA512 
da4163afcc52c5385ff3869105afdc0bdd021e1967b6461d3ced62bfb22ae5e9f31a4493d93ce6ab33fdb23b92df6eaef14007bc53d77de63e76802e9d65c77a
 WHIRLPOOL 
24318d0cd07b3c3cd7d752e3619883ffcf63cec3ec7b90ba5f327bbd204e1cb2e3a7cd91c8607a988e13a23ccff25cfe8b484b8596bfe6cbf365f18e7de180e8

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.0.5.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.0.5.ebuild
deleted file mode 100644
index 9e630c1..000
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.0.5.ebuild
+++ /dev/null
@@ -1,29 +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 extras experimental"
-K_GENPATCHES_VER="7"
-K_DEBLOB_AVAILABLE="1"
-inherit kernel-2
-detect_version
-detect_arch
-
-KEYWORDS="alpha amd64

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

2015-10-28 Thread Mike Pagano
commit: 0f970006400d1814a2177b141c33e18d3b6e88b9
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Oct 28 23:58:46 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Oct 28 23:58:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f970006

sys-kernel/gentoo-sources: Cleanup old, unsupported 4.1.X versions

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest | 15 ---
 .../gentoo-sources/gentoo-sources-4.1.11.ebuild| 31 --
 .../gentoo-sources/gentoo-sources-4.1.6.ebuild | 31 --
 .../gentoo-sources/gentoo-sources-4.1.7.ebuild | 31 --
 .../gentoo-sources/gentoo-sources-4.1.8.ebuild | 31 --
 .../gentoo-sources/gentoo-sources-4.1.9-r1.ebuild  | 31 --
 6 files changed, 170 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 023ec0c..1d25a53 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -36,21 +36,6 @@ DIST genpatches-4.0-11.extras.tar.xz 16288 SHA256 
84b7509ecc82f7ff1b90959b88e9e0
 DIST genpatches-4.0-6.base.tar.xz 118672 SHA256 
228c38e1e691fc3b3862a5de627c71ba9bcf1aafd10317a9ece83a13e041ed24 SHA512 
02c3cbe7982173121f03ca9424e5fa04b27f985c2f81b7469559eda4d8824e4bb348a0b9b341a9e34c7803ea341161ff306aee5d6cb73617e01fe7aad327e05f
 WHIRLPOOL 
685c62001c6e29efbf800471ed95f8413368c6dc194689c04dea44c5b9148e09d3d79e026f91a2054a84a991bd741dc8de08838c3cd9b9c94fb8dc981db9e953
 DIST genpatches-4.0-6.experimental.tar.xz 61620 SHA256 
ea7359c8a3e4e8c53ccfa0573158f080e4ed2a458f6de654097cf21134c0910d SHA512 
69b0f51e43c2a5712fd8eff3f8292fe31109e33a24b51bb0e637d15bbf2329767896d6c56f3f178ad6e9d1f69ebe6875108941f18a4a10747405be385e47ce86
 WHIRLPOOL 
657758e5a8b7a9c764f1d8a875be71ee079907aa6ab79c90ae2632c4ab8445a86ad97cb3ef70e424a6bd62d4c937de577cf44a10aeea4a41d8dd6d1bcf803952
 DIST genpatches-4.0-6.extras.tar.xz 16280 SHA256 
205c87c3d133a57d6ca42e2ce107cf64cbedd64fd356c601ca0af29248af5c1e SHA512 
61cea7f5a8919418bbea96599f7decf804d97d9e6b8729e7e5dc4f077d54c86db7b0087f70b87183420798f16c1036242f1b857ff2598edf0902ff4fa6bd2890
 WHIRLPOOL 
fde8c4c909a26d7bf2d00e35d1ee45e03c4710871f0a2cffdfbcd1109aac0b4f3215bf0ef5dc6562e9fb9d7447c1330f91a08ffa78912b3857cd3ddab5d10a3b
-DIST genpatches-4.1-10.base.tar.xz 210140 SHA256 
d0ac2a9175fe72d0ddf23307a9c8d06102f48220886468e4c19c92855024d829 SHA512 
fadf51efbda55e959cd4636e88c2a159ed967156acbe719b15056e9e56cf01652b0ac6b515203d4821853939fe8dc4dfb6e075e55530489d5a96e44e6dfe1be7
 WHIRLPOOL 
e384c68de2b4a4e23934cdaba6f8d02942931ea721b1730bd6e99e02547c28f6219bb6a38425c5c04bd1ee13afbf091dcb9eedadc2aca2246e05e465c07cb974
-DIST genpatches-4.1-10.experimental.tar.xz 215988 SHA256 
b4ab62875339a60623db576533638e12342815ba93091d16dca7a975c10ebf4c SHA512 
e51eadd26e1db63ec558fa0f4a83b8e5fb40902c9e7c96e269b4102d048b9f90defc071f42faa058605af047790bc410b2186d6c06a5fd2b8f6fe957da8cfc96
 WHIRLPOOL 
3061975198673a38775b78004dcdf088fd01fdc2ce784aead81425d25f6b831267e9840fee56db96253a09290ab09d01bd4fcb916b8fbe654ac32027c702d4bc
-DIST genpatches-4.1-10.extras.tar.xz 16184 SHA256 
5d4492d3d535b3904fe917532b52d314bd52566832acdb1d01362e03472945da SHA512 
da4163afcc52c5385ff3869105afdc0bdd021e1967b6461d3ced62bfb22ae5e9f31a4493d93ce6ab33fdb23b92df6eaef14007bc53d77de63e76802e9d65c77a
 WHIRLPOOL 
24318d0cd07b3c3cd7d752e3619883ffcf63cec3ec7b90ba5f327bbd204e1cb2e3a7cd91c8607a988e13a23ccff25cfe8b484b8596bfe6cbf365f18e7de180e8
-DIST genpatches-4.1-11.base.tar.xz 233284 SHA256 
4189cfd2c7d1a1d7f28c8a596ad36741ce087c7c4cfbe0d5d20a0ee889328d18 SHA512 
e5944edf832070d6072ab8efc242165afcfb689874687196c96389c6176ca9772e72e82836aba40ad05840536acae6efd6e72890efd692d903018d47489a90f8
 WHIRLPOOL 
13cb400b330443025f77dee6c710ca9886991a7032fa3ff925d53ed4fc03d07ece5647dca65de1a149073362db1d7a0b374a21d980eafcae09a4b01584c64cb6
-DIST genpatches-4.1-11.experimental.tar.xz 215988 SHA256 
6d1c5a4af77c2d81d05c27903e2d15f18beada25a335674ea372762ea6aaff8f SHA512 
7504f4b3d0ee47b9b2d720258b6873cfed9b28e04aa9860857e3ec0ad6ef6f36304312c4cc907efd9b2ca6adcedd265ed1f1ba446d6da4eed7c096d7038d9245
 WHIRLPOOL 
199055e5305141b850dae96d6eab64e7f6870e1eba9d667a9f042d7652adb4485dcd2c30192dffa3d16c994f4d11b5cbc08bd0e4ebca97f51d85e3b1365fc1f9
-DIST genpatches-4.1-11.extras.tar.xz 16168 SHA256 
be4078adaac6d679a563709dc7528b92587a463877c28d7c49117b5ddd842fe1 SHA512 
9a561564511e3a15648f88f1b230e8985e33b3dac92a082cd8d4a5ccf0da8f8eb030fde59f6a0c5664c478751f710e2f2f8f3cf4b13293329444ed702c70732c
 WHIRLPOOL 
46a021f1801aae12167bfb5378ee62cb058a13b18d48c006b9e7fc4a086803c8c509070cee059c5eb817abec317285f7e1157f6f286ed53a4ce7ad761c7d2e36
-DIST genpatches-4.1-12.base.tar.xz 266104 SHA256 
d99620d6fa052732357a9b050a878d6ed7f1f3b03c1ae59d99132db8244829cc SHA512 
4128fd323a7451692b512b249226f25ed5a0d5aebdf48832495d3d72351ccf61b7d7ecbccdd85915eff023fcb9fcbb408a1c01f2bb585

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

2015-10-28 Thread Mike Pagano
commit: 010a93dbe02e80ded3bbf5036a3fd67c862e6fca
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 29 00:00:51 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 29 00:00:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=010a93db

sys-kernel/gentoo-sources: Cleanup old, unsupported 4.2.X versions.

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest | 15 ---
 .../gentoo-sources/gentoo-sources-4.2.0-r1.ebuild  | 31 --
 .../gentoo-sources/gentoo-sources-4.2.0.ebuild | 31 --
 .../gentoo-sources/gentoo-sources-4.2.1.ebuild | 31 --
 .../gentoo-sources/gentoo-sources-4.2.2.ebuild | 31 --
 .../gentoo-sources/gentoo-sources-4.2.3.ebuild | 31 --
 6 files changed, 170 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 1d25a53..21806a1 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -39,21 +39,6 @@ DIST genpatches-4.0-6.extras.tar.xz 16280 SHA256 
205c87c3d133a57d6ca42e2ce107cf6
 DIST genpatches-4.1-16.base.tar.xz 390916 SHA256 
c36edc8f56a26e0ae74fa28e9a50d02d8196f5d29447d6d2cdbf17ad71f70902 SHA512 
981c4589a2f448a8c58276590eae9db25e716e0df584f4e431e7d29e69714695078112e30b84179038879071dcb94adb0753a94bcc3cf3e4c3a676244543f0aa
 WHIRLPOOL 
6f3bf0ec325a1d7363315fd7828da31901916c497cbb8adb212e515ee7fae1179f276116f9e484fb23f2200e2fa61ad315baa8de1c073c5412dd1ff3ce624cf9
 DIST genpatches-4.1-16.experimental.tar.xz 215996 SHA256 
0840ccdcad7c4b03cd4fd54940e3ca31d0d738184abe1c9340d5d0f9c3943009 SHA512 
95b8bc22413b24627ac1906830a345689c7e98a77beb1405e9a6c5b97f48c4fa7dbd15a2ffe66f24ef9dd8617a83a4913a26acbcb387f4a0add6d5f37c3343a9
 WHIRLPOOL 
b19fbda05c354c17df10a8fe3e482798926e6631c5b5f96685e2d99cc016f10c37fbe5aef633c8a77bc427d045b02390815469f5aa2850dd76d5cb374a916cc0
 DIST genpatches-4.1-16.extras.tar.xz 16176 SHA256 
a6e00246f5e8feef952529d7be51104657f0acfea1d17b5c7a1e9fd800bd62ee SHA512 
0ec02e89fef967286851d8cc0bd8c6d908d0b72c79ef55da30747cc151878340c3c882f9e1067edff3476851f136032674180e58cbc46a6a48d9f501c28c4f56
 WHIRLPOOL 
0aa25106c9346d8ec2eb3ff56b315312a07363e36039efcce7d52b2e73eebf4c6ffba65dac45ee49a3b6b0ffab05ed42905a86f3e7ead3d6be7bd998e5dbf8b6
-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
-DIST genpatches-4.2-2.base.tar.xz 4384 SHA256 
f38d37d15378eecca3e1d74d7dca66ba2200d66e87b7f5a68f716cbb61faf5f1 SHA512 
9c754e1bf9cc39635f98a9ac5656c030612d72e0f4d4680b6f619a176e660e3c90594fbe0d9759abb5c9402e4649bd1fcd3e3f55b7d132d1b3d0277e17c65ffc
 WHIRLPOOL 
05df0d6ed05927ee2f6f7b86091f9c10cc932250ecbd12064a46a590943d6d4d0dee4e57d3ba07a4f75fc939f6f14feee5177447bed63349f1b9ef8f109617d6
-DIST genpatches-4.2-2.experimental.tar.xz 161712 SHA256 
760c2851a96a385298edc817e873a51ec46edb63e9a6a1361912c5f28fb0a371 SHA512 
0b1fa56cb667f0c073ea622aa195ac7784c6ace7a0f1fe09a402e8dc9e11a5cc737a2695eaa41e409972beb6ad71353be87b5f2e771bb464e026a20ea3103c95
 WHIRLPOOL 
468bd993e750ceafe0115ac9a06d49f9f97add5c9bd11e3343b2319bc8bbf9f0cf988b6afcbeab0bf3f00299405b44347d46c2a4e35869eb03ae951a9a967743
-DIST genpatches-4.2-2.extras.tar.xz 16168 SHA256 
be4078adaac6d679a563709dc7528b92587a463877c28d7c49117b5ddd842fe1 SHA512 
9a561564511e3a15648f88f1b230e8985e33b3dac92a082cd8d4a5ccf0da8f8eb030fde59f6a0c5664c478751f710e2f2f8f3cf4b13293329444ed702c70732c
 WHIRLPOOL 
46a021f1801aae12167bfb5378ee62cb058a13b18d48c006b9e7fc4a086803c8c509070cee059c5eb817abec317285f7e1157f6f286ed53a4ce7ad761c7d2e36
-DIST genpatches-4.2-3.base.tar.xz 44600 SHA256 
ba1a0d8d9e1a139da388d44085a1011d760231467cef4ea9a87633673560e3dc SHA512 
60367b50a40c60e6659cf11db99d4124b86fd7afa1bb8e5c3aac38b3025015f56f880e34250d1267ec4f295da38f656708ed2c6b46aa5b56f725

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

2015-10-28 Thread Mike Pagano
commit: 5144328e22cb546ebaf02b025aeacea9676f918a
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 29 00:04:40 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 29 00:04:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5144328e

sys-kernel/gentoo-sources: Auto stabiize per policy and remove old, unsupported 
3.12.X versions

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/Manifest | 11 
 .../gentoo-sources/gentoo-sources-3.12.44.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.12.47.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.12.48.ebuild   | 29 --
 .../gentoo-sources/gentoo-sources-3.12.49.ebuild   |  4 +--
 5 files changed, 2 insertions(+), 100 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 21806a1..928302a 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -1,21 +1,10 @@
-DIST deblob-3.12 120320 SHA256 
1d767acd3f461bcaa7ebef744dce1ca3eefde1cd41fde4c69a449e2470ab8c0e SHA512 
61073cb763e3e0c21a84c0ee888087fbbf37b667ce0efbbc6c2ebc46ccae8460553511e347cf23d3c3603eec64df738ad4552a1b527453c7d795b8f90c4cf678
 WHIRLPOOL 
c64cc566944ac241149a2a517da069185830be5b8ee25168b2b6b942bcf24fe3f2c0fe487b51a5b7e73e2910af2cabd7167cd1497ab7272c865d1eb3e68e4efe
 DIST deblob-3.18 127087 SHA256 
c720eabb3911f8dfa4398c4250853df4633018abebc01a509ee4a283c3e00941 SHA512 
6fe33762ba19aad7ff891b7b805cc26f6e2926f5e40c92fa45bc7f31bdeb5c8fc42b97e5d37d71b9422da239c7c54abd25f1fa2fa1e5733c6053abbf4c9e9011
 WHIRLPOOL 
c351a3ae15c59081fca69c1b5d9b9de10f024eb01f1426722a0d6ccb7caa34330be42897cd85cf19b22ff876352b0cec1c19707edc81c4cb01ad9c1df2e3d831
 DIST deblob-4.0 129952 SHA256 
c3d8e9a9728d5c1fc11b1112f5343b14e46a8cf2880e10399a840bc94b6e2ad3 SHA512 
055205394487dbc0022f9531fb76d0be51ca3ec4e119232cc0972790d1532c680e1367eb36a9f40529f0ab1d76f64240b1e8a07cb02d3605d594c06e3547f1bb
 WHIRLPOOL 
db32b66231e552ac6e3651152eb2b3212ef0863842cd352bd2f1b1080b9ea5543f1f7ed0e7958a9f4b115559233dc1817560e896c789378ea7b68b527b721ca8
-DIST deblob-check-3.12 612300 SHA256 
f29e34b141113ef9f71bf963b0e09bfe64e46db485ae1174bd212fed45a82ed3 SHA512 
5835725eecbb9c23740e80bf5a6bb826bf49244e8a90b82ba3e2eaabeb8199aaceb1b63b8615f9e4770d846a5218eddcd091e7ec4568f74f963eb177051e8da5
 WHIRLPOOL 
615b95b11a9c9514c94a064e6b5019d36faae384c55ba30da1014ce3676731042939331074ccb3e7136458d54f3a5ad1f88aeb8ea45fb6310734c9f455ddb750
 DIST deblob-check-3.18 654232 SHA256 
30f22602b6ddf2cbccc16ef25fdc4d92755f3972e1c671d7cab8b9d6865eb155 SHA512 
2cff9abef479a55dd6a0699371be8227ba63b18da1fb153d5df382e0a5e4f1b745b7de256a367a36efa9d12e2aad5622cc288efef009feebf81c108dbef4fe16
 WHIRLPOOL 
e92927ad1565e80ce87e8bda372f8f7eb42bc0f47ad9b19fe5cf737903b2021fd6e3756e8d22b70f3037a46c254fec8b7285b37beb10795ccb4ca99d38876f8c
 DIST deblob-check-4.0 670921 SHA256 
042b511913187672d9a0512765e662ba5d4283812ebebf424f778eb08fa359bc SHA512 
a27e3530cd3028041445cf8c5f49ad7827a7cf2b511de28851d2b09c28347cf2be667a7494bd698939c007fb77595699c1f61fb76249ae87658e1d12e855d2a1
 WHIRLPOOL 
953d8e6eed10971ed67a4573449b9a536ad693a2130153a6fc7cc9ea3e2daea21ca002c8df80126f7e318f75bec82c3f6e99fe43155817e2e2a52b5949dc5d2d
 DIST genpatches-3.10-97.base.tar.xz 1299308 SHA256 
d5407d2f91744519c407e1f74773e1861cf1ce46d82d5c035035a86e8189 SHA512 
2a91d0772002a079691ba1c0810fd3ac38e4b893a4da28c53b62bba790d402e36389275dbbc8df6d0bd76634cdfc319a6221da2a1bf07abf0657fc419084d141
 WHIRLPOOL 
b2a5a758695fdd6fa78926cd3eff3f7d3b074fb0d3ac35a51393662d6724f0abc2fd21647096a8a0a9805bde706314d085169ff10d8999af73d55934d4b66359
 DIST genpatches-3.10-97.experimental.tar.xz 60148 SHA256 
c0d7145c053c8165b8a0036c3d6d823300319ac7d7766d0c2c431b7f2f558a13 SHA512 
b9d78f88ef57cd4ba43dec4b9dab1ea72c39947e1de5369060cb044b9d5eaa4ed81731d3f26280d5f7fb47d84c4c439c2024f870f5324bff09a32538fa15e072
 WHIRLPOOL 
ca93d5351300ca4166b20021ed14c31ced9c9743fbdcc0b676a43c1853d3e868209fb747f31a0e1a9eb5f4dce8a9e3ae3299dfbb312a35e1459e268a8e300306
 DIST genpatches-3.10-97.extras.tar.xz 17832 SHA256 
6eb6942f08071bd467bdb13218975f1670c385a21cfa41226454ea4b4f03036c SHA512 
240549a6ea1d6f119a563de6676628d8c0a3207f7be685a8a7903a04d0bfce639d02858896b4dda95cf0fba48bb22d0feadbc176c5f00bbaebdd5edc68c0b87c
 WHIRLPOOL 
19ff955983a322086feaeeecb3c664f13b6ee1faaecb6745bbff0e6f2acb1937ea7212cd23869146e0a5c59ca83370a61437b691fc5ba8224d2d2cc69cb70a39
-DIST genpatches-3.12-43.base.tar.xz 1364580 SHA256 
2d83b0b0ed5946542676467d99d9d0f0879c8da9ab16a9b602548bc3fa9b5fbd SHA512 
40d77097db66868b0281c556e25edf24924a8ea4dc6b0a297f38730f41e55a9b4937bc68c614d2279875e78bff0c9dff2a6c4192fc2a847ac3b1d3927af25acc
 WHIRLPOOL 
34ef24dca012870ff9129113147457fdbb5009bccc2ea4dbb0f601bb88b36fbf037c2d12c646c3ac38e7413278e1ae316bc2a1fdbbecdbc8255bb32a8dac3ed2
-DIST genpatches-3.12-43.experimental.tar.xz 46536 SHA256 
a66c108185ec4524e21

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

2015-10-28 Thread Matt Thode
commit: 360fe0c428138ce239a2bca74a52693f2d4b249b
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Oct 29 00:04:12 2015 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Oct 29 00:05:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360fe0c4

media-sound/spotify: bup, with sound fixes for bug 562922

Package-Manager: portage-2.2.20.1

 media-sound/spotify/Manifest  | 4 ++--
 .../spotify/{spotify-1.0.16.104.ebuild => spotify-1.0.17.75.ebuild}   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index 1806f43..046ed58 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,3 +1,3 @@
 DIST spotify-client_0.9.17.1.g9b85d43.7-1_amd64.deb 42733568 SHA256 
717a878bcfa495852d19ac34bb4b0fa1b2f063ab94547defd32725d1dec10775 SHA512 
a19403558c0a641b0264641501c9538f169b9e64d532e5d54dd67b7edbb27d400f07395014c9693fed298a1331c053cc9e62988d1293e9b1f1809d68a74646ad
 WHIRLPOOL 
712ac07a3cd3230e3de17e9209380d0e0cc9a33c77cb4753e04490c5bb9a4e2d3e386ee92ffadecd9888ea701aa2a0c4c1b8c579cfa2f5b61d72981a5736f495
-DIST spotify-client_1.0.16.104.g3b776c9e_amd64.deb 69975392 SHA256 
2b3e7a7cccadaa4567450e9d3c801a2f72ec9a5ad9295241701874310f6bd96a SHA512 
b3663a374021a4b518862b514db8469dd81b3bd35f4d4522a844e647cb79e336d0d814b10f11ed3f1875c8740491394213a588d2b7976e6b95591f2f378fef3f
 WHIRLPOOL 
8a01301489c6afa1fac297788f67fe4b096cd71cc8927b5de6ebfbd795c996008d9da57b2324ff9dd3113b511a8a95a1106b1e6d6131cc08473380d7f9e4
-DIST spotify-client_1.0.16.104.g3b776c9e_i386.deb 7534 SHA256 
b61ba5b2a42db6e888f002094d3bae7493997e18f2f7821208bcf90b6b129aff SHA512 
9773778f49dbdeccb52a496db76fa6ef7cd4bc8df4a3b87f8908a8654fd78a9ca027a3f236e493067413815c130f49804bf32a81c2613bd2302641edfdaf4e22
 WHIRLPOOL 
1d5a8b033db1f609c0a3b45c4eefb7c3a7e11aff97abbfcbe148e64516dec88475e8c2ebb9eaca8cd61e0191afd114aa2e62f2fa64a8078b9859d3ea8a4cf8f0
+DIST spotify-client_1.0.17.75.g8f00_amd64.deb 68928916 SHA256 
65ad49871a5f281aa7248690c0379fc18c17c063ab640590bbfa7edc02cb223f SHA512 
6f8038f41bb613c600d8ad42c65cf93e28bb60e60ee3a239b583fd9ff45234cdcc5934ed5a93e9e3b0307e49e1a8a40dba918636a45bc6b7efdab6f4b49451d8
 WHIRLPOOL 
458ecd30d843eee10345300e35b4ebba941f942a19fdbeba4d82bd122a7d585d7861b4c034b8564d97a5b7136b605101096a0be4d116542d3ab96ef70df8b381
+DIST spotify-client_1.0.17.75.g8f00_i386.deb 73966036 SHA256 
480d8791d4de95f43ba95e4c5d31fc5a02662c6e041c3eb45f481a5ef6bd39b0 SHA512 
05c1c6d60835b880a75e01af77abc327c678d1974d851531eab52b02159ede3921ecd2fc375b429d36309050a2f99942cb33b026892c9c3e4ca2f5c9c54244b2
 WHIRLPOOL 
afc278efd6230b21d49a2716184ae98412f312d9fa8a7acf8e4876e2c8541e525b9d23869c31d3d8d5609fdd70d25590af76ed588e96a32f885c957cdd7aa005

diff --git a/media-sound/spotify/spotify-1.0.16.104.ebuild 
b/media-sound/spotify/spotify-1.0.17.75.ebuild
similarity index 99%
rename from media-sound/spotify/spotify-1.0.16.104.ebuild
rename to media-sound/spotify/spotify-1.0.17.75.ebuild
index 9c05b29..ca28e21 100644
--- a/media-sound/spotify/spotify-1.0.16.104.ebuild
+++ b/media-sound/spotify/spotify-1.0.17.75.ebuild
@@ -7,7 +7,7 @@ inherit eutils fdo-mime gnome2-utils pax-utils unpacker
 
 DESCRIPTION="Spotify is a social music platform"
 HOMEPAGE="https://www.spotify.com/ch-de/download/previews/";
-MY_PV="${PV}.g3b776c9e"
+MY_PV="${PV}.g8f00"
 MY_P="${PN}-client_${MY_PV}"
 SRC_BASE="http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}-client/";
 SRC_URI="amd64? ( ${SRC_BASE}${MY_P}_amd64.deb )



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

2015-10-28 Thread Mike Frysinger
commit: 1cb701ee64e06badb16a0086bb4e46184633c5da
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Oct 29 00:27:46 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Oct 29 00:27:46 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1cb701ee

config: tweak walking of settings for py3

Since py3 returns an iterator with dict.keys(), trying to add/del values
in the loop will throw an exception.  Run it through list() so we get a
static copy to iterate over.

 catalyst/config.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/catalyst/config.py b/catalyst/config.py
index db81a96..5f72e15 100644
--- a/catalyst/config.py
+++ b/catalyst/config.py
@@ -97,7 +97,8 @@ class ParserBase(object):
values[cur_array[0]] = cur_array[1:]
 
if not self.empty_values:
-   for x in values.keys():
+   # Make sure the list of keys is static since we modify 
inside the loop.
+   for x in list(values.keys()):
# Delete empty key pairs
if not values[x]:
log.warning('No value set for key "%s"; 
deleting', x)



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

2015-10-28 Thread Amadeusz Piotr Żołnowski
commit: 6b353f904c24387cfe9623b4f0a0193720d39f3f
Author: Amadeusz Żołnowski  gentoo  org>
AuthorDate: Thu Oct 29 00:30:09 2015 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Thu Oct 29 00:35:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b353f90

app-shells/z: Add new package

Add initial ebuild for most recent release.

 app-shells/z/Manifest |  1 +
 app-shells/z/metadata.xml | 13 +
 app-shells/z/z-1.9.ebuild | 41 +
 3 files changed, 55 insertions(+)

diff --git a/app-shells/z/Manifest b/app-shells/z/Manifest
new file mode 100644
index 000..4f551bd
--- /dev/null
+++ b/app-shells/z/Manifest
@@ -0,0 +1 @@
+DIST z-1.9.tar.gz 5894 SHA256 
28aaff75254c8914063ce2534a4b882845054701230475b11dba6d7a305d82c9 SHA512 
8e22c04075d502dfbb0225518c923065347aa842d463237e927c2f9e4c6a2c5d211cd43c06a374f078090b4418849afdfabd6a3d249e9c35f9423dffe8078733
 WHIRLPOOL 
21a7d5e10b69b2f898254fd89f7be42aea1364fd81604d17bf58e244ce8a0a4b6cc92b41062eb008304522cf9623a50745dda7d9466a1a8a1fe3a8a8e5cac4f4

diff --git a/app-shells/z/metadata.xml b/app-shells/z/metadata.xml
new file mode 100644
index 000..ad3df7c
--- /dev/null
+++ b/app-shells/z/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   aide...@gentoo.org
+   Amadeusz Żołnowski
+   
+   
+   Tracks your most used directories, based on 'frecency'. After a 
short
+   learning phase, z will take you to the most 'frecent' directory 
that
+   matches ALL of the regexes given on the command line, in order.
+   
+

diff --git a/app-shells/z/z-1.9.ebuild b/app-shells/z/z-1.9.ebuild
new file mode 100644
index 000..f107e3c
--- /dev/null
+++ b/app-shells/z/z-1.9.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Change directory command that learns visited paths"
+HOMEPAGE="https://github.com/rupa/z/";
+SRC_URI="https://github.com/rupa/${PN}/tarball/v${PV} -> ${P}.tar.gz"
+
+LICENSE="WTFPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/rupa-z-5dc2a86"
+
+src_compile() {
+   :
+}
+
+src_install() {
+   insinto "/usr/share/${PN}/"
+   doins z.sh
+   doman z.1
+}
+
+pkg_postinst() {
+   if [[ ! ${REPLACING_VERSIONS} ]]; then
+   elog "To enable 'z' command you need to source 
/usr/share/${PN}/z.sh."
+   elog "Add following line to your ~/.bashrc, ~/.zshrc or 
equivalent"
+   elog "in other shells:"
+   elog ""
+   elog "[ -r /usr/share/${PN}/z.sh ] && . 
/usr/share/${PN}/z.sh"
+   elog ""
+   elog "See z(1) man page for usage and configuration options."
+   fi
+}



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

2015-10-28 Thread Mike Frysinger
commit: cfa4a3ab9478b26743900c247694a404dbf31731
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Oct 28 20:12:40 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Oct 29 00:49:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa4a3ab

dev-libs/gmp: drop unused flag-o-matic inherit

This was used with filter-flags many years ago, but when we dropped
that call, forgot to also drop the inherit.

 dev-libs/gmp/gmp-5.1.3-r1.ebuild | 2 +-
 dev-libs/gmp/gmp-6.0.0a.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/gmp/gmp-5.1.3-r1.ebuild b/dev-libs/gmp/gmp-5.1.3-r1.ebuild
index 23b138d..fdd9e56 100644
--- a/dev-libs/gmp/gmp-5.1.3-r1.ebuild
+++ b/dev-libs/gmp/gmp-5.1.3-r1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="4"
 
-inherit flag-o-matic eutils libtool toolchain-funcs multilib-minimal
+inherit eutils libtool toolchain-funcs multilib-minimal
 
 MY_PV=${PV/_p*}
 MY_P=${PN}-${MY_PV}

diff --git a/dev-libs/gmp/gmp-6.0.0a.ebuild b/dev-libs/gmp/gmp-6.0.0a.ebuild
index 7416223..62f3477 100644
--- a/dev-libs/gmp/gmp-6.0.0a.ebuild
+++ b/dev-libs/gmp/gmp-6.0.0a.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="4"
 
-inherit flag-o-matic eutils libtool toolchain-funcs multilib-minimal
+inherit eutils libtool toolchain-funcs multilib-minimal
 
 MY_PV=${PV/_p*}
 MY_P=${PN}-${MY_PV}



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

2015-10-28 Thread Chí-Thanh Christopher Nguyễn
commit: 23ebafcc8a3c9b8139fa84f4ac64cfd969e0827f
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Thu Oct 29 01:25:12 2015 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Thu Oct 29 01:25:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ebafcc

profiles/package.mask: mask xf86-input-evdev for file collisions

Bug: https://bugs.gentoo.org/show_bug.cgi?id=564358

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 86786ba..aaa7402 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Chí-Thanh Christopher Nguyễn  (29 Oct 2015)
+# Mask until it is decided how to address xorg-server file collisions #564358
+=x11-drivers/xf86-input-evdev-2.10.0
+
 # Patrice Clement  (29 Oct 2015)
 # No release since 2007. Has dependencies on old ebuilds.
 # Removal in 30 days. See #564370



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

2015-10-28 Thread Yixun Lan
commit: 18f5f5d9bf6482dea9cdaf57e9726fa4eedfb490
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Oct 29 01:55:48 2015 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Oct 29 01:55:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f5f5d9

dev-vcs/stgit: revision bump 0.17.1-r2

Package-Manager: portage-2.2.23

 dev-vcs/stgit/Manifest   | 2 +-
 dev-vcs/stgit/{stgit-0.17.1-r1.ebuild => stgit-0.17.1-r2.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-vcs/stgit/Manifest b/dev-vcs/stgit/Manifest
index 1c7e0fa..6e87fca 100644
--- a/dev-vcs/stgit/Manifest
+++ b/dev-vcs/stgit/Manifest
@@ -1,4 +1,4 @@
 DIST stgit-0.16-missing-patches.tar.gz 1667 SHA256 
f105bb417592be3c68d830ad1cf2e212e6e5cb809bf64cdffb516a0f7badd4f4 SHA512 
29d4c3e68121654153b4e5142dd70d818737b09bbc8371d644a36dd9d18afaf78fdda91bc16f953c330bcbae19084384d8bcd216cdfe674df784e33165186db1
 WHIRLPOOL 
c7628853e6c1eff498a95ff22ec3eb3bb69b60dfb0c6dcd5895a650b8d3aba966166dfd426a0c728e3d292f0a2ed197325b0af5ccd63fc99011b5b2e841e7194
 DIST stgit-0.16.tar.gz 362687 SHA256 
02f1a19350ccf4a26abac1421df8c2d021e78f995c913f9562718a1700318a42 SHA512 
782de3d5855aad4f5d040478745990517ebe2b26dc315a3ed41db95399bb46e075d63a70baa0e3aa2ab1012b59e6ad1f5940a904f296ef09d6bca60f66e417dd
 WHIRLPOOL 
e2334c041cb260455d549d33b6628fd4f6e1e7da850f2987ba86922504e07aed8177d092550348b52cad8894b0335d20ee1608b855fa1cb6545bdd301a9d38f1
-DIST stgit-0.17.1-upstream-patches-0.tar.xz 5064 SHA256 
6e120dd85bcdcbbb64bea98bd5967bb1f01fbc9d3e80b4856d7e328cfcafc31e SHA512 
da7b75898466c8be58c48a86aee6209a907f971c7b15b38034940598d353fa6ecb48894b220fbfd8e032e88e746b377c55485c8045c330607e122a082aa0374f
 WHIRLPOOL 
aa7b7a5f89703eb35fab26dec0bcf5ceae2e20608b2562c7b6f76e33d43b35113d97282cb6b5f4cdf5da6e11e07faacacb13215cef3f7dac31a862ff809641cb
+DIST stgit-0.17.1-upstream-patches-1.tar.xz 15324 SHA256 
4ec973ee6a16daee616c5f675294e9351e4953b4d171059cddb504d286939cd3 SHA512 
2d756d960b5bd803258afe0bb89cb29a960bc2745adf37f2b574fd114579a867ec51628f2267744ec2eec70090376274bfd720a612093a36f4bb8e4ecb8f6d30
 WHIRLPOOL 
538a060e8628b9d43af56568a267c2026a9088156af188d5a745adfbb11807dcf948f216e6492d51069c85e80985f156196df6b28eb2664b3e5e27a09b169c57
 DIST stgit-0.17.1.tar.gz 398466 SHA256 
d43365a0c22e41a6fb9ba1a86de164d6475e79054e7f33805d6a829eb4056ade SHA512 
3efdfb9bc024c3a7c0d74d49e85f157d5d5209c9a2ad0ce63a07138c02fb1580e92ac4a91796e79bbd221e6884317e975f9f44e35db0b484fd916bc67cd61abe
 WHIRLPOOL 
a7c4c83cfeace12ced60e846ed9daaffadea3ed201a90e72239e3f8df310164e00ce5a89174df177f89df4a609a66ac35e905f31419ed654081c3ab0c2cba859

diff --git a/dev-vcs/stgit/stgit-0.17.1-r1.ebuild 
b/dev-vcs/stgit/stgit-0.17.1-r2.ebuild
similarity index 96%
rename from dev-vcs/stgit/stgit-0.17.1-r1.ebuild
rename to dev-vcs/stgit/stgit-0.17.1-r2.ebuild
index 239ca5b..5618db6 100644
--- a/dev-vcs/stgit/stgit-0.17.1-r1.ebuild
+++ b/dev-vcs/stgit/stgit-0.17.1-r2.ebuild
@@ -9,8 +9,8 @@ PYTHON_COMPAT=( python2_7 )
 inherit bash-completion-r1 distutils-r1
 
 DESCRIPTION="Manage a stack of patches using GIT as a backend"
-HOMEPAGE="http://www.procode.org/stgit/";
-UPSTREAM_VER=0
+HOMEPAGE="https://stgit.org https://gna.org/projects/stgit";
+UPSTREAM_VER=1
 [[ -n ${UPSTREAM_VER} ]] && \

UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz";
 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/, app-crypt/mit-krb5/files/

2015-10-28 Thread Eray Aslan
commit: dbd92e7f768c3f799be7f7f9e4b0cd3b7282bff3
Author: Eray Aslan  gentoo  org>
AuthorDate: Thu Oct 29 04:37:30 2015 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Thu Oct 29 04:37:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbd92e7f

app-crypt/mit-krb5: security bump

Gentoo-Bug: 564304

Package-Manager: portage-2.2.23

 app-crypt/mit-krb5/files/CVE-2015-2695.patch | 564 +
 app-crypt/mit-krb5/files/CVE-2015-2696.patch | 731 +++
 app-crypt/mit-krb5/files/CVE-2015-2697.patch |  50 ++
 app-crypt/mit-krb5/mit-krb5-1.13.2-r2.ebuild |   3 +
 4 files changed, 1348 insertions(+)

diff --git a/app-crypt/mit-krb5/files/CVE-2015-2695.patch 
b/app-crypt/mit-krb5/files/CVE-2015-2695.patch
new file mode 100644
index 000..08bc8ab
--- /dev/null
+++ b/app-crypt/mit-krb5/files/CVE-2015-2695.patch
@@ -0,0 +1,564 @@
+From b51b33f2bc5d1497ddf5bd107f791c101695000d Mon Sep 17 00:00:00 2001
+From: Nicolas Williams 
+Date: Mon, 14 Sep 2015 12:27:52 -0400
+Subject: [PATCH] Fix SPNEGO context aliasing bugs [CVE-2015-2695]
+
+The SPNEGO mechanism currently replaces its context handle with the
+mechanism context handle upon establishment, under the assumption that
+most GSS functions are only called after context establishment.  This
+assumption is incorrect, and can lead to aliasing violations for some
+programs.  Maintain the SPNEGO context structure after context
+establishment and refer to it in all GSS methods.  Add initiate and
+opened flags to the SPNEGO context structure for use in
+gss_inquire_context() prior to context establishment.
+
+CVE-2015-2695:
+
+In MIT krb5 1.5 and later, applications which call
+gss_inquire_context() on a partially-established SPNEGO context can
+cause the GSS-API library to read from a pointer using the wrong type,
+generally causing a process crash.  This bug may go unnoticed, because
+the most common SPNEGO authentication scenario establishes the context
+after just one call to gss_accept_sec_context().  Java server
+applications using the native JGSS provider are vulnerable to this
+bug.  A carefully crafted SPNEGO packet might allow the
+gss_inquire_context() call to succeed with attacker-determined
+results, but applications should not make access control decisions
+based on gss_inquire_context() results prior to context establishment.
+
+CVSSv2 Vector: AV:N/AC:M/Au:N/C:N/I:N/A:C/E:POC/RL:OF/RC:C
+
+[ghud...@mit.edu: several bugfixes, style changes, and edge-case
+behavior changes; commit message and CVE description]
+
+ticket: 8244
+target_version: 1.14
+tags: pullup
+---
+ src/lib/gssapi/spnego/gssapiP_spnego.h |   2 +
+ src/lib/gssapi/spnego/spnego_mech.c| 254 -
+ 2 files changed, 192 insertions(+), 64 deletions(-)
+
+diff --git a/src/lib/gssapi/spnego/gssapiP_spnego.h 
b/src/lib/gssapi/spnego/gssapiP_spnego.h
+index 57372de..5c82764 100644
+--- a/src/lib/gssapi/spnego/gssapiP_spnego.h
 b/src/lib/gssapi/spnego/gssapiP_spnego.h
+@@ -103,6 +103,8 @@ typedef struct {
+   int firstpass;
+   int mech_complete;
+   int nego_done;
++  int initiate;
++  int opened;
+   OM_uint32 ctx_flags;
+   gss_name_t internal_name;
+   gss_OID actual_mech;
+diff --git a/src/lib/gssapi/spnego/spnego_mech.c 
b/src/lib/gssapi/spnego/spnego_mech.c
+index ef76e1f..7849c85 100644
+--- a/src/lib/gssapi/spnego/spnego_mech.c
 b/src/lib/gssapi/spnego/spnego_mech.c
+@@ -102,7 +102,7 @@ static OM_uint32 get_negotiable_mechs(OM_uint32 *, 
spnego_gss_cred_id_t,
+ gss_cred_usage_t, gss_OID_set *);
+ static void release_spnego_ctx(spnego_gss_ctx_id_t *);
+ static void check_spnego_options(spnego_gss_ctx_id_t);
+-static spnego_gss_ctx_id_t create_spnego_ctx(void);
++static spnego_gss_ctx_id_t create_spnego_ctx(int);
+ static int put_mech_set(gss_OID_set mechSet, gss_buffer_t buf);
+ static int put_input_token(unsigned char **, gss_buffer_t, unsigned int);
+ static int put_mech_oid(unsigned char **, gss_OID_const, unsigned int);
+@@ -454,7 +454,7 @@ check_spnego_options(spnego_gss_ctx_id_t spnego_ctx)
+ }
+ 
+ static spnego_gss_ctx_id_t
+-create_spnego_ctx(void)
++create_spnego_ctx(int initiate)
+ {
+   spnego_gss_ctx_id_t spnego_ctx = NULL;
+   spnego_ctx = (spnego_gss_ctx_id_t)
+@@ -477,6 +477,8 @@ create_spnego_ctx(void)
+   spnego_ctx->mic_rcvd = 0;
+   spnego_ctx->mech_complete = 0;
+   spnego_ctx->nego_done = 0;
++  spnego_ctx->opened = 0;
++  spnego_ctx->initiate = initiate;
+   spnego_ctx->internal_name = GSS_C_NO_NAME;
+   spnego_ctx->actual_mech = GSS_C_NO_OID;
+ 
+@@ -642,7 +644,7 @@ init_ctx_new(OM_uint32 *minor_status,
+   OM_uint32 ret;
+   spnego_gss_ctx_id_t sc = NULL;
+ 
+-  sc = create_spnego_ctx();
++  sc = create_spnego_ctx(1);
+   if (sc == NULL)
+   return GSS_S_FAILURE;
+ 
+@@ -659,10 +661,7 @@ init_ctx_new(OM_uint32 *minor_

[gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/files/, app-crypt/mit-krb5/

2015-10-28 Thread Eray Aslan
commit: f8a5e1f10568cd3f63fe5cbcfd28c46287270234
Author: Eray Aslan  gentoo  org>
AuthorDate: Thu Oct 29 04:24:07 2015 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Thu Oct 29 04:24:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a5e1f1

app-crypt/mit-krb5: add confd files to kdc, kadmind and kpropd daemons

Gentoo-Bug: 539010
Thanks to Paul B. Henson

Package-Manager: portage-2.2.23

 app-crypt/mit-krb5/files/mit-krb5kadmind.confd|   2 +
 app-crypt/mit-krb5/files/mit-krb5kadmind.initd-r2 |  25 
 app-crypt/mit-krb5/files/mit-krb5kdc.confd|   2 +
 app-crypt/mit-krb5/files/mit-krb5kdc.initd-r2 |  24 
 app-crypt/mit-krb5/files/mit-krb5kpropd.confd |   2 +
 app-crypt/mit-krb5/files/mit-krb5kpropd.initd-r2  |  24 
 app-crypt/mit-krb5/mit-krb5-1.13.2-r2.ebuild  | 157 ++
 7 files changed, 236 insertions(+)

diff --git a/app-crypt/mit-krb5/files/mit-krb5kadmind.confd 
b/app-crypt/mit-krb5/files/mit-krb5kadmind.confd
new file mode 100644
index 000..f6029b6
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5kadmind.confd
@@ -0,0 +1,2 @@
+# Define startup options for Kerberos administration server
+KADMIND_OPTS=""

diff --git a/app-crypt/mit-krb5/files/mit-krb5kadmind.initd-r2 
b/app-crypt/mit-krb5/files/mit-krb5kadmind.initd-r2
new file mode 100644
index 000..54dcb87
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5kadmind.initd-r2
@@ -0,0 +1,25 @@
+#!/sbin/runscript
+
+#---
+# This script starts/stops the MIT Kerberos 5 Admin daemon
+#---
+
+daemon="MIT Kerberos 5 Admin daemon"
+exec="/usr/sbin/kadmind"
+
+depend() {
+   need mit-krb5kdc
+   use net
+}
+
+start() {
+   ebegin "Starting $daemon"
+   start-stop-daemon --start --quiet --exec ${exec} -- "${KADMIND_OPTS}" 
1>&2
+   eend $? "Error starting $daemon"
+}
+
+stop() {
+   ebegin "Stopping $daemon"
+   start-stop-daemon --stop --quiet --exec ${exec} 1>&2
+   eend $? "Error stopping $daemon"
+}

diff --git a/app-crypt/mit-krb5/files/mit-krb5kdc.confd 
b/app-crypt/mit-krb5/files/mit-krb5kdc.confd
new file mode 100644
index 000..887d3d8
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5kdc.confd
@@ -0,0 +1,2 @@
+# Define startup options for Kerberos KDC
+KDC_OPTS=""

diff --git a/app-crypt/mit-krb5/files/mit-krb5kdc.initd-r2 
b/app-crypt/mit-krb5/files/mit-krb5kdc.initd-r2
new file mode 100644
index 000..12bb47a
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5kdc.initd-r2
@@ -0,0 +1,24 @@
+#!/sbin/runscript
+
+#---
+# This script starts/stops the MIT Kerberos 5 KDC
+#---
+
+daemon="MIT Kerberos 5 KDC"
+exec="/usr/sbin/krb5kdc"
+
+depend() {
+   use net
+}
+
+start() {
+   ebegin "Starting $daemon"
+   start-stop-daemon --start --quiet --exec ${exec} -- "${KDC_OPTS}" 1>&2
+   eend $? "Error starting $daemon"
+}
+
+stop() {
+   ebegin "Stopping $daemon"
+   start-stop-daemon --stop --quiet --exec ${exec} 1>&2
+   eend $? "Error stopping $daemon"
+}

diff --git a/app-crypt/mit-krb5/files/mit-krb5kpropd.confd 
b/app-crypt/mit-krb5/files/mit-krb5kpropd.confd
new file mode 100644
index 000..d75d41a
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5kpropd.confd
@@ -0,0 +1,2 @@
+# Define startup options for Kerberos incremental propagation server
+KPROPD_OPTS=""

diff --git a/app-crypt/mit-krb5/files/mit-krb5kpropd.initd-r2 
b/app-crypt/mit-krb5/files/mit-krb5kpropd.initd-r2
new file mode 100644
index 000..222c5f7
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5kpropd.initd-r2
@@ -0,0 +1,24 @@
+#!/sbin/runscript
+
+#---
+# This script starts/stops the MIT Kerberos 5 kpropd
+#---
+
+daemon="MIT Kerberos 5 kpropd"
+exec="/usr/sbin/kpropd"
+
+depend() {
+   use net mit-krb5kdc mit-krb5kadmind
+}
+
+start() {
+   ebegin "Starting $daemon"
+   start-stop-daemon --start --quiet --exec ${exec} -- "${KPROPD_OPTS}" 
1>&2
+   eend $? "Error starting $daemon"
+}
+
+stop() {
+   ebegin "Stopping $daemon"
+   start-stop-daemon --stop --quiet --exec ${exec} 1>&2
+   eend $? "Error stopping $daemon"
+}

diff --git a/app-crypt/mit-krb5/mit-krb5-1.13.2-r2.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.13.2-r2.ebuild
new file mode 100644
index 000..d70cb3d
--- /dev/null
+++ b/app-crypt/mit-krb5/mit-krb5-1.13.2-r2.ebuild
@@ -0,0 +1,157 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils flag-o-matic

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

2015-10-28 Thread Hans de Graaff
commit: 3b60f1c3209ec02466ec5de3f44aeee27cad3e2b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Oct 29 05:26:24 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct 29 05:26:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b60f1c3

dev-ruby/chunky_png: add 1.3.5

Package-Manager: portage-2.2.20.1

 dev-ruby/chunky_png/Manifest|  1 +
 dev-ruby/chunky_png/chunky_png-1.3.5.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ruby/chunky_png/Manifest b/dev-ruby/chunky_png/Manifest
index e8a34a8..db429fb 100644
--- a/dev-ruby/chunky_png/Manifest
+++ b/dev-ruby/chunky_png/Manifest
@@ -1,2 +1,3 @@
 DIST chunky_png-1.3.3.gem 346112 SHA256 
4078934795bf845e4015da25d5a64822a286105e62e8cb85c9c94a7ad02d82d1 SHA512 
ea9039a88bb26662863faff98248e8a903e2169fab376b74fc2b17b62f6a2b0201ff67902c596d61a98bec74adb5110bca31c0a6e0f5bf201eef3534f234cf8c
 WHIRLPOOL 
72966631bb53c961573a60eb881a850801617eca512a7a47122d0647dcb50dbe0c673f0ba79c4ac244eb20d7b2886cb8ba1862f76527cef12b06d6b9126c4560
 DIST chunky_png-1.3.4.gem 349184 SHA256 
dc71b0f6bfd38dd9040faa7b1b2ea90c2bfcd5971ee9040785d1b93de484bd58 SHA512 
dbcabaf5b5d5627fbf9bf8de3b5692117b71255b25c062068f879fc75c293939d7ff552e9e2a29ca26d711fd00bb9c40385cb36e50c4fcccbaec6d122fa29ca0
 WHIRLPOOL 
a3d92d2106a3a2ae6587acfd57ead27d1f38b9783a80342e0838230259caf5f5661510b070b0bc6aa8289e0f15a7bd3d68338d9aecdaa3f9c4dbc13c52a4a82b
+DIST chunky_png-1.3.5.gem 350208 SHA256 
b6ab1011b2e79bcc973c92deee4110d071d5cd59ed950efcd0aba49a5f57c06d SHA512 
3c036da20a77bf3525f2d76711e3dee697360dce59c0aee13e57f6cd6a77e7cde0bc94be15ba3c8792e45652d6825f520f8d16f5bc90ca2315a9b3ce17870494
 WHIRLPOOL 
e7ac53ed0b2f959d0016a87c48140382f07477cb061558ae25120e04bd4947ca399321520b0fe508f4e481763c72ab4ae03a693e62486d58e0c3482b371990fa

diff --git a/dev-ruby/chunky_png/chunky_png-1.3.5.ebuild 
b/dev-ruby/chunky_png/chunky_png-1.3.5.ebuild
new file mode 100644
index 000..5291fc2
--- /dev/null
+++ b/dev-ruby/chunky_png/chunky_png-1.3.5.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_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+
+RUBY_FAKEGEM_EXTRADOC="BENCHMARKING.rdoc README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="chunky_png.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Pure Ruby library that can read and write PNG images"
+HOMEPAGE="https://wiki.github.com/wvanbergen/chunky_png";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+all_ruby_prepare() {
+   sed -i -e '/[bB]undler/s:^:#:' {spec,benchmarks}/*.rb || die
+   rm Gemfile* || die
+
+   # Avoid git dependency
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}



[gentoo-commits] proj/gnome:master commit in: gnome-extra/evolution-data-server/

2015-10-28 Thread Priit Laes
commit: ecfc3ecc8410fe0c7fbf18c0da2d53f53cf06d9f
Author: Priit Laes  plaes  org>
AuthorDate: Thu Oct 29 05:33:44 2015 +
Commit: Priit Laes  plaes  org>
CommitDate: Thu Oct 29 05:36:02 2015 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=ecfc3ecc

gnome-extra/evolution-data-server: Add 3.18.1

 ...on-data-server-3.17.92.ebuild => evolution-data-server-3.18.1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/gnome-extra/evolution-data-server/evolution-data-server-3.17.92.ebuild 
b/gnome-extra/evolution-data-server/evolution-data-server-3.18.1.ebuild
similarity index 99%
rename from 
gnome-extra/evolution-data-server/evolution-data-server-3.17.92.ebuild
rename to gnome-extra/evolution-data-server/evolution-data-server-3.18.1.ebuild
index 1a2c0b5..540b4c2 100644
--- a/gnome-extra/evolution-data-server/evolution-data-server-3.17.92.ebuild
+++ b/gnome-extra/evolution-data-server/evolution-data-server-3.18.1.ebuild
@@ -62,6 +62,7 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
vala? ( $(vala_depend) )
 "
+
 # eautoreconf needs:
 #  >=gnome-base/gnome-common-2
 



[gentoo-commits] proj/gnome:master commit in: mail-client/evolution/

2015-10-28 Thread Priit Laes
commit: 45c83e749edf5db64732c01bd288a761217f3170
Author: Priit Laes  plaes  org>
AuthorDate: Thu Oct 29 05:35:17 2015 +
Commit: Priit Laes  plaes  org>
CommitDate: Thu Oct 29 05:36:02 2015 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=45c83e74

mail-client/evolution: 3.17.92 -> 3.18.1

 .../evolution/{evolution-3.17.92.ebuild => evolution-3.18.1.ebuild}   | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/mail-client/evolution/evolution-3.17.92.ebuild 
b/mail-client/evolution/evolution-3.18.1.ebuild
similarity index 100%
rename from mail-client/evolution/evolution-3.17.92.ebuild
rename to mail-client/evolution/evolution-3.18.1.ebuild



[gentoo-commits] dev/graaff:master commit in: dev-ruby/aasm/

2015-10-28 Thread Hans de Graaff
commit: e4c21b25aa16ba9a39fcd0f4fb36c4e311b342f1
Author: Hans de Graaff  degraaff  org>
AuthorDate: Thu Oct 29 05:51:57 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct 29 05:51:57 2015 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=e4c21b25

dev-ruby/aasm: cleanup

Package-Manager: portage-2.2.20.1

 dev-ruby/aasm/Manifest  |  2 --
 dev-ruby/aasm/aasm-4.1.1.ebuild | 33 -
 dev-ruby/aasm/aasm-4.2.0.ebuild | 33 -
 3 files changed, 68 deletions(-)

diff --git a/dev-ruby/aasm/Manifest b/dev-ruby/aasm/Manifest
index 6746c86..2d66af9 100644
--- a/dev-ruby/aasm/Manifest
+++ b/dev-ruby/aasm/Manifest
@@ -1,5 +1,3 @@
 DIST aasm-3.4.0.gem 37888 SHA256 
661b4d6781a8d74792d570363454d82f3e7b482e5c192ca6d1c81aec9d71115b SHA512 
36ecfd11d5948008f2b21e331bcb6ea775200ad929744aa31046e30a9f60783766e2cfa80c6017c275127c883782e5bd8fbf0091c888d2fcd2b3742a00382746
 WHIRLPOOL 
cd06ca5654626eea49a6a3dd2c1fec171a739b5934c0ed318d1ada53c315ecc4d8f46e61f46af92503510c4989566e54a058946df722ac5d505e9d84a0afffdd
-DIST aasm-4.1.1.gem 45568 SHA256 
41732bca71675ad3a8c6ce19c71940bdff128074a7ef8b3e652ce6d53815f1b7 SHA512 
8e4438ad55a1ce24d7fcda9535f1cf0a7b1689bf2679c87663196843d47d028cee5faba6fdf47e156c21a4718f7af10f16c0a7d2cadf9e16b3ce4098629e5403
 WHIRLPOOL 
3a7ea736f75eaf34eb032357ad9c817ff90561a2a927d84622e4d88a99c876697e97e8bb35dbed1e33794bd182b4066f71508d2279ad90b27a72a0a6418f41ff
-DIST aasm-4.2.0.gem 48128 SHA256 
773db211673545b4e1fb743b35870d71c27f9bad0ce5289767e743e11430eaeb SHA512 
cd648afb9b3896ddd190a3fee869df11651b0f870ced20b613bdb0c9bbd9eed9ed88388a90b6e2c43725155d791f2ff5df6c26d55e70360a3cd240f99432cb10
 WHIRLPOOL 
0e1403d4d5b54fd2acc81974fb3816bf76a75c0a67026455577ed1217c8a8b458756a59347faa4f45bd1a582c0eb279f9bb6addcd21904a1e82142783b0a7d57
 DIST aasm-4.3.0.gem 54272 SHA256 
6de924ba5f2130b09129e046345cfad8d849a8569aeab7c65e2be84bbecd225b SHA512 
0fb7421fd593d4b192c45339a22869b10af782dac34a3bdaa9059e79a5fe04e85961d03d5eca59e4311cd242be8ecce8a4d3f499108f79d0d857ed14fe032093
 WHIRLPOOL 
6c4d55f640f959143b7fc59f2a22b10f935d7aa2d9193ffe4697962cbecb3e80ea2503279393a770383a80cad0056c0368dc08a4d29b1b3facef6b7caa869914
 DIST aasm-4.4.1.gem 54784 SHA256 
0117b99364ef35a056ff9d0b1ee9daf16117a4651dd475c85a95144e2a2e6de3 SHA512 
6b3fc64287385b4d189fae6cec9c3893f165be070cbddea7184f3f108a83be2270c4be6c58011b51ecbd6489ab43dccad57ce465e07e72bd14a1e1eccfb27a5b
 WHIRLPOOL 
c8eb64a2757b8dffecf8f9150c339e0342af2178f3c620ae6c6f067fd598f6c2b4e761e3df01500b2d2682efb7a8e169d5b44ddc57b9b4257d8291f89d90b269

diff --git a/dev-ruby/aasm/aasm-4.1.1.ebuild b/dev-ruby/aasm/aasm-4.1.1.ebuild
deleted file mode 100644
index 3640d30..000
--- a/dev-ruby/aasm/aasm-4.1.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# Requires sdoc which is not yet available in Gentoo.
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md README_FROM_VERSION_3_TO_4.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A library for adding finite state machines to Ruby classes."
-HOMEPAGE="https://github.com/rubyist/aasm";
-
-LICENSE="MIT"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/activerecord dev-ruby/rr )"
-
-all_ruby_prepare() {
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/d' Rakefile || die
-   sed -i -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die
-
-   # We currently don't package sdoc
-   sed -i -e '/sdoc/d' Rakefile || die
-}

diff --git a/dev-ruby/aasm/aasm-4.2.0.ebuild b/dev-ruby/aasm/aasm-4.2.0.ebuild
deleted file mode 100644
index 3640d30..000
--- a/dev-ruby/aasm/aasm-4.2.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# Requires sdoc which is not yet available in Gentoo.
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md README_FROM_VERSION_3_TO_4.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A library for adding finite state machines to Ruby classes."
-HOMEPAGE="https://github.com/rubyist/aasm";
-
-LICENSE="MIT"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/activerecord dev-ruby/rr )"
-
-all_ruby_prepare() {
-   rm Gemfile || die
-   sed -i -e '/[Bb]undler/d' Rakefile || die
-   sed -i -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die
-
-   # We currently don't package sdoc
-   sed -i -e '/sdoc/d' Rakefile || die
-}



[gentoo-commits] dev/graaff:master commit in: dev-ruby/ruby-saml/

2015-10-28 Thread Hans de Graaff
commit: 3f339c00044a2574e4a39b76c022e4f9475c7e62
Author: Hans de Graaff  degraaff  org>
AuthorDate: Thu Oct 29 06:05:04 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct 29 06:05:04 2015 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=3f339c00

dev-ruby/ruby-saml: add 1.1.0

Package-Manager: portage-2.2.20.1

 dev-ruby/ruby-saml/Manifest   |  1 +
 dev-ruby/ruby-saml/ruby-saml-1.1.0.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-ruby/ruby-saml/Manifest b/dev-ruby/ruby-saml/Manifest
index 94de2fa..93b71ea 100644
--- a/dev-ruby/ruby-saml/Manifest
+++ b/dev-ruby/ruby-saml/Manifest
@@ -1,3 +1,4 @@
 DIST ruby-saml-0.7.3.gem 55296 SHA256 
4de4c947a89e5e56b344faba795958026c5ba96e4b63053555b44b84df018579 SHA512 
1fa14882bcb584bf9f35036fd69064794d345c01f46cc589c0370652b262ed86dbdaf3ec99edca89b5be75460e5fb26e49deed50432edc2d4a3690cd4443082e
 WHIRLPOOL 
8b23830eb5f8bf9fe857622e911631be4191f99b0bee5c61a462f9253dc5a90a759e632858bc7a54f76da39c24f57722776ee9206e0ffcd5972a647d3510da62
 DIST ruby-saml-0.8.2.gem 55808 SHA256 
a101bc0d86503d12513b8be66a25967c71b189de02d1bd0fa6969e3bdee57597 SHA512 
a199202d5a38a85b23e4a04ebb95abc715d303bd5eb45e2538088b7408a8977e9614c1fcfcadf65602b25043d6a443ea767bc145a652a7b72ffd878343c596f6
 WHIRLPOOL 
1a95ace4903a91470fe93f6fce3245da99ea7e54e905b0964afc1223197b8df8f789f77e5419e6f871362656b96f8ba408704c3956d751c5aa9b7d0a39fb7499
 DIST ruby-saml-1.0.0.gem 204800 SHA256 
24ea186d2506dd99f19acbc2f1b3bf637e0df40ef5ee73d8f2c552a158221643 SHA512 
0edb752a0cc40d85c1a330e6f52468a464385033bdb15d5dc2271583ae364428936d79bab6f6bfbf2cf8b87d30755d056efcece673f07f84e2d91d90811a9109
 WHIRLPOOL 
58669296f342ebc771986c4c94b9010384788292646fc0ce3d0f6e012327bc90514bb3ec61370da64fda061d24b89bb20ee8b04b0e305c75fa0e957c39d608d2
+DIST ruby-saml-1.1.0.gem 213504 SHA256 
f426aae67d5d33e9596154fb0f5b454f6c9b72e04d66baabe60fd016b3672e02 SHA512 
394eb83dfe55bb02889385c3716808d60382c06fad6d411a42bca13edaa39fdf1499f26913bdaf1a3f0c85856f1cd6abcff5daae7b74040e9ca1dbf308c31eee
 WHIRLPOOL 
99c545685d326c3992f3de7a2e0261a43a14b0659e3d1bb9286cbb6df7fcd7b0223eb490df1c78dec52d8ba82bfae0ef718da63efcf4eca2918d9ca6e0ebfd19

diff --git a/dev-ruby/ruby-saml/ruby-saml-1.1.0.ebuild 
b/dev-ruby/ruby-saml/ruby-saml-1.1.0.ebuild
new file mode 100644
index 000..f514e40
--- /dev/null
+++ b/dev-ruby/ruby-saml/ruby-saml-1.1.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library for implementing the client side of a SAML 
authorization"
+HOMEPAGE="https://github.com/onelogin/ruby-saml";
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="0.8"
+IUSE="doc"
+
+ruby_add_rdepend "
+   >=dev-ruby/nokogiri-1.5.10
+   >=dev-ruby/uuid-2.3:0"
+
+ruby_add_bdepend "test? ( dev-ruby/timecop dev-ruby/mocha dev-ruby/shoulda:0 )"
+
+all_ruby_prepare() {
+   sed -i -e '/ruby-debug/d' \
+   -e '/bundler/I s:^:#:' \
+   -e '/simplecov/ s:^:#:' \
+   -e '/SimpleCov/,/end/ s:^:#:' test/test_helper.rb || die
+
+   sed -ie -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   sed -i -e '2i gem "shoulda", "~> 2.11"' test/test_helper.rb || die
+
+   sed -i -e '3irequire "onelogin/ruby-saml/http_error"' 
test/idp_metadata_parser_test.rb || die
+}



[gentoo-commits] dev/graaff:master commit in: app-forensics/brakeman/

2015-10-28 Thread Hans de Graaff
commit: ff757d717db6c173845a2a5482c2040c59e3f89a
Author: Hans de Graaff  degraaff  org>
AuthorDate: Thu Oct 29 05:46:06 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct 29 05:46:06 2015 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=ff757d71

app-forensics/brakeman: add 3.1.2

Package-Manager: portage-2.2.20.1

 app-forensics/brakeman/Manifest  |  1 +
 app-forensics/brakeman/brakeman-3.1.2.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/app-forensics/brakeman/Manifest b/app-forensics/brakeman/Manifest
index b022e61..f3c1a17 100644
--- a/app-forensics/brakeman/Manifest
+++ b/app-forensics/brakeman/Manifest
@@ -1,3 +1,4 @@
 DIST brakeman-3.0.5.tar.gz 532128 SHA256 
c0ddd603e8b7c30faa0dda2aece5d6ff0205e8363cf797d57b16860456422526 SHA512 
244658f01293cb1e9e9d9be3e1a6181299b184bc75c0cb95c26d686dca7040e404b53bdaafdf9dc9f791eddd4adf0f9dd253ac919254eeffc0a48e2db5e79fdd
 WHIRLPOOL 
78e8c55f1014d90f60380baa34afa0c103ac08dd7664c3da858e3ae7d808487e855c00ea42d4c41eb8793c1ca771e154b191f890ad3dcdf9c0e4d8fb61d84366
 DIST brakeman-3.1.0.tar.gz 534087 SHA256 
81848f88aa16ba31113df43295a5bfab4217b1119ecd8963705fa9a9b0f2d410 SHA512 
535e637b1387fa20f17335c015832c53877edbb946d7ac2185c2704055a5b99f0f036f9a397110da5d22fd597bbbc2dadbc52b698f0b04700f757ede89d41a61
 WHIRLPOOL 
77be4d6f1eea74720f893140e8a170c33da83fed786d022551aec97684f90570ac67f520d4faae6f82c4c69c2011470c480fa5a5542e76dddcb170eb4bb3c345
 DIST brakeman-3.1.1.tar.gz 537104 SHA256 
22548d386ed55ab149cf5650ab28edc122ef50abcca8bb9f1884ba166804b0d8 SHA512 
89f88525ca1928ee3b6ee34652f9c22175ffd6a727ce16212ac4ade476310379d4fbf5d1973933ed16ccc5b2bfcd3506462e12f0fd4edf0f8cf128e30f30ae2a
 WHIRLPOOL 
759b9fa9354b246167c7d5645597fa8b8b6fe75dafc54658f0e0517323034302c479078f91aa3c2fb154b2082a3390a2c0886389b5252d9e5dacb4474690fdad
+DIST brakeman-3.1.2.tar.gz 539937 SHA256 
4356133747d12a0faa59a8e26928b4b4aef2db531697c1382bb3e80584246f4b SHA512 
6a6eb8130830dc24c518c9123a5ea6c2246dcef083a828fbb8e3facd135fc0548ee8f296e0ce472141299f06a9c63d855dbb88fdfa9c03c69bd909fba5723038
 WHIRLPOOL 
c893e0fa7ae6460d9d70ac61ace9149118709dee8d4ed9fde89f4081bf21845fabe047969d458a18b0926300bb93d15a82c89d843799c81a71dcf72a84f062a4

diff --git a/app-forensics/brakeman/brakeman-3.1.2.ebuild 
b/app-forensics/brakeman/brakeman-3.1.2.ebuild
new file mode 100644
index 000..2ebbd2c
--- /dev/null
+++ b/app-forensics/brakeman/brakeman-3.1.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES FEATURES README.md WARNING_TYPES"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_GEMSPEC="brakeman.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="a static analysis tool which checks Ruby on Rails applications 
for security vulnerabilities"
+HOMEPAGE="http://brakemanscanner.org/";
+SRC_URI="https://github.com/presidentbeef/brakeman/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/erubis-2.6
+   >=dev-ruby/haml-3.0:*  =dev-ruby/highline-1.6.20 =dev-ruby/highline-1*
+   >=dev-ruby/multi_json-1.2 =dev-ruby/multi_json-1*
+   >=dev-ruby/ruby2ruby-2.1.1 =dev-ruby/ruby_parser-3.7.0 =dev-ruby/ruby_parser-3*
+   dev-ruby/safe_yaml
+   >=dev-ruby/sass-3.0:* =dev-ruby/sass-3*:*
+   >=dev-ruby/slim-1.3.6 =dev-ruby/terminal-table-1.4.5 =dev-ruby/terminal-table-1.4*"
+
+all_ruby_prepare() {
+   # Remove fastercsv since it's a no-op on ruby19.
+   sed -i -e '/fastercsv/d' \
+   -e '/ruby_parser/ s/3.7.0/3.7/' \
+   ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+   ${RUBY} test/test.rb || die
+}



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

2015-10-28 Thread Mike Frysinger
commit: 13b24dbb86a4f2013c376c65ada52d9aee2561c6
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Oct 29 06:13:41 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Oct 29 06:14:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13b24dbb

net-misc/openssh: fix tun window size in hpn mode #564236

 net-misc/openssh/Manifest |   1 +
 net-misc/openssh/openssh-7.1_p1-r2.ebuild | 327 ++
 2 files changed, 328 insertions(+)

diff --git a/net-misc/openssh/Manifest b/net-misc/openssh/Manifest
index 461d5c1..cf1e7a0 100644
--- a/net-misc/openssh/Manifest
+++ b/net-misc/openssh/Manifest
@@ -15,6 +15,7 @@ DIST openssh-7.0p1+x509-8.5.diff.gz 411960 SHA256 
6000557f1ddae06aff8837d440d933
 DIST openssh-7.0p1-hpnssh14v5.tar.xz 21428 SHA256 
6032c4547c9f83a6f648ac7c39cdad2bd6fd725e5f3ab2411c5b30298aae1451 SHA512 
d4cf4a628c11515bfe8c3a91b4b7039fca28c2f89ad1dde062c4cb433b984b10dec2d37b1f338f18aa7813e60d8608b65ca95b930edc33086710b82780875942
 WHIRLPOOL 
7b686f243c98017453b3da3e98b7524650b4a0a75fda6add80c7c233d468194d1d1333ffa4445c20856d807548aaa356c87a03ca87d8995a4b7ba350c7714d1e
 DIST openssh-7.0p1.tar.gz 1493376 SHA256 
fd5932493a19f4c81153d812ee4e042b49bbd3b759ab3d9344abecc2bc1485e5 SHA512 
d82aa8e85630c3e2102e69da477185e0d30d84211d7d4ee0a1d9822bd234d649fe369bf91ce3d2b5ef0caee687d383cb761b682d3bf24bccbd2ce9a1fe9d9f50
 WHIRLPOOL 
bb8007450ffee580df5a73e3d6ab9b54b7151c46c3b996516e5cb776034be21cbef1281a520279655137e218a757d8092cba3f66e216c6b4c6828876540cb5df
 DIST openssh-7.1p1+x509-8.6.diff.gz 413931 SHA256 
cbf661a1fec080dc9ed335a290414154326c2a13f124985db050b86a91073d52 SHA512 
c91d0f1b69b6d34984e94b391ad022271e73d0634cef2df355ba555366bc38d30649b478f245b6c51ce79d71adf1b693bc97826e6c6013a78e7ccfb7023b4bcc
 WHIRLPOOL 
4ed4427e80026996c43a188d7d45f2c53fa6a7fd842a248b1225b27f3e9037e761f0ed172d79b53ada81c24d958a2193e94d918f6ca1320e45d5e68379845981
+DIST openssh-7.1p1-hpnssh14v9.tar.xz 21580 SHA256 
a795c2f2621f537b3fd98172cbd1f7c71869e4da78cd280d123fa19ae4262b97 SHA512 
6ce151949bf81b5518b95092a2f18d2f24581954e2c629deaf3c1d10136f32f830567aafb9b4045547e95e3ab63cf750e240eac40e2b9caa6d71cb2b132821ec
 WHIRLPOOL 
8e3c9a1d79112092a6cb42c6766ccdf61e5d8fcd366ea5c7d3bab94cf309bcc12f3761476a288158638a340023aa24519d888caac19fb0ef25fa56bdab06412c
 DIST openssh-7.1p1.tar.gz 1493170 SHA256 
fc0a6d2d1d063d5c66dffd952493d0cda256cad204f681de0f84ef85b2ad8428 SHA512 
f1491ca5a0a733eb27ede966590642a412cb7be7178dcb7b9e5844bbdc8383032f4b00435192b95fc0365b6fe74d6c5ac8d6facbe9d51e1532d049e2f784e8f7
 WHIRLPOOL 
a650a93657f930d20dc3fa24ab720857f63f7cd0a82d1906cf1e58145e866129207851d5e587d678655e5731fa73221ab9b6ea0754533100c25fe2acaa442e05
 DIST openssh-lpk-6.7p1-0.3.14.patch.xz 16920 SHA256 
0203e6e44e41d58ec46d1611d7efc985134e662bbee51632c29f43ae809003f0 SHA512 
344ccde4a04aeb1500400f779e64b2d8a5ad2970de3c4c343ca9605758e22d3812ef5453cd3221b18ad74a9762583c62417879107e4e1dda1398a6a65bcd04b2
 WHIRLPOOL 
5b6beeb743d04deea70c8b471a328b5f056fd4651e1370c7882e5d12f54fa2170486dcd6f97aa8c58e80af9a2d4012e2dfbcf53185317976d309783ca8d6cf73
 DIST openssh-lpk-6.8p1-0.3.14.patch.xz 16940 SHA256 
d5f048dc7e9d3fca085c152fc31306f1d8fa793e524c538295915b075ec085b0 SHA512 
2470b6b46f8c7ac985f82d14b788a3eb81a468a1d5013cb7f89257d9dd78b6037e24bf54ac57b757db8ed1df24332d659cf918c11ea73592fd24a69c25a54081
 WHIRLPOOL 
b041ee9e0efdf370686f11df4131ab5e5ffb2f11cc66c386a8223bf563c5b78ab9443f06e4adc2e506e440cdec9dc5b20f5972cd8d691d786d2f903bb49b947b

diff --git a/net-misc/openssh/openssh-7.1_p1-r2.ebuild 
b/net-misc/openssh/openssh-7.1_p1-r2.ebuild
new file mode 100644
index 000..7e645fd
--- /dev/null
+++ b/net-misc/openssh/openssh-7.1_p1-r2.ebuild
@@ -0,0 +1,327 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+inherit eutils user flag-o-matic multilib autotools pam systemd versionator
+
+# Make it more portable between straight releases
+# and _p? releases.
+PARCH=${P/_}
+
+HPN_PATCH="${PN}-7.1p1-hpnssh14v9.tar.xz"
+LDAP_PATCH="${PN}-lpk-6.8p1-0.3.14.patch.xz"
+X509_VER="8.6" X509_PATCH="${PN}-${PV//_/}+x509-${X509_VER}.diff.gz"
+
+DESCRIPTION="Port of OpenBSD's free SSH release"
+HOMEPAGE="http://www.openssh.org/";
+SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
+   mirror://gentoo/${PN}-6.8_p1-sctp.patch.xz
+   ${HPN_PATCH:+hpn? (
+   mirror://gentoo/${HPN_PATCH}
+   https://dev.gentoo.org/~polynomial-c/${HPN_PATCH}
+   mirror://sourceforge/hpnssh/${HPN_PATCH}
+   )}
+   ${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
+   ${X509_PATCH:+X509? ( 
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}
+   "
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+# Probably want to 

[gentoo-commits] dev/graaff:master commit in: dev-ruby/uuid/

2015-10-28 Thread Hans de Graaff
commit: 01cd17c67e25450ed67e090fa2e3fb5b39c6886b
Author: Hans de Graaff  degraaff  org>
AuthorDate: Thu Oct 29 06:14:14 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct 29 06:14:14 2015 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=01cd17c6

dev-ruby/uuid: add ruby22

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/uuid/uuid-2.3.8.ebuild b/dev-ruby/uuid/uuid-2.3.8.ebuild
index b4f7ce1..cb416dd 100644
--- a/dev-ruby/uuid/uuid-2.3.8.ebuild
+++ b/dev-ruby/uuid/uuid-2.3.8.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header:  $
+# $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
 



[gentoo-commits] dev/graaff:master commit in: dev-ruby/aasm/

2015-10-28 Thread Hans de Graaff
commit: 30442df8c289ea359680b7be0620c869922ca7f8
Author: Hans de Graaff  degraaff  org>
AuthorDate: Thu Oct 29 05:49:44 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Oct 29 05:49:44 2015 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=30442df8

dev-ruby/aasm: add 4.4.1

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/aasm/Manifest b/dev-ruby/aasm/Manifest
index d3fd9a5..6746c86 100644
--- a/dev-ruby/aasm/Manifest
+++ b/dev-ruby/aasm/Manifest
@@ -2,3 +2,4 @@ DIST aasm-3.4.0.gem 37888 SHA256 
661b4d6781a8d74792d570363454d82f3e7b482e5c192ca
 DIST aasm-4.1.1.gem 45568 SHA256 
41732bca71675ad3a8c6ce19c71940bdff128074a7ef8b3e652ce6d53815f1b7 SHA512 
8e4438ad55a1ce24d7fcda9535f1cf0a7b1689bf2679c87663196843d47d028cee5faba6fdf47e156c21a4718f7af10f16c0a7d2cadf9e16b3ce4098629e5403
 WHIRLPOOL 
3a7ea736f75eaf34eb032357ad9c817ff90561a2a927d84622e4d88a99c876697e97e8bb35dbed1e33794bd182b4066f71508d2279ad90b27a72a0a6418f41ff
 DIST aasm-4.2.0.gem 48128 SHA256 
773db211673545b4e1fb743b35870d71c27f9bad0ce5289767e743e11430eaeb SHA512 
cd648afb9b3896ddd190a3fee869df11651b0f870ced20b613bdb0c9bbd9eed9ed88388a90b6e2c43725155d791f2ff5df6c26d55e70360a3cd240f99432cb10
 WHIRLPOOL 
0e1403d4d5b54fd2acc81974fb3816bf76a75c0a67026455577ed1217c8a8b458756a59347faa4f45bd1a582c0eb279f9bb6addcd21904a1e82142783b0a7d57
 DIST aasm-4.3.0.gem 54272 SHA256 
6de924ba5f2130b09129e046345cfad8d849a8569aeab7c65e2be84bbecd225b SHA512 
0fb7421fd593d4b192c45339a22869b10af782dac34a3bdaa9059e79a5fe04e85961d03d5eca59e4311cd242be8ecce8a4d3f499108f79d0d857ed14fe032093
 WHIRLPOOL 
6c4d55f640f959143b7fc59f2a22b10f935d7aa2d9193ffe4697962cbecb3e80ea2503279393a770383a80cad0056c0368dc08a4d29b1b3facef6b7caa869914
+DIST aasm-4.4.1.gem 54784 SHA256 
0117b99364ef35a056ff9d0b1ee9daf16117a4651dd475c85a95144e2a2e6de3 SHA512 
6b3fc64287385b4d189fae6cec9c3893f165be070cbddea7184f3f108a83be2270c4be6c58011b51ecbd6489ab43dccad57ce465e07e72bd14a1e1eccfb27a5b
 WHIRLPOOL 
c8eb64a2757b8dffecf8f9150c339e0342af2178f3c620ae6c6f067fd598f6c2b4e761e3df01500b2d2682efb7a8e169d5b44ddc57b9b4257d8291f89d90b269

diff --git a/dev-ruby/aasm/aasm-4.4.1.ebuild b/dev-ruby/aasm/aasm-4.4.1.ebuild
new file mode 100644
index 000..4d0a31c
--- /dev/null
+++ b/dev-ruby/aasm/aasm-4.4.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+
+# Requires sdoc which is not yet available in Gentoo.
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md README_FROM_VERSION_3_TO_4.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library for adding finite state machines to Ruby classes."
+HOMEPAGE="https://github.com/rubyist/aasm";
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/activerecord dev-ruby/rr )"
+
+all_ruby_prepare() {
+   rm Gemfile || die
+   sed -i -e '/[Bb]undler/d' Rakefile || die
+   sed -i -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die
+
+   # We currently don't package sdoc
+   sed -i -e '/sdoc/d' Rakefile || die
+}



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

2015-10-28 Thread Jeroen Roovers
commit: 42a033b29f4ef3df793168719336a7e31754e702
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 29 06:41:24 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 29 06:41:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a033b2

x11-misc/zim: Version bump (bug #564356 by Jonas Stein).

Package-Manager: portage-2.2.23

 x11-misc/zim/Manifest |  3 +-
 x11-misc/zim/zim-0.61.ebuild  | 70 ---
 x11-misc/zim/{zim-0.62.ebuild => zim-0.64.ebuild} |  4 +-
 3 files changed, 3 insertions(+), 74 deletions(-)

diff --git a/x11-misc/zim/Manifest b/x11-misc/zim/Manifest
index 06fa239..44b772e 100644
--- a/x11-misc/zim/Manifest
+++ b/x11-misc/zim/Manifest
@@ -1,3 +1,2 @@
-DIST zim-0.61.tar.gz 1733251 SHA256 
5843a9b2fb41f153b7b628732ac157889709b9937b4921c05099af81dceccc4a SHA512 
381f1d740bedaecf52c4b7178e7ac17aac98971cc5292476396a28b965b93195a2e07e55f7872048b3577123cd6afb44c2a0e2dee220b02a84fed2a13fb67f61
 WHIRLPOOL 
d0f9d8ce65e8970226f8878cc4e89d228c76e06f9772692d7bc3653b4fc85b4b9ed22d2b0aa91aa724384062a4b1b93859594089c9b1799c2eded313cea7deba
-DIST zim-0.62.tar.gz 1772246 SHA256 
19d62aebd2c1a92d84d80720c6c1dcdb779c39a2120468fed01b7f252511bdc2 SHA512 
53dc97052ee8ec57a61adf9d540f7721ee7e8d8d2500fc4d6ca7bc1b82dc07c5596b8b900c312d155bb1c06e7fbf661e667e0da391ac8f1e326caa2942f7cb1f
 WHIRLPOOL 
f1b44e27b49577868f5374b196fe5d59fd111664568141af1aa809fdcf916f830e385320f87c075242ad0ec7fa3db4d6d87fcbe7b70c850c1f1b3725abc66978
 DIST zim-0.63.tar.gz 1864169 SHA256 
1584547150b6c96dacdb540c2b88e16d2cd673fa8026d9179aab4a082071fb1c SHA512 
052f65c98badfcb1a6d9ed9d09eb84a01878384430affcb97d48d51ef5853478c8d489f9337600fc28b9949f8e1ff97e7e4070ed9a4f488f684a392ad2bff791
 WHIRLPOOL 
12c884fdaeac1c0c4766637d96e9699491cac1d3421368c073f852e78995a969303dd510172ef89b70c65226cfd1de794968b31313e1ee63aeb6e2f63d610451
+DIST zim-0.64.tar.gz 1896231 SHA256 
d747d12803385468142a9f078623772d90fee6325d2acc618589aea63a0e9b1b SHA512 
be16412e69f0ead6e5fe4418993fe5ef4e3a88bdfbe4aa09a6406e7bc70e1714862fb533172b7313c591b351e5dc44f49c826c3cff80df27fadc59e157b08991
 WHIRLPOOL 
f16c77a9467d5783aa8eaebd8faae8357c4bff1cdc19629472ab8cfe44bc0d56a89079209534d742d19434913551418f3f4baae9f0851f165469f55a040190f1

diff --git a/x11-misc/zim/zim-0.61.ebuild b/x11-misc/zim/zim-0.61.ebuild
deleted file mode 100644
index 8d5163c..000
--- a/x11-misc/zim/zim-0.61.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite"
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1 gnome2-utils fdo-mime virtualx
-
-DESCRIPTION="A desktop wiki"
-HOMEPAGE="http://zim-wiki.org/";
-SRC_URI="http://zim-wiki.org/downloads/${P}.tar.gz";
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   x11-misc/xdg-utils
-   test? (
-   dev-vcs/bzr
-   dev-vcs/git
-   dev-vcs/mercurial )"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.60-remove-ubuntu-theme.patch )
-
-python_prepare() {
-   sed -i -e "s/'USER'/'LOGNAME'/g" zim/__init__.py zim/fs.py || die
-   distutils-r1_python_prepare
-}
-
-python_test() {
-   VIRTUALX_COMMAND="${PYTHON}" virtualmake test.py
-}
-
-python_install() {
-   distutils-r1_python_install --skip-xdg-cmd
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   fdo-mime_desktop_database_update
-   gnome2_icon_cache_update
-   if ! has_version ${CATEGORY}/${PN}; then
-   einfo "Please emerge these packages for additional 
functionality"
-   einfo "dev-lang/R"
-   einfo "dev-python/gtkspell-python"
-   einfo "dev-vcs/bzr"
-   einfo "gnome-extra/zeitgeist"
-   einfo "media-gfx/graphviz"
-   einfo "media-gfx/imagemagick"
-   einfo "media-gfx/scrot"
-   einfo "media-sound/lilypond"
-   einfo "sci-visualization/gnuplot"
-   einfo "virtual/latex-base app-text/dvipng"
-   fi
-}
-
-pkg_postrm() {
-   fdo-mime_desktop_database_update
-   gnome2_icon_cache_update
-}

diff --git a/x11-misc/zim/zim-0.62.ebuild b/x11-misc/zim/zim-0.64.ebuild
similarity index 95%
rename from x11-misc/zim/zim-0.62.ebuild
rename to x11-misc/zim/zim-0.64.ebuild
index f9f9e5d..fb9808a 100644
--- a/x11-misc/zim/zim-0.62.ebuild
+++ b/x11-misc/zim/zim-0.64.ebuild
@@ -19,7 +19,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
-RDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]
+   dev-python/pygobject:2[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
x11-misc/xdg-utils
test? (
@@ -29,7 +30,6 @@ DEPEND="${RDEPEND}
 
 PATCHES=(
   

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

2015-10-28 Thread Jeroen Roovers
commit: c1e2d89016596f3cebeedba4fd21f1160b21ef7f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 29 06:33:28 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 29 06:33:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e2d890

dev-lang/php: Stable for PPC64 (bug #562882).

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

 dev-lang/php/php-5.5.30.ebuild | 2 +-
 dev-lang/php/php-5.6.14.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-5.5.30.ebuild b/dev-lang/php/php-5.5.30.ebuild
index 374ed62..b73e939 100644
--- a/dev-lang/php/php-5.5.30.ebuild
+++ b/dev-lang/php/php-5.5.30.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {

diff --git a/dev-lang/php/php-5.6.14.ebuild b/dev-lang/php/php-5.6.14.ebuild
index 374ed62..b73e939 100644
--- a/dev-lang/php/php-5.6.14.ebuild
+++ b/dev-lang/php/php-5.6.14.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



  1   2   >