[gentoo-commits] proj/pax-utils:master commit in: /

2015-07-13 Thread Mike Frysinger
commit: 9daf7217a29e8542ad80672a3b82ae1b8c497321
Author: Mike Frysinger vapier AT gentoo DOT org
AuthorDate: Mon Jul 13 08:59:13 2015 +
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Mon Jul 13 08:59:13 2015 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=9daf7217

scanelf: do not warn about invalid archive entries by default

It's not uncommon for embedded toolchains or random targets to create
their own spin on the archive format.  Rather than complain about all
of these by default, put it behind the -v flag.  It's not like people
can do anything about this normally anyways.

URL: https://bugs.gentoo.org/428464

 paxinc.c| 12 
 paxinc.h|  5 +++--
 scanelf.c   |  2 +-
 scanmacho.c |  2 +-
 4 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/paxinc.c b/paxinc.c
index f2ce3c5..64a7f3b 100644
--- a/paxinc.c
+++ b/paxinc.c
@@ -17,7 +17,7 @@ char do_reverse_endian;
 
 #define AR_MAGIC !arch
 #define AR_MAGIC_SIZE (sizeof(AR_MAGIC)-1) /* dont count null byte */
-archive_handle *ar_open_fd(const char *filename, int fd)
+archive_handle *ar_open_fd(const char *filename, int fd, bool verbose)
 {
static archive_handle ret;
char buf[AR_MAGIC_SIZE];
@@ -26,6 +26,7 @@ archive_handle *ar_open_fd(const char *filename, int fd)
ret.fd = fd;
ret.skip = 0;
ret.extfn = NULL;
+   ret.verbose = verbose;
 
if (read(ret.fd, buf, AR_MAGIC_SIZE) != AR_MAGIC_SIZE)
return NULL;
@@ -34,7 +35,7 @@ archive_handle *ar_open_fd(const char *filename, int fd)
 
return ret;
 }
-archive_handle *ar_open(const char *filename)
+archive_handle *ar_open(const char *filename, bool verbose)
 {
int fd;
archive_handle *ret;
@@ -42,7 +43,7 @@ archive_handle *ar_open(const char *filename)
if ((fd=open(filename, O_RDONLY)) == -1)
errp(%s: could not open, filename);
 
-   ret = ar_open_fd(filename, fd);
+   ret = ar_open_fd(filename, fd, verbose);
if (ret == NULL)
close(fd);
 
@@ -76,7 +77,10 @@ close_and_ret:
}
 
if ((ret.buf.formatted.magic[0] != '`') || (ret.buf.formatted.magic[1] 
!= '\n')) {
-   warn(%s: invalid ar entry, ar-filename);
+   /* When dealing with corrupt or random embedded 
cross-compilers, they might
+* be abusing the archive format; only complain when in verbose 
mode. */
+   if (ar-verbose)
+   warn(%s: invalid ar entry, ar-filename);
goto close_and_ret;
}
 

diff --git a/paxinc.h b/paxinc.h
index 003877d..0a8e08a 100644
--- a/paxinc.h
+++ b/paxinc.h
@@ -37,6 +37,7 @@ typedef struct {
const char *filename;
size_t skip;
char *extfn;
+   bool verbose;
 } archive_handle;
 #else
 typedef void archive_handle;
@@ -63,8 +64,8 @@ typedef struct {
} buf;
 #endif
 } archive_member;
-archive_handle *ar_open_fd(const char *filename, int fd);
-archive_handle *ar_open(const char *filename);
+archive_handle *ar_open_fd(const char *filename, int fd, bool verbose);
+archive_handle *ar_open(const char *filename, bool verbose);
 archive_member *ar_next(archive_handle *);
 
 const char *strfileperms(const char *fname);

diff --git a/scanelf.c b/scanelf.c
index 7219f1c..82ab626 100644
--- a/scanelf.c
+++ b/scanelf.c
@@ -1717,7 +1717,7 @@ static int scanelf_archive(const char *filename, int fd, 
size_t len)
char *ar_buffer;
elfobj *elf;
 
-   ar = ar_open_fd(filename, fd);
+   ar = ar_open_fd(filename, fd, be_verbose);
if (ar == NULL)
return 1;
 

diff --git a/scanmacho.c b/scanmacho.c
index a36aed4..f8c4d89 100644
--- a/scanmacho.c
+++ b/scanmacho.c
@@ -383,7 +383,7 @@ static int scanmacho_archive(const char *filename, int fd, 
size_t len)
fatobj *fobj;
fatobj *walk;
 
-   ar = ar_open_fd(filename, fd);
+   ar = ar_open_fd(filename, fd, be_verbose);
if (ar == NULL)
return 1;
 



[gentoo-commits] proj/pax-utils: New tag: v1.0.4

2015-07-13 Thread Mike Frysinger
commit: 
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Mon Jul 13 09:15:01 2015 +

New tag: v1.0.4




[gentoo-commits] proj/pax-utils:master commit in: /

2015-07-13 Thread Mike Frysinger
commit: b9e102a371169f2aec0b9945c6450b9576a95012
Author: Mike Frysinger vapier AT gentoo DOT org
AuthorDate: Thu Jun  4 05:04:07 2015 +
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Thu Jun  4 05:04:07 2015 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=b9e102a3

lddtree.py: convert to arparse

 lddtree.py | 184 ++---
 1 file changed, 91 insertions(+), 93 deletions(-)

diff --git a/lddtree.py b/lddtree.py
index c284182..645cfd1 100755
--- a/lddtree.py
+++ b/lddtree.py
@@ -9,13 +9,42 @@
 
 This does not work like `ldd` in that we do not execute/load code (only read
 files on disk), and we should the ELFs as a tree rather than a flat list.
+
+Paths may be globs that lddtree will take care of expanding.
+Useful when you want to glob a path under the ROOT path.
+
+When using the --root option, all paths are implicitly prefixed by that.
+  e.g. lddtree -R /my/magic/root /bin/bash
+This will load up the ELF found at /my/magic/root/bin/bash and then resolve
+all libraries via that path.  If you wish to actually read /bin/bash (and
+so use the ROOT path as an alternative library tree), you can specify the
+--no-auto-root option.
+
+When pairing --root with --copy-to-tree, the ROOT path will be stripped.
+  e.g. lddtree -R /my/magic/root --copy-to-tree /foo /bin/bash
+You will see /foo/bin/bash and /foo/lib/libc.so.6 and not paths like
+/foo/my/magic/root/bin/bash.  If you want that, you'll have to manually
+add the ROOT path to the output path.
+
+The --bindir and --libdir flags are used to normalize the output subdirs
+when used with --copy-to-tree.
+  e.g. lddtree --copy-to-tree /foo /bin/bash /usr/sbin/lspci /usr/bin/lsof
+This will mirror the input paths in the output.  So you will end up with
+/foo/bin/bash and /foo/usr/sbin/lspci and /foo/usr/bin/lsof.  Similarly,
+the libraries needed will be scattered among /foo/lib/ and /foo/usr/lib/
+and perhaps other paths (like /foo/lib64/ and /usr/lib/gcc/...).  You can
+collapse all that down into nice directory structure.
+  e.g. lddtree --copy-to-tree /foo /bin/bash /usr/sbin/lspci /usr/bin/lsof \\
+   --bindir /bin --libdir /lib
+This will place bash, lspci, and lsof into /foo/bin/.  All the libraries
+they need will be placed into /foo/lib/ only.
 
 
 from __future__ import print_function
 
+import argparse
 import glob
 import errno
-import optparse
 import os
 import shutil
 import sys
@@ -451,13 +480,9 @@ def ParseELF(path, root='/', prefix='', 
ldpaths={'conf':[], 'env':[], 'interp':[
   return ret
 
 
-def _NormalizePath(option, _opt, value, parser):
-  setattr(parser.values, option.dest, normpath(value))
-
-
-def _ShowVersion(_option, _opt, _value, _parser):
-  print('lddtree by Mike Frysinger vap...@gentoo.org')
-  sys.exit(0)
+class _NormalizePathAction(argparse.Action):
+  def __call__(self, parser, namespace, values, option_string=None):
+setattr(namespace, self.dest, normpath(values))
 
 
 def _ActionShow(options, elf):
@@ -590,91 +615,64 @@ def _ActionCopy(options, elf):
 
 
 def main(argv):
-  parser = optparse.OptionParser(%prog [options] ELFs
-
-Display ELF dependencies as a tree
-
-ELFs can be globs that lddtree will take care of expanding.
-Useful when you want to glob a path under the ROOT path.
-
-When using the --root option, all paths are implicitly prefixed by that.
-  e.g. lddtree -R /my/magic/root /bin/bash
-This will load up the ELF found at /my/magic/root/bin/bash and then resolve
-all libraries via that path.  If you wish to actually read /bin/bash (and
-so use the ROOT path as an alternative library tree), you can specify the
---no-auto-root option.
-
-When pairing --root with --copy-to-tree, the ROOT path will be stripped.
-  e.g. lddtree -R /my/magic/root --copy-to-tree /foo /bin/bash
-You will see /foo/bin/bash and /foo/lib/libc.so.6 and not paths like
-/foo/my/magic/root/bin/bash.  If you want that, you'll have to manually
-add the ROOT path to the output path.
-
-The --bindir and --libdir flags are used to normalize the output subdirs
-when used with --copy-to-tree.
-  e.g. lddtree --copy-to-tree /foo /bin/bash /usr/sbin/lspci /usr/bin/lsof
-This will mirror the input paths in the output.  So you will end up with
-/foo/bin/bash and /foo/usr/sbin/lspci and /foo/usr/bin/lsof.  Similarly,
-the libraries needed will be scattered among /foo/lib/ and /foo/usr/lib/
-and perhaps other paths (like /foo/lib64/ and /usr/lib/gcc/...).  You can
-collapse all that down into nice directory structure.
-  e.g. lddtree --copy-to-tree /foo /bin/bash /usr/sbin/lspci /usr/bin/lsof \\
-   --bindir /bin --libdir /lib
-This will place bash, lspci, and lsof into /foo/bin/.  All the libraries
-they need will be placed into /foo/lib/ only.)
-  parser.add_option('-a', '--all',
-action='store_true', default=False,
-help='Show all duplicated dependencies')
-  

[gentoo-commits] proj/pax-utils:master commit in: /

2015-07-13 Thread Mike Frysinger
commit: fa5ae8d08656c784c41818b298aa9321458b15ce
Author: Mike Frysinger vapier AT gentoo DOT org
AuthorDate: Mon Jul 13 08:48:03 2015 +
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Mon Jul 13 08:48:03 2015 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=fa5ae8d0

scanelf: include filename/details in all ar related messages

When scanelf runs on a directory tree, it might issue an error message
about invalid data because of one of the files in there.  Trying to then
track down that file is kind of a pain, so make things more explicit.

 paxinc.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/paxinc.c b/paxinc.c
index b9a196b..f2ce3c5 100644
--- a/paxinc.c
+++ b/paxinc.c
@@ -40,7 +40,7 @@ archive_handle *ar_open(const char *filename)
archive_handle *ret;
 
if ((fd=open(filename, O_RDONLY)) == -1)
-   err(Could not open '%s', filename);
+   errp(%s: could not open, filename);
 
ret = ar_open_fd(filename, fd);
if (ret == NULL)
@@ -76,13 +76,13 @@ close_and_ret:
}
 
if ((ret.buf.formatted.magic[0] != '`') || (ret.buf.formatted.magic[1] 
!= '\n')) {
-   warn(Invalid ar entry);
+   warn(%s: invalid ar entry, ar-filename);
goto close_and_ret;
}
 
if (ret.buf.formatted.name[0] == '/'  ret.buf.formatted.name[1] == 
'/') {
if (ar-extfn != NULL) {
-   warn(Duplicate GNU extended filename section);
+   warn(%s: Duplicate GNU extended filename section, 
ar-filename);
goto close_and_ret;
}
len = atoi(ret.buf.formatted.size);
@@ -112,7 +112,7 @@ close_and_ret:
} else if (s[0] == '/'  s[1] = '0'  s[1] = '9') {
/* GNU extended filename */
if (ar-extfn == NULL) {
-   warn(GNU extended filename without special data 
section);
+   warn(%s: GNU extended filename without special data 
section, ar-filename);
goto close_and_ret;
}
s = ar-extfn + atoi(s + 1);



[gentoo-commits] gentoo-x86 commit in app-misc/pax-utils: pax-utils-1.0.4.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 09:15:47

  Modified: ChangeLog
  Added:pax-utils-1.0.4.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.182app-misc/pax-utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?rev=1.182view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?rev=1.182content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?r1=1.181r2=1.182

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog   21 Jun 2015 16:13:29 -  1.181
+++ ChangeLog   13 Jul 2015 09:15:47 -  1.182
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/pax-utils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.181 
2015/06/21 16:13:29 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.182 
2015/07/13 09:15:47 vapier Exp $
+
+*pax-utils-1.0.4 (13 Jul 2015)
+
+  13 Jul 2015; Mike Frysinger vap...@gentoo.org +pax-utils-1.0.4.ebuild:
+  Version bump.
 
   21 Jun 2015; Mikle Kolyada zlog...@gentoo.org pax-utils-1.0.3.ebuild:
   alpha stable wrt bug #550300



1.1  app-misc/pax-utils/pax-utils-1.0.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.4.ebuild?rev=1.1content-type=text/plain

Index: pax-utils-1.0.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.4.ebuild,v 
1.1 2015/07/13 09:15:47 vapier Exp $

EAPI=4

inherit eutils toolchain-funcs unpacker

DESCRIPTION=ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties
HOMEPAGE=https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities;
SRC_URI=mirror://gentoo/pax-utils-${PV}.tar.xz
http://dev.gentoo.org/~solar/pax/pax-utils-${PV}.tar.xz
http://dev.gentoo.org/~vapier/dist/pax-utils-${PV}.tar.xz;

LICENSE=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
IUSE=caps python

RDEPEND=caps? ( sys-libs/libcap )
python? ( dev-python/pyelftools )
DEPEND=${RDEPEND}
app-arch/xz-utils

_emake() {
emake \
USE_CAP=$(usex caps) \
USE_PYTHON=$(usex python) \
$@
}

src_configure() {
# Avoid slow configure+gnulib+make if on an up-to-date Linux system
if use prefix || ! use kernel_linux || \
   has_version 'sys-libs/glibc-2.10'
then
econf $(use_with caps) $(use_with python)
else
tc-export CC
fi
}

src_compile() {
_emake
}

src_test() {
_emake check
}

src_install() {
_emake DESTDIR=${ED} PKGDOCDIR='$(DOCDIR)'/${PF} install
}






[gentoo-commits] gentoo-x86 commit in app-shells/fish: ChangeLog fish-2.2.0.ebuild

2015-07-13 Thread Lars Wendler (polynomial-c)
polynomial-c15/07/13 09:28:58

  Modified: ChangeLog
  Added:fish-2.2.0.ebuild
  Log:
  Version bump (bug #554684)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
981CA6FC)

Revision  ChangesPath
1.76 app-shells/fish/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/ChangeLog?rev=1.76view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/ChangeLog?rev=1.76content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/ChangeLog?r1=1.75r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   21 Mar 2015 11:10:33 -  1.75
+++ ChangeLog   13 Jul 2015 09:28:58 -  1.76
@@ -1,6 +1,11 @@
 # ChangeLog for app-shells/fish
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.75 2015/03/21 
11:10:33 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.76 2015/07/13 
09:28:58 polynomial-c Exp $
+
+*fish-2.2.0 (13 Jul 2015)
+
+  13 Jul 2015; Lars Wendler polynomia...@gentoo.org +fish-2.2.0.ebuild:
+  Version bump (bug #554684).
 
 *fish-2.1.2 (21 Mar 2015)
 



1.1  app-shells/fish/fish-2.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/fish-2.2.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/fish/fish-2.2.0.ebuild?rev=1.1content-type=text/plain

Index: fish-2.2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/fish-2.2.0.ebuild,v 1.1 
2015/07/13 09:28:58 polynomial-c Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )

inherit base

DESCRIPTION=fish is the Friendly Interactive SHell
HOMEPAGE=http://fishshell.com/;
SRC_URI=http://fishshell.com/files/${PV}/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris
IUSE=X

DEPEND=sys-libs/ncurses
sys-devel/bc
sys-devel/gettext
X? ( x11-misc/xsel )

# fish can add man-page completions from lzma and xz compressed man pages
# through a python script. That's why we depend on python here (bug #490478)
RDEPEND=${DEPEND}

src_configure() {
# Set things up for fish to be a default shell.
# It has to be in /bin in case /usr is unavailable.
# Also, all of its utilities have to be in /bin.
econf \
docdir=${EPREFIX}/usr/share/doc/${PF} \
--bindir=${EPREFIX}/bin
}

src_test() {
if has_version ~${CATEGORY}/${P} ; then
emake test
else
ewarn The test suite only works when the package is already 
installed
fi
}

pkg_postinst() {
elog fish is now installed on your system.
elog To run fish, type 'fish' in your terminal.
elog
elog To use fish as your login shell:
elog * add the line '${EPREFIX}/bin/${PN}'
elog * to the file '${EPREFIX}/etc/shells'.
elog * use the command 'chsh -s ${EPREFIX}/bin/${PN}'.
elog
elog To set your colors, run 'fish_config'
elog To scan your man pages for completions, run 
'fish_update_completions'
elog To autocomplete command suggestions press Ctrl + F or right arrow 
key.
elog
elog Please add a \BROWSER\ variable to ${PN}'s environment pointing 
to the
elog browser of your choice to get acces to ${PN}'s help system:
elog   BROWSER=\/usr/bin/firefox\
elog
elog In order to get lzma and xz support for man-page completion 
please
elog emerge one of the following packages:
elog   dev-python/backports-lzma
elog   =dev-lang/python-3.3
elog
elog Have fun!
}






[gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.58.0.ebuild ChangeLog

2015-07-13 Thread Sergey Popov (pinkbyte)
pinkbyte15/07/13 12:51:01

  Modified: ChangeLog
  Added:boost-1.58.0.ebuild
  Log:
  Version bump, wrt bug #549138
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x60C0742D1F357D42)

Revision  ChangesPath
1.355dev-libs/boost/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.355view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.355content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.354r2=1.355

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.354
retrieving revision 1.355
diff -u -r1.354 -r1.355
--- ChangeLog   9 Jun 2015 14:13:14 -   1.354
+++ ChangeLog   13 Jul 2015 12:51:01 -  1.355
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/boost
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.354 2015/06/09 
14:13:14 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.355 2015/07/13 
12:51:01 pinkbyte Exp $
+
+*boost-1.58.0 (13 Jul 2015)
+
+  13 Jul 2015; Sergey Popov pinkb...@gentoo.org +boost-1.58.0.ebuild:
+  Version bump, wrt bug #549138
 
   09 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Updating remote-id in metadata.xml



1.1  dev-libs/boost/boost-1.58.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.58.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.58.0.ebuild?rev=1.1content-type=text/plain

Index: boost-1.58.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.58.0.ebuild,v 1.1 
2015/07/13 12:51:01 pinkbyte Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )

inherit eutils flag-o-matic multilib multiprocessing python-r1 toolchain-funcs 
versionator multilib-minimal

MY_P=${PN}_$(replace_all_version_separators _)
MAJOR_V=$(get_version_component_range 1-2)

DESCRIPTION=Boost Libraries for C++
HOMEPAGE=http://www.boost.org/;
SRC_URI=mirror://sourceforge/boost/${MY_P}.tar.bz2

LICENSE=Boost-1.0
SLOT=0/${PV} # ${PV} instead ${MAJOR_V} due to bug 486122
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt

IUSE=context debug doc icu +nls mpi python static-libs +threads tools

RDEPEND=icu? ( =dev-libs/icu-3.6:=[${MULTILIB_USEDEP}] )
!icu? ( virtual/libiconv[${MULTILIB_USEDEP}] )
mpi? ( virtual/mpi[cxx,threads] )
python? ( ${PYTHON_DEPS} )
app-arch/bzip2[${MULTILIB_USEDEP}]
sys-libs/zlib[${MULTILIB_USEDEP}]
!app-admin/eselect-boost
DEPEND=${RDEPEND}
=dev-util/boost-build-${MAJOR_V}*
REQUIRED_USE=
mpi? ( threads )
python? ( ${PYTHON_REQUIRED_USE} )

S=${WORKDIR}/${MY_P}

# the tests will never fail because these are not intended as sanity
# tests at all. They are more a way for upstream to check their own code
# on new compilers. Since they would either be completely unreliable
# (failing for no good reason) or completely useless (never failing)
# there is no point in having them in the ebuild to begin with.
RESTRICT=test

python_bindings_needed() {
multilib_is_native_abi  use python
}

tools_needed() {
multilib_is_native_abi  use tools
}

# MPI stuff is not ported on multilib yet, disabling it for non-native ABIs
mpi_needed() {
multilib_is_native_abi  use mpi
}

create_user-config.jam() {
local compiler compiler_version compiler_executable

if [[ ${CHOST} == *-darwin* ]]; then
compiler=darwin
compiler_version=$(gcc-fullversion)
compiler_executable=$(tc-getCXX)
else
compiler=gcc
compiler_version=$(gcc-version)
compiler_executable=$(tc-getCXX)
fi
local mpi_configuration python_configuration

if mpi_needed; then
mpi_configuration=using mpi ;
fi

if python_bindings_needed; then
if tc-is-cross-compiler; then
python_configuration=using python : ${EPYTHON#python} 
: : ${SYSROOT:-${EROOT}}/usr/include/${EPYTHON} : 
${SYSROOT:-${EROOT}}/usr/$(get_libdir) ;
else
python_configuration=using python : : ${PYTHON} ;
fi
fi

cat  ${BOOST_ROOT}/user-config.jam  __EOF__
using ${compiler} : 

[gentoo-commits] gentoo-x86 commit in net-misc/tor: tor-0.2.6.10.ebuild ChangeLog

2015-07-13 Thread Anthony G. Basile (blueness)
blueness15/07/13 08:53:44

  Modified: ChangeLog
  Added:tor-0.2.6.10.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.483net-misc/tor/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.483view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?rev=1.483content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/ChangeLog?r1=1.482r2=1.483

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.482
retrieving revision 1.483
diff -u -r1.482 -r1.483
--- ChangeLog   17 Jun 2015 02:28:00 -  1.482
+++ ChangeLog   13 Jul 2015 08:53:44 -  1.483
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.482 2015/06/17 
02:28:00 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.483 2015/07/13 
08:53:44 blueness Exp $
+
+*tor-0.2.6.10 (13 Jul 2015)
+
+  13 Jul 2015; Anthony G. Basile bluen...@gentoo.org +tor-0.2.6.10.ebuild:
+  Version bump.
 
   17 Jun 2015; Patrick Lauer patr...@gentoo.org metadata.xml:
   Remove unneeded useflag descriptions from metadata.xml



1.1  net-misc/tor/tor-0.2.6.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild?rev=1.1content-type=text/plain

Index: tor-0.2.6.10.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.6.10.ebuild,v 1.1 
2015/07/13 08:53:44 blueness Exp $

EAPI=5

inherit eutils flag-o-matic readme.gentoo systemd toolchain-funcs versionator 
user

MY_PV=$(replace_version_separator 4 -)
MY_PF=${PN}-${MY_PV}
DESCRIPTION=Anonymizing overlay network for TCP
HOMEPAGE=http://www.torproject.org/;
SRC_URI=https://www.torproject.org/dist/${MY_PF}.tar.gz
https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz;
S=${WORKDIR}/${MY_PF}

LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86
IUSE=-bufferevents nat-pmp scrypt seccomp selinux stats systemd tor-hardening 
transparent-proxy test upnp web

DEPEND=dev-libs/openssl:=
sys-libs/zlib
dev-libs/libevent
bufferevents? ( dev-libs/libevent[ssl] )
nat-pmp? ( net-libs/libnatpmp )
scrypt? ( app-crypt/libscrypt )
seccomp? ( sys-libs/libseccomp )
upnp? ( net-libs/miniupnpc )
RDEPEND=${DEPEND}
selinux? ( sec-policy/selinux-tor )

pkg_setup() {
enewgroup tor
enewuser tor -1 -1 /var/lib/tor tor
}

src_prepare() {
epatch ${FILESDIR}/${PN}-0.2.3.14_alpha-torrc.sample.patch
epatch_user
}

src_configure() {
# Upstream isn't sure of all the user provided CFLAGS that
# will break tor, but does recommend against -fstrict-aliasing.
# We'll filter-flags them here as we encounter them.
filter-flags -fstrict-aliasing

econf \
--enable-system-torrc \
--enable-asciidoc \
--docdir=/usr/share/doc/${PF} \
$(use_enable stats instrument-downloads) \
$(use_enable bufferevents) \
$(use_enable nat-pmp) \
$(use_enable scrypt libscrypt) \
$(use_enable seccomp) \
$(use_enable systemd) \
$(use_enable tor-hardening gcc-hardening) \
$(use_enable tor-hardening linker-hardening) \
$(use_enable transparent-proxy transparent) \
$(use_enable upnp) \
$(use_enable web tor2web-mode) \
$(use_enable test unittests) \
$(use_enable test coverage)
}

src_install() {
readme.gentoo_create_doc

newconfd ${FILESDIR}/tor.confd tor
newinitd ${FILESDIR}/tor.initd-r7 tor
systemd_dounit ${FILESDIR}/${PN}.service
systemd_dotmpfilesd ${FILESDIR}/${PN}.conf

emake DESTDIR=${D} install

keepdir /var/lib/tor

dodoc README ChangeLog ReleaseNotes doc/HACKING

fperms 750 /var/lib/tor
fowners tor:tor /var/lib/tor

insinto /etc/tor/
newins ${FILESDIR}/torrc-r1 torrc
}

pkg_postinst() {
readme.gentoo_pkg_postinst

if [[ $(gcc-major-version) -eq 4  $(gcc-minor-version) -eq 8  
$(gcc-micro-version) -ge 1 ]] ; then
ewarn Due to a bug in  =gcc-4.8.1, compiling ${P} with -Os 

[gentoo-commits] gentoo-x86 commit in dev-ml/typerep: typerep-112.35.00.ebuild ChangeLog

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 12:16:26

  Modified: ChangeLog
  Added:typerep-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.7  dev-ml/typerep/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/typerep/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/typerep/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/typerep/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/typerep/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   18 Mar 2015 17:07:51 -  1.6
+++ ChangeLog   13 Jul 2015 12:16:26 -  1.7
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/typerep
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/typerep/ChangeLog,v 1.6 2015/03/18 
17:07:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/typerep/ChangeLog,v 1.7 2015/07/13 
12:16:26 aballier Exp $
+
+*typerep-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +typerep-112.35.00.ebuild:
+  version bump
 
 *typerep-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/typerep/typerep-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/typerep/typerep-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/typerep/typerep-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: typerep-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/typerep/typerep-112.35.00.ebuild,v 
1.1 2015/07/13 12:16:26 aballier Exp $

EAPI=5

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Library for creating runtime representation of OCaml types
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND=
=dev-ml/type-conv-111.13:=
dev-ml/camlp4:=

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}






[gentoo-commits] proj/gentoo-bsd:master commit in: scripts/

2015-07-13 Thread Yuta SATOH
commit: 9dcce70dac259f3f85b3fe0ac1c7224eb70334db
Author: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
AuthorDate: Mon Jul 13 12:40:25 2015 +
Commit: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
CommitDate: Mon Jul 13 12:40:25 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=9dcce70d

automatic_updater.sh: libcxxrt -- libcxx

 scripts/automatic_updater.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/automatic_updater.sh b/scripts/automatic_updater.sh
index 608b013..c0663b2 100644
--- a/scripts/automatic_updater.sh
+++ b/scripts/automatic_updater.sh
@@ -57,7 +57,7 @@ update_minimal(){
echo sys-libs/libcxx abi_x86_32  
/etc/portage/profile/package.use.mask
echo sys-libs/libcxxrt abi_x86_32  
/etc/portage/profile/package.use.mask
emerge -uN sys-libs/libcxx sys-libs/libcxxrt --exclude 
sys-freebsd/*
-   [[ -e /etc/portage/profile/package.use.mask ]]  gsed 
-i '/sys-libs\/libcxxrt abi_x86_32/d' /etc/portage/profile/package.use.mask
+   [[ -e /etc/portage/profile/package.use.mask ]]  gsed 
-i '/sys-libs\/libcxx abi_x86_32/d' /etc/portage/profile/package.use.mask
[[ -e /etc/portage/profile/package.use.mask ]]  gsed 
-i '/sys-libs\/libcxxrt abi_x86_32/d' /etc/portage/profile/package.use.mask
fi
fi



[gentoo-commits] gentoo-x86 commit in dev-embedded/sdcc: sdcc-3.5.0.ebuild sdcc-9999.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 08:38:32

  Modified: sdcc-3.5.0.ebuild sdcc-.ebuild ChangeLog
  Log:
  Use longer --docdir form to avoid warnings from sdbinutils subdir.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.9  dev-embedded/sdcc/sdcc-3.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?r1=1.8r2=1.9

Index: sdcc-3.5.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sdcc-3.5.0.ebuild   13 Jul 2015 08:24:46 -  1.8
+++ sdcc-3.5.0.ebuild   13 Jul 2015 08:38:32 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.8 
2015/07/13 08:24:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.9 
2015/07/13 08:38:32 vapier Exp $
 
 EAPI=5
 
@@ -72,10 +72,12 @@
 }
 
 src_configure() {
+   # sdbinutils subdir doesn't pass down --docdir properly, so need to
+   # expand $(datarootdir) ourselves.
econf \
ac_cv_prog_AS=$(tc-getAS) \
ac_cv_prog_AR=$(tc-getAR) \
-   --docdir='$(datarootdir)'/doc/${PF} \
+   --docdir=${EPREFIX}/usr/share/doc/${PF} \
--without-ccache \
$(use_enable mcs51 mcs51-port) \
$(use_enable z80 z80-port) \



1.8  dev-embedded/sdcc/sdcc-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild?r1=1.7r2=1.8

Index: sdcc-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sdcc-.ebuild13 Jul 2015 08:24:46 -  1.7
+++ sdcc-.ebuild13 Jul 2015 08:38:32 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild,v 1.7 
2015/07/13 08:24:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild,v 1.8 
2015/07/13 08:38:32 vapier Exp $
 
 EAPI=5
 
@@ -67,10 +67,13 @@
 }
 
 src_configure() {
+   # sdbinutils subdir doesn't pass down --docdir properly, so need to
+   # expand $(datarootdir) ourselves.
econf \
ac_cv_prog_STRIP=true \
ac_cv_prog_AS=$(tc-getAS) \
ac_cv_prog_AR=$(tc-getAR) \
+   --docdir=${EPREFIX}/usr/share/doc/${PF} \
--without-ccache \
$(use_enable boehm-gc libgc) \
$(docs_compile  use_enable doc || echo --disable-doc)



1.57 dev-embedded/sdcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   13 Jul 2015 08:24:46 -  1.56
+++ ChangeLog   13 Jul 2015 08:38:32 -  1.57
@@ -1,6 +1,10 @@
 # ChangeLog for dev-embedded/sdcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.56 
2015/07/13 08:24:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.57 
2015/07/13 08:38:32 vapier Exp $
+
+  13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild,
+  sdcc-.ebuild:
+  Use longer --docdir form to avoid warnings from sdbinutils subdir.
 
   13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild,
   sdcc-.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-lang/swi-prolog: ChangeLog swi-prolog-7.3.4.ebuild

2015-07-13 Thread Keri Harris (keri)
keri15/07/13 12:31:58

  Modified: ChangeLog
  Added:swi-prolog-7.3.4.ebuild
  Log:
  Bump 7.3 development version
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
A138F5ED)

Revision  ChangesPath
1.479dev-lang/swi-prolog/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swi-prolog/ChangeLog?rev=1.479view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swi-prolog/ChangeLog?rev=1.479content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swi-prolog/ChangeLog?r1=1.478r2=1.479

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/ChangeLog,v
retrieving revision 1.478
retrieving revision 1.479
diff -u -r1.478 -r1.479
--- ChangeLog   27 Jun 2015 12:21:02 -  1.478
+++ ChangeLog   13 Jul 2015 12:31:58 -  1.479
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/swi-prolog
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/ChangeLog,v 1.478 
2015/06/27 12:21:02 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/ChangeLog,v 1.479 
2015/07/13 12:31:58 keri Exp $
+
+*swi-prolog-7.3.4 (13 Jul 2015)
+
+  13 Jul 2015; k...@gentoo.org +swi-prolog-7.3.4.ebuild:
+  Bump 7.3 development version
 
   27 Jun 2015; k...@gentoo.org -swi-prolog-7.3.0.ebuild,
   -swi-prolog-7.3.1.ebuild:



1.1  dev-lang/swi-prolog/swi-prolog-7.3.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swi-prolog/swi-prolog-7.3.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swi-prolog/swi-prolog-7.3.4.ebuild?rev=1.1content-type=text/plain

Index: swi-prolog-7.3.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-7.3.4.ebuild,v 1.1 
2015/07/13 12:31:58 keri Exp $

EAPI=4

inherit eutils flag-o-matic java-pkg-opt-2 multilib

PATCHSET_VER=0

DESCRIPTION=free, small, and standard compliant Prolog compiler
HOMEPAGE=http://www.swi-prolog.org/;
SRC_URI=http://www.swi-prolog.org/download/devel/src/swipl-${PV}.tar.gz
mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
IUSE=archive debug doc +gmp hardened java minimal odbc +readline ssl 
static-libs test zlib X

RDEPEND=sys-libs/ncurses
archive? ( app-arch/libarchive )
zlib? ( sys-libs/zlib )
odbc? ( dev-db/unixODBC )
readline? ( sys-libs/readline )
gmp? ( dev-libs/gmp )
ssl? ( dev-libs/openssl )
java? ( =virtual/jdk-1.5 )
X? (
virtual/jpeg
x11-libs/libX11
x11-libs/libXft
x11-libs/libXpm
x11-libs/libXt
x11-libs/libICE
x11-libs/libSM )

DEPEND=${RDEPEND}
X? ( x11-proto/xproto )
java? ( test? ( =dev-java/junit-3.8* ) )

S=${WORKDIR}/swipl-${PV}

src_prepare() {
EPATCH_FORCE=yes
EPATCH_SUFFIX=patch
epatch ${WORKDIR}/${PV}

# OSX/Intel ld doesn't like an archive without table of contents
sed -i -e 's/-cru/-scru/' packages/nlp/libstemmer_c/Makefile.pl || die
}

src_configure() {
append-flags -fno-strict-aliasing
use ppc  append-flags -mno-altivec
use hardened  append-flags -fno-unit-at-a-time
use debug  append-flags -DO_DEBUG

# ARCH is used in the configure script to figure out host and target
# specific stuff
export ARCH=${CHOST}

export CC_FOR_BUILD=$(tc-getBUILD_CC)

cd ${S}/src || die
econf \
--libdir=${EPREFIX}/usr/$(get_libdir) \
$(use_enable gmp) \
$(use_enable readline) \
$(use_enable static-libs static) \
--enable-shared \
--enable-custom-flags COFLAGS=${CFLAGS}

if ! use minimal ; then
local jpltestconf
if use java  use test ; then
jpltestconf=--with-junit=$(java-config --classpath 
junit)
fi

cd ${S}/packages || die
econf \
--libdir=${EPREFIX}/usr/$(get_libdir) \
$(use_with archive) \
$(use_with java jpl) \
${jpltestconf} \
$(use_with odbc) \
$(use_with ssl) \
$(use_with X xpce) \
$(use_with zlib) \
COFLAGS='${CFLAGS}'
fi
}


[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ChangeLog ffmpeg-2.2.15.ebuild ffmpeg-2.7.ebuild ffmpeg-1.2.6-r1.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 09:43:08

  Modified: ChangeLog
  Removed:  ffmpeg-2.2.15.ebuild ffmpeg-2.7.ebuild
ffmpeg-1.2.6-r1.ebuild
  Log:
  remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.872media-video/ffmpeg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.872view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.872content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.871r2=1.872

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.871
retrieving revision 1.872
diff -u -r1.871 -r1.872
--- ChangeLog   4 Jul 2015 13:52:24 -   1.871
+++ ChangeLog   13 Jul 2015 09:43:08 -  1.872
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.871 
2015/07/04 13:52:24 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.872 
2015/07/13 09:43:08 aballier Exp $
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org -ffmpeg-1.2.6-r1.ebuild,
+  -ffmpeg-2.2.15.ebuild, -ffmpeg-2.7.ebuild, -files/dirac_arith_hardened.patch:
+  remove old
 
   04 Jul 2015; Tobias Klausmann klaus...@gentoo.org ffmpeg-2.2.14.ebuild:
   Stable on alpha, bug 538798






[gentoo-commits] gentoo-x86 commit in media-video/ffmpeg/files: dirac_arith_hardened.patch

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 09:43:08

  Removed:  dirac_arith_hardened.patch
  Log:
  remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)



[gentoo-commits] gentoo-x86 commit in dev-ml/postgresql-ocaml: ChangeLog postgresql-ocaml-3.2.1.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 12:25:01

  Modified: ChangeLog
  Added:postgresql-ocaml-3.2.1.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.48 dev-ml/postgresql-ocaml/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   13 Jul 2015 12:21:29 -  1.47
+++ ChangeLog   13 Jul 2015 12:25:01 -  1.48
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/postgresql-ocaml
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v 1.47 
2015/07/13 12:21:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v 1.48 
2015/07/13 12:25:01 aballier Exp $
+
+*postgresql-ocaml-3.2.1 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +postgresql-ocaml-3.2.1.ebuild:
+  version bump
 
   13 Jul 2015; Alexis Ballier aball...@gentoo.org
   -postgresql-ocaml-2.0.4.ebuild, -postgresql-ocaml-2.1.1.ebuild,



1.1  dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.1.ebuild?rev=1.1content-type=text/plain

Index: postgresql-ocaml-3.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.1.ebuild,v 
1.1 2015/07/13 12:25:01 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1

inherit oasis

DESCRIPTION=A package for ocaml that provides access to PostgreSQL databases
SRC_URI=https://github.com/mmottl/postgresql-ocaml/releases/download/v${PV}/${P}.tar.gz;
HOMEPAGE=http://mmottl.github.io/postgresql-ocaml/;
IUSE=examples

RDEPEND=
dev-db/postgresql:=[server]

DEPEND=${RDEPEND}
=dev-ml/findlib-1.5

SLOT=0/${PV}
LICENSE=LGPL-2
KEYWORDS=~amd64 ~ppc ~x86

DOCS=( AUTHORS.txt CHANGES.txt README.md )

src_install() {
oasis_src_install
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}






[gentoo-commits] gentoo-x86 commit in dev-ml/type-conv: ChangeLog type-conv-112.01.02.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 12:18:52

  Modified: ChangeLog
  Added:type-conv-112.01.02.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.40 dev-ml/type-conv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/type-conv/ChangeLog?rev=1.40view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/type-conv/ChangeLog?rev=1.40content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/type-conv/ChangeLog?r1=1.39r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/type-conv/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   18 Mar 2015 17:21:02 -  1.39
+++ ChangeLog   13 Jul 2015 12:18:51 -  1.40
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/type-conv
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/type-conv/ChangeLog,v 1.39 
2015/03/18 17:21:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/type-conv/ChangeLog,v 1.40 
2015/07/13 12:18:51 aballier Exp $
+
+*type-conv-112.01.02 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +type-conv-112.01.02.ebuild:
+  version bump
 
 *type-conv-112.01.01 (18 Mar 2015)
 



1.1  dev-ml/type-conv/type-conv-112.01.02.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/type-conv/type-conv-112.01.02.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/type-conv/type-conv-112.01.02.ebuild?rev=1.1content-type=text/plain

Index: type-conv-112.01.02.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/type-conv/type-conv-112.01.02.ebuild,v 1.1 
2015/07/13 12:18:51 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Mini library required for some other preprocessing libraries
HOMEPAGE=http://janestreet.github.io/;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND==dev-lang/ocaml-4.02[ocamlopt?]
dev-ml/camlp4:=
DEPEND=${RDEPEND}
=dev-ml/findlib-1.3.2

DOCS=( README.md CHANGES.md )

S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in dev-ml/sexplib: sexplib-112.35.00.ebuild ChangeLog

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 12:28:56

  Modified: ChangeLog
  Added:sexplib-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.38 dev-ml/sexplib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/sexplib/ChangeLog?rev=1.38view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/sexplib/ChangeLog?rev=1.38content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/sexplib/ChangeLog?r1=1.37r2=1.38

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   7 Jun 2015 19:14:59 -   1.37
+++ ChangeLog   13 Jul 2015 12:28:56 -  1.38
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/sexplib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.37 2015/06/07 
19:14:59 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.38 2015/07/13 
12:28:56 aballier Exp $
+
+*sexplib-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +sexplib-112.35.00.ebuild:
+  version bump
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add bitbucket to remote-id in metadata.xml



1.1  dev-ml/sexplib/sexplib-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/sexplib/sexplib-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/sexplib/sexplib-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: sexplib-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-112.35.00.ebuild,v 
1.1 2015/07/13 12:28:56 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1

inherit oasis

DESCRIPTION=Library for automated conversion of OCaml-values to and from 
S-expressions
HOMEPAGE=http://bitbucket.org/yminsky/ocaml-core/wiki/Home;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0/${PV}
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND==dev-ml/type-conv-109.60.01:=
dev-ml/camlp4:=
DEPEND=${RDEPEND}

DOCS=( README.md CHANGES.md )






[gentoo-commits] gentoo-x86 commit in dev-embedded/sdcc: sdcc-3.5.0.ebuild sdcc-9999.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 09:21:51

  Modified: sdcc-3.5.0.ebuild sdcc-.ebuild ChangeLog
  Log:
  Fix up depend settings (gperf is only needed at compile time  readline 
should use the 0 SLOT), and restore min gputils version and sdcc-svn blocker; 
also sync the live/release ebuilds #553754 by Tiger.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.11 dev-embedded/sdcc/sdcc-3.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?r1=1.10r2=1.11

Index: sdcc-3.5.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sdcc-3.5.0.ebuild   13 Jul 2015 09:17:29 -  1.10
+++ sdcc-3.5.0.ebuild   13 Jul 2015 09:21:51 -  1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.10 
2015/07/13 09:17:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.11 
2015/07/13 09:21:51 vapier Exp $
 
 EAPI=5
 
@@ -37,12 +37,13 @@
 RESTRICT=strip
 
 RDEPEND=dev-libs/boost:=
-   dev-util/gperf
sys-libs/ncurses:=
-   sys-libs/readline:=
-   dev-embedded/gputils
-   boehm-gc? ( dev-libs/boehm-gc:= )
-DEPEND=${RDEPEND}
+   sys-libs/readline:0=
+   =dev-embedded/gputils-0.13.7
+   boehm-gc? ( dev-libs/boehm-gc:= )
+   !dev-embedded/sdcc-svn
+DEPEND=${RDEPEND}
+   dev-util/gperf
 if docs_compile ; then
DEPEND+=
doc? (



1.9  dev-embedded/sdcc/sdcc-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild?r1=1.8r2=1.9

Index: sdcc-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sdcc-.ebuild13 Jul 2015 08:38:32 -  1.8
+++ sdcc-.ebuild13 Jul 2015 09:21:51 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild,v 1.8 
2015/07/13 08:38:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-.ebuild,v 1.9 
2015/07/13 09:21:51 vapier Exp $
 
 EAPI=5
 
@@ -25,12 +25,14 @@
 IUSE=+boehm-gc doc
 RESTRICT=strip
 
-RDEPEND=sys-libs/ncurses:=
+RDEPEND=dev-libs/boost:=
+   sys-libs/ncurses:=
sys-libs/readline:0=
=dev-embedded/gputils-0.13.7
boehm-gc? ( dev-libs/boehm-gc:= )
!dev-embedded/sdcc-svn
-DEPEND=${RDEPEND}
+DEPEND=${RDEPEND}
+   dev-util/gperf
 if docs_compile ; then
DEPEND+=
doc? (



1.59 dev-embedded/sdcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.59view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.59content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?r1=1.58r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   13 Jul 2015 09:17:29 -  1.58
+++ ChangeLog   13 Jul 2015 09:21:51 -  1.59
@@ -1,6 +1,12 @@
 # ChangeLog for dev-embedded/sdcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.58 
2015/07/13 09:17:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.59 
2015/07/13 09:21:51 vapier Exp $
+
+  13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild,
+  sdcc-.ebuild:
+  Fix up depend settings (gperf is only needed at compile time  readline 
should
+  use the 0 SLOT), and restore min gputils version and sdcc-svn blocker; also
+  sync the live/release ebuilds #553754 by Tiger.
 
   13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild:
   Revert invalid CTARGET munging and restore 

[gentoo-commits] gentoo-x86 commit in dev-embedded/sdcc: sdcc-3.5.0.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 09:23:02

  Modified: sdcc-3.5.0.ebuild ChangeLog
  Log:
  Revert style change w/find+sed as the indented flags are for sed, not find 
#553754 by Tiger.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.12 dev-embedded/sdcc/sdcc-3.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?r1=1.11r2=1.12

Index: sdcc-3.5.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sdcc-3.5.0.ebuild   13 Jul 2015 09:21:51 -  1.11
+++ sdcc-3.5.0.ebuild   13 Jul 2015 09:23:02 -  1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.11 
2015/07/13 09:21:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.12 
2015/07/13 09:23:02 vapier Exp $
 
 EAPI=5
 
@@ -57,8 +57,8 @@
find \
'(' -name 'Makefile*.in' -o -name 'configure' ')' \
-exec sed -r -i \
-   -e 's:\(PORTDIR|ARCH)\:SDCC\1:g' \
-   {} + || die
+   -e 's:\(PORTDIR|ARCH)\:SDCC\1:g' \
+   {} + || die
 
# https://sourceforge.net/p/sdcc/bugs/2398/
sed -i '1iAR = @AR@' Makefile.common.in || die



1.60 dev-embedded/sdcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.60view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.60content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?r1=1.59r2=1.60

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   13 Jul 2015 09:21:51 -  1.59
+++ ChangeLog   13 Jul 2015 09:23:02 -  1.60
@@ -1,6 +1,10 @@
 # ChangeLog for dev-embedded/sdcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.59 
2015/07/13 09:21:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.60 
2015/07/13 09:23:02 vapier Exp $
+
+  13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild:
+  Revert style change w/find+sed as the indented flags are for sed, not find
+  #553754 by Tiger.
 
   13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild,
   sdcc-.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl/files: openssl-1.0.1p-default-source.patch

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 10:21:13

  Modified: openssl-1.0.1p-default-source.patch
  Log:
  Add upstream bug URL.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  dev-libs/openssl/files/openssl-1.0.1p-default-source.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/openssl-1.0.1p-default-source.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/openssl-1.0.1p-default-source.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/openssl-1.0.1p-default-source.patch?r1=1.1r2=1.2

Index: openssl-1.0.1p-default-source.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/openssl/files/openssl-1.0.1p-default-source.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openssl-1.0.1p-default-source.patch 10 Jul 2015 06:08:30 -  1.1
+++ openssl-1.0.1p-default-source.patch 13 Jul 2015 10:21:13 -  1.2
@@ -1,4 +1,5 @@
 https://bugs.gentoo.org/554338
+https://rt.openssl.org/Ticket/Display.html?id=3934user=guestpass=guest
 
 From 7c2e97f8bbae517496fdc11f475b4ae54b2534f5 Mon Sep 17 00:00:00 2001
 From: Mike Frysinger vap...@gentoo.org






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask

2015-07-13 Thread Sergey Popov (pinkbyte)
pinkbyte15/07/13 11:54:29

  Modified: ChangeLog package.mask
  Log:
  Mask upcoming Boost 1.58

Revision  ChangesPath
1.10186  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10186view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10186content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10185r2=1.10186

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10185
retrieving revision 1.10186
diff -u -r1.10185 -r1.10186
--- ChangeLog   13 Jul 2015 04:46:35 -  1.10185
+++ ChangeLog   13 Jul 2015 11:54:28 -  1.10186
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10185 2015/07/13 
04:46:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10186 2015/07/13 
11:54:28 pinkbyte Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  13 Jul 2015; Sergey Popov pinkb...@gentoo.org package.mask:
+  Mask upcoming Boost 1.58
+
   13 Jul 2015; Michał Górny mgo...@gentoo.org desc/nginx_modules_http.desc:
   Describe nginx_modules_http_memc. Part of version bump,
   https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/156 by



1.16668  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16668view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16668content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16667r2=1.16668

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16667
retrieving revision 1.16668
diff -u -r1.16667 -r1.16668
--- package.mask12 Jul 2015 17:28:25 -  1.16667
+++ package.mask13 Jul 2015 11:54:28 -  1.16668
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16667 2015/07/12 
17:28:25 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16668 2015/07/13 
11:54:28 pinkbyte Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Sergey Popov pinkb...@gentoo.org (13 Jul 2015)
+# Mask new version of Boost - it's known to cause breakages
+~dev-util/boost-build-1.58.0
+~dev-libs/boost-1.58.0
+
 # Pawel Hajdan, Jr. phajdan...@gentoo.org (10 Jul 2015)
 # Unused and broken. Removal in 30 days, bug #543576 .
 dev-lang/nacl-toolchain-newlib






[gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.58.0.ebuild

2015-07-13 Thread Sergey Popov (pinkbyte)
pinkbyte15/07/13 12:22:47

  Modified: ChangeLog
  Added:boost-build-1.58.0.ebuild
  Log:
  Version bump, wrt bug #549138
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x60C0742D1F357D42)

Revision  ChangesPath
1.144dev-util/boost-build/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.144view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.144content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.143r2=1.144

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog   16 Apr 2015 12:54:26 -  1.143
+++ ChangeLog   13 Jul 2015 12:22:47 -  1.144
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.143 
2015/04/16 12:54:26 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.144 
2015/07/13 12:22:47 pinkbyte Exp $
+
+*boost-build-1.58.0 (13 Jul 2015)
+
+  13 Jul 2015; Sergey Popov pinkb...@gentoo.org +boost-build-1.58.0.ebuild:
+  Version bump, wrt bug #549138
 
   16 Apr 2015; Mikle Kolyada zlog...@gentoo.org boost-build-1.55.0.ebuild:
   sparc stable wrt bug #525286



1.1  dev-util/boost-build/boost-build-1.58.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.58.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.58.0.ebuild?rev=1.1content-type=text/plain

Index: boost-build-1.58.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.58.0.ebuild,v 1.1 
2015/07/13 12:22:47 pinkbyte Exp $

EAPI=5

RESTRICT=test

PYTHON_COMPAT=( python2_7 )
inherit eutils flag-o-matic multilib python-single-r1 toolchain-funcs 
versionator

MY_PV=$(replace_all_version_separators _)

DESCRIPTION=A system for large project software construction, which is simple 
to use and powerful
HOMEPAGE=http://www.boost.org/doc/tools/build/index.html;
SRC_URI=mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2

LICENSE=Boost-1.0
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
IUSE=examples python test

RDEPEND=python? ( ${PYTHON_DEPS} )
!dev-libs/boost-1.34.0
!=dev-util/boost-build-1.35.0-r1
DEPEND=${RDEPEND}
test? ( sys-apps/diffutils
${PYTHON_DEPS} )

REQUIRED_USE=python? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )

S=${WORKDIR}/boost_${MY_PV}/tools/build/src

pkg_setup() {
if use python || use test; then
python-single-r1_pkg_setup
fi
}

src_unpack() {
tar xjpf ${DISTDIR}/${A} boost_${MY_PV}/tools/build || die unpacking 
tar failed
}

src_prepare() {
epatch \
${FILESDIR}/${PN}-1.48.0-disable_python_rpath.patch \
${FILESDIR}/${PN}-1.50.0-respect-c_ld-flags.patch \
${FILESDIR}/${PN}-1.49.0-darwin-gentoo-toolchain.patch \
${FILESDIR}/${PN}-1.52.0-darwin-no-python-framework.patch \
${FILESDIR}/${PN}-1.54.0-support_dots_in_python-buildid.patch 
\
${FILESDIR}/${PN}-1.55.0-ppc-aix.patch

pushd ../ /dev/null || die
epatch ${FILESDIR}/${PN}-1.54.0-fix-test.patch
popd /dev/null || die

# Remove stripping option
# Fix python components build on multilib systems, bug #496446
cd ${S}/engine || die
sed -i \
-e 's|-s\b||' \
-e /libpython/s/lib ]/$(get_libdir) ]/ \
build.jam || die sed failed

# Force regeneration
rm jambase.c || die

# This patch allows us to fully control optimization
# and stripping flags when bjam is used as build-system
# We simply extend the optimization and debug-symbols feature
# with empty dummies called 'none'
cd ${S} || die
sed -i \
-e 's/\(off speed space\)/\1 none/' \
-e 's/\(debug-symbols  : on off\)/\1 none/' \
tools/builtin.jam || die sed failed

epatch_user
}

src_configure() {
if use python; then
# replace 

[gentoo-commits] gentoo-x86 commit in dev-ml/postgresql-ocaml: ChangeLog postgresql-ocaml-2.0.4.ebuild postgresql-ocaml-2.1.2.ebuild postgresql-ocaml-2.1.1.ebuild postgresql-ocaml-3.0.0.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 12:21:29

  Modified: ChangeLog
  Removed:  postgresql-ocaml-2.0.4.ebuild
postgresql-ocaml-2.1.2.ebuild
postgresql-ocaml-2.1.1.ebuild
postgresql-ocaml-3.0.0.ebuild
  Log:
  remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.47 dev-ml/postgresql-ocaml/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?rev=1.47view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?rev=1.47content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?r1=1.46r2=1.47

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   7 Jun 2015 09:32:09 -   1.46
+++ ChangeLog   13 Jul 2015 12:21:29 -  1.47
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/postgresql-ocaml
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v 1.46 
2015/06/07 09:32:09 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v 1.47 
2015/07/13 12:21:29 aballier Exp $
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  -postgresql-ocaml-2.0.4.ebuild, -postgresql-ocaml-2.1.1.ebuild,
+  -postgresql-ocaml-2.1.2.ebuild, -postgresql-ocaml-3.0.0.ebuild:
+  remove old
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add github to remote-id in metadata.xml






[gentoo-commits] gentoo-x86 commit in dev-embedded/sdcc: sdcc-3.5.0.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 09:17:29

  Modified: sdcc-3.5.0.ebuild ChangeLog
  Log:
  Revert invalid CTARGET munging and restore proper stripping logic -- the 
scanelf ar warning is fixed with newer pax-utils #553754 by Tiger.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.10 dev-embedded/sdcc/sdcc-3.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild?r1=1.9r2=1.10

Index: sdcc-3.5.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sdcc-3.5.0.ebuild   13 Jul 2015 08:38:32 -  1.9
+++ sdcc-3.5.0.ebuild   13 Jul 2015 09:17:29 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.9 
2015/07/13 08:38:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-3.5.0.ebuild,v 1.10 
2015/07/13 09:17:29 vapier Exp $
 
 EAPI=5
 
@@ -34,8 +34,6 @@
hc08?  ( sdbinutils )
s08?   ( sdbinutils )
 
-# ADD binchecks to fix the scanelf: Invalid 'ar' entry messages
-# OR leave the overwrite of CTARGET in src_install()
 RESTRICT=strip
 
 RDEPEND=dev-libs/boost:=
@@ -75,6 +73,7 @@
# sdbinutils subdir doesn't pass down --docdir properly, so need to
# expand $(datarootdir) ourselves.
econf \
+   ac_cv_prog_STRIP=true \
ac_cv_prog_AS=$(tc-getAS) \
ac_cv_prog_AR=$(tc-getAR) \
--docdir=${EPREFIX}/usr/share/doc/${PF} \
@@ -114,8 +113,8 @@
dohtml -r *
fi
 
-   # See 
/usr/lib/portage/python${version}/install-qa-check.d/10executable-issues
-   # Installed libs are not for our CHOST but for microcontrollers
-   # This disable QA_EXECSTACK, QA_WX_LOAD and scanelf -qyRAF '%e %p'
-   CTARGET=undefined
+   # a bunch of archives (*.a) are built  installed by gputils
+   # for PIC processors, but they do not work with standard `ar`
+   #  `scanelf` utils and they're not for the host.
+   env RESTRICT= prepstrip ${D%/}/usr/bin
 }



1.58 dev-embedded/sdcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.58view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?rev=1.58content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/sdcc/ChangeLog?r1=1.57r2=1.58

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog   13 Jul 2015 08:38:32 -  1.57
+++ ChangeLog   13 Jul 2015 09:17:29 -  1.58
@@ -1,6 +1,10 @@
 # ChangeLog for dev-embedded/sdcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.57 
2015/07/13 08:38:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/ChangeLog,v 1.58 
2015/07/13 09:17:29 vapier Exp $
+
+  13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild:
+  Revert invalid CTARGET munging and restore proper stripping logic -- the
+  scanelf ar warning is fixed with newer pax-utils #553754 by Tiger.
 
   13 Jul 2015; Mike Frysinger vap...@gentoo.org sdcc-3.5.0.ebuild,
   sdcc-.ebuild:






[gentoo-commits] proj/gentoo-bsd:master commit in: scripts/

2015-07-13 Thread Yuta SATOH
commit: e0c4ab39a29316aa8503673f8db4bb0a9b15dbd9
Author: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
AuthorDate: Mon Jul 13 12:36:53 2015 +
Commit: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
CommitDate: Mon Jul 13 12:36:53 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=e0c4ab39

automatic_updater.sh: fixed perl issue, amd64/clang profile support.

 scripts/automatic_updater.sh | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/scripts/automatic_updater.sh b/scripts/automatic_updater.sh
index 358c168..608b013 100644
--- a/scripts/automatic_updater.sh
+++ b/scripts/automatic_updater.sh
@@ -40,7 +40,6 @@ update_portage(){
tar xjf portage-2.2.20.tar.bz2
PYTHON_TARGETS=python2_7 portage-2.2.20/bin/emerge --nodeps 
dev-lang/python-exec
PYTHON_TARGETS=python2_7 portage-2.2.20/bin/emerge --nodeps 
sys-apps/portage
-   emerge -u sys-apps/portage --exclude sys-freebsd/*
else
emerge -u sys-apps/portage --exclude sys-freebsd/*
fi
@@ -53,7 +52,14 @@ update_minimal(){
emerge -u sys-devel/flex sys-devel/patch sys-devel/m4 net-libs/libpcap 
sys-devel/gettext app-arch/libarchive sys-libs/zlib dev-util/dialog --exclude 
sys-freebsd/*
emerge sys-devel/libtool --exclude sys-freebsd/*
if [[ -e /usr/lib/libc++.so ]] ; then
-   emerge -uN sys-libs/libcxx sys-libs/libcxxrt --exclude 
sys-freebsd/*
+   if [[ $(uname -p) == amd64 ]]  [[ ! -e /usr/lib32/librt.so 
]] ; then
+   [[ ! -e /etc/portage/profile ]]  mkdir -p 
/etc/portage/profile
+   echo sys-libs/libcxx abi_x86_32  
/etc/portage/profile/package.use.mask
+   echo sys-libs/libcxxrt abi_x86_32  
/etc/portage/profile/package.use.mask
+   emerge -uN sys-libs/libcxx sys-libs/libcxxrt --exclude 
sys-freebsd/*
+   [[ -e /etc/portage/profile/package.use.mask ]]  gsed 
-i '/sys-libs\/libcxxrt abi_x86_32/d' /etc/portage/profile/package.use.mask
+   [[ -e /etc/portage/profile/package.use.mask ]]  gsed 
-i '/sys-libs\/libcxxrt abi_x86_32/d' /etc/portage/profile/package.use.mask
+   fi
fi
 }
 
@@ -90,6 +96,9 @@ update_freebsd_userland(){
emerge -C dev-libs/libelf dev-libs/libexecinfo dev-libs/libiconv 
sys-process/fuser-bsd  :
emerge --nodeps sys-freebsd/freebsd-libexec
USE=build emerge --nodeps sys-freebsd/freebsd-lib
+   if [[ -e /usr/lib/libc++.so ]] ; then
+   emerge -uN sys-libs/libcxx sys-libs/libcxxrt --exclude 
sys-freebsd/*
+   fi
USE=build emerge --nodeps sys-freebsd/freebsd-share
[[ -e /etc/portage/profile/package.use.mask ]]  gsed -i 
'/sys-freebsd\/freebsd-libexec abi_x86_32/d' 
/etc/portage/profile/package.use.mask
 
@@ -104,12 +113,14 @@ post_freebsd_userland(){
 
 remove_perl(){
emerge -C dev-lang/perl
-   emerge -C perl-core/* virtual/perl*
+   emerge -C dev-perl/* perl-core/* virtual/perl*
emerge dev-lang/perl
+   emerge dev-perl/Text-Unidecode dev-perl/Unicode-EastAsianWidth 
dev-perl/XML-Parser dev-perl/libintl-perl
 }
 
 emerge_world(){
emerge sys-devel/libtool
+   emerge -C dev-lang/python:3.2  :
emerge -u dev-libs/libxml2
emerge -u dev-libs/libxslt app-arch/libarchive dev-libs/glib
emerge -e @world --exclude sys-apps/portage



[gentoo-commits] proj/gentoo-bsd:master commit in: scripts/mkstages/

2015-07-13 Thread Yuta SATOH
commit: 3e4b2faf25edc29cd6194fbb202b5e1271d9e856
Author: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
AuthorDate: Mon Jul 13 12:38:31 2015 +
Commit: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
CommitDate: Mon Jul 13 12:38:31 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=3e4b2faf

create_forcestage3.sh: fixed some issues. tested amd64/10.1, amd64/10.1/clang, 
x86/10.1.

 scripts/mkstages/create_forcestage3.sh | 26 ++
 1 file changed, 22 insertions(+), 4 deletions(-)

diff --git a/scripts/mkstages/create_forcestage3.sh 
b/scripts/mkstages/create_forcestage3.sh
index 515aae2..e0aff8c 100644
--- a/scripts/mkstages/create_forcestage3.sh
+++ b/scripts/mkstages/create_forcestage3.sh
@@ -14,6 +14,15 @@ prepare(){
local distdir=$(emerge --info | grep DISTDIR | sed s:DISTDIR=::g | sed 
's:::g')
if [[ ! -d ${WORKDIR} ]]; then
mkdir -p ${WORKDIR}
+   else
+   echo ${WORKDIR} exists.
+   echo Please remove the following steps.
+   echo 
+   echo kill -9 $(ps auxw | grep ebuild-helpers/ecompressdir | 
grep -v grep | awk '{ print $2 }' | xargs)
+   echo umount $(mount | grep ${WORKDIR} | awk '{print $3}' | 
xargs)
+   echo umount $(mount | grep ${WORKDIR} | awk '{print $3}' | 
xargs)
+   echo chflags -R noschg \${WORKDIR}\  rm -rf \${WORKDIR}\
+   exit 1
fi
 
if [[ ${OLDSTAGE3} =~ ^http ]]; then
@@ -56,6 +65,9 @@ chroot_update(){
export EMERGE_DEFAULT_OPTS=-q
chroot ${WORKDIR} bash /automatic_updater.sh ${TARGETVER} kernel
chroot ${WORKDIR} bash /automatic_updater.sh ${TARGETVER} 
freebsd_userland
+   if [[ -e ${WORKDIR}/usr/bin/git ]]; then
+   chroot ${WORKDIR} emerge -C dev-vcs/git
+   fi
REMOVEPERL=1 chroot ${WORKDIR} bash /automatic_updater.sh 
${TARGETVER} world
unset EMERGE_DEFAULT_OPTS
 }
@@ -74,8 +86,13 @@ check_ecompressdir() {
 }
 
 cleanup(){
+   local distdir=$(emerge --info | grep DISTDIR | sed s:DISTDIR=::g | sed 
's:::g')
+
check_ecompressdir
-   umount ${WORKDIR}/usr/portage/distfiles
+   if [[ ! ${distdir} =~ ${PORTDIR}.* ]]; then
+   echo unmount DISTDIR
+   umount ${WORKDIR}/usr/portage/distfiles
+   fi
umount ${WORKDIR}/usr/portage
if [[ ${TMPFS} -ne 0 ]] ; then
umount ${WORKDIR}/var/tmp/portage
@@ -91,12 +108,13 @@ create_stage3(){
mkdir -p /var/tmp/catalyst/builds/default
fi
if [[ ${CLANG} -ne 0 ]]; then
-   tarfile=stage3-${TARGETARCH}-fbsd-${TAGETVER}-forcestage3-cl
+   tarfile=stage3-${TARGETARCH}-fbsd-${TARGETVER}-forcestage3-cl
else
-   tarfile=stage3-${TARGETARCH}-fbsd-${TAGETVER}-forcestage3
+   tarfile=stage3-${TARGETARCH}-fbsd-${TARGETVER}-forcestage3
fi
 
-   tar cjpf /var/tmp/catalyst/builds/default/${tarfile}.tar.bz2 .
+   echo Compress with tar.
+   LANG=en_US.UTF-8 tar cjpf 
/var/tmp/catalyst/builds/default/${tarfile}.tar.bz2 .
 
echo Complete !
echo Set FORCESTAGE3=${tarfile}



[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/13 10:21:13

  Modified: ChangeLog
  Log:
  Add upstream bug URL.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.681dev-libs/openssl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?rev=1.681view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?rev=1.681content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?r1=1.680r2=1.681

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.680
retrieving revision 1.681
diff -u -r1.680 -r1.681
--- ChangeLog   10 Jul 2015 12:55:35 -  1.680
+++ ChangeLog   13 Jul 2015 10:21:13 -  1.681
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/openssl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.680 
2015/07/10 12:55:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.681 
2015/07/13 10:21:13 vapier Exp $
+
+  13 Jul 2015; Mike Frysinger vap...@gentoo.org
+  files/openssl-1.0.1p-default-source.patch:
+  Add upstream bug URL.
 
   10 Jul 2015; Agostino Sarubbo a...@gentoo.org openssl-1.0.1p.ebuild:
   Stable for sparc, wrt bug #554172






[gentoo-commits] gentoo-x86 commit in sys-fs/zfs-kmod: ChangeLog zfs-kmod-0.6.4.2.ebuild

2015-07-13 Thread Yixun Lan (dlan)
dlan15/07/14 03:17:14

  Modified: ChangeLog zfs-kmod-0.6.4.2.ebuild
  Log:
  support kernel latest version 4.1, fixed
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.61 sys-fs/zfs-kmod/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs-kmod/ChangeLog?rev=1.61view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs-kmod/ChangeLog?rev=1.61content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs-kmod/ChangeLog?r1=1.60r2=1.61

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   12 Jul 2015 14:20:22 -  1.60
+++ ChangeLog   14 Jul 2015 03:17:14 -  1.61
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/zfs-kmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/ChangeLog,v 1.60 2015/07/12 
14:20:22 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/ChangeLog,v 1.61 2015/07/14 
03:17:14 dlan Exp $
+
+  14 Jul 2015; Yixun Lan d...@gentoo.org zfs-kmod-0.6.4.2.ebuild:
+  support kernel latest version 4.1, fixed
 
 *zfs-kmod-0.6.4.2 (12 Jul 2015)
 



1.2  sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild?r1=1.1r2=1.2

Index: zfs-kmod-0.6.4.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- zfs-kmod-0.6.4.2.ebuild 12 Jul 2015 14:20:22 -  1.1
+++ zfs-kmod-0.6.4.2.ebuild 14 Jul 2015 03:17:14 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild,v 
1.1 2015/07/12 14:20:22 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.4.2.ebuild,v 
1.2 2015/07/14 03:17:14 dlan Exp $
 
 EAPI=4
 
@@ -66,7 +66,7 @@
kernel_is ge 2 6 32 || die Linux 2.6.32 or newer required
 
[ ${PV} !=  ]  \
-   { kernel_is le 4 0 || die Linux 4.0 is the latest supported 
version.; }
+   { kernel_is le 4 1 || die Linux 4.1 is the latest supported 
version.; }
 
check_extra_config
 }






[gentoo-commits] gentoo-x86 commit in x11-misc/arandr: ChangeLog arandr-0.1.8.ebuild

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 04:41:05

  Modified: ChangeLog
  Added:arandr-0.1.8.ebuild
  Log:
  Version bump (bug #554228 by José Romildo Malaquias).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.17 x11-misc/arandr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?r1=1.16r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   8 Apr 2015 17:27:17 -   1.16
+++ ChangeLog   14 Jul 2015 04:41:05 -  1.17
@@ -1,6 +1,11 @@
 # ChangeLog for x11-misc/arandr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v 1.16 2015/04/08 
17:27:17 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v 1.17 2015/07/14 
04:41:05 jer Exp $
+
+*arandr-0.1.8 (14 Jul 2015)
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org +arandr-0.1.8.ebuild:
+  Version bump (bug #554228 by José Romildo Malaquias).
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org arandr-0.1.7.1.ebuild:
   Drop old Python implementations



1.1  x11-misc/arandr/arandr-0.1.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/arandr-0.1.8.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/arandr-0.1.8.ebuild?rev=1.1content-type=text/plain

Index: arandr-0.1.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/arandr-0.1.8.ebuild,v 1.1 
2015/07/14 04:41:05 jer Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit eutils distutils-r1

DESCRIPTION=A simple visual frontend for XRandR 1.2/1.3
HOMEPAGE=http://christian.amsuess.com/tools/arandr/;
SRC_URI=http://christian.amsuess.com/tools/${PN}/files/${P}.tar.gz;

LICENSE=GPL-3+
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND==dev-python/pygtk-2[${PYTHON_USEDEP}]
x11-apps/xrandr
DEPEND==dev-python/docutils-0.6[${PYTHON_USEDEP}]

src_prepare() {
local i p
# simulate gettext behavior:
#  LINGUAS unset = install all
#  LINGUAS= = install none
#  LINGUAS=de fr = install de and fr
if [[ -n ${LINGUAS+x} ]] ; then # if LINGUAS is set
for i in $(cd ${S}/data/po ; for p in *.po ; do echo ${p%.po} 
; done) ; do # for every supported language
if ! has ${i} ${LINGUAS} ; then # if language is 
disabled
rm data/po/${i}.po || die
fi
done
fi
distutils-r1_src_prepare
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/protected_attributes: protected_attributes-1.1.1.ebuild ChangeLog

2015-07-13 Thread Hans de Graaff (graaff)
graaff  15/07/14 04:44:41

  Modified: ChangeLog
  Added:protected_attributes-1.1.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.13 dev-ruby/protected_attributes/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/ChangeLog?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/ChangeLog?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/ChangeLog?r1=1.12r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   23 Jun 2015 04:57:37 -  1.12
+++ ChangeLog   14 Jul 2015 04:44:41 -  1.13
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/protected_attributes
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/ChangeLog,v 
1.12 2015/06/23 04:57:37 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/ChangeLog,v 
1.13 2015/07/14 04:44:41 graaff Exp $
+
+*protected_attributes-1.1.1 (14 Jul 2015)
+
+  14 Jul 2015; Hans de Graaff gra...@gentoo.org
+  +protected_attributes-1.1.1.ebuild:
+  Version bump.
 
 *protected_attributes-1.1.0 (23 Jun 2015)
 



1.1  
dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild?rev=1.1content-type=text/plain

Index: protected_attributes-1.1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/protected_attributes-1.1.1.ebuild,v
 1.1 2015/07/14 04:44:41 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_TEST=test

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.md

inherit ruby-fakegem

DESCRIPTION=Protect attributes from mass-assignment in ActiveRecord models
HOMEPAGE=https://github.com/rails/protected_attributes;
SRC_URI=https://github.com/rails/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz
SLOT=1

LICENSE=MIT

KEYWORDS=~amd64 ~x86
IUSE=test

ruby_add_rdepend 
=dev-ruby/activemodel-4*:* =dev-ruby/activemodel-4.0.1:*


ruby_add_bdepend test? (
dev-ruby/bundler
=dev-ruby/actionpack-4*
=dev-ruby/activerecord-4*
=dev-ruby/rails-4*
dev-ruby/mocha
dev-ruby/sqlite3
)

all_ruby_prepare() {
sed -i -e '/github/ s:^:#:' Gemfile || die
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/protected_attributes: ChangeLog protected_attributes-1.0.8.ebuild protected_attributes-1.1.0.ebuild

2015-07-13 Thread Hans de Graaff (graaff)
graaff  15/07/14 04:45:24

  Modified: ChangeLog
  Removed:  protected_attributes-1.0.8.ebuild
protected_attributes-1.1.0.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.14 dev-ruby/protected_attributes/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/protected_attributes/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   14 Jul 2015 04:44:41 -  1.13
+++ ChangeLog   14 Jul 2015 04:45:24 -  1.14
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/protected_attributes
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/ChangeLog,v 
1.13 2015/07/14 04:44:41 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/protected_attributes/ChangeLog,v 
1.14 2015/07/14 04:45:24 graaff Exp $
+
+  14 Jul 2015; Hans de Graaff gra...@gentoo.org
+  -protected_attributes-1.0.8.ebuild, -protected_attributes-1.1.0.ebuild:
+  Cleanup.
 
 *protected_attributes-1.1.1 (14 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/kbd: kbd-2.0.3.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/14 03:27:09

  Modified: ChangeLog
  Added:kbd-2.0.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.131sys-apps/kbd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/ChangeLog?rev=1.131view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/ChangeLog?rev=1.131content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/ChangeLog?r1=1.130r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   1 Aug 2014 10:35:43 -   1.130
+++ ChangeLog   14 Jul 2015 03:27:09 -  1.131
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/kbd
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.130 2014/08/01 
10:35:43 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.131 2015/07/14 
03:27:09 vapier Exp $
+
+*kbd-2.0.3 (14 Jul 2015)
+
+  14 Jul 2015; Mike Frysinger vap...@gentoo.org +kbd-2.0.3.ebuild:
+  Version bump.
 
 *kbd-2.0.2 (01 Aug 2014)
 



1.1  sys-apps/kbd/kbd-2.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild?rev=1.1content-type=text/plain

Index: kbd-2.0.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild,v 1.1 
2015/07/14 03:27:09 vapier Exp $

EAPI=5

SCM=
if [[ ${PV} ==  ]] ; then
SCM=git-r3

EGIT_REPO_URI=http://git.kernel.org/cgit/linux/kernel/git/legion/${PN}.git;
EGIT_BRANCH=master
else
SRC_URI=ftp://ftp.kernel.org/pub/linux/utils/kbd/${P}.tar.xz;
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86
fi

inherit autotools eutils ${SCM}

DESCRIPTION=Keyboard and console utilities
HOMEPAGE=http://kbd-project.org/;

LICENSE=GPL-2
SLOT=0
IUSE=nls pam test

RDEPEND=pam? ( virtual/pam )
DEPEND=${RDEPEND}
virtual/pkgconfig
test? ( dev-libs/check )

src_unpack() {
if [[ ${PV} ==  ]] ; then
git-r3_src_unpack
else
default
fi

# Rename conflicting keymaps to have unique names, bug #293228
cd ${S}/data/keymaps/i386 || die
mv dvorak/no.map dvorak/no-dvorak.map || die
mv fgGIod/trf.map fgGIod/trf-fgGIod.map || die
mv olpc/es.map olpc/es-olpc.map || die
mv olpc/pt.map olpc/pt-olpc.map || die
mv qwerty/cz.map qwerty/cz-qwerty.map || die
}

src_prepare() {
epatch ${FILESDIR}/${PN}-2.0.0-tests.patch
eautoreconf
}

src_configure() {
econf \
$(use_enable nls) \
$(use_enable pam vlock) \
$(use_enable test tests)
}

src_install() {
default
dohtml docs/doc/*.html
}






[gentoo-commits] gentoo-x86 commit in sys-libs/libkudzu: libkudzu-1.2.57.1.ebuild ChangeLog

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 04:26:55

  Modified: libkudzu-1.2.57.1.ebuild ChangeLog
  Log:
  Fix QA warning (bug #554658 by Toralf Förster).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.18 sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild?r1=1.17r2=1.18

Index: libkudzu-1.2.57.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- libkudzu-1.2.57.1.ebuild17 Sep 2014 09:47:40 -  1.17
+++ libkudzu-1.2.57.1.ebuild14 Jul 2015 04:26:55 -  1.18
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild,v 1.17 
2014/09/17 09:47:40 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild,v 1.18 
2015/07/14 04:26:55 jer Exp $
 
 EAPI=5
-inherit eutils flag-o-matic toolchain-funcs
+inherit eutils linux-info flag-o-matic toolchain-funcs
 
 DESCRIPTION=Red Hat Hardware detection tools
 HOMEPAGE=http://rhlinux.redhat.com/kudzu/;



1.40 sys-libs/libkudzu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libkudzu/ChangeLog?rev=1.40view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libkudzu/ChangeLog?rev=1.40content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libkudzu/ChangeLog?r1=1.39r2=1.40

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libkudzu/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   17 Sep 2014 09:47:40 -  1.39
+++ ChangeLog   14 Jul 2015 04:26:55 -  1.40
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libkudzu
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libkudzu/ChangeLog,v 1.39 
2014/09/17 09:47:40 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libkudzu/ChangeLog,v 1.40 
2015/07/14 04:26:55 jer Exp $
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org libkudzu-1.2.57.1.ebuild:
+  Fix QA warning (bug #554658 by Toralf Förster).
 
   17 Sep 2014; Jeroen Roovers j...@gentoo.org libkudzu-1.2.57.1.ebuild,
   files/kudzu-1.2.57.1-sbusfix.patch,






[gentoo-commits] gentoo-x86 commit in www-client/opera: opera-30.0.1835.125.ebuild ChangeLog opera-30.0.1835.59.ebuild

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 05:16:58

  Modified: ChangeLog
  Added:opera-30.0.1835.125.ebuild
  Removed:  opera-30.0.1835.59.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.836www-client/opera/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera/ChangeLog?rev=1.836view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera/ChangeLog?rev=1.836content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera/ChangeLog?r1=1.835r2=1.836

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/opera/ChangeLog,v
retrieving revision 1.835
retrieving revision 1.836
diff -u -r1.835 -r1.836
--- ChangeLog   25 Jun 2015 04:59:20 -  1.835
+++ ChangeLog   14 Jul 2015 05:16:58 -  1.836
@@ -1,6 +1,12 @@
 # ChangeLog for www-client/opera
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/opera/ChangeLog,v 1.835 
2015/06/25 04:59:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/opera/ChangeLog,v 1.836 
2015/07/14 05:16:58 jer Exp $
+
+*opera-30.0.1835.125 (14 Jul 2015)
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org -opera-30.0.1835.59.ebuild,
+  +opera-30.0.1835.125.ebuild:
+  Version bump.
 
 *opera-30.0.1835.88 (25 Jun 2015)
 



1.1  www-client/opera/opera-30.0.1835.125.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera/opera-30.0.1835.125.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera/opera-30.0.1835.125.ebuild?rev=1.1content-type=text/plain

Index: opera-30.0.1835.125.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/opera/opera-30.0.1835.125.ebuild,v 1.1 
2015/07/14 05:16:58 jer Exp $

EAPI=5
CHROMIUM_LANGS=
af az be bg bn ca cs da de el en_GB en_US es_419 es fil fi fr_CA fr fy 
gd
hi hr hu id it ja kk ko lt lv me mk ms nb nl nn pa pl pt_BR pt_PT ro ru 
sk
sr sv sw ta te th tr uk uz vi zh_CN zh_TW zu

inherit chromium multilib unpacker

DESCRIPTION=A fast and secure web browser
HOMEPAGE=http://www.opera.com/;
LICENSE=OPERA-2014
SLOT=0
SRC_URI_BASE=http://get.geo.opera.com/pub/;
SRC_URI=
amd64? ( 
${SRC_URI_BASE}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb )

KEYWORDS=~amd64

RDEPEND=
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
=dev-libs/openssl-1.0.1:0
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
net-misc/curl
net-print/cups
sys-apps/dbus
sys-libs/libcap
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXtst
x11-libs/pango[X]


QA_PREBUILT=*
S=${WORKDIR}
OPERA_HOME=usr/$(get_libdir)/${PN}

src_unpack() {
unpack_deb ${A}
}

src_prepare() {
mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
rm -r usr/lib || die

rm usr/bin/${PN} || die

rm usr/share/doc/${PN}-stable/copyright || die
mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die

pushd ${OPERA_HOME}/localization  /dev/null || die
chromium_remove_language_paks
popd  /dev/null || die

sed -i \
-e 's|^TargetEnvironment|X-|g' \
usr/share/applications/${PN}.desktop || die
}

src_install() {
mv * ${D} || die
dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
}






[gentoo-commits] gentoo-x86 commit in x11-misc/rofi: ChangeLog rofi-0.15.7.ebuild rofi-0.15.4.ebuild

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 05:16:44

  Modified: ChangeLog
  Added:rofi-0.15.7.ebuild
  Removed:  rofi-0.15.4.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.8  x11-misc/rofi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   1 Jun 2015 04:48:41 -   1.7
+++ ChangeLog   14 Jul 2015 05:16:44 -  1.8
@@ -1,6 +1,12 @@
 # ChangeLog for x11-misc/rofi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v 1.7 2015/06/01 
04:48:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v 1.8 2015/07/14 
05:16:44 jer Exp $
+
+*rofi-0.15.7 (14 Jul 2015)
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org -rofi-0.15.4.ebuild,
+  +rofi-0.15.7.ebuild:
+  Version bump.
 
 *rofi-0.15.5 (01 Jun 2015)
 



1.1  x11-misc/rofi/rofi-0.15.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/rofi-0.15.7.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/rofi-0.15.7.ebuild?rev=1.1content-type=text/plain

Index: rofi-0.15.7.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/rofi-0.15.7.ebuild,v 1.1 
2015/07/14 05:16:44 jer Exp $

EAPI=5
inherit autotools eutils toolchain-funcs

DESCRIPTION=A window switcher, run dialog and dmenu replacement
HOMEPAGE=https://davedavenport.github.io/rofi/;
SRC_URI=https://github.com/DaveDavenport/${PN}/releases/download/${PV}/${P}.tar.xz;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=i3

RDEPEND=
dev-libs/glib:2
media-libs/freetype
x11-libs/libX11
x11-libs/libXft
x11-libs/libXinerama
x11-libs/pango[X]
i3? ( x11-wm/i3 )

DEPEND=
${RDEPEND}
x11-proto/xineramaproto
x11-proto/xproto
virtual/pkgconfig


src_prepare() {
epatch \
${FILESDIR}/${PN}-0.15.4-Werror.patch

eautoreconf
}

src_configure() {
tc-export CC
econf $(usex i3 '' --disable-i3support)
}

src_test() {
emake test
}






[gentoo-commits] gentoo-x86 commit in www-client/vivaldi: vivaldi-1.0.219.34_p1.ebuild ChangeLog vivaldi-1.0.212.3_p1.ebuild

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 05:04:12

  Modified: ChangeLog
  Added:vivaldi-1.0.219.34_p1.ebuild
  Removed:  vivaldi-1.0.212.3_p1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.33 www-client/vivaldi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/vivaldi/ChangeLog?rev=1.33view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/vivaldi/ChangeLog?rev=1.33content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/vivaldi/ChangeLog?r1=1.32r2=1.33

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/vivaldi/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   8 Jul 2015 20:10:14 -   1.32
+++ ChangeLog   14 Jul 2015 05:04:12 -  1.33
@@ -1,6 +1,12 @@
 # ChangeLog for www-client/vivaldi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/vivaldi/ChangeLog,v 1.32 
2015/07/08 20:10:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/vivaldi/ChangeLog,v 1.33 
2015/07/14 05:04:12 jer Exp $
+
+*vivaldi-1.0.219.34_p1 (14 Jul 2015)
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org -vivaldi-1.0.212.3_p1.ebuild,
+  +vivaldi-1.0.219.34_p1.ebuild:
+  Version bump.
 
   08 Jul 2015; Jeroen Roovers j...@gentoo.org vivaldi-1.0.219.3_p1-r1.ebuild:
   Remove cron script piece by piece in case a future release has something



1.1  www-client/vivaldi/vivaldi-1.0.219.34_p1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/vivaldi/vivaldi-1.0.219.34_p1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/vivaldi/vivaldi-1.0.219.34_p1.ebuild?rev=1.1content-type=text/plain

Index: vivaldi-1.0.219.34_p1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/vivaldi/vivaldi-1.0.219.34_p1.ebuild,v 1.1 
2015/07/14 05:04:12 jer Exp $

EAPI=5
CHROMIUM_LANGS=
am ar bg bn ca cs da de el en_GB en_US es_419 es et fa fil fi fr gu he 
hi
hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr 
sv
sw ta te th tr uk vi zh_CN zh_TW

inherit chromium multilib unpacker toolchain-funcs

DESCRIPTION=A new browser for our friends
HOMEPAGE=http://vivaldi.com/;
VIVALDI_BASE_URI=${HOMEPAGE}download/snapshot/${PN}-snapshot_${PV/_p/-}_
SRC_URI=
amd64? ( ${VIVALDI_BASE_URI}amd64.deb - ${P}-amd64.deb )
x86? ( ${VIVALDI_BASE_URI}i386.deb - ${P}-i386.deb )


LICENSE=Vivaldi
SLOT=0
KEYWORDS=~amd64 ~x86

RESTRICT=bindist mirror

S=${WORKDIR}

RDEPEND=
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
=dev-libs/openssl-1.0.1:0
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
net-misc/curl
net-print/cups
sys-apps/dbus
sys-libs/libcap
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXtst
x11-libs/pango[X]


QA_PREBUILT=*
S=${WORKDIR}
VIVALDI_HOME=opt/${PN}-snapshot

src_unpack() {
unpack_deb ${A}
}

src_prepare() {
sed -i \
-e 's|vivaldi-snapshot|vivaldi|g' \
usr/share/applications/${PN}-snapshot.desktop \
usr/share/xfce4/helpers/${PN}-snapshot.desktop || die

mv usr/share/doc/${PN}-snapshot usr/share/doc/${PF} || die

rm etc/cron.daily/${PN}-snapshot || die
rmdir etc/cron.daily/ || die
rmdir etc/ || die

rm usr/bin/${PN}-snapshot || die
rm _gpgbuilder || die

local c d
for d in 16 22 24 32 48 64 128 256; do
mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die
cp \
${VIVALDI_HOME}/product_logo_${d}.png \
usr/share/icons/hicolor/${d}x${d}/apps/vivaldi.png || 
die
done

pushd ${VIVALDI_HOME}/locales  /dev/null || die
chromium_remove_language_paks
popd  /dev/null || die

}

src_install() {
mv * ${D} || die
dosym /${VIVALDI_HOME}/${PN}-snapshot /usr/bin/${PN}

fperms 4711 /${VIVALDI_HOME}/${PN}-sandbox
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/cacti-spine/files: cacti-spine-0.8.8e-fix-ac-macro.patch cacti-spine-0.8.8e-net-snmp.patch

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 05:26:17

  Added:cacti-spine-0.8.8e-fix-ac-macro.patch
cacti-spine-0.8.8e-net-snmp.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.1  
net-analyzer/cacti-spine/files/cacti-spine-0.8.8e-fix-ac-macro.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/files/cacti-spine-0.8.8e-fix-ac-macro.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/files/cacti-spine-0.8.8e-fix-ac-macro.patch?rev=1.1content-type=text/plain

Index: cacti-spine-0.8.8e-fix-ac-macro.patch
===
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@
 AC_LANG(C)
 
 AM_INIT_AUTOMAKE(spine, 0.8.8e)
-AM_CONFIG_HEADER(config/config.h)
+AC_CONFIG_HEADERS(config/config.h)
 
 # static libraries
 AC_ARG_WITH(static,



1.1  
net-analyzer/cacti-spine/files/cacti-spine-0.8.8e-net-snmp.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/files/cacti-spine-0.8.8e-net-snmp.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/files/cacti-spine-0.8.8e-net-snmp.patch?rev=1.1content-type=text/plain

Index: cacti-spine-0.8.8e-net-snmp.patch
===
--- a/configure.ac
+++ b/configure.ac
@@ -254,14 +254,14 @@
 )
 
 AC_MSG_CHECKING([if Net-SNMP needs crypto support])
-AC_TRY_COMPILE([#include net-snmp-config.h], [exit(USE_OPENSSL != 1);],
+AC_TRY_COMPILE([#include net-snmp/net-snmp-config.h], [exit(USE_OPENSSL != 
1);],
   [  AC_MSG_RESULT(yes)
  SNMP_SSL=yes
   ],
   AC_MSG_RESULT(no)
 )
 
-AC_TRY_COMPILE([ #include net-snmp-config.h 
+AC_TRY_COMPILE([ #include net-snmp/net-snmp-config.h 
   #include net-snmp/utilities.h
   #include net-snmp/net-snmp-includes.h
   #include net-snmp/config_api.h






[gentoo-commits] gentoo-x86 commit in net-analyzer/cacti-spine: cacti-spine-0.8.8e.ebuild ChangeLog

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 05:26:17

  Modified: ChangeLog
  Added:cacti-spine-0.8.8e.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.45 net-analyzer/cacti-spine/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   16 Jun 2015 04:33:58 -  1.44
+++ ChangeLog   14 Jul 2015 05:26:17 -  1.45
@@ -1,6 +1,13 @@
 # ChangeLog for net-analyzer/cacti-spine
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v 1.44 
2015/06/16 04:33:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v 1.45 
2015/07/14 05:26:17 jer Exp $
+
+*cacti-spine-0.8.8e (14 Jul 2015)
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org +cacti-spine-0.8.8e.ebuild,
+  +files/cacti-spine-0.8.8e-fix-ac-macro.patch,
+  +files/cacti-spine-0.8.8e-net-snmp.patch:
+  Version bump.
 
   16 Jun 2015; Jeroen Roovers j...@gentoo.org -cacti-spine-0.8.7i.ebuild,
   -cacti-spine-0.8.8a.ebuild, -cacti-spine-0.8.8b.ebuild,



1.1  net-analyzer/cacti-spine/cacti-spine-0.8.8e.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.8e.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.8e.ebuild?rev=1.1content-type=text/plain

Index: cacti-spine-0.8.8e.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.8e.ebuild,v 
1.1 2015/07/14 05:26:17 jer Exp $

EAPI=5
inherit autotools eutils

MY_P=${PN}-${PV/_p/-}

DESCRIPTION=Spine is a fast poller for Cacti (formerly known as Cactid)
HOMEPAGE=http://cacti.net/spine_info.php;
SRC_URI=http://www.cacti.net/downloads/spine/${MY_P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86

DEPEND=
dev-libs/openssl:*
net-analyzer/net-snmp
virtual/mysql

RDEPEND=
${DEPEND}
net-analyzer/cacti-0.8.8


src_prepare() {
epatch \
${FILESDIR}/${PN}-0.8.8e-fix-ac-macro.patch \
${FILESDIR}/${PN}-0.8.8e-net-snmp.patch \
${FILESDIR}/${PN}-0.8.8d-mysql.patch \
${FILESDIR}/${PN}-0.8.8d-ping.patch \
${FILESDIR}/${PN}-0.8.8d-snmp_spine_close.patch

sed -i -e 's/^bin_PROGRAMS/sbin_PROGRAMS/' Makefile.am
AT_M4DIR=config eautoreconf
}

src_install() {
dosbin spine
insinto /etc/
insopts -m0640 -o root
newins spine.conf{.dist,}
dodoc ChangeLog README
}






[gentoo-commits] gentoo-x86 commit in sys-devel/bc: bc-1.06.95-r2.ebuild bc-1.06.95-r1.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/14 03:06:33

  Modified: bc-1.06.95-r2.ebuild bc-1.06.95-r1.ebuild ChangeLog
  Log:
  Prevent info pages from being regenerated (which requires texinfo) #554774 by 
Anton Gubarkov.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  sys-devel/bc/bc-1.06.95-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r2.ebuild?r1=1.1r2=1.2

Index: bc-1.06.95-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bc-1.06.95-r2.ebuild13 Jul 2015 05:01:23 -  1.1
+++ bc-1.06.95-r2.ebuild14 Jul 2015 03:06:33 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r2.ebuild,v 1.1 
2015/07/13 05:01:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r2.ebuild,v 1.2 
2015/07/14 03:06:33 vapier Exp $
 
 EAPI=5
 
@@ -40,6 +40,10 @@
econf \
$(use_with readline) \
${libedit}
+
+   # Do not regen docs -- configure produces a small fragment that includes
+   # the version info which causes all pages to regen (newer file). #554774
+   touch -r doc doc/*
 }
 
 src_compile() {



1.8  sys-devel/bc/bc-1.06.95-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild?r1=1.7r2=1.8

Index: bc-1.06.95-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bc-1.06.95-r1.ebuild13 Jul 2015 18:20:36 -  1.7
+++ bc-1.06.95-r1.ebuild14 Jul 2015 03:06:33 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v 1.7 
2015/07/13 18:20:36 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v 1.8 
2015/07/14 03:06:33 vapier Exp $
 
 EAPI=2
 
@@ -36,6 +36,10 @@
fi
use static  append-ldflags -static
econf ${myconf}
+
+   # Do not regen docs -- configure produces a small fragment that includes
+   # the version info which causes all pages to regen (newer file). #554774
+   touch -r doc doc/*
 }
 
 src_compile() {



1.46 sys-devel/bc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/ChangeLog?rev=1.46view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/ChangeLog?rev=1.46content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/ChangeLog?r1=1.45r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   13 Jul 2015 18:20:36 -  1.45
+++ ChangeLog   14 Jul 2015 03:06:33 -  1.46
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/bc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.45 2015/07/13 
18:20:36 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.46 2015/07/14 
03:06:33 vapier Exp $
+
+  14 Jul 2015; Mike Frysinger vap...@gentoo.org bc-1.06.95-r1.ebuild,
+  bc-1.06.95-r2.ebuild:
+  Prevent info pages from being regenerated (which requires texinfo) #554774 by
+  Anton Gubarkov.
 
   13 Jul 2015; Mikle Kolyada zlog...@gentoo.org bc-1.06.95-r1.ebuild:
   amd64 stable wrt bug #554708






[gentoo-commits] gentoo-x86 commit in sys-kernel/spl: ChangeLog spl-0.6.4.2.ebuild

2015-07-13 Thread Yixun Lan (dlan)
dlan15/07/14 03:21:51

  Modified: ChangeLog spl-0.6.4.2.ebuild
  Log:
  support kernel latest version 4.1, fixed
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.85 sys-kernel/spl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/ChangeLog?rev=1.85view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/ChangeLog?rev=1.85content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/ChangeLog?r1=1.84r2=1.85

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/spl/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog   12 Jul 2015 14:19:38 -  1.84
+++ ChangeLog   14 Jul 2015 03:21:51 -  1.85
@@ -1,6 +1,9 @@
 # ChangeLog for sys-kernel/spl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/ChangeLog,v 1.84 2015/07/12 
14:19:38 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/ChangeLog,v 1.85 2015/07/14 
03:21:51 dlan Exp $
+
+  14 Jul 2015; Yixun Lan d...@gentoo.org spl-0.6.4.2.ebuild:
+  support kernel latest version 4.1, fixed
 
 *spl-0.6.4.2 (12 Jul 2015)
 



1.2  sys-kernel/spl/spl-0.6.4.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/spl-0.6.4.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/spl-0.6.4.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/spl/spl-0.6.4.2.ebuild?r1=1.1r2=1.2

Index: spl-0.6.4.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/spl/spl-0.6.4.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- spl-0.6.4.2.ebuild  12 Jul 2015 14:19:38 -  1.1
+++ spl-0.6.4.2.ebuild  14 Jul 2015 03:21:51 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/spl-0.6.4.2.ebuild,v 1.1 
2015/07/12 14:19:38 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/spl/spl-0.6.4.2.ebuild,v 1.2 
2015/07/14 03:21:51 dlan Exp $
 
 EAPI=4
 AUTOTOOLS_AUTORECONF=1
@@ -58,7 +58,7 @@
kernel_is ge 2 6 32 || die Linux 2.6.32 or newer required
 
[ ${PV} !=  ]  \
-   { kernel_is le 4 20 || die Linux 4.0 is the latest supported 
version.; }
+   { kernel_is le 4 1 || die Linux 4.1 is the latest supported 
version.; }
 
check_extra_config
 }






[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/

2015-07-13 Thread Jason Zaman
commit: ff13e7e4cbbeddbc298d5d94e16ad8afddc614fa
Author: Jason Zaman jason AT perfinion DOT com
AuthorDate: Mon Jul 13 13:00:21 2015 +
Commit: Jason Zaman perfinion AT gentoo DOT org
CommitDate: Mon Jul 13 13:00:21 2015 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=ff13e7e4

portage: add fcontext for emaint

Thanks to Matthias Dahl for reporting

 policy/modules/contrib/portage.fc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/policy/modules/contrib/portage.fc 
b/policy/modules/contrib/portage.fc
index 5f07098..655f986 100644
--- a/policy/modules/contrib/portage.fc
+++ b/policy/modules/contrib/portage.fc
@@ -42,6 +42,7 @@ ifdef(`distro_gentoo',`
 /usr/bin/emerge-webrsync   --  
gen_context(system_u:object_r:portage_fetch_exec_t,s0)
 /usr/lib/python-exec/python[0-9]\.[0-9]*/glsa-check--  
gen_context(system_u:object_r:portage_exec_t,s0)
 /usr/lib/python-exec/python[0-9]\.[0-9]*/layman--  
gen_context(system_u:object_r:portage_fetch_exec_t,s0)
+/usr/lib/python-exec/python[0-9]\.[0-9]*/emaint--  
gen_context(system_u:object_r:portage_exec_t,s0)
 /usr/lib/python-exec/python[0-9]\.[0-9]*/emerge--  
gen_context(system_u:object_r:portage_exec_t,s0)
 /var/log/sandbox(/.*)? 
gen_context(system_u:object_r:portage_log_t,s0)
 ')



[gentoo-commits] dev/ultrabug:master commit in: sys-cluster/zookeeper/

2015-07-13 Thread Alexys Jacob
commit: 1bb05e6a452a52a99806a8368e9c4d811cc654a5
Author: Ultrabug ultrabug AT gentoo DOT org
AuthorDate: Mon Jul 13 14:07:13 2015 +
Commit: Alexys Jacob ultrabug AT gentoo DOT org
CommitDate: Mon Jul 13 14:07:13 2015 +
URL:https://gitweb.gentoo.org/dev/ultrabug.git/commit/?id=1bb05e6a

fix ebuild thanks to @albert-lacki

 sys-cluster/zookeeper/Manifest   | 2 +-
 sys-cluster/zookeeper/zookeeper-3.4.6.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/zookeeper/Manifest b/sys-cluster/zookeeper/Manifest
index 297cf93..85d9a29 100644
--- a/sys-cluster/zookeeper/Manifest
+++ b/sys-cluster/zookeeper/Manifest
@@ -2,4 +2,4 @@ AUX log4j.properties 2191 SHA256 
bf9df5ca06d8ffd2c11b13f2ea0b78879afab7d05cb2d48
 AUX zookeeper.confd 390 SHA256 
12c202a8891a44ac7c19e619320339345f5b2ec0033736601dd334adcd78b472 SHA512 
c6b75ce741603e4c2df7dba93fb6207a5955e7bb231ca9098172c17753b8f87a0af2106d4676420d44e6099053f05086bc84c7966b6fe0f9da6e8a541fccf80e
 WHIRLPOOL 
662648c34c14ad9b58c05c8d1264d3c7fc5b8124f923cdcd09b4c3f2825ad84652e1816d0ed320d894a1cdbba9e64e577a41179a107c7cff14fb440147f2e760
 AUX zookeeper.initd 385 SHA256 
b654d3e19f72b72652523cecc46fdfecc0e209ee454bfe132fff114294bd453b SHA512 
2b18a2f4bae64c2e6c80168c6f02036d9bc6115aba2a94c219fbb20f3808a6c64c493dac552f189d54e7c8b4006dd1c0964dcb1f2cdb7a78222a17400b3de153
 WHIRLPOOL 
129df8d2a0bc946f78d99e843f5c616395a25e1dbc7b4b4a05c987ddfb946ba083f15dbb547752a21d4cc3888ff65d3e90699f8626a5f46be4c6eaac31a18216
 DIST zookeeper-3.4.6.tar.gz 17699306 SHA256 
01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994 SHA512 
5b9a3337a7edad38d1f5d9fd4f3c0d4e439128a31890b75cf2f2e2f5f19f83ef469535ab508aa44ae28daf0185807440c45f918058c4510ca3e98adb0352ce17
 WHIRLPOOL 
6eb037f044d5c341536d894425283ea642e646ce37a76334025d78949885d12ba8aaea5c3bd8a0978e46b54d334ef6745880deca1bcab942a22dfd032c75
-EBUILD zookeeper-3.4.6.ebuild 1974 SHA256 
00a4e27c647478845f719da65830919b2707505511c2cdb34d23f6f54e41320e SHA512 
0fb17cdd1f6b686b482bcf86014fe5a51042c172ded00d46835f0ac4221d7b17a5cc39b9f2ffed659ceefdcf85d7b531d59e0c9199a32a4fad8107eddc3f466d
 WHIRLPOOL 
e6749de86f670b19d0fb39f4bd3380b63f5bf1552c2d36a53a9cafcb2942df07c59911769ecd314de6f5e2d8ed935517756c377e5597b6fc70efecf2716b687e
+EBUILD zookeeper-3.4.6.ebuild 1986 SHA256 
ba4319d59cce68d354eec0246aecf4a8cb96f62911ea59cf772d71b9bf7c3780 SHA512 
0fcff7e50b18dcfe7ab75ad707adf01b165fba9eb90a7c2f80af2708503cfcab3de59a552d6ad72653aa59701bf271460425dbb220a02aaf10d14a85601e9ee5
 WHIRLPOOL 
d64e4f9c3d80fc85ddf7b15bfdab2e7b36e9d360b50ec470eee2d786afe7eed3359d08eea4abb1076602f44afa4cc8e47f6a5bc768c27fab2cb62bd808eca4eb

diff --git a/sys-cluster/zookeeper/zookeeper-3.4.6.ebuild 
b/sys-cluster/zookeeper/zookeeper-3.4.6.ebuild
index f49720c..4fad1ca 100644
--- a/sys-cluster/zookeeper/zookeeper-3.4.6.ebuild
+++ b/sys-cluster/zookeeper/zookeeper-3.4.6.ebuild
@@ -58,7 +58,7 @@ src_install() {
mv src/python/setup.py .
mv src/c/* .
python_foreach_impl distutils-r1_src_install
-   cd -
+   cd ${S} || die
 
# cleanup sources
rm -rf src/ || die



[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.6.2.ebuild ChangeLog

2015-07-13 Thread Manuel Rueger (mrueg)
mrueg   15/07/13 13:37:16

  Modified: mesa-10.6.2.ebuild ChangeLog
  Log:
  Drop unrecognized configure option.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.2  media-libs/mesa/mesa-10.6.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/mesa-10.6.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/mesa-10.6.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/mesa-10.6.2.ebuild?r1=1.1r2=1.2

Index: mesa-10.6.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.6.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mesa-10.6.2.ebuild  12 Jul 2015 13:25:44 -  1.1
+++ mesa-10.6.2.ebuild  13 Jul 2015 13:37:16 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.6.2.ebuild,v 1.1 
2015/07/12 13:25:44 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.6.2.ebuild,v 1.2 
2015/07/13 13:37:16 mrueg Exp $
 
 EAPI=5
 
@@ -276,7 +276,6 @@
--enable-dri \
--enable-glx \
--enable-shared-glapi \
-   --disable-shader-cache \
$(use_enable !bindist texture-float) \
$(use_enable d3d9 nine) \
$(use_enable debug) \



1.648media-libs/mesa/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/ChangeLog?rev=1.648view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/ChangeLog?rev=1.648content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/ChangeLog?r1=1.647r2=1.648

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.647
retrieving revision 1.648
diff -u -r1.647 -r1.648
--- ChangeLog   12 Jul 2015 13:25:44 -  1.647
+++ ChangeLog   13 Jul 2015 13:37:16 -  1.648
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.647 
2015/07/12 13:25:44 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.648 
2015/07/13 13:37:16 mrueg Exp $
+
+  13 Jul 2015; Manuel Rüger mr...@gentoo.org mesa-10.6.2.ebuild:
+  Drop unrecognized configure option.
 
 *mesa-10.6.2 (12 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ml/pa_ounit: ChangeLog pa_ounit-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 13:18:30

  Modified: ChangeLog
  Added:pa_ounit-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.25 dev-ml/pa_ounit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_ounit/ChangeLog?rev=1.25view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_ounit/ChangeLog?rev=1.25content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_ounit/ChangeLog?r1=1.24r2=1.25

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   7 Jun 2015 19:12:43 -   1.24
+++ ChangeLog   13 Jul 2015 13:18:30 -  1.25
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/pa_ounit
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/ChangeLog,v 1.24 2015/06/07 
19:12:43 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/ChangeLog,v 1.25 2015/07/13 
13:18:30 aballier Exp $
+
+*pa_ounit-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +pa_ounit-112.35.00.ebuild:
+  version bump
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add bitbucket to remote-id in metadata.xml



1.1  dev-ml/pa_ounit/pa_ounit-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_ounit/pa_ounit-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_ounit/pa_ounit-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: pa_ounit-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/pa_ounit-112.35.00.ebuild,v 
1.1 2015/07/13 13:18:30 aballier Exp $

EAPI=5

inherit oasis

DESCRIPTION=Syntax extension that helps writing in-line test in ocaml
HOMEPAGE=http://bitbucket.org/yminsky/ocaml-core/wiki/Home;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND==dev-ml/ounit-1.1.1:=
dev-ml/camlp4:=
RDEPEND=${DEPEND}

DOCS=( readme.md )






[gentoo-commits] proj/layman:master commit in: layman/db_modules/xml_db/

2015-07-13 Thread Devan Franchini
commit: 4c08c57f337abba1f6f4fe678bfa2a0cab569b7a
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 13:33:00 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 13:33:02 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=4c08c57f

xml_db.py: Removes unnecessary __eq__ and __ne__ functions

These functions are in the DbBase class and will continue to be used
in that class. As such there's no need for any DBHandler class to
include them in their code.

 layman/db_modules/xml_db/xml_db.py | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/layman/db_modules/xml_db/xml_db.py 
b/layman/db_modules/xml_db/xml_db.py
index 6348162..38a19d2 100644
--- a/layman/db_modules/xml_db/xml_db.py
+++ b/layman/db_modules/xml_db/xml_db.py
@@ -86,17 +86,6 @@ class DBHandler(object):
 self.output.debug('Initializing XML overlay list handler', 8)
 
 
-def __eq__(self, other):
-for key in set(self.overlays.keys()) | set(other.overlays.keys()):
-if self.overlays[key] != other.overlays[key]:
-return False
-return True
-
-
-def __ne__(self, other):
-return not self.__eq__(other)
-
-
 def _broken_catalog_hint(self):
 this_function_name = sys._getframe().f_code.co_name
 



[gentoo-commits] gentoo-x86 commit in app-text/poppler: poppler-0.34.0.ebuild ChangeLog

2015-07-13 Thread Manuel Rueger (mrueg)
mrueg   15/07/13 13:29:10

  Modified: ChangeLog
  Added:poppler-0.34.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.464app-text/poppler/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/ChangeLog?rev=1.464view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/ChangeLog?rev=1.464content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/ChangeLog?r1=1.463r2=1.464

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v
retrieving revision 1.463
retrieving revision 1.464
diff -u -r1.463 -r1.464
--- ChangeLog   21 Jun 2015 11:59:02 -  1.463
+++ ChangeLog   13 Jul 2015 13:29:10 -  1.464
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/poppler
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.463 
2015/06/21 11:59:02 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.464 
2015/07/13 13:29:10 mrueg Exp $
+
+*poppler-0.34.0 (13 Jul 2015)
+
+  13 Jul 2015; Manuel Rüger mr...@gentoo.org +poppler-0.34.0.ebuild:
+  Version bump.
 
   21 Jun 2015; Johannes Huber j...@gentoo.org -poppler-0.33.0.ebuild,
   poppler-0.33.0-r1.ebuild, poppler-.ebuild:



1.1  app-text/poppler/poppler-0.34.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/poppler-0.34.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/poppler/poppler-0.34.0.ebuild?rev=1.1content-type=text/plain

Index: poppler-0.34.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.34.0.ebuild,v 1.1 
2015/07/13 13:29:10 mrueg Exp $

EAPI=5

inherit cmake-utils toolchain-funcs

if [[ ${PV} ==  ]] ; then
inherit git-r3
EGIT_REPO_URI=git://git.freedesktop.org/git/${PN}/${PN}
SLOT=0/
else
SRC_URI=http://poppler.freedesktop.org/${P}.tar.xz;
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
SLOT=0/53   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
fi

DESCRIPTION=PDF rendering library based on the xpdf-3.0 code base
HOMEPAGE=http://poppler.freedesktop.org/;

LICENSE=GPL-2
IUSE=cairo cjk curl cxx debug doc +introspection +jpeg +jpeg2k +lcms png qt4 
qt5 tiff +utils

# No test data provided
RESTRICT=test

COMMON_DEPEND=
=media-libs/fontconfig-2.6.0
=media-libs/freetype-2.3.9
sys-libs/zlib
cairo? (
dev-libs/glib:2
=x11-libs/cairo-1.10.0
introspection? ( =dev-libs/gobject-introspection-1.32.1 )
)
curl? ( net-misc/curl )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( media-libs/openjpeg:2= )
lcms? ( media-libs/lcms:2 )
png? ( media-libs/libpng:0= )
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtxml:5
)
tiff? ( media-libs/tiff:0 )

DEPEND=${COMMON_DEPEND}
virtual/pkgconfig

RDEPEND=${COMMON_DEPEND}
cjk? ( =app-text/poppler-data-0.4.4 )


DOCS=(AUTHORS NEWS README README-XPDF TODO)

PATCHES=(
${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch
${FILESDIR}/${PN}-0.28.1-fix-multilib-configuration.patch
${FILESDIR}/${PN}-0.28.1-respect-cflags.patch
${FILESDIR}/${PN}-0.33.0-openjpeg2.patch
)

src_prepare() {
cmake-utils_src_prepare

# Clang doesn't grok this flag, the configure nicely tests that, but
# cmake just uses it, so remove it if we use clang
if [[ ${CC} == clang ]] ; then
sed -i -e 's/-fno-check-new//' 
cmake/modules/PopplerMacros.cmake || die
fi
}

src_configure() {
local mycmakeargs=(
-DBUILD_GTK_TESTS=OFF
-DBUILD_QT4_TESTS=OFF
-DBUILD_QT5_TESTS=OFF
-DBUILD_CPP_TESTS=OFF
-DENABLE_SPLASH=ON
-DENABLE_ZLIB=ON
-DENABLE_XPDF_HEADERS=ON
$(cmake-utils_use_enable curl LIBCURL)
$(cmake-utils_use_enable cxx CPP)
$(cmake-utils_use_enable utils)
$(cmake-utils_use_with cairo)
$(cmake-utils_use_with 

[gentoo-commits] proj/kde:master commit in: media-gfx/kgraphviewer/

2015-07-13 Thread Michael Palimaka
commit: e9837852cc0798d57403bc3644a433e7b4d9d8a2
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Fri Jul 10 22:21:47 2015 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jul 13 14:54:15 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e9837852

[media-gfx/kgraphviewer] Add kf5 version

Package-Manager: portage-2.2.20

 media-gfx/kgraphviewer/kgraphviewer-.ebuild | 39 +
 media-gfx/kgraphviewer/metadata.xml |  5 
 2 files changed, 44 insertions(+)

diff --git a/media-gfx/kgraphviewer/kgraphviewer-.ebuild 
b/media-gfx/kgraphviewer/kgraphviewer-.ebuild
new file mode 100644
index 000..96d19ec
--- /dev/null
+++ b/media-gfx/kgraphviewer/kgraphviewer-.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+EGIT_BRANCH=frameworks
+KDE_HANDBOOK=true
+inherit kde5
+
+DESCRIPTION=Graphviz dot graph file viewer
+HOMEPAGE=http://www.kde.org/applications/graphics/kgraphviewer/
+http://extragear.kde.org/apps/kgraphviewer/;
+
+LICENSE=GPL-2 FDL-1.2
+KEYWORDS=
+IUSE=
+
+RDEPEND=
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep khtml)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   =media-gfx/graphviz-2.30
+
+DEPEND=${RDEPEND}
+   dev-libs/boost
+

diff --git a/media-gfx/kgraphviewer/metadata.xml 
b/media-gfx/kgraphviewer/metadata.xml
new file mode 100644
index 000..a23f444
--- /dev/null
+++ b/media-gfx/kgraphviewer/metadata.xml
@@ -0,0 +1,5 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   herdkde/herd
+/pkgmetadata



[gentoo-commits] gentoo-x86 commit in sys-apps/etckeeper/files: etckeeper-1.15-gentoo.patch

2015-07-13 Thread Manuel Rueger (mrueg)
mrueg   15/07/13 14:06:15

  Removed:  etckeeper-1.15-gentoo.patch
  Log:
  Version bump. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )



[gentoo-commits] gentoo-x86 commit in sys-apps/etckeeper: etckeeper-1.18.1.ebuild ChangeLog etckeeper-1.15.ebuild

2015-07-13 Thread Manuel Rueger (mrueg)
mrueg   15/07/13 14:06:14

  Modified: ChangeLog
  Added:etckeeper-1.18.1.ebuild
  Removed:  etckeeper-1.15.ebuild
  Log:
  Version bump. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.50 sys-apps/etckeeper/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/etckeeper/ChangeLog?rev=1.50view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/etckeeper/ChangeLog?rev=1.50content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/etckeeper/ChangeLog?r1=1.49r2=1.50

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   12 Apr 2015 21:43:56 -  1.49
+++ ChangeLog   13 Jul 2015 14:06:14 -  1.50
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/etckeeper
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/ChangeLog,v 1.49 
2015/04/12 21:43:56 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/ChangeLog,v 1.50 
2015/07/13 14:06:14 mrueg Exp $
+
+*etckeeper-1.18.1 (13 Jul 2015)
+
+  13 Jul 2015; Manuel Rüger mr...@gentoo.org +etckeeper-1.18.1.ebuild,
+  -etckeeper-1.15.ebuild, -files/etckeeper-1.15-gentoo.patch:
+  Version bump. Remove old.
 
 *etckeeper-1.18 (12 Apr 2015)
 



1.1  sys-apps/etckeeper/etckeeper-1.18.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/etckeeper/etckeeper-1.18.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/etckeeper/etckeeper-1.18.1.ebuild?rev=1.1content-type=text/plain

Index: etckeeper-1.18.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/etckeeper/etckeeper-1.18.1.ebuild,v 
1.1 2015/07/13 14:06:14 mrueg Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit eutils bash-completion-r1 prefix python-r1

DESCRIPTION=A collection of tools to let /etc be stored in a repository
HOMEPAGE=https://etckeeper.branchable.com/;
SRC_URI=https://github.com/joeyh/etckeeper/archive/${PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-2
KEYWORDS=~amd64 ~arm ~x86
SLOT=0
IUSE=bazaar cron
REQUIRED_USE=bazaar? ( ${PYTHON_REQUIRED_USE} )

VCS_DEPEND=dev-vcs/git
dev-vcs/mercurial
dev-vcs/darcs
DEPEND=bazaar? ( dev-vcs/bzr )
RDEPEND=${DEPEND}
app-portage/portage-utils
cron? ( virtual/cron )
bazaar? ( ${PYTHON_DEPS} )
!bazaar? ( || ( ${VCS_DEPEND} ) )

src_prepare(){
epatch ${FILESDIR}/${PN}-1.18-gentoo.patch
}

src_compile() {
:
}

src_install(){
emake DESTDIR=${ED} install

bzr_install() {
${PYTHON} ./${PN}-bzr/__init__.py install --root=${ED} ||
die bzr support installation failed!
}
use bazaar  python_foreach_impl bzr_install

if use prefix; then
doenvd ${FILESDIR}/99${PN}
eprefixify ${ED%/}/etc/env.d/99${PN}
fi

newbashcomp bash_completion ${PN}
dodoc doc/README.mdwn
docinto examples
newdoc ${FILESDIR}/bashrc-r1 bashrc

if use cron ; then
exeinto /etc/cron.daily
newexe debian/cron.daily etckeeper
fi
}

pkg_postinst(){
elog ${PN} supports the following VCS: ${VCS_DEPEND}
elog   dev-vcs/bzr
elog This ebuild just ensures at least one is installed!
elog For dev-vcs/bzr you need to enable 'bazaar' useflag.
elog
elog You may want to adjust your /etc/portage/bashrc
elog see the example file in /usr/share/doc/${PF}/examples
elog
elog To initialise your etc-dir as a repository run:
elog ${PN} init -d /etc
}






[gentoo-commits] gentoo-x86 commit in app-admin/syslog-ng: ChangeLog syslog-ng-3.6.3.ebuild

2015-07-13 Thread Michael Sterrett (mr_bones_)
mr_bones_15/07/13 14:30:06

  Modified: ChangeLog
  Removed:  syslog-ng-3.6.3.ebuild
  Log:
  old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.431app-admin/syslog-ng/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-ng/ChangeLog?rev=1.431view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-ng/ChangeLog?rev=1.431content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-ng/ChangeLog?r1=1.430r2=1.431

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v
retrieving revision 1.430
retrieving revision 1.431
diff -u -r1.430 -r1.431
--- ChangeLog   3 Jul 2015 15:13:15 -   1.430
+++ ChangeLog   13 Jul 2015 14:30:06 -  1.431
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/syslog-ng
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v 1.430 
2015/07/03 15:13:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v 1.431 
2015/07/13 14:30:06 mr_bones_ Exp $
+
+  13 Jul 2015; Michael Sterrett mr_bon...@gentoo.org -syslog-ng-3.6.3.ebuild:
+  old
 
 *syslog-ng-3.6.4 (03 Jul 2015)
 






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

2015-07-13 Thread Devan Franchini
commit: a3ef79ecdc93c82a599cab3eef1be49d7ca40a9d
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 13:25:36 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 13:25:39 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=a3ef79ec

Adds switch on read_db if text is provided

Logically speaking, if the database document text is provided then
it will likely not be universal to every database provided. Therefore
adding another parameter that specifies the type of text that is being
provided will help distinguish which database type it is.

 layman/dbbase.py   | 11 ---
 layman/remotedb.py |  2 +-
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/layman/dbbase.py b/layman/dbbase.py
index 56ef158..09133c2 100644
--- a/layman/dbbase.py
+++ b/layman/dbbase.py
@@ -167,12 +167,17 @@ class DbBase(object):
 return
 
 
-def read_db(self, path, text=None):
+def read_db(self, path, text=None, text_type=None):
 '''
 Read the overlay database for installed overlay definitions.
 '''
-for types in self.db_types:
-db_ctl = self.mod_ctl.get_class(types)(self.config,
+if text and text_type:
+types = [text_type]
+else:
+types = self.db_types
+
+for t in types:
+db_ctl = self.mod_ctl.get_class(t)(self.config,
  self.overlays,
  self.paths,
  self.ignore,

diff --git a/layman/remotedb.py b/layman/remotedb.py
index cd6ece3..89caf7a 100644
--- a/layman/remotedb.py
+++ b/layman/remotedb.py
@@ -280,7 +280,7 @@ class RemoteDB(DbBase):
 def _check_download(self, olist, url):
 
 try:
-self.read_db(url, text=olist)
+self.read_db(url, text=olist, text_type=xml_db)
 except Exception as error:
 self.output.debug(RemoteDB._check_download(), url=%s \nolist:\n
 % url,2)



[gentoo-commits] gentoo-x86 commit in sys-apps/kbd: kbd-2.0.1-r1.ebuild kbd-2.0.1.ebuild kbd-2.0.2.ebuild kbd-2.0.3.ebuild ChangeLog

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/14 03:40:55

  Modified: kbd-2.0.1-r1.ebuild kbd-2.0.1.ebuild
kbd-2.0.2.ebuild kbd-2.0.3.ebuild ChangeLog
  Log:
  Add bug/upstream references for tests patch.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  sys-apps/kbd/kbd-2.0.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.1-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.1-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.1-r1.ebuild?r1=1.1r2=1.2

Index: kbd-2.0.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kbd-2.0.1-r1.ebuild 23 Apr 2014 16:51:22 -  1.1
+++ kbd-2.0.1-r1.ebuild 14 Jul 2015 03:40:55 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.1-r1.ebuild,v 1.1 
2014/04/23 16:51:22 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.1-r1.ebuild,v 1.2 
2015/07/14 03:40:55 vapier Exp $
 
 EAPI=5
 
@@ -45,7 +45,7 @@
 }
 
 src_prepare() {
-   epatch ${FILESDIR}/${PN}-2.0.0-tests.patch
+   epatch ${FILESDIR}/${PN}-2.0.0-tests.patch #485116
epatch ${FILESDIR}/${P}-stdarg.patch #497200
epatch ${FILESDIR}/${P}-big_endian.patch #508436
eautoreconf



1.4  sys-apps/kbd/kbd-2.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.1.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.1.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.1.ebuild?r1=1.3r2=1.4

Index: kbd-2.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kbd-2.0.1.ebuild18 Jan 2014 05:12:21 -  1.3
+++ kbd-2.0.1.ebuild14 Jul 2015 03:40:55 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.1.ebuild,v 1.3 
2014/01/18 05:12:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.1.ebuild,v 1.4 
2015/07/14 03:40:55 vapier Exp $
 
 EAPI=5
 
@@ -37,7 +37,7 @@
 }
 
 src_prepare() {
-   epatch ${FILESDIR}/${PN}-2.0.0-tests.patch
+   epatch ${FILESDIR}/${PN}-2.0.0-tests.patch #485116
epatch ${FILESDIR}/${P}-stdarg.patch #497200
eautoreconf
 }



1.2  sys-apps/kbd/kbd-2.0.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.2.ebuild?r1=1.1r2=1.2

Index: kbd-2.0.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kbd-2.0.2.ebuild1 Aug 2014 10:35:43 -   1.1
+++ kbd-2.0.2.ebuild14 Jul 2015 03:40:55 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.2.ebuild,v 1.1 
2014/08/01 10:35:43 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.2.ebuild,v 1.2 
2015/07/14 03:40:55 vapier Exp $
 
 EAPI=5
 
@@ -45,7 +45,7 @@
 }
 
 src_prepare() {
-   epatch ${FILESDIR}/${PN}-2.0.0-tests.patch
+   epatch ${FILESDIR}/${PN}-2.0.0-tests.patch #485116
eautoreconf
 }
 



1.2  sys-apps/kbd/kbd-2.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild?r1=1.1r2=1.2

Index: kbd-2.0.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-2.0.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 

[gentoo-commits] gentoo-x86 commit in sys-apps/kbd/files: kbd-2.0.0-tests.patch

2015-07-13 Thread Mike Frysinger (vapier)
vapier  15/07/14 03:40:55

  Modified: kbd-2.0.0-tests.patch
  Log:
  Add bug/upstream references for tests patch.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  sys-apps/kbd/files/kbd-2.0.0-tests.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/files/kbd-2.0.0-tests.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/files/kbd-2.0.0-tests.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/files/kbd-2.0.0-tests.patch?r1=1.1r2=1.2

Index: kbd-2.0.0-tests.patch
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/files/kbd-2.0.0-tests.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kbd-2.0.0-tests.patch   16 Sep 2013 19:51:11 -  1.1
+++ kbd-2.0.0-tests.patch   14 Jul 2015 03:40:55 -  1.2
@@ -1,3 +1,6 @@
+https://bugs.gentoo.org/485116
+http://lists.altlinux.org/pipermail/kbd/2015-July/000558.html
+
 --- configure.ac
 +++ configure.ac
 @@ -11,7 +11,13 @@






[gentoo-commits] gentoo-x86 commit in dev-ruby/facter: facter-3.0.1-r4.ebuild ChangeLog facter-3.0.1-r3.ebuild

2015-07-13 Thread Matt Thode (prometheanfire)
prometheanfire15/07/14 04:43:42

  Modified: ChangeLog
  Added:facter-3.0.1-r4.ebuild
  Removed:  facter-3.0.1-r3.ebuild
  Log:
  fixing multilib support for bug 554576
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x33ED3FD25AFC78BA)

Revision  ChangesPath
1.139dev-ruby/facter/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.139view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.139content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?r1=1.138r2=1.139

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog   12 Jul 2015 02:31:07 -  1.138
+++ ChangeLog   14 Jul 2015 04:43:42 -  1.139
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/facter
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.138 
2015/07/12 02:31:07 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.139 
2015/07/14 04:43:42 prometheanfire Exp $
+
+*facter-3.0.1-r4 (14 Jul 2015)
+
+  14 Jul 2015; Matthew Thode prometheanf...@gentoo.org
+  +facter-3.0.1-r4.ebuild, -facter-3.0.1-r3.ebuild:
+  fixing multilib support for bug 554576
 
 *facter-3.0.1-r3 (12 Jul 2015)
 



1.1  dev-ruby/facter/facter-3.0.1-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-3.0.1-r4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-3.0.1-r4.ebuild?rev=1.1content-type=text/plain

Index: facter-3.0.1-r4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-3.0.1-r4.ebuild,v 1.1 
2015/07/14 04:43:42 prometheanfire Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21 ruby22

inherit cmake-utils ruby-ng

DESCRIPTION=A cross-platform Ruby library for retrieving facts from operating 
systems
HOMEPAGE=http://www.puppetlabs.com/puppet/related-projects/facter/;
SRC_URI=https://downloads.puppetlabs.com/facter/${P}.tar.gz;
S=${S}/all/${P}

LICENSE=Apache-2.0
SLOT=0
IUSE=debug test
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86

CDEPEND=
=sys-devel/gcc-4.8:*
=dev-libs/boost-1.54
=dev-cpp/yaml-cpp-0.5.1
dev-libs/openssl:*
sys-apps/util-linux
app-emulation/virt-what
net-misc/curl

RDEPEND+= ${CDEPEND}
DEPEND+= test? ( ${CDEPEND} )

src_prepare() {
sed -i 's/\-Werror\ //g' vendor/leatherman/cmake/cflags.cmake || die
# Remove the code that installs facter.rb to the wrong directory.
sed -i '/RUBY_VENDORDIR/d' lib/CMakeLists.txt || die
# make it support multilib
sed -i 's/\ lib)/\ lib${LIB_SUFFIX})/g' lib/CMakeLists.txt || die
}

src_configure() {
local mycmakeargs=(
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_SYSCONFDIR=/etc
-DCMAKE_INSTALL_LOCALSTATEDIR=/var
)
if use debug; then
mycmakeargs+=(
  -DCMAKE_BUILD_TYPE=Debug
)
fi
cmake-utils_src_configure
}

each_ruby_install() {
doruby ${BUILD_DIR}/lib/facter.rb
}

src_install() {
cmake-utils_src_install
ruby-ng_src_install
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/cacti: cacti-0.8.8e.ebuild ChangeLog

2015-07-13 Thread Jeroen Roovers (jer)
jer 15/07/14 05:25:16

  Modified: ChangeLog
  Added:cacti-0.8.8e.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.208net-analyzer/cacti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/ChangeLog?rev=1.208view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/ChangeLog?rev=1.208content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/ChangeLog?r1=1.207r2=1.208

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cacti/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog   29 Jun 2015 05:56:52 -  1.207
+++ ChangeLog   14 Jul 2015 05:25:16 -  1.208
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/cacti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/ChangeLog,v 1.207 
2015/06/29 05:56:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/ChangeLog,v 1.208 
2015/07/14 05:25:16 jer Exp $
+
+*cacti-0.8.8e (14 Jul 2015)
+
+  14 Jul 2015; Jeroen Roovers j...@gentoo.org +cacti-0.8.8e.ebuild:
+  Version bump.
 
   29 Jun 2015; Jeroen Roovers j...@gentoo.org -cacti-0.8.8b-r2.ebuild,
   -files/cacti-0.8.8b_empty_comment.patch, -files/cacti-r7420.patch:



1.1  net-analyzer/cacti/cacti-0.8.8e.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/cacti-0.8.8e.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/cacti-0.8.8e.ebuild?rev=1.1content-type=text/plain

Index: cacti-0.8.8e.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.8.8e.ebuild,v 1.1 
2015/07/14 05:25:16 jer Exp $

EAPI=5

inherit depend.php eutils webapp

# Support for _p* in version.
MY_P=${P/_p*/}

DESCRIPTION=Cacti is a complete frontend to rrdtool
HOMEPAGE=http://www.cacti.net/;
SRC_URI=http://www.cacti.net/downloads/${MY_P}.tar.gz;

LICENSE=GPL-2
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86
IUSE=snmp doc

need_httpd

RDEPEND=
dev-lang/php[cli,mysql,session,sockets,xml]
dev-php/adodb
net-analyzer/rrdtool[graph]
virtual/cron
virtual/mysql
snmp? ( =net-analyzer/net-snmp-5.2.0 )


src_prepare() {
sed -i -e \
's:$config\[library_path\] . 
/adodb/adodb.inc.php:adodb/adodb.inc.php:' \
${S}/include/global.php || die

rm -rf lib/adodb || die # don't use bundled adodb
}

src_compile() { :; }

src_install() {
webapp_src_preinst

rm LICENSE README || die
dodoc docs/{CHANGELOG,CONTRIB,README,txt/manual.txt}
use doc  dohtml -r docs/html/
rm -rf docs

edos2unix `find -type f -name '*.php'`

dodir ${MY_HTDOCSDIR}
cp -r . ${D}${MY_HTDOCSDIR}

webapp_serverowned ${MY_HTDOCSDIR}/rra
webapp_serverowned ${MY_HTDOCSDIR}/log/cacti.log
webapp_configfile ${MY_HTDOCSDIR}/include/config.php
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt

webapp_src_install
}






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

2015-07-13 Thread Evan Teran
commit: 1250c78913e6593944098a62bf8f2812068edf68
Author: Evan Teran evan.teran AT gmail DOT com
AuthorDate: Tue Jul 14 02:01:17 2015 +
Commit: Evan Teran evan.teran AT gmail DOT com
CommitDate: Tue Jul 14 02:01:17 2015 +
URL:https://gitweb.gentoo.org/proj/vmware.git/commit/?id=1250c789

added some comments for patches

Package-Manager: portage-2.2.20

 app-emulation/vmware-modules/files/304-3.10-00-dentry.patch| 1 +
 app-emulation/vmware-modules/files/304-3.10-01-inode.patch | 3 +++
 app-emulation/vmware-modules/files/304-3.10-02-control.patch   | 2 ++
 app-emulation/vmware-modules/files/304-3.10-03-inline.patch| 1 +
 app-emulation/vmware-modules/files/304-3.18-00-version-redefined.patch | 1 +
 app-emulation/vmware-modules/files/304-3.19-00-compat-namei.patch  | 1 +
 app-emulation/vmware-modules/files/304-3.19-01-dentry.patch| 1 +
 app-emulation/vmware-modules/files/304-3.19-03-iovec.patch | 1 +
 app-emulation/vmware-modules/files/304-3.19-04-iovec.patch | 1 +
 app-emulation/vmware-modules/files/304-3.19-05-vmci_qpair.patch| 1 +
 app-emulation/vmware-modules/files/304-3.19-06-vsock.patch | 1 +
 app-emulation/vmware-modules/files/304-3.19-07-vsock.patch | 1 +
 12 files changed, 15 insertions(+)

diff --git a/app-emulation/vmware-modules/files/304-3.10-00-dentry.patch 
b/app-emulation/vmware-modules/files/304-3.10-00-dentry.patch
index a0bb8b8..5cc445f 100644
--- a/app-emulation/vmware-modules/files/304-3.10-00-dentry.patch
+++ b/app-emulation/vmware-modules/files/304-3.10-00-dentry.patch
@@ -1,3 +1,4 @@
+Minor change the API, now it just gets passed flags instead of a pointer to 
the nameidata
 --- a/vmblock-only/linux/dentry.c  2015-02-07 03:11:55.0 +0300
 +++ c/vmblock-only/linux/dentry.c  2015-02-24 03:58:06.038605919 +0300
 @@ -32,7 +32,11 @@

diff --git a/app-emulation/vmware-modules/files/304-3.10-01-inode.patch 
b/app-emulation/vmware-modules/files/304-3.10-01-inode.patch
index cf4ccd9..e12d84d 100644
--- a/app-emulation/vmware-modules/files/304-3.10-01-inode.patch
+++ b/app-emulation/vmware-modules/files/304-3.10-01-inode.patch
@@ -1,3 +1,6 @@
+Minor change the API, now it just gets passed flags instead of a pointer to 
the nameidata
+Properly initializes UID/GID with repsect to namespaces
+Some changes the readlink/setlink APIs
 --- a/vmblock-only/linux/inode.c   2015-02-07 03:11:55.0 +0300
 +++ c/vmblock-only/linux/inode.c   2015-02-24 03:58:06.039605762 +0300
 @@ -35,9 +35,15 @@

diff --git a/app-emulation/vmware-modules/files/304-3.10-02-control.patch 
b/app-emulation/vmware-modules/files/304-3.10-02-control.patch
index bd3a265..9288353 100644
--- a/app-emulation/vmware-modules/files/304-3.10-02-control.patch
+++ b/app-emulation/vmware-modules/files/304-3.10-02-control.patch
@@ -1,3 +1,5 @@
+The API to create proc entries now takes the file ops structure directly, 
instead of being set after the fact
+Using new __getname/__putname API
 --- a/vmblock-only/linux/control.c 2015-02-07 03:11:55.0 +0300
 +++ c/vmblock-only/linux/control.c 2015-02-24 03:58:06.038605919 +0300
 @@ -208,9 +208,11 @@

diff --git a/app-emulation/vmware-modules/files/304-3.10-03-inline.patch 
b/app-emulation/vmware-modules/files/304-3.10-03-inline.patch
index 73c2a5f..fa8f36a 100644
--- a/app-emulation/vmware-modules/files/304-3.10-03-inline.patch
+++ b/app-emulation/vmware-modules/files/304-3.10-03-inline.patch
@@ -1,3 +1,4 @@
+Hushes a warning
 --- a/vmmon-only/linux/driver.c2015-02-07 03:54:16.0 +0300
 +++ c/vmmon-only/linux/driver.c2015-02-24 03:58:06.042605293 +0300
 @@ -1328,7 +1328,9 @@

diff --git 
a/app-emulation/vmware-modules/files/304-3.18-00-version-redefined.patch 
b/app-emulation/vmware-modules/files/304-3.18-00-version-redefined.patch
index 2d38824..22d6325 100644
--- a/app-emulation/vmware-modules/files/304-3.18-00-version-redefined.patch
+++ b/app-emulation/vmware-modules/files/304-3.18-00-version-redefined.patch
@@ -1,3 +1,4 @@
+Hushes some (but not all warnings) relating to redefinitions of this define
 --- a/vmci-only/shared/vm_device_version.h 2015-02-07 03:11:55.0 
+0300
 +++ c/vmci-only/shared/vm_device_version.h 2015-02-24 03:58:06.041605450 
+0300
 @@ -53,7 +53,9 @@

diff --git a/app-emulation/vmware-modules/files/304-3.19-00-compat-namei.patch 
b/app-emulation/vmware-modules/files/304-3.19-00-compat-namei.patch
index ec73500..0182077 100644
--- a/app-emulation/vmware-modules/files/304-3.19-00-compat-namei.patch
+++ b/app-emulation/vmware-modules/files/304-3.19-00-compat-namei.patch
@@ -1,3 +1,4 @@
+A copy of this since it is no longer exported by the kernel headers
 --- a/vmblock-only/shared/compat_namei.h   2015-02-07 03:11:55.0 
+0300
 +++ c/vmblock-only/shared/compat_namei.h   2015-02-24 03:51:25.235286047 
+0300
 @@ -21,6 +21,20 @@

diff --git 

[gentoo-commits] dev/mrueg:master commit in: net-im/toxic/

2015-07-13 Thread Manuel Rüger
commit: 637e29cf85d1db7f9421cfb59fe7df831ef406b9
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Mon Jul 13 17:14:37 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Mon Jul 13 17:14:37 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=637e29cf

[net-im/toxic] Drop unused and probably broken version.

 net-im/toxic/metadata.xml  |  8 
 net-im/toxic/toxic-.ebuild | 32 
 2 files changed, 40 deletions(-)

diff --git a/net-im/toxic/metadata.xml b/net-im/toxic/metadata.xml
deleted file mode 100644
index bfcb697..000
--- a/net-im/toxic/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
-pkgmetadata
-   maintainer
-   emailmr...@gentoo.org/email
-   nameManuel Rüger/name
-   /maintainer
-/pkgmetadata

diff --git a/net-im/toxic/toxic-.ebuild b/net-im/toxic/toxic-.ebuild
deleted file mode 100644
index d524b40..000
--- a/net-im/toxic/toxic-.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-EGIT_REPO_URI=https://github.com/Tox/toxic;
-
-inherit git-r3 multilib autotools-utils
-
-DESCRIPTION=Console client for Tox
-HOMEPAGE=https://github.com/tox/toxic;
-
-LICENSE=GPL-3
-SLOT=0
-KEYWORDS=
-IUSE=
-
-RDEPEND=sys-libs/ncurses
-   net-im/tox-core
-   dev-libs/libsodium
-DEPEND=${RDEPEND}
-   virtual/pkgconfig
-
-src_prepare() {
-   eautoreconf
-}
-
-pkg_postinst() {
-   elog DHT node list is available via 
https://gist.github.com/Proplex/6124860;
-   elog or in #tox @ irc.freenode.org
-}



[gentoo-commits] dev/mrueg:master commit in: net-im/tox-core/

2015-07-13 Thread Manuel Rüger
commit: d77ddb6258b864861ae8a82738c1a657925d1866
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Mon Jul 13 17:14:53 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Mon Jul 13 17:14:53 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=d77ddb62

[net-im/tox-core] Drop unused and probably broken version.

 net-im/tox-core/metadata.xml | 16 
 net-im/tox-core/tox-core-.ebuild | 50 
 2 files changed, 66 deletions(-)

diff --git a/net-im/tox-core/metadata.xml b/net-im/tox-core/metadata.xml
deleted file mode 100644
index 7d93b1a..000
--- a/net-im/tox-core/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
-pkgmetadata
-   maintainer
-   emailmr...@gentoo.org/email
-   nameManuel Rüger/name
-   /maintainer
-   longdescription
-   Project Tox, also known as Tox, is a FOSS (Free and Open Source 
Software) instant messaging application aimed to replace Skype.
-   /longdescription
-   use
-   flag name='dht-bootstrap-daemon'Dummy useflag, doesn't change 
anything./flag
-   flag name='nacl'Use nacl instead of libsodium/flag
-   flag name='ntox'Build Ncurses frontend for tox/flag
-   /use
-/pkgmetadata

diff --git a/net-im/tox-core/tox-core-.ebuild 
b/net-im/tox-core/tox-core-.ebuild
deleted file mode 100644
index d48efbe..000
--- a/net-im/tox-core/tox-core-.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit autotools multilib eutils git-r3
-
-DESCRIPTION=Free as in freedom Skype replacement
-HOMEPAGE=http://tox.im/;
-EGIT_REPO_URI=https://github.com/irungentoo/ProjectTox-Core.git;
-
-LICENSE=GPL-3+
-SLOT=0
-KEYWORDS=
-IUSE=+dht-bootstrap-daemon -nacl +ntox static-libs test
-
-RDEPEND=
-   dht-bootstrap-daemon? ( dev-libs/libconfig )
-   !nacl? ( dev-libs/libsodium )
-   ntox? ( sys-libs/ncurses )
-DEPEND=${RDEPEND}
-   virtual/pkgconfig
-   nacl? ( net-libs/nacl )
-   test? ( dev-libs/check )
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable nacl) \
-   $(use_enable test tests) \
-   $(use_enable ntox) \
-   $(use_enable dht-bootstrap-daemon) \
-   $(use_enable static-libs static) \
-   --with-nacl-headers=/usr/include/nacl \
-   --with-nacl-libs=/usr/$(get_libdir)/nacl
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}
-
-pkg_postinst() {
-   elog DHT node list is available via 
https://gist.github.com/Proplex/6124860;
-   elog or in #tox @ irc.freenode.org
-}



[gentoo-commits] gentoo-x86 commit in dev-ml/pa_structural_sexp: metadata.xml ChangeLog pa_structural_sexp-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:00:15

  Added:metadata.xml ChangeLog
pa_structural_sexp-112.35.00.ebuild
  Log:
  initial import, ebuild by me
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.1  dev-ml/pa_structural_sexp/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_structural_sexp/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_structural_sexp/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdml/herd
/pkgmetadata



1.1  dev-ml/pa_structural_sexp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_structural_sexp/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_structural_sexp/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-ml/pa_structural_sexp
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_structural_sexp/ChangeLog,v 1.1 
2015/07/13 18:00:15 aballier Exp $

*pa_structural_sexp-112.35.00 (13 Jul 2015)

  13 Jul 2015; Alexis Ballier aball...@gentoo.org
  +pa_structural_sexp-112.35.00.ebuild, +metadata.xml:
  initial import, ebuild by me




1.1  
dev-ml/pa_structural_sexp/pa_structural_sexp-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_structural_sexp/pa_structural_sexp-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/pa_structural_sexp/pa_structural_sexp-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: pa_structural_sexp-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/pa_structural_sexp/pa_structural_sexp-112.35.00.ebuild,v
 1.1 2015/07/13 18:00:15 aballier Exp $

EAPI=5

inherit oasis

DESCRIPTION=Quotation expanders to simplify building s-expressions from ocaml 
values
HOMEPAGE=http://bitbucket.org/yminsky/ocaml-core/wiki/Home;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND=dev-ml/camlp4:=
dev-ml/type-conv:=
dev-ml/sexplib:=
RDEPEND=${DEPEND}

DOCS=( README.md )






[gentoo-commits] gentoo-x86 commit in sec-policy/selinux-ceph: - New directory

2015-07-13 Thread Sven Vermeulen (swift)
swift   15/07/13 18:04:46

  Log:
  Directory /var/cvsroot/gentoo-x86/sec-policy/selinux-ceph added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-misc/gnome-online-miners: metadata.xml gnome-online-miners-3.14.3-r1.ebuild ChangeLog gnome-online-miners-3.14.2.ebuild gnome-online-miners-3.14.1.ebuild

2015-07-13 Thread Pacho Ramos (pacho)
pacho   15/07/13 18:06:57

  Modified: metadata.xml ChangeLog
  Added:gnome-online-miners-3.14.3-r1.ebuild
  Removed:  gnome-online-miners-3.14.2.ebuild
gnome-online-miners-3.14.1.ebuild
  Log:
  flickr support should be optional as, otherwise, it will crash if 
dependencies are not present at runtime. Drop old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.4  net-misc/gnome-online-miners/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/metadata.xml?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/metadata.xml?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/metadata.xml?r1=1.3r2=1.4

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/gnome-online-miners/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml19 Apr 2015 15:50:35 -  1.3
+++ metadata.xml13 Jul 2015 18:06:57 -  1.4
@@ -1,5 +1,8 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdgnome/herd
+herdgnome/herd
+use
+   flag name=flickrEnable Flickr support/flag
+/use
 /pkgmetadata



1.22 net-misc/gnome-online-miners/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/gnome-online-miners/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   26 Jun 2015 09:23:42 -  1.21
+++ ChangeLog   13 Jul 2015 18:06:57 -  1.22
@@ -1,6 +1,14 @@
 # ChangeLog for net-misc/gnome-online-miners
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gnome-online-miners/ChangeLog,v 
1.21 2015/06/26 09:23:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gnome-online-miners/ChangeLog,v 
1.22 2015/07/13 18:06:57 pacho Exp $
+
+*gnome-online-miners-3.14.3-r1 (13 Jul 2015)
+
+  13 Jul 2015; Pacho Ramos pa...@gentoo.org
+  +gnome-online-miners-3.14.3-r1.ebuild, -gnome-online-miners-3.14.1.ebuild,
+  -gnome-online-miners-3.14.2.ebuild, metadata.xml:
+  flickr support should be optional as, otherwise, it will crash if 
dependencies
+  are not present at runtime. Drop old.
 
   26 Jun 2015; Agostino Sarubbo a...@gentoo.org
   gnome-online-miners-3.14.3.ebuild:



1.1  
net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild?rev=1.1content-type=text/plain

Index: gnome-online-miners-3.14.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild,v
 1.1 2015/07/13 18:06:57 pacho Exp $

EAPI=5
GCONF_DEBUG=no

inherit gnome2

DESCRIPTION=Crawls through your online content
HOMEPAGE=https://wiki.gnome.org/Projects/GnomeOnlineMiners;

LICENSE=GPL-2+
SLOT=0
IUSE=flickr
KEYWORDS=~amd64 ~x86

# libgdata[gnome] needed for goa support
RDEPEND=
=app-misc/tracker-1:0=
=dev-libs/glib-2.35.1:2
=dev-libs/libgdata-0.15.2:0=[gnome]
=media-libs/grilo-0.2.6:0.2
=net-libs/gnome-online-accounts-3.13.3
=net-libs/libgfbgraph-0.2.2:0.2
=net-libs/libzapojit-0.0.2
flickr? ( media-plugins/grilo-plugins[flickr] )

DEPEND=${RDEPEND}
virtual/pkgconfig


src_configure() {
gnome2_src_configure \
$(use_enable flickr) \
--disable-static \
--enable-facebook \
--enable-google \
--enable-media-server \
--enable-owncloud \
--enable-windows-live
}






[gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.56.0-r1.ebuild ChangeLog

2015-07-13 Thread Mikle Kolyada (zlogene)
zlogene 15/07/13 18:08:58

  Modified: boost-1.56.0-r1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #554712
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.7  dev-libs/boost/boost-1.56.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild?r1=1.6r2=1.7

Index: boost-1.56.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- boost-1.56.0-r1.ebuild  8 Apr 2015 17:51:55 -   1.6
+++ boost-1.56.0-r1.ebuild  13 Jul 2015 18:08:58 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v 1.6 
2015/04/08 17:51:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v 1.7 
2015/07/13 18:08:58 zlogene Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -16,7 +16,7 @@
 
 LICENSE=Boost-1.0
 SLOT=0/${PV} # ${PV} instead ${MAJOR_V} due to bug 486122
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt
 
 IUSE=context debug doc icu +nls mpi python static-libs +threads tools
 



1.356dev-libs/boost/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.356view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.356content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.355r2=1.356

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.355
retrieving revision 1.356
diff -u -r1.355 -r1.356
--- ChangeLog   13 Jul 2015 12:51:01 -  1.355
+++ ChangeLog   13 Jul 2015 18:08:58 -  1.356
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/boost
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.355 2015/07/13 
12:51:01 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.356 2015/07/13 
18:08:58 zlogene Exp $
+
+  13 Jul 2015; Mikle Kolyada zlog...@gentoo.org boost-1.56.0-r1.ebuild:
+  amd64 stable wrt bug #554712
 
 *boost-1.58.0 (13 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ml/incremental: metadata.xml ChangeLog incremental-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:34:05

  Added:metadata.xml ChangeLog incremental-112.35.00.ebuild
  Log:
  initial import, ebuild by me
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.1  dev-ml/incremental/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/incremental/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/incremental/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
herdml/herd
/pkgmetadata



1.1  dev-ml/incremental/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/incremental/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/incremental/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-ml/incremental
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/incremental/ChangeLog,v 1.1 
2015/07/13 18:34:05 aballier Exp $

*incremental-112.35.00 (13 Jul 2015)

  13 Jul 2015; Alexis Ballier aball...@gentoo.org
  +incremental-112.35.00.ebuild, +metadata.xml:
  initial import, ebuild by me




1.1  dev-ml/incremental/incremental-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/incremental/incremental-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/incremental/incremental-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: incremental-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/incremental/incremental-112.35.00.ebuild,v 1.1 
2015/07/13 18:34:05 aballier Exp $

EAPI=5

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Library for incremental computations
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND=
dev-ml/core:=
dev-ml/fieldslib:=
dev-ml/pa_ounit:=
dev-ml/pa_test:=
dev-ml/sexplib:=

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in dev-ml/core_profiler: - New directory

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:47:19

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-ml/core_profiler added to the repository



[gentoo-commits] gentoo-x86 commit in dev-ml/core_profiler: core_profiler-112.35.00.ebuild metadata.xml ChangeLog

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:48:04

  Added:core_profiler-112.35.00.ebuild metadata.xml
ChangeLog
  Log:
  initial import, ebuild by me
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.1  dev-ml/core_profiler/core_profiler-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_profiler/core_profiler-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_profiler/core_profiler-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: core_profiler-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/core_profiler/core_profiler-112.35.00.ebuild,v 
1.1 2015/07/13 18:48:04 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1

inherit eutils oasis

MY_P=${P/_/\~}
DESCRIPTION=Jane Street's profiling library
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

RDEPEND=
dev-ml/core:=
dev-ml/core_extended:=
dev-ml/core_bench:=
dev-ml/textutils:=
dev-ml/pa_test:=
dev-ml/pa_bench:=
dev-ml/pa_ounit:=
dev-ml/re2:=

DEPEND=${RDEPEND}
DOCS=( README.md )



1.1  dev-ml/core_profiler/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_profiler/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_profiler/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
herdml/herd
/pkgmetadata



1.1  dev-ml/core_profiler/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_profiler/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_profiler/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-ml/core_profiler
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_profiler/ChangeLog,v 1.1 
2015/07/13 18:48:04 aballier Exp $

*core_profiler-112.35.00 (13 Jul 2015)

  13 Jul 2015; Alexis Ballier aball...@gentoo.org
  +core_profiler-112.35.00.ebuild, +metadata.xml:
  initial import, ebuild by me







[gentoo-commits] proj/layman:master commit in: layman/overlays/

2015-07-13 Thread Devan Franchini
commit: 9128580881ba70dbd1bd08e4cdcd8731a46699cd
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 18:52:15 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 18:52:17 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=91285808

overlay.py: Modifies error message for missing name entry

If the Overlay object has no name then trying to use the name would
result in erroneous or illogical reporting.

 layman/overlays/overlay.py | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index de0a035..024989c 100755
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -157,8 +157,7 @@ class Overlay(object):
 if _name != None:
 self.name = encode(_name)
 else:
-msg = 'Overlay from dict(), %(name)s is missing a name entry!'\
-  % {'name': self.name}
+msg = 'Overlay from_dict(), name entry missing from dictionary!'
 raise Exception(msg)
 
 _sources = overlay['source']
@@ -383,8 +382,7 @@ class Overlay(object):
 elif 'name' in xml.attrib:
 self.name = encode(xml.attrib['name'])
 else:
-msg = 'Overlay from_xml(), %(name)s is missing a name entry!'\
-  % {'name': self.name}
+msg = 'Overlay from_xml(), name entry missing from xml!'
 raise Exception(msg)
 
 _sources = xml.findall('source')



[gentoo-commits] gentoo-x86 commit in dev-ml/incremental: - New directory

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:33:17

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-ml/incremental added to the repository



[gentoo-commits] proj/layman:master commit in: layman/overlays/

2015-07-13 Thread Devan Franchini
commit: 73aa4d1bc690dbef69c0c00dfc629209a3a8540e
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 19:00:41 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 19:00:41 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=73aa4d1b

overlay.py: Corrects else on line 316

 layman/overlays/overlay.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index 024989c..cf99499 100755
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -313,7 +313,7 @@ class Overlay(object):
   'entry!' % {'name': self.name}
 if not ignore:
 raise Exception(msg)
-else ignore == 1:
+elif ignore == 1:
 self.output.warn(msg, 4)
 
  if 'description' in overlay:



[gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.4.3-r1.ebuild gnutls-3.3.16-r1.ebuild ChangeLog gnutls-3.4.3.ebuild gnutls-3.3.16.ebuild

2015-07-13 Thread Alon Bar-Lev (alonbl)
alonbl  15/07/13 19:08:22

  Modified: ChangeLog
  Added:gnutls-3.4.3-r1.ebuild gnutls-3.3.16-r1.ebuild
  Removed:  gnutls-3.4.3.ebuild gnutls-3.3.16.ebuild
  Log:
  Add texinfo dependency and force doc USE as top level doc in configure, 
bug#554682
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
BF20DC51)

Revision  ChangesPath
1.550net-libs/gnutls/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.550view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.550content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.549r2=1.550

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.549
retrieving revision 1.550
diff -u -r1.549 -r1.550
--- ChangeLog   12 Jul 2015 14:33:50 -  1.549
+++ ChangeLog   13 Jul 2015 19:08:22 -  1.550
@@ -1,6 +1,14 @@
 # ChangeLog for net-libs/gnutls
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.549 
2015/07/12 14:33:50 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.550 
2015/07/13 19:08:22 alonbl Exp $
+
+*gnutls-3.4.3-r1 (13 Jul 2015)
+*gnutls-3.3.16-r1 (13 Jul 2015)
+
+  13 Jul 2015; Alon Bar-Lev alo...@gentoo.org +gnutls-3.3.16-r1.ebuild,
+  +gnutls-3.4.3-r1.ebuild, -gnutls-3.3.16.ebuild, -gnutls-3.4.3.ebuild:
+  Add texinfo dependency and force doc USE as top level doc in configure,
+  bug#554682
 
 *gnutls-3.3.16 (12 Jul 2015)
 *gnutls-3.4.3 (12 Jul 2015)



1.1  net-libs/gnutls/gnutls-3.4.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.4.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.4.3-r1.ebuild?rev=1.1content-type=text/plain

Index: gnutls-3.4.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.4.3-r1.ebuild,v 1.1 
2015/07/13 19:08:22 alonbl Exp $

EAPI=5

inherit autotools libtool eutils multilib-minimal versionator

DESCRIPTION=A TLS 1.2 and SSL 3.0 implementation for the GNU project
HOMEPAGE=http://www.gnutls.org/;
SRC_URI=mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz

# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library.
# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled.
LICENSE=GPL-3 LGPL-3
SLOT=0/30 # libgnutls.so number
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris
IUSE_LINGUAS= en cs de fi fr it ms nl pl sv uk vi zh_CN
IUSE=+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs 
test +tools zlib ${IUSE_LINGUAS// / linguas_}
# heartbeat support is not disabled until re-licensing happens fullyf

# NOTICE: sys-devel/autogen is required at runtime as we
# use system libopts
RDEPEND==dev-libs/libtasn1-3.9[${MULTILIB_USEDEP}]
=dev-libs/nettle-3.1[gmp,${MULTILIB_USEDEP}]
=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}]
tools? ( sys-devel/autogen )
crywrap? ( net-dns/libidn )
dane? ( =net-dns/unbound-1.4.20[${MULTILIB_USEDEP}] )
guile? ( =dev-scheme/guile-1.8:*[networking] )
nls? ( =virtual/libintl-0-r1[${MULTILIB_USEDEP}] )
pkcs11? ( =app-crypt/p11-kit-0.23.1[${MULTILIB_USEDEP}] )
zlib? ( =sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
abi_x86_32? (
!=app-emulation/emul-linux-x86-baselibs-20140508
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)
DEPEND=${RDEPEND}
=sys-devel/automake-1.11.6
=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
doc? (
sys-apps/texinfo
dev-util/gtk-doc
)
nls? ( sys-devel/gettext )
test? ( app-misc/datefudge )

DOCS=( AUTHORS ChangeLog NEWS README THANKS doc/TODO )

S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)

pkg_setup() {
# bug#520818
export TZ=UTC
}

src_prepare() {
sed -i \
-e 's/imagesdir = $(infodir)/imagesdir = $(htmldir)/' \
doc/Makefile.am || die

# force regeneration of autogen-ed files
local file
for file in $(grep -l AutoGen-ed src/*.c) ; do
rm src/$(basename ${file} .c).{c,h} || die
done

# force regeneration of makeinfo files
# have no idea why on 

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

2015-07-13 Thread Manuel Rüger
commit: e9554e24c95b92a0716e4f74b3696df1ceb63095
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Mon Jul 13 19:30:35 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Mon Jul 13 19:30:35 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=e9554e24

[dev-python/acme] Add python3 support.

Package-Manager: portage-2.2.20

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

diff --git a/dev-python/acme/acme-.ebuild b/dev-python/acme/acme-.ebuild
index 20899da..0c5aad3 100644
--- a/dev-python/acme/acme-.ebuild
+++ b/dev-python/acme/acme-.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=(python2_7)
+PYTHON_COMPAT=(python{2_7,3_3,3_4})
 
 EGIT_REPO_URI=https://github.com/letsencrypt/letsencrypt.git;
 



[gentoo-commits] gentoo-x86 commit in dev-ml/re2: ChangeLog re2-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:31:25

  Modified: ChangeLog
  Added:re2-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.6  dev-ml/re2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/re2/ChangeLog?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/re2/ChangeLog?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/re2/ChangeLog?r1=1.5r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/re2/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   22 Dec 2014 09:45:12 -  1.5
+++ ChangeLog   13 Jul 2015 18:31:25 -  1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/re2
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/re2/ChangeLog,v 1.5 2014/12/22 
09:45:12 aballier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/re2/ChangeLog,v 1.6 2015/07/13 
18:31:25 aballier Exp $
+
+*re2-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +re2-112.35.00.ebuild:
+  version bump
 
 *re2-112.06.00 (22 Dec 2014)
 



1.1  dev-ml/re2/re2-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/re2/re2-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/re2/re2-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: re2-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/re2/re2-112.35.00.ebuild,v 1.1 
2015/07/13 18:31:25 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=OCaml bindings for RE2
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND==dev-ml/type-conv-112:=
dev-ml/core:=
dev-ml/bin-prot:=
dev-ml/sexplib:=
dev-ml/comparelib:=
dev-ml/pa_test:=
dev-libs/re2:=
dev-ml/camlp4:=
RDEPEND=${DEPEND}

DOCS=( README.txt )
S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r8.ebuild metadata.xml ChangeLog

2015-07-13 Thread Pacho Ramos (pacho)
pacho   15/07/13 18:57:25

  Modified: metadata.xml ChangeLog
  Added:avahi-0.6.31-r8.ebuild
  Log:
  Add symlink needed for starting avahi properly on systemd (#537000)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.8  net-dns/avahi/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/metadata.xml?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/metadata.xml?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/metadata.xml?r1=1.7r2=1.8

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml26 Nov 2012 19:54:48 -  1.7
+++ metadata.xml13 Jul 2015 18:57:25 -  1.8
@@ -13,8 +13,6 @@
flag name='howl-compat'Enable compat libraries for howl/flag
flag name=gtk3Build the avahi-ui-gtk3 library, and use gtk3 for the
avahi utilities under USE=utils/flag
-   flag name=introspectionUse pkgdev-libs/gobject-introspection/pkg
-   for introspection/flag
flag name='mdnsresponder-compat'Enable compat libraries for
mDNSResponder/flag
flag name=utilsInstall the avahi gtk+ utils avahi-discover, bssh, 
and



1.286net-dns/avahi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.286view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.286content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.285r2=1.286

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog   8 Apr 2015 18:16:54 -   1.285
+++ ChangeLog   13 Jul 2015 18:57:25 -  1.286
@@ -1,6 +1,12 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.285 2015/04/08 
18:16:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.286 2015/07/13 
18:57:25 pacho Exp $
+
+*avahi-0.6.31-r8 (13 Jul 2015)
+
+  13 Jul 2015; Pacho Ramos pa...@gentoo.org +avahi-0.6.31-r8.ebuild,
+  metadata.xml:
+  Add symlink needed for starting avahi properly on systemd (#537000)
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org avahi-0.6.31-r6.ebuild,
   avahi-0.6.31-r7.ebuild:



1.1  net-dns/avahi/avahi-0.6.31-r8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild?rev=1.1content-type=text/plain

Index: avahi-0.6.31-r8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r8.ebuild,v 1.1 
2015/07/13 18:57:25 pacho Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=gdbm

WANT_AUTOMAKE=1.11

inherit autotools eutils flag-o-matic multilib multilib-minimal mono-env \
python-r1 systemd user

DESCRIPTION=System which facilitates service discovery on a local network
HOMEPAGE=http://avahi.org/;
SRC_URI=http://avahi.org/download/${P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux
IUSE=autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 
kernel_linux mdnsresponder-compat mono nls python qt4 selinux test utils

REQUIRED_USE=
utils? ( || ( gtk gtk3 ) )
python? ( dbus gdbm )
mono? ( dbus )
howl-compat? ( dbus )
mdnsresponder-compat? ( dbus )


COMMON_DEPEND=
dev-libs/libdaemon
dev-libs/expat
=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
gdbm? ( =sys-libs/gdbm-1.10-r1[${MULTILIB_USEDEP}] )
qt4? ( dev-qt/qtcore:4[${MULTILIB_USEDEP}] )
gtk? ( x11-libs/gtk+:2[${MULTILIB_USEDEP}] )
gtk3? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
dbus? ( =sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
kernel_linux? ( sys-libs/libcap )
introspection? ( dev-libs/gobject-introspection:= )
mono? (
dev-lang/mono
gtk? ( dev-dotnet/gtk-sharp )
)
python? (
${PYTHON_DEPS}
gtk? ( dev-python/pygtk )
dbus? ( 

[gentoo-commits] proj/layman:master commit in: layman/overlays/

2015-07-13 Thread Devan Franchini
commit: 8279886d04bb1469753144c1d204fd1ae20f528f
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 19:05:30 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 19:05:30 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=8279886d

overlay.py: Fixes any other mistakes made in haste

 layman/overlays/overlay.py | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index cf99499..82e2f9f 100755
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -316,7 +316,7 @@ class Overlay(object):
 elif ignore == 1:
 self.output.warn(msg, 4)
 
- if 'description' in overlay:
+if 'description' in overlay:
 self.descriptions = []
 _descs = overlay['description']
 for d in _descs:
@@ -602,7 +602,10 @@ class Overlay(object):
 
 def source_types(self):
 for i in self.sources:
-yield i.typedef is_official(self):
+yield i.type
+
+
+def is_official(self):
 '''
 Is the overlay official?
 '''



[gentoo-commits] proj/layman:master commit in: layman/db_modules/json_db/

2015-07-13 Thread Devan Franchini
commit: a072bcba3fd58d5d860d855061e593e429d15d30
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 18:45:58 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 18:45:58 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=a072bcba

json_db.py: Adds JSON databasing support to layman

 layman/db_modules/json_db/__init__.py |  24 +++
 layman/db_modules/json_db/json_db.py  | 120 ++
 2 files changed, 144 insertions(+)

diff --git a/layman/db_modules/json_db/__init__.py 
b/layman/db_modules/json_db/__init__.py
new file mode 100644
index 000..e095f4f
--- /dev/null
+++ b/layman/db_modules/json_db/__init__.py
@@ -0,0 +1,24 @@
+# Copyright 2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+'''
+JSON database plug-in module for layman.
+'''
+
+module_spec = {
+'name': 'json_db',
+'description': __doc__,
+'provides':{
+'json-module': {
+'name': 'json_db',
+'class': 'DBHandler',
+'description': __doc__,
+'functions': ['add_new', 'read_db', 'write'],
+'func_desc': {
+'add_new': 'Adds overlay from provided document text',
+'read_db': 'Reads the list of overlays from database file',
+'write': 'Writes the list of overlays to database file',
+},
+}
+}
+}

diff --git a/layman/db_modules/json_db/json_db.py 
b/layman/db_modules/json_db/json_db.py
new file mode 100644
index 000..47413c6
--- /dev/null
+++ b/layman/db_modules/json_db/json_db.py
@@ -0,0 +1,120 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# LAYMAN JSON DB
+#
+# File:   json_db.py
+#
+# Access JSON overlay database(s).
+#
+# Copyright:
+# (c) 2015Devan Franchini
+# Distributed under the terms of the GNU General Public License v2
+#
+# Author(s):
+# Devan Franchini twitch...@gentoo.org
+#
+'''Handler for json overlay databases.'''
+
+from __future__ import unicode_literals
+
+__version__ = $Id: json.py 273 2015-07-10 10:10:49Z twitch153 $
+
+#===
+#
+# Dependencies
+#
+#---
+
+import json
+import sys
+
+from   layman.compatibility  import fileopen
+from   layman.overlays.overlay   import Overlay
+
+
+#py3.2+
+if sys.hexversion = 0x30200f0:
+_UNICODE = 'unicode'
+else:
+_UNICODE = 'UTF-8'
+
+
+
+#===
+#
+# Class DBHandler
+#
+#---
+
+class DBHandler(object):
+'''
+Handle a json overlay database.
+'''
+
+def __init__(self, config, overlays, paths=None, ignore=0,
+ ignore_init_read_errors=False):
+
+self.config = config
+self.ignore = ignore
+self.overlays = overlays
+self.paths = paths
+self.output = config['output']
+self.ignore_init_read_errors = ignore_init_read_errors
+
+self.output.debug('Initializing JSON overlay list handler', 8)
+
+
+def read_db(self, path, text=None):
+'''
+Read the overlay definition file.
+'''
+document = text
+
+if not document:
+try:
+with fileopen(path, 'r') as df:
+document = df.read()
+except Exception as error:
+if not self.ignore_init_read_errors:
+msg = 'JSON DBHandler - Failed to read the overlay list 
at'\
+  '(%(path)s)' % {'path': path}
+self.output.error(msg)
+raise error
+
+self.add_new(document, origin=path)
+
+
+def add_new(self, document=None, origin=None):
+'''
+Reads in provided json text and generates overlays to populate 
database.
+'''
+if not document:
+msg = 'JSON DBHandler - add_new() failed: JSON text cannot be 
none'\
+  '.\nOrigin: %(path)s' % {'path': origin}
+self.output.warn(msg)
+return False
+
+load = json.loads(document)['repo']
+
+for ovl in load:
+overlay = Overlay(self.config, json=ovl, ignore=self.ignore)
+self.overlays[overlay.name] = overlay
+
+return True
+
+
+def write(self, path):
+'''
+Write the list of overlays to a file.
+'''
+try:
+repo = {'@encoding': 'unicode', '@version': '1.0', 'repo': []}
+repo['repo'] = [self.overlays[key].to_json() for key in 

[gentoo-commits] proj/layman:master commit in: layman/overlays/

2015-07-13 Thread Devan Franchini
commit: e4162f49357e04722e8db20493e15538e657c3bd
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 18:36:51 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 18:36:54 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=e4162f49

overlay.py: Adds json support for overlay definitions

Also reorganizes functions alphabetically.

 layman/overlays/overlay.py | 658 +++--
 1 file changed, 403 insertions(+), 255 deletions(-)

diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index 423b91e..de0a035 100755
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -56,7 +56,7 @@ WHITESPACE_REGEX = re.compile('\s+')
 class Overlay(object):
 ''' Derive the real implementations from this.'''
 
-def __init__(self, config, xml=None, ovl_dict=None,
+def __init__(self, config, json=None, ovl_dict=None, xml=None,
 ignore = 0):
 self.config = config
 self.output = config['output']
@@ -69,6 +69,59 @@ class Overlay(object):
 self.from_xml(xml, ignore)
 elif ovl_dict is not None:
 self.from_dict(ovl_dict, ignore)
+elif json is not None:
+self.from_json(ovl_dict, ignore)
+
+
+def __eq__(self, other):
+for i in ('descriptions', 'homepage', 'name', 'owner_email',
+'owner_name', 'priority', 'status'):
+if getattr(self, i) != getattr(other, i):
+return False
+for i in self.sources + other.sources:
+if not i in self.sources:
+return False
+if not i in other.sources:
+return False
+return True
+
+
+def __ne__(self, other):
+return not self.__eq__(other)
+
+
+def add(self, base):
+res = 1
+first_s = True
+
+self.sources = self.filter_protocols(self.sources)
+if not self.sources:
+msg = 'Overlay.add() error: overlay %(name)s does not support '\
+  ' the given\nprotocol(s) %(protocol)s and cannot be '\
+  'installed.'\
+  % {'name': self.name,
+ 'protocol': str(self.config['protocol_filter'])}
+self.output.error(msg)
+return 1
+
+for s in self.sources:
+if not first_s:
+self.output.info('\nTrying next source of listed sources...', 
4)
+try:
+res = s.add(base)
+if res == 0:
+# Worked, throw other sources away
+self.sources = [s]
+break
+except Exception as error:
+self.output.warn(str(error), 4)
+first_s = False
+return res
+
+
+def delete(self, base):
+assert len(self.sources) == 1
+return self.sources[0].delete(base)
 
 
 def filter_protocols(self, sources):
@@ -93,6 +146,226 @@ class Overlay(object):
 return _sources
 
 
+def from_dict(self, overlay, ignore):
+'''
+Process an overlay dictionary definition
+'''
+msg = 'Overlay from_dict(); overlay %(ovl)s' % {'ovl': str(overlay)}
+self.output.debug(msg, 6)
+
+_name = overlay['name']
+if _name != None:
+self.name = encode(_name)
+else:
+msg = 'Overlay from dict(), %(name)s is missing a name entry!'\
+  % {'name': self.name}
+raise Exception(msg)
+
+_sources = overlay['source']
+
+if _sources == None:
+msg = 'Overlay from_dict(), %(name)s is missing a source'\
+  'entry!' % {'name': self.name}
+raise Exception(msg)
+
+def create_dict_overlay_source(source_):
+_src, _type, _sub = source_
+self.ovl_type = _type
+try:
+_class = self.module_controller.get_class(_type)
+except InvalidModuleName:
+_class = self.module_controller.get_class('stub')
+
+_location = encode(_src)
+if _sub:
+self.branch = encode(_sub)
+else:
+self.branch = None
+
+return _class(parent=self, config=self.config,
+_location=_location, ignore=ignore)
+
+self.sources = [create_dict_overlay_source(e) for e in _sources]
+
+if 'owner_name' in overlay:
+_owner = overlay['owner_name']
+self.owner_name = encode(_owner)
+else:
+self.owner_name = None
+
+if 'owner_email' in overlay:
+_email = overlay['owner_email']
+self.owner_email = encode(_email)
+else:
+self.owner_email = None
+msg = 'Overlay from_dict(), %(name)s is missing an 
owner.email'\
+  ' entry!' % {'name': self.name}
+if not 

[gentoo-commits] proj/layman:master commit in: layman/db_modules/json_db/

2015-07-13 Thread Devan Franchini
commit: 547b6f70d35c00f1e6387ebdbdb4eead46b5af41
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 18:49:04 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 18:49:04 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=547b6f70

json_db/__init__.py: Modifies function descriptions

 layman/db_modules/json_db/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/layman/db_modules/json_db/__init__.py 
b/layman/db_modules/json_db/__init__.py
index e095f4f..1502b9d 100644
--- a/layman/db_modules/json_db/__init__.py
+++ b/layman/db_modules/json_db/__init__.py
@@ -15,9 +15,9 @@ module_spec = {
 'description': __doc__,
 'functions': ['add_new', 'read_db', 'write'],
 'func_desc': {
-'add_new': 'Adds overlay from provided document text',
+'add_new': 'Adds overlay(s) from provided database text',
 'read_db': 'Reads the list of overlays from database file',
-'write': 'Writes the list of overlays to database file',
+'write'  : 'Writes the list of overlays to database file',
 },
 }
 }



[gentoo-commits] proj/layman:master commit in: layman/db_modules/xml_db/

2015-07-13 Thread Devan Franchini
commit: 0bd7450c52401be9b0c9c9ad8fb2e9eff5760e1b
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 18:48:41 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 18:48:41 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=0bd7450c

xml_db/__init__.py: Modifies function descriptions

 layman/db_modules/xml_db/__init__.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/layman/db_modules/xml_db/__init__.py 
b/layman/db_modules/xml_db/__init__.py
index ad6506c..3a3abd1 100644
--- a/layman/db_modules/xml_db/__init__.py
+++ b/layman/db_modules/xml_db/__init__.py
@@ -15,9 +15,9 @@ module_spec = {
 'description': __doc__,
 'functions': ['add_new', 'read_db', 'write'],
 'func_desc': {
-'add_new': 'Adds new overlay(s) to database',
-'read_db': 'Reads the list of registered overlays from config',
-'write'  : 'Writes the list of registered overlay to config',
+'add_new': 'Adds overlay(s) from provided database text',
+'read_db': 'Reads the list of overlays from database file',
+'write'  : 'Writes the list of overlays to database file',
 },
 }
 }



[gentoo-commits] proj/layman:master commit in: etc/

2015-07-13 Thread Devan Franchini
commit: 464d6eecc2fdae142289e1cf2ed2e78c803aa51a
Author: Devan Franchini twitch153 AT gentoo DOT org
AuthorDate: Mon Jul 13 18:37:39 2015 +
Commit: Devan Franchini twitch153 AT gentoo DOT org
CommitDate: Mon Jul 13 18:37:39 2015 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=464d6eec

layman.cfg: Adds json_db config option example to config

 etc/layman.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/layman.cfg b/etc/layman.cfg
index 45fe3fc..8d89df1 100644
--- a/etc/layman.cfg
+++ b/etc/layman.cfg
@@ -68,7 +68,7 @@ conf_type : repos.conf
  Database Config Options   COMING SOON 
 #---
 # Database types used by layman
-# For now, only xml.
+# (xml_db, json_db).
 #db_type : xml_db
 
 #---



[gentoo-commits] dev/mrueg:master commit in: dev-python/pyrfc3339/files/, dev-python/pyrfc3339/

2015-07-13 Thread Manuel Rüger
commit: 6bcba40a67eba00210809eb83005728f17d5423f
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Mon Jul 13 18:56:00 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Mon Jul 13 18:56:00 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=6bcba40a

[dev-python/pyrfc3339] Add patch to fix tests with python3. Add python3 support.

Package-Manager: portage-2.2.20

 .../files/pyrfc3339-0.2-fixdoctests.patch  | 54 ++
 dev-python/pyrfc3339/pyrfc3339-0.2.ebuild  |  4 +-
 2 files changed, 57 insertions(+), 1 deletion(-)

diff --git a/dev-python/pyrfc3339/files/pyrfc3339-0.2-fixdoctests.patch 
b/dev-python/pyrfc3339/files/pyrfc3339-0.2-fixdoctests.patch
new file mode 100644
index 000..1ce4cb0
--- /dev/null
+++ b/dev-python/pyrfc3339/files/pyrfc3339-0.2-fixdoctests.patch
@@ -0,0 +1,54 @@
+From 085006c9ffc00d3fba3b91eb33111c791a592715 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Manuel=20R=C3=BCger?= mr...@rueg.eu
+Date: Mon, 13 Jul 2015 20:49:51 +0200
+Subject: [PATCH] Fix doctests for python3
+
+---
+ pyrfc3339/generator.py | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/pyrfc3339/generator.py b/pyrfc3339/generator.py
+index 020d47b..62f88e0 100644
+--- a/pyrfc3339/generator.py
 b/pyrfc3339/generator.py
+@@ -9,7 +9,7 @@ def generate(dt, utc=True, accept_naive=False, 
microseconds=False):
+ :class:`datetime.datetime`.
+ 
+  from datetime import datetime
+- generate(datetime(2009,01,01,12,59,59,0,pytz.utc))
++ generate(datetime(2009,1,1,12,59,59,0,pytz.utc))
+ '2009-01-01T12:59:59Z'
+ 
+ The timestamp will use UTC unless `utc=False` is specified, in which case
+@@ -17,7 +17,7 @@ def generate(dt, utc=True, accept_naive=False, 
microseconds=False):
+ :attr:`tzinfo` parameter.
+ 
+  eastern = pytz.timezone('US/Eastern')
+- dt = eastern.localize(datetime(2009,01,01,12,59,59))
++ dt = eastern.localize(datetime(2009,1,1,12,59,59))
+  generate(dt)
+ '2009-01-01T17:59:59Z'
+  generate(dt, utc=False)
+@@ -25,19 +25,19 @@ def generate(dt, utc=True, accept_naive=False, 
microseconds=False):
+ 
+ Unless `accept_naive=True` is specified, the `datetime` must not be naive.
+ 
+- generate(datetime(2009,01,01,12,59,59,0))
++ generate(datetime(2009,1,1,12,59,59,0))
+ Traceback (most recent call last):
+ ...
+ ValueError: naive datetime and accept_naive is False
+ 
+- generate(datetime(2009,01,01,12,59,59,0), accept_naive=True)
++ generate(datetime(2009,1,1,12,59,59,0), accept_naive=True)
+ '2009-01-01T12:59:59Z'
+ 
+ If `accept_naive=True` is specified, the `datetime` is assumed to be UTC.
+ Attempting to generate a local timestamp from a naive datetime will result
+ in an error.
+ 
+- generate(datetime(2009,01,01,12,59,59,0), accept_naive=True, 
utc=False)
++ generate(datetime(2009,1,1,12,59,59,0), accept_naive=True, utc=False)
+ Traceback (most recent call last):
+ ...
+ ValueError: cannot generate a local timestamp from a naive datetime

diff --git a/dev-python/pyrfc3339/pyrfc3339-0.2.ebuild 
b/dev-python/pyrfc3339/pyrfc3339-0.2.ebuild
index d43b092..f3c57d8 100644
--- a/dev-python/pyrfc3339/pyrfc3339-0.2.ebuild
+++ b/dev-python/pyrfc3339/pyrfc3339-0.2.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=(python2_7)
+PYTHON_COMPAT=(python{2_7,3_3,3_4})
 
 inherit distutils-r1
 MY_PN=pyRFC3339
@@ -25,6 +25,8 @@ DEPEND=test? ( ${RDEPEND}
 
 S=${WORKDIR}/${MY_P}
 
+PATCHES=(${FILESDIR}/${P}-fixdoctests.patch)
+
 python_test() {
nosetests || die
 }



[gentoo-commits] gentoo-x86 commit in dev-util/boost-build: boost-build-1.56.0.ebuild ChangeLog

2015-07-13 Thread Mikle Kolyada (zlogene)
zlogene 15/07/13 18:08:12

  Modified: boost-build-1.56.0.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #554712
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.7  dev-util/boost-build/boost-build-1.56.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild?r1=1.6r2=1.7

Index: boost-build-1.56.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- boost-build-1.56.0.ebuild   3 Mar 2015 07:40:06 -   1.6
+++ boost-build-1.56.0.ebuild   13 Jul 2015 18:08:12 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.6 
2015/03/03 07:40:06 dlan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.56.0.ebuild,v 1.7 
2015/07/13 18:08:12 zlogene Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=Boost-1.0
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
 IUSE=examples python test
 
 RDEPEND=python? ( ${PYTHON_DEPS} )



1.145dev-util/boost-build/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.145view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.145content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.144r2=1.145

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog   13 Jul 2015 12:22:47 -  1.144
+++ ChangeLog   13 Jul 2015 18:08:12 -  1.145
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.144 
2015/07/13 12:22:47 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.145 
2015/07/13 18:08:12 zlogene Exp $
+
+  13 Jul 2015; Mikle Kolyada zlog...@gentoo.org boost-build-1.56.0.ebuild:
+  amd64 stable wrt bug #554712
 
 *boost-build-1.58.0 (13 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ml/core_kernel: ChangeLog core_kernel-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:12:46

  Modified: ChangeLog
  Added:core_kernel-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.19 dev-ml/core_kernel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_kernel/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_kernel/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_kernel/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/core_kernel/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   18 Mar 2015 17:16:42 -  1.18
+++ ChangeLog   13 Jul 2015 18:12:46 -  1.19
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/core_kernel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_kernel/ChangeLog,v 1.18 
2015/03/18 17:16:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_kernel/ChangeLog,v 1.19 
2015/07/13 18:12:46 aballier Exp $
+
+*core_kernel-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +core_kernel-112.35.00.ebuild:
+  version bump
 
 *core_kernel-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/core_kernel/core_kernel-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_kernel/core_kernel-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_kernel/core_kernel-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: core_kernel-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/core_kernel/core_kernel-112.35.00.ebuild,v 1.1 
2015/07/13 18:12:46 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1

inherit oasis

DESCRIPTION=System-independent part of Core
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

RDEPEND=
=dev-ml/bin-prot-112.17.00:=
=dev-ml/comparelib-109.27.00:=
=dev-ml/fieldslib-109.20.00:=
=dev-ml/herelib-109.35.00:=
=dev-ml/pa_ounit-109.27.00:=
=dev-ml/pipebang-109.15.00:=
=dev-ml/sexplib-109.20.00:=
=dev-ml/variantslib-109.15.00:=
dev-ml/pa_test:=
dev-ml/enumerate:=
dev-ml/pa_bench:=
=dev-ml/typerep-111.17:=
dev-ml/camlp4:=
!dev-ml/zero

DEPEND=${RDEPEND}
test? (
dev-ml/pa_ounit
=dev-ml/core-109.60.00
)
DOCS=( README.md )






[gentoo-commits] gentoo-x86 commit in dev-ml/core: ChangeLog core-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:13:33

  Modified: ChangeLog
  Added:core-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.38 dev-ml/core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core/ChangeLog?rev=1.38view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core/ChangeLog?rev=1.38content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core/ChangeLog?r1=1.37r2=1.38

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/core/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   24 Apr 2015 07:59:52 -  1.37
+++ ChangeLog   13 Jul 2015 18:13:33 -  1.38
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/core
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/ChangeLog,v 1.37 2015/04/24 
07:59:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/ChangeLog,v 1.38 2015/07/13 
18:13:33 aballier Exp $
+
+*core-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +core-112.35.00.ebuild:
+  version bump
 
 *core-112.24.01 (24 Apr 2015)
 



1.1  dev-ml/core/core-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core/core-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core/core-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: core-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/core-112.35.00.ebuild,v 1.1 
2015/07/13 18:13:33 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1

inherit eutils oasis

MY_P=${P/_/\~}
DESCRIPTION=Jane Street's alternative to the standard library
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

RDEPEND=
=dev-ml/core_kernel-109.35.00:=
=dev-ml/sexplib-109.20.00:=
=dev-ml/bin-prot-109.15.00:=
=dev-ml/fieldslib-109.20.00:=
=dev-ml/pa_ounit-109.27.00:=
=dev-ml/variantslib-109.15.00:=
=dev-ml/comparelib-109.27.00:=
=dev-ml/herelib-109.35.00:=
=dev-ml/pipebang-109.15.00:=
dev-ml/custom_printf:=
dev-ml/pa_bench:=
dev-ml/pa_test:=
dev-ml/enumerate:=
dev-ml/camlp4:=
dev-ml/pa_structural_sexp:=

DEPEND=${RDEPEND}
test? ( =dev-ml/ounit-1.1.2 )
DOCS=( README.md )






[gentoo-commits] gentoo-x86 commit in dev-ml/core_extended: ChangeLog core_extended-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:14:13

  Modified: ChangeLog
  Added:core_extended-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.29 dev-ml/core_extended/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_extended/ChangeLog?rev=1.29view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_extended/ChangeLog?rev=1.29content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_extended/ChangeLog?r1=1.28r2=1.29

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/core_extended/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   18 Mar 2015 17:26:29 -  1.28
+++ ChangeLog   13 Jul 2015 18:14:13 -  1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/core_extended
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/ChangeLog,v 1.28 
2015/03/18 17:26:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/ChangeLog,v 1.29 
2015/07/13 18:14:13 aballier Exp $
+
+*core_extended-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +core_extended-112.35.00.ebuild:
+  version bump
 
 *core_extended-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/core_extended/core_extended-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_extended/core_extended-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_extended/core_extended-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: core_extended-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-112.35.00.ebuild,v 
1.1 2015/07/13 18:14:13 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1

inherit oasis

DESCRIPTION=Jane Street's alternative to the standard library
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

RDEPEND=
=dev-ml/core-${PV}:=
=dev-ml/sexplib-109.20.00:=
=dev-ml/bin-prot-109.15.00:=
=dev-ml/fieldslib-109.20.00:=
=dev-ml/pa_ounit-109.27.00:=
=dev-ml/comparelib-109.27.00:=
=dev-ml/custom_printf-109.27.00:=
=dev-ml/pipebang-109.15.00:=
=dev-ml/textutils-109.35.00:=
dev-ml/pa_test:=
dev-ml/re2:=
dev-ml/pa_bench:=
dev-ml/camlp4:=

DEPEND=${RDEPEND}
test? ( =dev-ml/ounit-1.1.0 )






[gentoo-commits] gentoo-x86 commit in sys-libs/pam: pam-1.2.1.ebuild ChangeLog

2015-07-13 Thread Mikle Kolyada (zlogene)
zlogene 15/07/13 18:15:31

  Modified: pam-1.2.1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #553302
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  sys-libs/pam/pam-1.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.2.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.2.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/pam-1.2.1.ebuild?r1=1.1r2=1.2

Index: pam-1.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pam-1.2.1.ebuild7 Jul 2015 07:38:18 -   1.1
+++ pam-1.2.1.ebuild13 Jul 2015 18:15:31 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.2.1.ebuild,v 1.1 
2015/07/07 07:38:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.2.1.ebuild,v 1.2 
2015/07/13 18:15:31 zlogene Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE=|| ( BSD GPL-2 )
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=audit berkdb cracklib debug nis nls +pie selinux test vim-syntax
 
 RDEPEND=nls? ( =virtual/libintl-0-r1[${MULTILIB_USEDEP}] )



1.355sys-libs/pam/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.355view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?rev=1.355content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/pam/ChangeLog?r1=1.354r2=1.355

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v
retrieving revision 1.354
retrieving revision 1.355
diff -u -r1.354 -r1.355
--- ChangeLog   13 Jul 2015 05:03:16 -  1.354
+++ ChangeLog   13 Jul 2015 18:15:31 -  1.355
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/pam
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.354 2015/07/13 
05:03:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.355 2015/07/13 
18:15:31 zlogene Exp $
+
+  13 Jul 2015; Mikle Kolyada zlog...@gentoo.org pam-1.2.1.ebuild:
+  amd64 stable wrt bug #553302
 
 *pam-1.2.1-r1 (13 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ml/core_bench: ChangeLog core_bench-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:15:22

  Modified: ChangeLog
  Added:core_bench-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.7  dev-ml/core_bench/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_bench/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_bench/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_bench/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/core_bench/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   20 Feb 2015 17:23:54 -  1.6
+++ ChangeLog   13 Jul 2015 18:15:22 -  1.7
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/core_bench
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_bench/ChangeLog,v 1.6 
2015/02/20 17:23:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_bench/ChangeLog,v 1.7 
2015/07/13 18:15:22 aballier Exp $
+
+*core_bench-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +core_bench-112.35.00.ebuild:
+  version bump
 
   20 Feb 2015; Alexis Ballier aball...@gentoo.org
   -core_bench-109.58.01.ebuild, -core_bench-112.01.00.ebuild,



1.1  dev-ml/core_bench/core_bench-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_bench/core_bench-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/core_bench/core_bench-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: core_bench-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/core_bench/core_bench-112.35.00.ebuild,v 1.1 
2015/07/13 18:15:22 aballier Exp $

EAPI=5

inherit oasis

DESCRIPTION=Micro-benchmarking library for OCaml
HOMEPAGE=https://ocaml.janestreet.com/;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

RDEPEND=
dev-ml/sexplib:=
dev-ml/textutils:=
dev-ml/pa_ounit:=
dev-ml/core:=
dev-ml/fieldslib:=
dev-ml/comparelib:=
dev-ml/camlp4:=

DEPEND=${RDEPEND}

DOCS=( README.md )






[gentoo-commits] gentoo-x86 commit in dev-ml/bin-prot: bin-prot-112.35.00.ebuild ChangeLog

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:16:56

  Modified: ChangeLog
  Added:bin-prot-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.37 dev-ml/bin-prot/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bin-prot/ChangeLog?rev=1.37view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bin-prot/ChangeLog?rev=1.37content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bin-prot/ChangeLog?r1=1.36r2=1.37

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   18 Mar 2015 17:17:42 -  1.36
+++ ChangeLog   13 Jul 2015 18:16:56 -  1.37
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/bin-prot
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/ChangeLog,v 1.36 2015/03/18 
17:17:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/ChangeLog,v 1.37 2015/07/13 
18:16:56 aballier Exp $
+
+*bin-prot-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +bin-prot-112.35.00.ebuild:
+  version bump
 
 *bin-prot-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/bin-prot/bin-prot-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bin-prot/bin-prot-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bin-prot/bin-prot-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: bin-prot-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/bin-prot-112.35.00.ebuild,v 
1.1 2015/07/13 18:16:56 aballier Exp $

EAPI=5

OASIS_BUILD_TESTS=1
OASIS_BUILD_DOCS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=A binary protocol generator
HOMEPAGE=http://ocaml.janestreet.com/?q=node/13;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=LGPL-2.1-with-linking-exception
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=doc

RDEPEND==dev-ml/type-conv-109.28.00:=
dev-ml/camlp4:=
DEPEND=${RDEPEND}
test? ( =dev-ml/ounit-1.1.2 )

DOCS=( README.md CHANGES.md )
S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in dev-ml/async_kernel: async_kernel-112.35.00.ebuild ChangeLog

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:19:04

  Modified: ChangeLog
  Added:async_kernel-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.10 dev-ml/async_kernel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_kernel/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_kernel/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_kernel/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   18 Mar 2015 17:24:02 -  1.9
+++ ChangeLog   13 Jul 2015 18:19:03 -  1.10
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/async_kernel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/ChangeLog,v 1.9 
2015/03/18 17:24:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/ChangeLog,v 1.10 
2015/07/13 18:19:03 aballier Exp $
+
+*async_kernel-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +async_kernel-112.35.00.ebuild:
+  version bump
 
 *async_kernel-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/async_kernel/async_kernel-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_kernel/async_kernel-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_kernel/async_kernel-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: async_kernel-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-112.35.00.ebuild,v 1.1 
2015/07/13 18:19:03 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Jane Street Capital's asynchronous execution library (core)
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND==dev-lang/ocaml-4.00.0:=
=dev-ml/sexplib-109.20.00:=
=dev-ml/pa_ounit-109.27.00:=
=dev-ml/fieldslib-109.20.00:=
=dev-ml/bin-prot-109.15.00:=
=dev-ml/core-109.35.00:=
=dev-ml/herelib-109.35.00:=
dev-ml/pa_test:=
dev-ml/camlp4:=

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in sys-devel/bc: bc-1.06.95-r1.ebuild ChangeLog

2015-07-13 Thread Mikle Kolyada (zlogene)
zlogene 15/07/13 18:20:36

  Modified: bc-1.06.95-r1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #554708
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.7  sys-devel/bc/bc-1.06.95-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild?r1=1.6r2=1.7

Index: bc-1.06.95-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bc-1.06.95-r1.ebuild18 Jan 2014 03:08:45 -  1.6
+++ bc-1.06.95-r1.ebuild13 Jul 2015 18:20:36 -  1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v 1.6 
2014/01/18 03:08:45 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/bc-1.06.95-r1.ebuild,v 1.7 
2015/07/13 18:20:36 zlogene Exp $
 
 EAPI=2
 
@@ -13,7 +13,7 @@
 
 LICENSE=GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=libedit readline static
 
 RDEPEND=readline? ( =sys-libs/readline-4.1 =sys-libs/ncurses-5.2 )



1.45 sys-devel/bc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/ChangeLog?rev=1.45view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/ChangeLog?rev=1.45content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bc/ChangeLog?r1=1.44r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   13 Jul 2015 05:01:23 -  1.44
+++ ChangeLog   13 Jul 2015 18:20:36 -  1.45
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.44 2015/07/13 
05:01:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bc/ChangeLog,v 1.45 2015/07/13 
18:20:36 zlogene Exp $
+
+  13 Jul 2015; Mikle Kolyada zlog...@gentoo.org bc-1.06.95-r1.ebuild:
+  amd64 stable wrt bug #554708
 
 *bc-1.06.95-r2 (13 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ml/async_unix: ChangeLog async_unix-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:20:31

  Modified: ChangeLog
  Added:async_unix-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.19 dev-ml/async_unix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_unix/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_unix/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_unix/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/async_unix/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   18 Mar 2015 17:25:30 -  1.18
+++ ChangeLog   13 Jul 2015 18:20:31 -  1.19
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/async_unix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_unix/ChangeLog,v 1.18 
2015/03/18 17:25:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_unix/ChangeLog,v 1.19 
2015/07/13 18:20:31 aballier Exp $
+
+*async_unix-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +async_unix-112.35.00.ebuild:
+  version bump
 
 *async_unix-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/async_unix/async_unix-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_unix/async_unix-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_unix/async_unix-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: async_unix-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/async_unix/async_unix-112.35.00.ebuild,v 1.1 
2015/07/13 18:20:31 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Jane Street Capital's asynchronous execution library (unix)
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND==dev-lang/ocaml-4.00.0:=
=dev-ml/bin-prot-109.15.00:=
=dev-ml/comparelib-109.27.00:=
=dev-ml/herelib-109.15.00:=
=dev-ml/pa_ounit-109.27.00:=
=dev-ml/pipebang-109.15.00:=
=dev-ml/core-${PV}:=
=dev-ml/async_kernel-${PV}:=
=dev-ml/sexplib-109.20.00:=
=dev-ml/fieldslib-109.20.00:=
dev-ml/pa_test:=
dev-ml/camlp4:=

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in dev-ml/async_rpc_kernel: - New directory

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:23:32

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-ml/async_rpc_kernel added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-ml/async_rpc_kernel: metadata.xml ChangeLog async_rpc_kernel-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:24:58

  Added:metadata.xml ChangeLog
async_rpc_kernel-112.35.00.ebuild
  Log:
  initial import, ebuild by me
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.1  dev-ml/async_rpc_kernel/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_rpc_kernel/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_rpc_kernel/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdml/herd
/pkgmetadata



1.1  dev-ml/async_rpc_kernel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_rpc_kernel/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_rpc_kernel/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-ml/async_rpc_kernel
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_rpc_kernel/ChangeLog,v 1.1 
2015/07/13 18:24:58 aballier Exp $

*async_rpc_kernel-112.35.00 (13 Jul 2015)

  13 Jul 2015; Alexis Ballier aball...@gentoo.org
  +async_rpc_kernel-112.35.00.ebuild, +metadata.xml:
  initial import, ebuild by me




1.1  dev-ml/async_rpc_kernel/async_rpc_kernel-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_rpc_kernel/async_rpc_kernel-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_rpc_kernel/async_rpc_kernel-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: async_rpc_kernel-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/async_rpc_kernel/async_rpc_kernel-112.35.00.ebuild,v
 1.1 2015/07/13 18:24:58 aballier Exp $

EAPI=5

inherit oasis

DESCRIPTION=Platform-independent core of Async RPC library
HOMEPAGE=http://bitbucket.org/yminsky/ocaml-core/wiki/Home;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND=dev-ml/camlp4:=
dev-ml/async_kernel:=
dev-ml/bin-prot:=
dev-ml/comparelib:=
dev-ml/core_kernel:=
dev-ml/custom_printf:=
dev-ml/fieldslib:=
dev-ml/pa_ounit:=
dev-ml/sexplib:=
RDEPEND=${DEPEND}

DOCS=( CHANGES.md )






[gentoo-commits] gentoo-x86 commit in dev-ml/async_extra: ChangeLog async_extra-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:25:46

  Modified: ChangeLog
  Added:async_extra-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.19 dev-ml/async_extra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_extra/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_extra/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_extra/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/async_extra/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   18 Mar 2015 17:26:46 -  1.18
+++ ChangeLog   13 Jul 2015 18:25:46 -  1.19
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/async_extra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_extra/ChangeLog,v 1.18 
2015/03/18 17:26:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_extra/ChangeLog,v 1.19 
2015/07/13 18:25:46 aballier Exp $
+
+*async_extra-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org
+  +async_extra-112.35.00.ebuild:
+  version bump
 
 *async_extra-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/async_extra/async_extra-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_extra/async_extra-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async_extra/async_extra-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: async_extra-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ml/async_extra/async_extra-112.35.00.ebuild,v 1.1 
2015/07/13 18:25:46 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Jane Street Capital's asynchronous execution library (extra)
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND==dev-lang/ocaml-4.00.0:=
=dev-ml/sexplib-109.20.00:=
=dev-ml/fieldslib-109.20.00:=
=dev-ml/bin-prot-109.15.00:=
=dev-ml/pa_ounit-109.18.00:=
=dev-ml/pipebang-109.15.00:=
=dev-ml/core-${PV}:=
=dev-ml/async_kernel-${PV}:=
=dev-ml/async_unix-${PV}:=
dev-ml/custom_printf:=
dev-ml/herelib:=
dev-ml/pa_test:=
dev-ml/camlp4:=
dev-ml/async_rpc_kernel:=

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}






[gentoo-commits] gentoo-x86 commit in dev-ml/async: ChangeLog async-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:27:13

  Modified: ChangeLog
  Added:async-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.19 dev-ml/async/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/async/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   18 Mar 2015 17:28:15 -  1.18
+++ ChangeLog   13 Jul 2015 18:27:13 -  1.19
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/async
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/ChangeLog,v 1.18 2015/03/18 
17:28:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/ChangeLog,v 1.19 2015/07/13 
18:27:13 aballier Exp $
+
+*async-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +async-112.35.00.ebuild:
+  version bump
 
 *async-112.24.00 (18 Mar 2015)
 



1.1  dev-ml/async/async-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async/async-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/async/async-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: async-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/async-112.35.00.ebuild,v 1.1 
2015/07/13 18:27:13 aballier Exp $

EAPI=5

OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Jane Street Capital's asynchronous execution library
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=examples

RDEPEND==dev-lang/ocaml-4.00.0:=
=dev-ml/async_kernel-${PV}:=
=dev-ml/async_unix-${PV}:=
=dev-ml/async_extra-${PV}:=
dev-ml/camlp4:=

DEPEND=${RDEPEND}
test? ( =dev-ml/ounit-1.0.2 dev-ml/core_bench dev-ml/pa_ounit )

S=${WORKDIR}/${MY_P}

src_install() {
oasis_src_install
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}






[gentoo-commits] gentoo-x86 commit in dev-java/portletapi: portletapi-2.0.ebuild ChangeLog

2015-07-13 Thread Patrice Clement (monsieurp)
monsieurp15/07/13 17:26:10

  Modified: ChangeLog
  Added:portletapi-2.0.ebuild
  Log:
  Version bump.
  
  Signed-off-by: Patrice Clement monsie...@gentoo.org
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
93491BB8)

Revision  ChangesPath
1.9  dev-java/portletapi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/portletapi/ChangeLog?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/portletapi/ChangeLog?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/portletapi/ChangeLog?r1=1.8r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/portletapi/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   7 May 2007 16:37:36 -   1.8
+++ ChangeLog   13 Jul 2015 17:26:10 -  1.9
@@ -1,6 +1,11 @@
 # ChangeLog for dev-java/portletapi
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/portletapi/ChangeLog,v 1.8 
2007/05/07 16:37:36 caster Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/portletapi/ChangeLog,v 1.9 
2015/07/13 17:26:10 monsieurp Exp $
+
+*portletapi-2.0 (13 Jul 2015)
+
+  13 Jul 2015; Patrice Clement monsie...@gentoo.org +portletapi-2.0.ebuild:
+  Version bump.
 
   07 May 2007; Vlastimil Babka cas...@gentoo.org portletapi-1.0.ebuild:
   Change dev-java/ant DEPEND to ant-core, nothing more needed. Tweak style,
@@ -33,4 +38,3 @@
   +files/portletapi-1.0-build.xml, +metadata.xml, +portletapi-1.0.ebuild:
   Initial commit. Ebuild by Miroslav Sulc miroslav.s...@startnet.cz, bug
   #148210.
-



1.1  dev-java/portletapi/portletapi-2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/portletapi/portletapi-2.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/portletapi/portletapi-2.0.ebuild?rev=1.1content-type=text/plain

Index: portletapi-2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/portletapi/portletapi-2.0.ebuild,v 
1.1 2015/07/13 17:26:10 monsieurp Exp $

EAPI=5

inherit java-pkg-2 java-pkg-simple

MY_PN=portlet-api
MY_P=${MY_PN}-${PV}

DESCRIPTION=Portlet API 2.0 developed by the Java Community Process JSR-286
HOMEPAGE=https://jcp.org/en/jsr/detail?id=286;
SRC_URI=http://mirrors.ibiblio.org/maven2/javax/portlet/${PN}/${PV}/${MY_P}-sources.jar;

LICENSE=Apache-2.0
SLOT=2.0
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86

IUSE=

CDEPEND=dev-java/tomcat-servlet-api:3.0

RDEPEND==virtual/jre-1.6
${CDEPEND}
DEPEND==virtual/jdk-1.6
app-arch/unzip
${CDEPEND}

JAVA_PKG_WANT_SOURCE=1.7
JAVA_PKG_WANT_TARGET=1.7
JAVA_SRC_DIR=src

JAVA_ENCODING=ISO-8859-1
JAVA_GENTOO_CLASSPATH=tomcat-servlet-api-3.0

java_prepare() {
mkdir src || die
mv * src
}






[gentoo-commits] proj/hardened-refpolicy:swift commit in: policy/modules/kernel/

2015-07-13 Thread Sven Vermeulen
commit: de1e97adf612ca76797503eb1e8b8369dc428021
Author: Sven Vermeulen sven.vermeulen AT siphos DOT be
AuthorDate: Sat Jul 11 14:10:08 2015 +
Commit: Sven Vermeulen swift AT gentoo DOT org
CommitDate: Mon Jul 13 17:35:07 2015 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=de1e97ad

Enable Ceph as a valid SELinux-enabled file system

 policy/modules/kernel/filesystem.te | 1 +
 1 file changed, 1 insertion(+)

diff --git a/policy/modules/kernel/filesystem.te 
b/policy/modules/kernel/filesystem.te
index 32ecb93..840f0b2 100644
--- a/policy/modules/kernel/filesystem.te
+++ b/policy/modules/kernel/filesystem.te
@@ -22,6 +22,7 @@ sid fs gen_context(system_u:object_r:fs_t,s0)
 # Use xattrs for the following filesystem types.
 # Requires that a security xattr handler exist for the filesystem.
 fs_use_xattr btrfs gen_context(system_u:object_r:fs_t,s0);
+fs_use_xattr ceph gen_context(system_u:object_r:fs_t,s0);
 fs_use_xattr encfs gen_context(system_u:object_r:fs_t,s0);
 fs_use_xattr ext2 gen_context(system_u:object_r:fs_t,s0);
 fs_use_xattr ext3 gen_context(system_u:object_r:fs_t,s0);



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/

2015-07-13 Thread Sven Vermeulen
commit: e030706d32967b72aca1937437c3d81636f97f08
Author: Sven Vermeulen sven.vermeulen AT siphos DOT be
AuthorDate: Mon Jul 13 17:40:59 2015 +
Commit: Sven Vermeulen swift AT gentoo DOT org
CommitDate: Mon Jul 13 17:40:59 2015 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=e030706d

Introduce Ceph policy

 policy/modules/contrib/ceph.fc |  30 
 policy/modules/contrib/ceph.if | 104 +
 policy/modules/contrib/ceph.te |  92 
 3 files changed, 226 insertions(+)

diff --git a/policy/modules/contrib/ceph.fc b/policy/modules/contrib/ceph.fc
new file mode 100644
index 000..1548b1e
--- /dev/null
+++ b/policy/modules/contrib/ceph.fc
@@ -0,0 +1,30 @@
+#
+# /etc
+#
+/etc/ceph(/.*)?gen_context(system_u:object_r:ceph_conf_t,s0)
+/etc/ceph/.*\.secret   --  gen_context(system_u:object_r:ceph_key_t,s0)
+/etc/ceph/.*\.keyring  --  gen_context(system_u:object_r:ceph_key_t,s0)
+/etc/rc\.d/init\.d/ceph.*  
gen_context(system_u:object_r:ceph_initrc_exec_t,s0)
+
+#
+# /usr
+#
+/usr/bin/ceph-mds  --  
gen_context(system_u:object_r:ceph_mds_exec_t,s0)
+/usr/bin/ceph-mon  --  
gen_context(system_u:object_r:ceph_mon_exec_t,s0)
+/usr/bin/ceph-osd  --  
gen_context(system_u:object_r:ceph_osd_exec_t,s0)
+
+#
+# /var
+#
+/var/lib/ceph(/.*)?gen_context(system_u:object_r:ceph_var_lib_t,s0)
+/var/lib/ceph/mds(/.*)?
gen_context(system_u:object_r:ceph_mds_data_t,s0)
+/var/lib/ceph/mon(/.*)?
gen_context(system_u:object_r:ceph_mon_data_t,s0)
+/var/lib/ceph/osd(/.*)?
gen_context(system_u:object_r:ceph_osd_data_t,s0)
+
+/var/log/ceph(/.*)?gen_context(system_u:object_r:ceph_log_t,s0)
+
+/var/run/ceph  -d  gen_context(system_u:object_r:ceph_var_run_t,s0)
+/var/run/ceph/ceph-osd.*   
gen_context(system_u:object_r:ceph_osd_var_run_t,s0)
+/var/run/ceph/ceph-mon.*   
gen_context(system_u:object_r:ceph_mon_var_run_t,s0)
+/var/run/ceph/ceph-mds.*   
gen_context(system_u:object_r:ceph_mds_var_run_t,s0)
+/var/run/ceph/mds.*--  
gen_context(system_u:object_r:ceph_mds_var_run_t,s0)

diff --git a/policy/modules/contrib/ceph.if b/policy/modules/contrib/ceph.if
new file mode 100644
index 000..26db16f
--- /dev/null
+++ b/policy/modules/contrib/ceph.if
@@ -0,0 +1,104 @@
+## summaryCeph distributed object storage/summary
+
+#
+## summary
+## Create the individual Ceph domains
+## /summary
+## param name=cephdaemon
+## summary
+## The daemon (osd, mds or mon) for which the rules are created
+## /summary
+## /param
+#
+template(`ceph_domain_template',`
+   gen_require(`
+   attribute cephdomain;
+   attribute cephdata;
+   attribute cephpidfile;
+   attribute_role ceph_roles;
+   
+   type ceph_var_run_t;
+   ')
+
+   type ceph_$1_t, cephdomain;
+   type ceph_$1_exec_t;
+   init_system_domain(ceph_$1_t, ceph_$1_exec_t)
+   role ceph_roles types ceph_$1_t;
+
+   type ceph_$1_data_t, cephdata;
+   files_type(ceph_$1_data_t)
+
+   type ceph_$1_var_run_t, cephpidfile;
+   files_pid_file(ceph_$1_var_run_t)
+
+   
+   #
+   # Local policy 
+   #
+   # Rules which cannot be made part of the domain
+
+   allow ceph_$1_t ceph_$1_var_run_t:file manage_file_perms;
+   allow ceph_$1_t ceph_$1_var_run_t:sock_file manage_file_perms;
+   allow ceph_$1_t ceph_$1_data_t:dir manage_dir_perms;
+   allow ceph_$1_t ceph_$1_data_t:file manage_file_perms;
+
+   filetrans_pattern(ceph_$1_t, ceph_var_run_t, ceph_$1_var_run_t, { file 
sock_file })
+
+   files_var_lib_filetrans(ceph_$1_t, ceph_$1_data_t, { file dir })
+')
+
+#
+## summary
+## Administrative access for Ceph
+## /summary
+## param name=domain
+## summary
+## Domain allowed access
+## /summary
+## /param
+## param name=role
+## summary
+## Domain allowed access
+## /summary
+## /param
+#
+interface(`ceph_admin',`
+   gen_require(`
+   attribute cephdomain;
+   attribute cephdata;
+   type ceph_initrc_exec_t;
+   ')
+
+   allow $1 cephdomain:process { ptrace signal_perms };
+   ps_process_pattern($1, cephdomain)
+
+   init_startstop_service($1, $2, cephdomain, ceph_initrc_exec_t)
+   allow $1 ceph_initrc_exec_t:lnk_file read_lnk_file_perms;
+   allow $1 ceph_initrc_exec_t:file read_file_perms;
+
+   files_list_etc($1)
+   admin_pattern($1, ceph_conf_t)
+   admin_pattern($1, ceph_key_t)
+
+   admin_pattern($1, cephdata)
+
+   admin_pattern($1, ceph_log_t)
+')
+
+#
+## summary
+## 

[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/roles/

2015-07-13 Thread Sven Vermeulen
commit: bd0bd6698519ad08b0b6a6e92160c8d88fecd159
Author: Sven Vermeulen sven.vermeulen AT siphos DOT be
AuthorDate: Mon Jul 13 17:42:01 2015 +
Commit: Sven Vermeulen swift AT gentoo DOT org
CommitDate: Mon Jul 13 17:42:01 2015 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=bd0bd669

Add ceph_admin() to sysadm

 policy/modules/roles/sysadm.te | 4 
 1 file changed, 4 insertions(+)

diff --git a/policy/modules/roles/sysadm.te b/policy/modules/roles/sysadm.te
index 6a91344..e0442db 100644
--- a/policy/modules/roles/sysadm.te
+++ b/policy/modules/roles/sysadm.te
@@ -1274,6 +1274,10 @@ ifdef(`distro_gentoo',`
')
 
optional_policy(`
+   ceph_admin(sysadm_t, sysadm_r)
+   ')
+
+   optional_policy(`
# Bug 529208
dmesg_run(sysadm_t, sysadm_r)
')



[gentoo-commits] gentoo-x86 commit in dev-ml/herelib: ChangeLog herelib-112.35.00.ebuild

2015-07-13 Thread Alexis Ballier (aballier)
aballier15/07/13 18:29:40

  Modified: ChangeLog
  Added:herelib-112.35.00.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.10 dev-ml/herelib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/herelib/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/herelib/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/herelib/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ml/herelib/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   28 Nov 2014 17:30:11 -  1.9
+++ ChangeLog   13 Jul 2015 18:29:40 -  1.10
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/herelib
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/herelib/ChangeLog,v 1.9 2014/11/28 
17:30:11 aballier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/herelib/ChangeLog,v 1.10 2015/07/13 
18:29:40 aballier Exp $
+
+*herelib-112.35.00 (13 Jul 2015)
+
+  13 Jul 2015; Alexis Ballier aball...@gentoo.org +herelib-112.35.00.ebuild:
+  version bump
 
   28 Nov 2014; Alexis Ballier aball...@gentoo.org herelib-109.35.02.ebuild:
   update deps for ocaml 4.02



1.1  dev-ml/herelib/herelib-112.35.00.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/herelib/herelib-112.35.00.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/herelib/herelib-112.35.00.ebuild?rev=1.1content-type=text/plain

Index: herelib-112.35.00.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/herelib/herelib-112.35.00.ebuild,v 
1.1 2015/07/13 18:29:40 aballier Exp $

EAPI=5

inherit oasis

MY_P=${PN/-/_}-${PV}
DESCRIPTION=Syntax extension for inserting the current location
HOMEPAGE=http://www.janestreet.com/ocaml;
SRC_URI=http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz;

LICENSE=Apache-2.0
SLOT=0/${PV}
KEYWORDS=~amd64
IUSE=

DEPEND=
=dev-lang/ocaml-4.00.0:=
dev-ml/camlp4:=

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}






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

2015-07-13 Thread Johannes Huber
commit: 4ff618f056017e72b0225d713e63cf16c3e6dd88
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Mon Jul 13 16:34:45 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jul 13 16:34:45 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4ff618f0

[sets] Update kdeutils-live

 sets/kde-applications-live | 1 -
 sets/kdeutils-live | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sets/kde-applications-live b/sets/kde-applications-live
index 8f00aa4..1a930b7 100644
--- a/sets/kde-applications-live
+++ b/sets/kde-applications-live
@@ -1,5 +1,4 @@
 # sort them later to the appropriate sets
-~kde-apps/ark-5.
 ~kde-apps/kfind-5.
 ~kde-apps/ksnapshot-5.
 ~kde-apps/libkcddb-5.

diff --git a/sets/kdeutils-live b/sets/kdeutils-live
index 41e9057..0c39539 100644
--- a/sets/kdeutils-live
+++ b/sets/kdeutils-live
@@ -1,3 +1,4 @@
+~kde-apps/ark-
 ~kde-apps/filelight-
 ~kde-apps/kcalc-
 ~kde-apps/kcharselect-



[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/, ...

2015-07-13 Thread Johannes Huber
commit: a5dad78703ff9184a2e6e569e47ecc86834c551d
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Mon Jul 13 16:35:13 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jul 13 16:35:13 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a5dad787

[Documentation] Update KDE Applications live keywords

 .../package.accept_keywords/.kde-applications-live/kdeutils-live | 1 +
 Documentation/package.accept_keywords/kde-applications-live.keywords | 1 +
 Documentation/package.mask/kde-applications-live | 1 +
 Documentation/package.unmask/kde-applications-live   | 1 +
 4 files changed, 4 insertions(+)

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-live/kdeutils-live 
b/Documentation/package.accept_keywords/.kde-applications-live/kdeutils-live
index 10de7b8..d6f8bd9 100644
--- a/Documentation/package.accept_keywords/.kde-applications-live/kdeutils-live
+++ b/Documentation/package.accept_keywords/.kde-applications-live/kdeutils-live
@@ -1,3 +1,4 @@
+~kde-apps/ark- **
 ~kde-apps/filelight- **
 ~kde-apps/kcalc- **
 ~kde-apps/kcharselect- **

diff --git 
a/Documentation/package.accept_keywords/kde-applications-live.keywords 
b/Documentation/package.accept_keywords/kde-applications-live.keywords
index 5d20c34..dcb76ae 100644
--- a/Documentation/package.accept_keywords/kde-applications-live.keywords
+++ b/Documentation/package.accept_keywords/kde-applications-live.keywords
@@ -97,6 +97,7 @@
 ~kde-apps/okteta- **
 ~kde-apps/umbrello- **
 ~kde-apps/kteatime- **
+~kde-apps/ark- **
 ~kde-apps/filelight- **
 ~kde-apps/kcalc- **
 ~kde-apps/kcharselect- **

diff --git a/Documentation/package.mask/kde-applications-live 
b/Documentation/package.mask/kde-applications-live
index 9292483..b60e702 100644
--- a/Documentation/package.mask/kde-applications-live
+++ b/Documentation/package.mask/kde-applications-live
@@ -97,6 +97,7 @@
 ~kde-apps/okteta-
 ~kde-apps/umbrello-
 ~kde-apps/kteatime-
+~kde-apps/ark-
 ~kde-apps/filelight-
 ~kde-apps/kcalc-
 ~kde-apps/kcharselect-

diff --git a/Documentation/package.unmask/kde-applications-live 
b/Documentation/package.unmask/kde-applications-live
index 9292483..b60e702 100644
--- a/Documentation/package.unmask/kde-applications-live
+++ b/Documentation/package.unmask/kde-applications-live
@@ -97,6 +97,7 @@
 ~kde-apps/okteta-
 ~kde-apps/umbrello-
 ~kde-apps/kteatime-
+~kde-apps/ark-
 ~kde-apps/filelight-
 ~kde-apps/kcalc-
 ~kde-apps/kcharselect-



  1   2   >