[gentoo-commits] proj/portage:repoman commit in: pym/repoman/, pym/repoman/checks/directories/

2014-06-02 Thread Brian Dolbec
commit: 1369a76925496f835dd7076029926f57f9605f8a
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Mon Jun  2 06:04:27 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Mon Jun  2 06:04:27 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=1369a769

repoman/main.py: Create FileChecks class

Move file checks code block to a new checks/directories/ module

---
 pym/repoman/checks/directories/__init__.py |  0
 pym/repoman/checks/directories/files.py| 77 ++
 pym/repoman/main.py| 48 +++
 3 files changed, 84 insertions(+), 41 deletions(-)

diff --git a/pym/repoman/checks/directories/__init__.py 
b/pym/repoman/checks/directories/__init__.py
new file mode 100644
index 000..e69de29

diff --git a/pym/repoman/checks/directories/files.py 
b/pym/repoman/checks/directories/files.py
new file mode 100644
index 000..62f6169
--- /dev/null
+++ b/pym/repoman/checks/directories/files.py
@@ -0,0 +1,77 @@
+
+'''repoman/checks/diretories/files.py
+
+'''
+
+import io
+
+from portage import _encodings, _unicode_encode
+from portage import os
+
+
+
+class FileChecks(object):
+
+   def __init__(self, qatracker, repoman_settings, repo_settings, portdb,
+   vcs_settings, vcs_new_changed):
+   '''
+   @param qatracker: QATracker instance
+   @param repoman_settings: settings instance
+   @param repo_settings: repository settings instance
+   @param portdb: portdb instance
+   '''
+   self.portdb = portdb
+   self.qatracker = qatracker
+   self.repo_settings = repo_settings
+   self.repoman_settings = repoman_settings
+   self.vcs_settings = vcs_settings
+   self.vcs_new_changed = vcs_new_changed
+
+
+   def check(self, checkdir, checkdirlist, checkdir_relative):
+   '''Checks the ebuild sources and files for errors
+
+   @param xpkg: the pacakge being checked
+   @param checkdir: string, directory path
+   @param checkdir_relative: repolevel determined path
+   '''
+   for y_file in checkdirlist:
+   index = 
self.repo_settings.repo_config.find_invalid_path_char(y_file)
+   if index != -1:
+   y_relative = os.path.join(checkdir_relative, 
y_file)
+   if self.vcs_settings.vcs is not None and not 
self.vcs_new_changed(y_relative):
+   # If the file isn't in the VCS new or 
changed set, then
+   # assume that it's an irrelevant 
temporary file (Manifest
+   # entries are not generated for file 
names containing
+   # prohibited characters). See bug 
#406877.
+   index = -1
+   if index != -1:
+   self.qatracker.add_error(file.name,
+   %s/%s: char '%s' % (checkdir, y_file, 
y_file[index]))
+
+   if not (y_file in (ChangeLog, metadata.xml)
+   or y_file.endswith(.ebuild)):
+   continue
+   f = None
+   try:
+   line = 1
+   f = io.open(
+   _unicode_encode(
+   os.path.join(checkdir, y_file),
+   encoding=_encodings['fs'], 
errors='strict'),
+   mode='r', 
encoding=_encodings['repo.content'])
+   for l in f:
+   line += 1
+   except UnicodeDecodeError as ue:
+   s = ue.object[:ue.start]
+   l2 = s.count(\n)
+   line += l2
+   if l2 != 0:
+   s = s[s.rfind(\n) + 1:]
+   self.qatracker.add_error(file.UTF8,
+   %s/%s: line %i, just after: '%s' % 
(checkdir, y_file, line, s))
+   finally:
+   if f is not None:
+   f.close()
+   return
+

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index ffb9929..9db52c0 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -45,6 +45,7 @@ from portage.package.ebuild.digestgen import digestgen
 from portage.eapi import eapi_has_iuse_defaults, eapi_has_required_use
 
 from repoman.argparser import parse_args
+from 

[gentoo-commits] proj/portage:repoman commit in: pym/repoman/, pym/repoman/checks/ebuilds/

2014-06-02 Thread Brian Dolbec
commit: fc8b6617dfc742e683af929de7ad6d8ab70d9dc6
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Mon Jun  2 05:31:45 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Mon Jun  2 05:31:45 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=fc8b6617

repoman/main.py: Create FetchChecks class

Create the new class in checks/ebuilds/fetches.py.

---
 pym/repoman/checks/ebuilds/fetches.py | 132 ++
 pym/repoman/main.py   |  96 ++---
 2 files changed, 139 insertions(+), 89 deletions(-)

diff --git a/pym/repoman/checks/ebuilds/fetches.py 
b/pym/repoman/checks/ebuilds/fetches.py
new file mode 100644
index 000..3d59339
--- /dev/null
+++ b/pym/repoman/checks/ebuilds/fetches.py
@@ -0,0 +1,132 @@
+
+'''fetches.py
+Performs the src_uri fetchlist and files checks
+'''
+
+from stat import S_ISDIR
+
+import portage
+from portage import os
+
+
+class FetchChecks(object):
+   '''Performs checks on the files needed for the ebuild'''
+
+   def __init__(self, qatracker, repoman_settings, repo_settings, portdb,
+   vcs_settings, vcs_new_changed):
+   '''
+   @param qatracker: QATracker instance
+   @param repoman_settings: settings instance
+   @param repo_settings: repository settings instance
+   @param portdb: portdb instance
+   '''
+   self.portdb = portdb
+   self.qatracker = qatracker
+   self.repo_settings = repo_settings
+   self.repoman_settings = repoman_settings
+   self.vcs_settings = vcs_settings
+   self.vcs_new_changed = vcs_new_changed
+   self._digests = None
+
+
+   def check(self, xpkg, checkdir, checkdir_relative):
+   '''Checks the ebuild sources and files for errors
+
+   @param xpkg: the pacakge being checked
+   @param checkdir: string, directory path
+   @param checkdir_relative: repolevel determined path
+   '''
+   self.checkdir = checkdir
+   fetchlist_dict = portage.FetchlistDict(checkdir, 
self.repoman_settings, self.portdb)
+   myfiles_all = []
+   self.src_uri_error = False
+   for mykey in fetchlist_dict:
+   try:
+   myfiles_all.extend(fetchlist_dict[mykey])
+   except portage.exception.InvalidDependString as e:
+   self.src_uri_error = True
+   try:
+   self.portdb.aux_get(mykey, [SRC_URI])
+   except KeyError:
+   # This will be reported as an 
ebuild.syntax error.
+   pass
+   else:
+   
self.qatracker.add_error(SRC_URI.syntax,
+   %s.ebuild SRC_URI: %s % 
(mykey, e))
+   del fetchlist_dict
+   if not self.src_uri_error:
+   # This test can produce false positives if SRC_URI 
could not
+   # be parsed for one or more ebuilds. There's no point in
+   # producing a false error here since the root cause will
+   # produce a valid error elsewhere, such as 
SRC_URI.syntax
+   # or ebuild.sytax.
+   myfiles_all = set(myfiles_all)
+   for entry in self.digests:
+   if entry not in myfiles_all:
+   
self.qatracker.add_error(digest.unused, checkdir + :: + entry)
+   for entry in myfiles_all:
+   if entry not in self.digests:
+   
self.qatracker.add_error(digest.missing, checkdir + :: + entry)
+   del myfiles_all
+
+   if os.path.exists(checkdir + /files):
+   filesdirlist = os.listdir(checkdir + /files)
+
+   # Recurse through files directory, use filesdirlist as 
a stack;
+   # appending directories as needed,
+   # so people can't hide  20k files in a subdirectory.
+   while filesdirlist:
+   y = filesdirlist.pop(0)
+   relative_path = os.path.join(xpkg, files, y)
+   full_path = 
os.path.join(self.repo_settings.repodir, relative_path)
+   try:
+   mystat = os.stat(full_path)
+   except OSError as oe:
+   if oe.errno == 2:
+

[gentoo-commits] gentoo-x86 commit in dev-python/pytools: pytools-2014.2.1.ebuild ChangeLog

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 06:30:51

  Modified: ChangeLog
  Added:pytools-2014.2.1.ebuild
  Log:
  dev-python/pytools: Version BUmp
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.23 dev-python/pytools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytools/ChangeLog?rev=1.23view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytools/ChangeLog?rev=1.23content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytools/ChangeLog?r1=1.22r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytools/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   5 Mar 2014 10:34:05 -   1.22
+++ ChangeLog   2 Jun 2014 06:30:51 -   1.23
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pytools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/ChangeLog,v 1.22 
2014/03/05 10:34:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/ChangeLog,v 1.23 
2014/06/02 06:30:51 jlec Exp $
+
+*pytools-2014.2.1 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org +pytools-2014.2.1.ebuild:
+  Version BUmp
 
   05 Mar 2014; Michał Górny mgo...@gentoo.org pytools-.ebuild:
   Require EGIT_MIN_CLONE_TYPE=single due to transport limitations.



1.1  dev-python/pytools/pytools-2014.2.1.ebuild

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

Index: pytools-2014.2.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/pytools-2014.2.1.ebuild,v 
1.1 2014/06/02 06:30:51 jlec Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION=A collection of tools missing from the Python standard library
HOMEPAGE=http://mathema.tician.de/software/pytools;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

DEPEND=
=dev-python/setuptools-0.7.2[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
RDEPEND=

python_test() {
py.test -v || die Tests fail with ${EPYTHON}
}






[gentoo-commits] proj/portage:repoman commit in: pym/repoman/, pym/repoman/checks/ebuilds/

2014-06-02 Thread Brian Dolbec
commit: 71ed484f67919a13f97bfa4e0e9a251119df0c99
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Mon Jun  2 06:43:19 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Mon Jun  2 06:43:19 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=71ed484f

repoman/main.py: Split out some small ebuild checks functions

Create new checks/ebuilds/misc.py file
Add bad_split_check().
Add pkg_invalid().

---
 pym/repoman/checks/ebuilds/misc.py | 54 ++
 pym/repoman/main.py| 29 
 2 files changed, 59 insertions(+), 24 deletions(-)

diff --git a/pym/repoman/checks/ebuilds/misc.py 
b/pym/repoman/checks/ebuilds/misc.py
new file mode 100644
index 000..c1edd2c
--- /dev/null
+++ b/pym/repoman/checks/ebuilds/misc.py
@@ -0,0 +1,54 @@
+
+'''repoman/checks/ebuilds/misc.py
+Miscelaneous ebuild check functions'''
+
+import re
+
+import portage
+
+
+pv_toolong_re = re.compile(r'[0-9]{19,}')
+
+
+def bad_split_check(xpkg, y_ebuild, pkgdir, qatracker):
+   '''Checks for bad category/package splits.
+
+   @param xpkg: the pacakge being checked
+   @param y_ebuild: string of the ebuild name being tested
+   @param pkgdir: string: path
+   @param qatracker: QATracker instance
+   '''
+   myesplit = portage.pkgsplit(y_ebuild)
+
+   is_bad_split = myesplit is None or myesplit[0] != xpkg.split(/)[-1]
+
+   if is_bad_split:
+   is_pv_toolong = pv_toolong_re.search(myesplit[1])
+   is_pv_toolong2 = pv_toolong_re.search(myesplit[2])
+
+   if is_pv_toolong or is_pv_toolong2:
+   qatracker.add_error(ebuild.invalidname,
+   xpkg + / + y_ebuild + .ebuild)
+   return True
+   elif myesplit[0] != pkgdir:
+   print(pkgdir, myesplit[0])
+   qatracker.add_error(ebuild.namenomatch,
+   xpkg + / + y_ebuild + .ebuild)
+   return True
+   return False
+
+
+def pkg_invalid(pkg, qatracker):
+   '''Checks for invalid packages
+
+   @param pkg: _emerge.Package instance
+   @param qatracker: QATracker instance
+   @return boolean:
+   '''
+   if pkg.invalid:
+   for k, msgs in pkg.invalid.items():
+   for msg in msgs:
+   qatracker.add_error(k,
+   %s: %s % (ebuild.relative_path, msg))
+   return True
+   return False

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index 9db52c0..c680752 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -51,6 +51,7 @@ from repoman.checks.ebuilds.fetches import FetchChecks
 from repoman.checks.ebuilds.isebuild import IsEbuild
 from repoman.checks.ebuilds.thirdpartymirrors import ThirdPartyMirrors
 from repoman.checks.ebuilds.manifests import Manifests
+from repoman.checks.ebuilds.misc import bad_split_check, pkg_invalid
 from repoman.checks.ebuilds.pkgmetadata import PkgMetadata
 from repoman.ebuild import Ebuild
 from repoman.errors import err
@@ -76,8 +77,6 @@ util.initialize_logger()
 
 commitmessage = None
 
-pv_toolong_re = re.compile(r'[0-9]{19,}')
-
 bad = create_color_func(BAD)
 
 live_eclasses = portage.const.LIVE_ECLASSES
@@ -368,32 +367,14 @@ for xpkg in effective_scanlist:
# ebuild not added to vcs
qatracker.add_error(ebuild.notadded,
xpkg + / + y_ebuild + .ebuild)
-   myesplit = portage.pkgsplit(y_ebuild)
-
-   is_bad_split = myesplit is None or myesplit[0] != 
xpkg.split(/)[-1]
-
-   if is_bad_split:
-   is_pv_toolong = pv_toolong_re.search(myesplit[1])
-   is_pv_toolong2 = pv_toolong_re.search(myesplit[2])
 
-   if is_pv_toolong or is_pv_toolong2:
-   qatracker.add_error(ebuild.invalidname,
-   xpkg + / + y_ebuild + .ebuild)
-   continue
-   elif myesplit[0] != pkgdir:
-   print(pkgdir, myesplit[0])
-   qatracker.add_error(ebuild.namenomatch,
-   xpkg + / + y_ebuild + .ebuild)
+##
+   if bad_split_check(xpkg, y_ebuild, pkgdir, qatracker):
continue
-
+###
pkg = pkgs[y_ebuild]
-
-   if pkg.invalid:
+   if pkg_invalid(pkg, qatracker):
allvalid = False
-   for k, msgs in pkg.invalid.items():
-   for msg in msgs:
-   qatracker.add_error(k,
-   %s: %s % 
(ebuild.relative_path, msg))

[gentoo-commits] gentoo-x86 commit in dev-python/pep8: pep8-1.5.7.ebuild ChangeLog

2014-06-02 Thread Ian Delaney (idella4)
idella4 14/06/02 06:45:44

  Modified: ChangeLog
  Added:pep8-1.5.7.ebuild
  Log:
  bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.30 dev-python/pep8/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   4 May 2014 16:12:37 -   1.29
+++ ChangeLog   2 Jun 2014 06:45:44 -   1.30
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pep8
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.29 2014/05/04 
16:12:37 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.30 2014/06/02 
06:45:44 idella4 Exp $
+
+*pep8-1.5.7 (02 Jun 2014)
+
+  02 Jun 2014; Ian Delaney idel...@gentoo.org +pep8-1.5.7.ebuild:
+  bump
 
   04 May 2014; Markus Meier mae...@gentoo.org pep8-1.4.6.ebuild:
   add ~arm, bug #508282



1.1  dev-python/pep8/pep8-1.5.7.ebuild

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

Index: pep8-1.5.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.5.7.ebuild,v 1.1 
2014/06/02 06:45:44 idella4 Exp $

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

inherit distutils-r1

DESCRIPTION=Python style guide checker
HOMEPAGE=http://github.com/jcrocholl/pep8 http://pypi.python.org/pypi/pep8;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
IUSE=doc

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
RDEPEND=${DEPEND}

python_compile_all() {
use doc  emake -C docs html
}

python_test() {
PYTHONPATH=${S} ${PYTHON} pep8.py -v --testsuite=testsuite || die
PYTHONPATH=${S} ${PYTHON} pep8.py --doctest -v || die
}

python_install_all() {
use doc  local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-vcs/mercurial: mercurial-3.0.1.ebuild ChangeLog

2014-06-02 Thread Dirkjan Ochtman (djc)
djc 14/06/02 06:59:28

  Modified: ChangeLog
  Added:mercurial-3.0.1.ebuild
  Log:
  Version bump mercurial to 3.0.1
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
30380381)

Revision  ChangesPath
1.147dev-vcs/mercurial/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?rev=1.147view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?rev=1.147content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?r1=1.146r2=1.147

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog   18 May 2014 23:21:57 -  1.146
+++ ChangeLog   2 Jun 2014 06:59:28 -   1.147
@@ -1,6 +1,11 @@
 # ChangeLog for dev-vcs/mercurial
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v 1.146 
2014/05/18 23:21:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v 1.147 
2014/06/02 06:59:28 djc Exp $
+
+*mercurial-3.0.1 (02 Jun 2014)
+
+  02 Jun 2014; Dirkjan Ochtman d...@gentoo.org +mercurial-3.0.1.ebuild:
+  Version bump mercurial to 3.0.1
 
   18 May 2014; Jeroen Roovers j...@gentoo.org metadata.xml:
   Sync e-mail address with bugs.g.o.



1.1  dev-vcs/mercurial/mercurial-3.0.1.ebuild

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

Index: mercurial-3.0.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-3.0.1.ebuild,v 
1.1 2014/06/02 06:59:28 djc Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE=threads

inherit bash-completion-r1 elisp-common eutils distutils-r1 flag-o-matic

DESCRIPTION=Scalable distributed SCM
HOMEPAGE=http://mercurial.selenic.com/;
SRC_URI=http://mercurial.selenic.com/release/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
IUSE=bugzilla emacs gpg test tk

RDEPEND=bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
gpg? ( app-crypt/gnupg )
tk? ( dev-lang/tk )
app-misc/ca-certificates
DEPEND=emacs? ( virtual/emacs )
test? ( app-arch/unzip
dev-python/pygments[${PYTHON_USEDEP}] )

SITEFILE=70${PN}-gentoo.el

python_prepare_all() {
# fix up logic that won't work in Gentoo Prefix (also won't outside in
# certain cases), bug #362891
sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die

distutils-r1_python_prepare_all
}

python_configure_all() {
strip-flags -ftracer -ftree-vectorize
# Note: make it impl-conditional if py3 is supported
append-flags -fno-strict-aliasing

${PYTHON} setup.py build_mo || die
}

python_compile_all() {
rm -r contrib/{win32,macosx} || die
if use emacs; then
cd contrib || die
elisp-compile mercurial.el || die elisp-compile failed!
fi
}

python_install_all() {
distutils-r1_python_install_all

newbashcomp contrib/bash_completion hg

insinto /usr/share/zsh/site-functions
newins contrib/zsh_completion _hg

rm -f doc/*.?.txt
dodoc CONTRIBUTORS
cp hgweb*.cgi ${ED}/usr/share/doc/${PF}/ || die

dobin hgeditor
dobin contrib/hgk
python_foreach_impl python_doscript contrib/hg-ssh

if use emacs; then
elisp-install ${PN} contrib/mercurial.el* || die elisp-install 
failed!
elisp-site-file-install ${FILESDIR}/${SITEFILE}
fi

local RM_CONTRIB=(hgk hg-ssh bash_completion zsh_completion wix 
buildrpm plan9
  *.el mercurial.spec)
for f in ${RM_CONTRIB[@]}; do
rm -r contrib/$f || die
done

dodoc -r contrib
docompress -x /usr/share/doc/${PF}/contrib
doman doc/*.?

cat  ${T}/80mercurial -EOF
HG=${EPREFIX}/usr/bin/hg
EOF
doenvd ${T}/80mercurial

insinto /etc/mercurial/hgrc.d
doins ${FILESDIR}/cacerts.rc
}

src_test() {
pushd tests /dev/null || die
rm -rf *svn*# Subversion tests fail with 1.5
rm -f 

[gentoo-commits] gentoo-x86 commit in xfce-base/xfce4-session: xfce4-session-4.11.0-r1.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 07:07:44

  Modified: xfce4-session-4.11.0-r1.ebuild ChangeLog
  Log:
  Temporarily apply -upower-0.99.patch only with USE=udev wrt #512084
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild?r1=1.1r2=1.2

Index: xfce4-session-4.11.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-session-4.11.0-r1.ebuild  31 May 2014 19:19:58 -  1.1
+++ xfce4-session-4.11.0-r1.ebuild  2 Jun 2014 07:07:44 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild,v
 1.1 2014/05/31 19:19:58 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.11.0-r1.ebuild,v
 1.2 2014/06/02 07:07:44 ssuominen Exp $
 
 EAPI=5
 EAUTORECONF=1
@@ -42,10 +42,10 @@
virtual/pkgconfig
 
 pkg_setup() {
-   PATCHES=(
-   ${FILESDIR}/${PN}-4.10.1-alock_support_to_xflock4.patch
-   ${FILESDIR}/${P}-upower-0.99.patch
-   )
+   PATCHES=( ${FILESDIR}/${PN}-4.10.1-alock_support_to_xflock4.patch )
+
+   # http://bugs.gentoo.org/512084
+   use udev  PATCHES+=( ${FILESDIR}/${P}-upower-0.99.patch )
 
XFCONF=(
--docdir=${EPREFIX}/usr/share/doc/${PF}



1.208xfce-base/xfce4-session/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/ChangeLog?rev=1.208view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/ChangeLog?rev=1.208content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/ChangeLog?r1=1.207r2=1.208

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog   31 May 2014 19:19:58 -  1.207
+++ ChangeLog   2 Jun 2014 07:07:44 -   1.208
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-base/xfce4-session
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v 1.207 
2014/05/31 19:19:58 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v 1.208 
2014/06/02 07:07:44 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org
+  xfce4-session-4.11.0-r1.ebuild:
+  Temporarily apply -upower-0.99.patch only with USE=udev wrt #512084
 
 *xfce4-session-4.11.0-r1 (31 May 2014)
 






[gentoo-commits] gentoo-x86 commit in app-office/scribus: ChangeLog scribus-1.4.4.ebuild scribus-1.4.2-r3.ebuild scribus-1.4.2-r2.ebuild

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 07:12:17

  Modified: ChangeLog
  Added:scribus-1.4.4.ebuild
  Removed:  scribus-1.4.2-r3.ebuild scribus-1.4.2-r2.ebuild
  Log:
  app-office/scribus: Version Bump, #511798; drop old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.184app-office/scribus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/ChangeLog?rev=1.184view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/ChangeLog?rev=1.184content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/ChangeLog?r1=1.183r2=1.184

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/scribus/ChangeLog,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ChangeLog   17 Sep 2013 15:58:17 -  1.183
+++ ChangeLog   2 Jun 2014 07:12:17 -   1.184
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/scribus
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/ChangeLog,v 1.183 
2013/09/17 15:58:17 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/ChangeLog,v 1.184 
2014/06/02 07:12:17 jlec Exp $
+
+*scribus-1.4.4 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org -scribus-1.4.2-r2.ebuild,
+  -scribus-1.4.2-r3.ebuild, +scribus-1.4.4.ebuild:
+  Version Bump, #511798; drop old
 
   17 Sep 2013; Justin Lecher j...@gentoo.org scribus-1.4.3.ebuild,
   scribus-1.4..ebuild, scribus-.ebuild:



1.1  app-office/scribus/scribus-1.4.4.ebuild

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

Index: scribus-1.4.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/scribus-1.4.4.ebuild,v 
1.1 2014/06/02 07:12:17 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=tk?

inherit cmake-utils fdo-mime python-single-r1

DESCRIPTION=Desktop publishing (DTP) and layout program
HOMEPAGE=http://www.scribus.net/;
SRC_URI=mirror://sourceforge/${PN}/${PV}/${P}.tar.xz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
IUSE=cairo debug examples hunspell +minimal +pdf scripts templates tk

# a=$(ls resources/translations/po/scribus.*ts | sed -e 's:\.: :g' | awk 
'{print $2}'); echo ${a}
IUSE_LINGUAS= af ar bg br ca cs_CZ cy da_DK de de_1901 de_CH el en_AU en_GB 
en_US es_ES et eu fi fr gl hu id it ja ko lt_LT nb_NO nl pl_PL pt pt_BR ru sa 
sk_SK sl sq sr sv th_TH tr uk zh_CN zh_TW
IUSE+= ${IUSE_LINGUAS// / linguas_}

REQUIRED_USE=
${PYTHON_REQUIRED_USE}
tk? ( scripts )

COMMON_DEPEND=
${PYTHON_DEPS}
dev-libs/boost
dev-libs/hyphen
dev-libs/libxml2
dev-qt/qtcore:4
dev-qt/qtgui:4
media-libs/fontconfig
media-libs/freetype:2
media-libs/lcms:2
media-libs/libpng:0
media-libs/tiff:0
net-print/cups
sys-libs/zlib[minizip]
virtual/jpeg
cairo? ( x11-libs/cairo[X,svg] )
!cairo? ( media-libs/libart_lgpl )
hunspell? ( app-text/hunspell )
pdf? ( app-text/podofo )
scripts? ( virtual/python-imaging[tk?,${PYTHON_USEDEP}] )
tk? ( virtual/python-imaging[tk?,${PYTHON_USEDEP}] )

RDEPEND=${COMMON_DEPEND}
app-text/ghostscript-gpl
DEPEND=${COMMON_DEPEND}
virtual/pkgconfig

PATCHES=(
${FILESDIR}/${PN}-1.4.2-docs.patch
${FILESDIR}/${PN}-1.4.0-minizip.patch
)

src_prepare() {
cat  cmake/modules/FindZLIB.cmake - EOF
find_package(PkgConfig)
pkg_check_modules(ZLIB minizip zlib)
SET( ZLIB_LIBRARY \${ZLIB_LIBRARIES} )
SET( ZLIB_INCLUDE_DIR \${ZLIB_INCLUDE_DIRS} )
MARK_AS_ADVANCED( ZLIB_LIBRARY ZLIB_INCLUDE_DIR )
EOF

rm scribus/{ioapi,unzip}.[ch] || die

sed \
-e 's:\(${CMAKE_INSTALL_PREFIX}\):./\1:g' \
-i resources/templates/CMakeLists.txt || die

cmake-utils_src_prepare
}

src_configure() {
local lang langs
for lang in ${IUSE_LINGUAS}; do
if use linguas_${lang}; then
langs+=,${lang}
else
sed -e /${lang}/d -i scribus/doc/CMakeLists.txt || die
fi
done

local mycmakeargs=(
-DHAVE_PYTHON=ON

[gentoo-commits] gentoo-x86 commit in media-gfx/plantuml: - New directory

2014-06-02 Thread Peter Volkov (pva)
pva 14/06/02 07:38:24

  Log:
  Directory /var/cvsroot/gentoo-x86/media-gfx/plantuml added to the repository



[gentoo-commits] gentoo-x86 commit in media-gfx/plantuml: plantuml-7999.ebuild metadata.xml ChangeLog

2014-06-02 Thread Peter Volkov (pva)
pva 14/06/02 07:40:22

  Added:plantuml-7999.ebuild metadata.xml ChangeLog
  Log:
  Initial import. Stop using visio-like tools! Use this!
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F1989B07)

Revision  ChangesPath
1.1  media-gfx/plantuml/plantuml-7999.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/plantuml/plantuml-7999.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/plantuml/plantuml-7999.ebuild?rev=1.1content-type=text/plain

Index: plantuml-7999.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/plantuml/plantuml-7999.ebuild,v 
1.1 2014/06/02 07:40:22 pva Exp $

EAPI=5

JAVA_PKG_IUSE=source
inherit eutils versionator java-pkg-2 java-ant-2

DESCRIPTION=PlantUML is used to draw UML diagram, using a simple and human 
readable text description
HOMEPAGE=http://plantuml.sourceforge.net;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.gz

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

DEPEND=
=virtual/jdk-1.6
source? ( app-arch/zip )

RDEPEND=
=virtual/jre-1.6
=media-gfx/graphviz-2.26.3


EANT_BUILD_TARGET=dist
EANT_GENTOO_CLASSPATH=ant-core
JAVA_ANT_REWRITE_CLASSPATH=true

src_install() {
java-pkg_dojar ${PN}.jar
java-pkg_dolauncher ${PN} --jar ${PN}.jar
use source  java-pkg_dosrc src/*
}

pkg_postinst() {
einfo Goto http://plantuml.sourceforge.net/ for product info
}



1.1  media-gfx/plantuml/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/plantuml/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/plantuml/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
maintainer
emailp...@gentoo.org/email
namePeter Volkov/name
/maintainer
longdescription lang=en
PlantUMLis a component that allows to quickly write: sequence diagram, 
use
case diagram, class diagram, activity diagram, component diagram, state
diagram, object diagram and wireframe graphical interface.

Diagrams are defined in a text file using a simple and intuitive 
language.
This can be used within many other tools. Images can be generated in PNG
or SVG format. It is also possible to generate ASCII art diagrams (only 
for
sequence diagrams).
/longdescription
/pkgmetadata



1.1  media-gfx/plantuml/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/plantuml/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/plantuml/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for media-gfx/plantuml
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/plantuml/ChangeLog,v 1.1 
2014/06/02 07:40:22 pva Exp $

*plantuml-7999 (02 Jun 2014)

  02 Jun 2014; Peter Volkov p...@gentoo.org +plantuml-7999.ebuild,
  +metadata.xml:
  Initial import. Stop using visio-like tools! Use this!







[gentoo-commits] gentoo commit in xml/htdocs/proj/en/metastructure/herds: herds.xml

2014-06-02 Thread Tom Wijsman (tomwij)
tomwij  14/06/02 07:47:17

  Modified: herds.xml
  Log:
  Add myself as MATE desktop maintainer to freedesktop herd.

Revision  ChangesPath
1.1105   xml/htdocs/proj/en/metastructure/herds/herds.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1105view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1105content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1104r2=1.1105

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1104
retrieving revision 1.1105
diff -u -r1.1104 -r1.1105
--- herds.xml   31 May 2014 20:27:29 -  1.1104
+++ herds.xml   2 Jun 2014 07:47:17 -   1.1105
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1104 
2014/05/31 20:27:29 caster Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1105 
2014/06/02 07:47:17 tomwij Exp $
 
 --
 herds
@@ -213,6 +213,11 @@
   maintainer
 emaill...@gentoo.org/email
   /maintainer
+  maintainer
+emailtom...@gentoo.org/email
+nameTom Wijsman/name
+roleMATE desktop maintenance/role
+  /maintainer
 /herd
 herd
   namegnome/name






[gentoo-commits] gentoo-x86 commit in dev-python/boto: boto-2.29.1.ebuild ChangeLog

2014-06-02 Thread Tim Harder (radhermit)
radhermit14/06/02 07:56:15

  Modified: ChangeLog
  Added:boto-2.29.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.97 dev-python/boto/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/ChangeLog?rev=1.97view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/ChangeLog?rev=1.97content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/ChangeLog?r1=1.96r2=1.97

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog   20 May 2014 23:20:00 -  1.96
+++ ChangeLog   2 Jun 2014 07:56:14 -   1.97
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/boto
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.96 2014/05/20 
23:20:00 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.97 2014/06/02 
07:56:14 radhermit Exp $
+
+*boto-2.29.1 (02 Jun 2014)
+
+  02 Jun 2014; Tim Harder radher...@gentoo.org +boto-2.29.1.ebuild:
+  Version bump.
 
   20 May 2014; Tim Harder radher...@gentoo.org boto-2.27.0.ebuild:
   Keywording amd64/x86 (bug #508570).



1.1  dev-python/boto/boto-2.29.1.ebuild

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

Index: boto-2.29.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.29.1.ebuild,v 1.1 
2014/06/02 07:56:14 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )

inherit distutils-r1

DESCRIPTION=Amazon Web Services API
HOMEPAGE=https://github.com/boto/boto http://pypi.python.org/pypi/boto;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]

# requires Amazon Web Services keys to pass some tests
RESTRICT=test

python_test() {
esetup.py test
}






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

2014-06-02 Thread Michael Palimaka
commit: 93c2aed35cd31856767e47ef24857d5ae2cc85ec
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 08:00:02 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 08:00:02 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=93c2aed3

[kde-frameworks/kactivities] Add missing dependency wrt bug #512098.

Upstream commit: e4679df188379762110e566a3fd68e30464a5c4d.

Package-Manager: portage-2.2.10

---
 kde-frameworks/kactivities/kactivities-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-frameworks/kactivities/kactivities-.ebuild 
b/kde-frameworks/kactivities/kactivities-.ebuild
index 58e5f3d..c87bbc6 100644
--- a/kde-frameworks/kactivities/kactivities-.ebuild
+++ b/kde-frameworks/kactivities/kactivities-.ebuild
@@ -16,6 +16,7 @@ DEPEND=
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwindowsystem)
dev-qt/qtdbus:5



[gentoo-commits] gentoo-x86 commit in app-arch/gtk-splitter: gtk-splitter-2.2.1-r1.ebuild

2014-06-02 Thread Michael Palimaka (kensington)
kensington14/06/02 08:13:06

  Modified: gtk-splitter-2.2.1-r1.ebuild
  Log:
  Whitespace.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)

Revision  ChangesPath
1.3  app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild?r1=1.2r2=1.3

Index: gtk-splitter-2.2.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gtk-splitter-2.2.1-r1.ebuild2 Jun 2014 08:07:41 -   1.2
+++ gtk-splitter-2.2.1-r1.ebuild2 Jun 2014 08:13:06 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild,v 
1.2 2014/06/02 08:07:41 tomwij Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild,v 
1.3 2014/06/02 08:13:06 kensington Exp $
 
 EAPI=5
 
@@ -13,7 +13,6 @@
 LICENSE=GPL-2
 SLOT=0
 KEYWORDS=~amd64 ~ppc ~x86
-
 IUSE=crypt
 
 RDEPEND=x11-libs/gtk+:2






[gentoo-commits] gentoo-x86 commit in app-office/kraft: kraft-0.55.ebuild ChangeLog

2014-06-02 Thread Michael Palimaka (kensington)
kensington14/06/02 08:25:19

  Modified: ChangeLog
  Added:kraft-0.55.ebuild
  Log:
  Version bump wrt bug #512120.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)

Revision  ChangesPath
1.12 app-office/kraft/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kraft/ChangeLog?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kraft/ChangeLog?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kraft/ChangeLog?r1=1.11r2=1.12

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/kraft/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   17 May 2014 14:40:18 -  1.11
+++ ChangeLog   2 Jun 2014 08:25:19 -   1.12
@@ -1,6 +1,11 @@
 # ChangeLog for app-office/kraft
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/kraft/ChangeLog,v 1.11 
2014/05/17 14:40:18 creffett Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/kraft/ChangeLog,v 1.12 
2014/06/02 08:25:19 kensington Exp $
+
+*kraft-0.55 (02 Jun 2014)
+
+  02 Jun 2014; Michael Palimaka kensing...@gentoo.org +kraft-0.55.ebuild:
+  Version bump wrt bug #512120.
 
 *kraft-0.54 (17 May 2014)
 



1.1  app-office/kraft/kraft-0.55.ebuild

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

Index: kraft-0.55.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/kraft/kraft-0.55.ebuild,v 1.1 
2014/06/02 08:25:19 kensington Exp $

EAPI=5

KDE_LINGUAS=bg bs cs da de en_GB eo es et fi fr ga gl hu it ja lt mai mr nds
nl pl pt pt_BR sk sv tr ug uk zh_CN
inherit kde4-base

DESCRIPTION=Software for operating a small business, helping create documents 
such as offers and invoices
HOMEPAGE=http://www.volle-kraft-voraus.de/;
SRC_URI=mirror://sourceforge/kraft/${P}.tar.bz2

LICENSE=GPL-2
SLOT=4
KEYWORDS=~amd64 ~x86
IUSE=debug

DEPEND=
dev-cpp/ctemplate
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtsql:4[mysql,sqlite]
$(add_kdebase_dep kdepimlibs)

RDEPEND=${DEPEND}

DOCS=( AUTHORS Changes.txt README Releasenotes.txt TODO )






[gentoo-commits] gentoo-x86 commit in sci-biology/rebase: ChangeLog rebase-1404.ebuild rebase-1311.ebuild rebase-1202.ebuild rebase-1312.ebuild rebase-1303.ebuild rebase-1310.ebuild

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 08:46:52

  Modified: ChangeLog
  Added:rebase-1404.ebuild
  Removed:  rebase-1311.ebuild rebase-1202.ebuild
rebase-1312.ebuild rebase-1303.ebuild
rebase-1310.ebuild
  Log:
  sci-biology/rebase: Version BUmp; clean old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.121sci-biology/rebase/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.121view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.121content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?r1=1.120r2=1.121

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog   6 Mar 2014 11:25:34 -   1.120
+++ ChangeLog   2 Jun 2014 08:46:52 -   1.121
@@ -1,6 +1,13 @@
 # ChangeLog for sci-biology/rebase
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.120 
2014/03/06 11:25:34 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.121 
2014/06/02 08:46:52 jlec Exp $
+
+*rebase-1404 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org -rebase-1202.ebuild,
+  -rebase-1303.ebuild, -rebase-1310.ebuild, -rebase-1311.ebuild,
+  -rebase-1312.ebuild, +rebase-1404.ebuild:
+  Version BUmp; clean old
 
 *rebase-1403 (06 Mar 2014)
 



1.1  sci-biology/rebase/rebase-1404.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1404.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1404.ebuild?rev=1.1content-type=text/plain

Index: rebase-1404.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-1404.ebuild,v 1.1 
2014/06/02 08:46:52 jlec Exp $

EAPI=5

MY_PV=${PV#1}

DESCRIPTION=A restriction enzyme database
HOMEPAGE=http://rebase.neb.com;
SRC_URI=http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;

SLOT=0
LICENSE=public-domain
KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris 
~x86-solaris
IUSE=emboss minimal

RDEPEND=emboss? ( =sci-biology/emboss-5.0.0 )
DEPEND=${RDEPEND}

RESTRICT=binchecks strip

src_compile() {
if use emboss; then
echo; einfo Indexing Rebase for usage with EMBOSS.
mkdir REBASE || die
EMBOSS_DATA=. rebaseextract -auto -infile withrefm.${MY_PV} \
-protofile proto.${MY_PV} -equivalences \
|| die Indexing Rebase failed.
echo
fi
}

src_install() {
if ! use minimal; then
insinto /usr/share/${PN}
doins withrefm.${MY_PV} proto.${MY_PV}
fi
newdoc REBASE.DOC README
if use emboss; then
insinto /usr/share/EMBOSS/data/REBASE
doins REBASE/embossre.{enz,ref,sup}
insinto /usr/share/EMBOSS/data
doins REBASE/embossre.equ
fi
}






[gentoo-commits] gentoo-x86 commit in dev-python/sphinxcontrib-plantuml: - New directory

2014-06-02 Thread Peter Volkov (pva)
pva 14/06/02 08:57:21

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-python/sphinxcontrib-plantuml added to 
the repository



[gentoo-commits] gentoo-x86 commit in sys-kernel/aufs-sources: ChangeLog aufs-sources-3.12.20.ebuild aufs-sources-3.10.41.ebuild

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 08:57:50

  Modified: ChangeLog aufs-sources-3.12.20.ebuild
  Added:aufs-sources-3.10.41.ebuild
  Log:
  sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.118sys-kernel/aufs-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog   24 May 2014 09:41:37 -  1.117
+++ ChangeLog   2 Jun 2014 08:57:49 -   1.118
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/aufs-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.117 
2014/05/24 09:41:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.118 
2014/06/02 08:57:49 jlec Exp $
+
+*aufs-sources-3.10.41 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org +aufs-sources-3.10.41.ebuild,
+  aufs-sources-3.12.20.ebuild, +files/README.gentoo:
+  Bump to latest aufs3, genpatches and linux release
 
   24 May 2014; Markos Chandras hwoar...@gentoo.org
   aufs-sources-3.12.20.ebuild:



1.3  sys-kernel/aufs-sources/aufs-sources-3.12.20.ebuild

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

Index: aufs-sources-3.12.20.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.12.20.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- aufs-sources-3.12.20.ebuild 24 May 2014 09:41:37 -  1.2
+++ aufs-sources-3.12.20.ebuild 2 Jun 2014 08:57:49 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.12.20.ebuild,v 
1.2 2014/05/24 09:41:37 hwoarang Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.12.20.ebuild,v 
1.3 2014/06/02 08:57:49 jlec Exp $
 
 EAPI=5
 
@@ -48,6 +48,8 @@
 
unpack ${AUFS_TARBALL}
 
+   einfo Using aufs3 version: ${AUFS_VERSION}
+
kernel-2_src_unpack
 }
 



1.1  sys-kernel/aufs-sources/aufs-sources-3.10.41.ebuild

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

Index: aufs-sources-3.10.41.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.41.ebuild,v 
1.1 2014/06/02 08:57:49 jlec Exp $

EAPI=5

ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=48
K_DEBLOB_AVAILABLE=1
UNIPATCH_STRICTORDER=1
inherit kernel-2 eutils
detect_version
detect_arch

AUFS_VERSION=3.10.x_p20140602
AUFS_TARBALL=aufs-sources-${AUFS_VERSION}.tar.xz
# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone 
aufs${AUFS_VERSION/_p*}  aufs-sources-${AUFS_VERSION}.tar
AUFS_URI=http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL};

KEYWORDS=~amd64 ~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches 
http://aufs.sourceforge.net/;
IUSE=deblob experimental module vanilla

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support
SRC_URI=
${KERNEL_URI}
${ARCH_URI}
${AUFS_URI}
!vanilla? ( ${GENPATCHES_URI} )


PDEPEND==sys-fs/aufs-util-3.9

src_unpack() {
if use vanilla; then
unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
ewarn You are using USE=vanilla
ewarn This will drop all support from the gentoo kernel 
security team
fi

UNIPATCH_LIST=

[gentoo-commits] gentoo-x86 commit in sys-kernel/aufs-sources/files: README.gentoo

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 08:57:50

  Added:README.gentoo
  Log:
  sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.1  sys-kernel/aufs-sources/files/README.gentoo

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/files/README.gentoo?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/files/README.gentoo?rev=1.1content-type=text/plain

Index: README.gentoo
===
There several other patches in aufs3. They are all
optional. When you meet some problems, they will help you. You can find them
in the documentation directory.

- aufs3-loopback.patch
  Supports a nested loopback mount in a branch-fs. This patch is
  unnecessary until aufs produces a message such like you may want to 
try
  another patch for loopback file.

- vfs-ino.patch
  Modifies a system global kernel internal function get_next_ino() in
  order to stop assigning 0 for an inode-number. Not directly related to
  aufs, but recommended generally.

- tmpfs-ibitmap.patch
  Keeps the tmpfs inode number as the lowest value. Effective to reduce
  the size of aufs XINO files for tmpfs branch. Also it prevents the
  duplication of inode number, which is important for backup
  tools, aubrsync or other utilities. When you find aufs XINO files for
  tmpfs branch growing too much, try this patch.






[gentoo-commits] gentoo-x86 commit in dev-python/sphinxcontrib-plantuml: metadata.xml ChangeLog sphinxcontrib-plantuml-0.4.ebuild

2014-06-02 Thread Peter Volkov (pva)
pva 14/06/02 09:06:37

  Added:metadata.xml ChangeLog
sphinxcontrib-plantuml-0.4.ebuild
  Log:
  Initial commit. Text tools forever!
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F1989B07)

Revision  ChangesPath
1.1  dev-python/sphinxcontrib-plantuml/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinxcontrib-plantuml/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinxcontrib-plantuml/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
maintainer
emailp...@gentoo.org/email
namePeter Volkov/name
/maintainer
longdescription lang=en
This package allows inline plantuml diagrams inside sphinx text files.
/longdescription
/pkgmetadata



1.1  dev-python/sphinxcontrib-plantuml/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-python/sphinxcontrib-plantuml
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sphinxcontrib-plantuml/ChangeLog,v 1.1 
2014/06/02 09:06:37 pva Exp $

*sphinxcontrib-plantuml-0.4 (02 Jun 2014)

  02 Jun 2014; Peter Volkov p...@gentoo.org
  +sphinxcontrib-plantuml-0.4.ebuild, +metadata.xml:
  Initial commit. Text tools forever!




1.1  
dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.4.ebuild?rev=1.1content-type=text/plain

Index: sphinxcontrib-plantuml-0.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.4.ebuild,v
 1.1 2014/06/02 09:06:37 pva Exp $

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

inherit distutils-r1

DESCRIPTION=Extension to embed UML diagram by using PlantUML
HOMEPAGE=https://bitbucket.org/birkenfeld/sphinx-contrib;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=BSD-2
SLOT=0
KEYWORDS=~amd64 ~x86

IUSE=

DEPEND=
=dev-python/sphinx-1.1[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]

RDEPEND=${DEPEND}
media-gfx/plantuml


DOCS=README.rst






[gentoo-commits] proj/kde:master commit in: kde-misc/kscreen/

2014-06-02 Thread Michael Palimaka
commit: ba2e93abf6cf221d339f929f4dd2a59252a5b3e3
Author: Elias Probst mail AT eliasprobst DOT eu
AuthorDate: Sun Jun  1 20:18:44 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 09:07:20 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ba2e93ab

[kde-misc/kscreen] Add ebuild for frameworks based kscreen

Package-Manager: portage-2.2.10

---
 kde-misc/kscreen/kscreen-.ebuild | 33 +
 1 file changed, 33 insertions(+)

diff --git a/kde-misc/kscreen/kscreen-.ebuild 
b/kde-misc/kscreen/kscreen-.ebuild
new file mode 100644
index 000..fe10750
--- /dev/null
+++ b/kde-misc/kscreen/kscreen-.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+EGIT_BRANCH=frameworks
+inherit kde5
+
+DESCRIPTION=KDE screen management
+HOMEPAGE=https://projects.kde.org/projects/extragear/base/kscreen;
+
+KEYWORDS=
+IUSE=
+
+DEPEND=
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kglobalaccel)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   =x11-libs/libkscreen2-${PV}:5
+
+RDEPEND=
+   ${DEPEND}
+   !kde-misc/kscreen:4
+



[gentoo-commits] gentoo commit in xml/htdocs/proj/en/prog_lang/ruby: index.xml

2014-06-02 Thread Manuel Rueger (mrueg)
mrueg   14/06/02 09:17:52

  Modified: index.xml
  Log:
  Migrate ruby project page to wiki.

Revision  ChangesPath
1.21 xml/htdocs/proj/en/prog_lang/ruby/index.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/prog_lang/ruby/index.xml?rev=1.21view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/prog_lang/ruby/index.xml?rev=1.21content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/prog_lang/ruby/index.xml?r1=1.20r2=1.21

Index: index.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/prog_lang/ruby/index.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- index.xml   8 Jul 2013 18:34:29 -   1.20
+++ index.xml   2 Jun 2014 09:17:52 -   1.21
@@ -2,7 +2,7 @@
 ?xml-stylesheet href=/xsl/project.xsl type=text/xsl?
 ?xml-stylesheet href=/xsl/guide.xsl type=text/xsl?
 !DOCTYPE project SYSTEM /dtd/project.dtd 
-project
+project disclaimer=obsolete 
redirect=http://wiki.gentoo.org/wiki/Project:Ruby;
 nameRuby/name
 longnameGentoo Ruby Project/longname
 date02 May 2010/date






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/metastructure/herds: herds.xml

2014-06-02 Thread Manuel Rueger (mrueg)
mrueg   14/06/02 09:20:45

  Modified: herds.xml
  Log:
  Add myself to lxqt herd.

Revision  ChangesPath
1.1106   xml/htdocs/proj/en/metastructure/herds/herds.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1106view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1106content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1105r2=1.1106

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1105
retrieving revision 1.1106
diff -u -r1.1105 -r1.1106
--- herds.xml   2 Jun 2014 07:47:17 -   1.1105
+++ herds.xml   2 Jun 2014 09:20:45 -   1.1106
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1105 
2014/06/02 07:47:17 tomwij Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1106 
2014/06/02 09:20:45 mrueg Exp $
 
 --
 herds
@@ -2252,6 +2252,10 @@
 emailkensing...@gentoo.org/email
 nameMichael Palimaka/name
   /maintainer
+  maintainer
+emailmr...@gentoo.org/email
+nameManuel Rüger/name
+  /maintainer
 /herd 
 /herds
 






[gentoo-commits] gentoo-x86 commit in sys-fs/aufs3: aufs3-3_p20140602.ebuild ChangeLog aufs3-3_p20140526.ebuild

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 09:23:19

  Modified: ChangeLog aufs3-3_p20140526.ebuild
  Added:aufs3-3_p20140602.ebuild
  Log:
  sys-fs/aufs3: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.93 sys-fs/aufs3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/ChangeLog?rev=1.93view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/ChangeLog?rev=1.93content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/ChangeLog?r1=1.92r2=1.93

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog   26 May 2014 06:29:25 -  1.92
+++ ChangeLog   2 Jun 2014 09:23:19 -   1.93
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/aufs3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v 1.92 2014/05/26 
06:29:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v 1.93 2014/06/02 
09:23:19 jlec Exp $
+
+*aufs3-3_p20140602 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org aufs3-3_p20140526.ebuild,
+  +aufs3-3_p20140602.ebuild:
+  Version Bump
 
 *aufs3-3_p20140526 (26 May 2014)
 



1.2  sys-fs/aufs3/aufs3-3_p20140526.ebuild

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

Index: aufs3-3_p20140526.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20140526.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- aufs3-3_p20140526.ebuild26 May 2014 06:29:25 -  1.1
+++ aufs3-3_p20140526.ebuild2 Jun 2014 09:23:19 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20140526.ebuild,v 1.1 
2014/05/26 06:29:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20140526.ebuild,v 1.2 
2014/06/02 09:23:19 jlec Exp $
 
 EAPI=5
 
@@ -36,7 +36,7 @@
 MODULE_NAMES=aufs(misc:${S})
 
 pkg_setup() {
-#  CONFIG_CHECK+= !AUFS_FS
+   CONFIG_CHECK+= !AUFS_FS
use inotify  CONFIG_CHECK+= ~FSNOTIFY
use nfs  CONFIG_CHECK+= EXPORTFS
use fuse  CONFIG_CHECK+= ~FUSE_FS



1.1  sys-fs/aufs3/aufs3-3_p20140602.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/aufs3-3_p20140602.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/aufs3/aufs3-3_p20140602.ebuild?rev=1.1content-type=text/plain

Index: aufs3-3_p20140602.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20140602.ebuild,v 1.1 
2014/06/02 09:23:19 jlec Exp $

EAPI=5

inherit eutils flag-o-matic linux-info linux-mod multilib readme.gentoo 
toolchain-funcs

AUFS_VERSION=${PV%%_p*}
# highest branch version
PATCH_MAX_VER=14
# highest supported version
KERN_MAX_VER=15
# lowest supported version
KERN_MIN_VER=10

DESCRIPTION=An entirely re-designed and re-implemented Unionfs
HOMEPAGE=http://aufs.sourceforge.net/;
SRC_URI=http://dev.gentoo.org/~jlec/distfiles/aufs3-standalone-${PV}.tar.xz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug doc fuse hfs inotify kernel-patch nfs pax_kernel ramfs

DEPEND=
dev-util/patchutils
dev-vcs/git
RDEPEND=
sys-fs/aufs-util
!sys-fs/aufs
!sys-fs/aufs2

S=${WORKDIR}/${PN}-standalone

MODULE_NAMES=aufs(misc:${S})

pkg_setup() {
CONFIG_CHECK+= !AUFS_FS
use inotify  CONFIG_CHECK+= ~FSNOTIFY
use nfs  CONFIG_CHECK+= EXPORTFS
use fuse  CONFIG_CHECK+= ~FUSE_FS
use hfs  CONFIG_CHECK+= ~HFSPLUS_FS
use pax_kernel  CONFIG_CHECK+= PAX  ERROR_PAX=Please use 
hardened sources

# this is needed so merging a binpkg ${PN} is possible w/out a kernel 
unpacked on the system
[ -n $PKG_SETUP_HAS_BEEN_RAN ]  return

get_version
kernel_is lt 3 ${KERN_MIN_VER} 0  die the kernel version isn't 
supported by upstream anymore. Please upgrade.
kernel_is gt 3 ${KERN_MAX_VER} 99  die kernel too new

linux-mod_pkg_setup

if [[ ${KV_MINOR} -gt ${PATCH_MAX_VER} ]]; then
  

[gentoo-commits] gentoo-x86 commit in dev-perl/Config-AutoConf: Config-AutoConf-0.304.ebuild ChangeLog Config-AutoConf-0.300.0.ebuild

2014-06-02 Thread Manuel Rueger (mrueg)
mrueg   14/06/02 09:32:26

  Modified: ChangeLog
  Added:Config-AutoConf-0.304.ebuild
  Removed:  Config-AutoConf-0.300.0.ebuild
  Log:
  Version bump. Cleanup old.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.6  dev-perl/Config-AutoConf/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Config-AutoConf/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   29 May 2014 07:59:28 -  1.5
+++ ChangeLog   2 Jun 2014 09:32:26 -   1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Config-AutoConf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Config-AutoConf/ChangeLog,v 1.5 
2014/05/29 07:59:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Config-AutoConf/ChangeLog,v 1.6 
2014/06/02 09:32:26 mrueg Exp $
+
+*Config-AutoConf-0.304 (02 Jun 2014)
+
+  02 Jun 2014; Manuel Rüger mr...@gentoo.org +Config-AutoConf-0.304.ebuild,
+  -Config-AutoConf-0.300.0.ebuild:
+  Version bump. Cleanup old.
 
 *Config-AutoConf-0.302.0 (29 May 2014)
 



1.1  dev-perl/Config-AutoConf/Config-AutoConf-0.304.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-AutoConf/Config-AutoConf-0.304.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-AutoConf/Config-AutoConf-0.304.ebuild?rev=1.1content-type=text/plain

Index: Config-AutoConf-0.304.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Config-AutoConf/Config-AutoConf-0.304.ebuild,v 
1.1 2014/06/02 09:32:26 mrueg Exp $

EAPI=5

MODULE_AUTHOR=REHSACK
MODULE_VERSION=${PV%.0}

inherit perl-module

DESCRIPTION=A module to implement some of AutoConf macros in pure perl

SLOT=0
KEYWORDS=~amd64
IUSE=test

DEPEND=test? ( =dev-perl/Test-Pod-1.14
=dev-perl/Test-Pod-Coverage-1.08 )
RDEPEND=dev-perl/Capture-Tiny

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-python/python-gnutls: ChangeLog Manifest metadata.xml python-gnutls-1.2.0.ebuild python-gnutls-1.2.2.ebuild python-gnutls-1.2.4.ebuild python-gnutls-1.2.5.ebu

2014-06-02 Thread Manuel Rueger (mrueg)
mrueg   14/06/02 09:34:52

  Removed:  ChangeLog Manifest metadata.xml
python-gnutls-1.2.0.ebuild
python-gnutls-1.2.2.ebuild
python-gnutls-1.2.4.ebuild
python-gnutls-1.2.5.ebuild
  Log:
  dev-python/python-gnutls removal. Does not build with gnutls-3. See bug 
#446016



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

2014-06-02 Thread Manuel Rueger (mrueg)
mrueg   14/06/02 09:35:49

  Modified: ChangeLog package.mask
  Log:
  Clean up package.mask

Revision  ChangesPath
1.9037   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9036
retrieving revision 1.9037
diff -u -r1.9036 -r1.9037
--- ChangeLog   2 Jun 2014 01:57:55 -   1.9036
+++ ChangeLog   2 Jun 2014 09:35:48 -   1.9037
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9036 2014/06/02 
01:57:55 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9037 2014/06/02 
09:35:48 mrueg 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!
 
+  02 Jun 2014; Manuel Rüger mr...@gentoo.org package.mask:
+  Clean up package.mask
+
   02 Jun 2014; Alexandre Rostovtsev tetrom...@gentoo.org
   targets/desktop/gnome/package.use:
   Make libmediaart installable out of the box in gnome profiles



1.15757  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.15756
retrieving revision 1.15757
diff -u -r1.15756 -r1.15757
--- package.mask1 Jun 2014 20:43:48 -   1.15756
+++ package.mask2 Jun 2014 09:35:48 -   1.15757
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15756 2014/06/01 
20:43:48 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15757 2014/06/02 
09:35:48 mrueg 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
@@ -220,11 +220,6 @@
 # static user helpers.  See #508098 for more info. Removal in a month
 app-emulation/qemu-user
 
-# Manuel Rüger mr...@gentoo.org (28 Apr 2014)
-# Fails to build with gnutls-3, on behalf of python herd
-# See bug #446016
-dev-python/python-gnutls
-
 # Eray Aslan e...@gentoo.org (26 Apr 2014)
 # Non-functional and no longer needed - bug #450116
 # Removal in 30 days






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

2014-06-02 Thread Michael Palimaka
commit: ecd9c854824968b5a4cfa265b5ec43ebe7089c78
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 09:34:00 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 09:34:54 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ecd9c854

[kde-base/breeze] Update dependencies.

Upstream commit: 68ac186bc57917ff1b4e2c3728183660832ca9f5.

Package-Manager: portage-2.2.10

---
 kde-base/breeze/breeze-.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/kde-base/breeze/breeze-.ebuild 
b/kde-base/breeze/breeze-.ebuild
index 1d3776f..fcabda9 100644
--- a/kde-base/breeze/breeze-.ebuild
+++ b/kde-base/breeze/breeze-.ebuild
@@ -4,10 +4,16 @@
 
 EAPI=5
 
-KDE_DEBUG=false
 inherit kde5
 
 DESCRIPTION=Breeze visual style for the Plasma desktop
 HOMEPAGE=https://projects.kde.org/projects/kde/workspace/breeze;
 KEYWORDS=
 IUSE=
+
+DEPEND=
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   dev-qt/qtwidgets:5
+
+RDEPEND=${DEPEND}



[gentoo-commits] proj/kde:master commit in: kde-misc/plasma-nm/

2014-06-02 Thread Johannes Huber
commit: 66987b051f16521688032d6a9dbbd78a5ec05fd9
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Mon Jun  2 09:53:47 2014 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jun  2 09:53:58 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=66987b05

[kde-misc/plasma-nm] Use master branch

Upstream merged frameworks branch into master.

Package-Manager: portage-2.2.10

---
 kde-misc/plasma-nm/plasma-nm-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-misc/plasma-nm/plasma-nm-.ebuild 
b/kde-misc/plasma-nm/plasma-nm-.ebuild
index d0823af..be83498 100644
--- a/kde-misc/plasma-nm/plasma-nm-.ebuild
+++ b/kde-misc/plasma-nm/plasma-nm-.ebuild
@@ -14,7 +14,6 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then
SRC_URI=mirror://kde/unstable/${PN}/${P}.tar.xz
 else
KEYWORDS=
-   EGIT_BRANCH=frameworks
 fi
 
 DESCRIPTION=KDE Plasma applet for NetworkManager



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

2014-06-02 Thread Michael Palimaka
commit: fcea3d56d43a9ee251066f0bab7bfdcf923a29fc
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 09:58:18 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 09:58:18 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=fcea3d56

[kde-base/oxygen] Add missing dependency.

Package-Manager: portage-2.2.10

---
 kde-base/oxygen/oxygen-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-base/oxygen/oxygen-.ebuild 
b/kde-base/oxygen/oxygen-.ebuild
index 0c36297..fb591da 100644
--- a/kde-base/oxygen/oxygen-.ebuild
+++ b/kde-base/oxygen/oxygen-.ebuild
@@ -16,6 +16,7 @@ DEPEND=
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kservice)



[gentoo-commits] gentoo-x86 commit in dev-python/flask-peewee: flask-peewee-0.6.5.ebuild ChangeLog

2014-06-02 Thread Ian Delaney (idella4)
idella4 14/06/02 10:09:48

  Modified: flask-peewee-0.6.5.ebuild ChangeLog
  Log:
  set PYTHON_USEDEP tp peewee
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-python/flask-peewee/flask-peewee-0.6.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.5.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.5.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.5.ebuild?r1=1.1r2=1.2

Index: flask-peewee-0.6.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flask-peewee-0.6.5.ebuild   18 Aug 2013 02:59:11 -  1.1
+++ flask-peewee-0.6.5.ebuild   2 Jun 2014 10:09:48 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.5.ebuild,v 1.1 
2013/08/18 02:59:11 patrick Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.5.ebuild,v 1.2 
2014/06/02 10:09:48 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -21,7 +21,7 @@
 RDEPEND=dev-python/flask[${PYTHON_USEDEP}]
 DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/peewee
+   dev-python/peewee[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
)



1.2  dev-python/flask-peewee/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   18 Aug 2013 02:59:11 -  1.1
+++ ChangeLog   2 Jun 2014 10:09:48 -   1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/flask-peewee
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/ChangeLog,v 1.1 
2013/08/18 02:59:11 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/ChangeLog,v 1.2 
2014/06/02 10:09:48 idella4 Exp $
+
+  02 Jun 2014; Ian Delaney idel...@gentoo.org flask-peewee-0.6.5.ebuild:
+  set PYTHON_USEDEP tp peewee
 
 *flask-peewee-0.6.5 (18 Aug 2013)
 






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

2014-06-02 Thread Michael Palimaka
commit: 68a82acdd5e94ad741845acfaf0aadd88383c31d
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 10:20:49 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 10:20:49 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=68a82acd

[kde-base/powerdevil] Add missing dependency.

Package-Manager: portage-2.2.10

---
 kde-base/powerdevil/powerdevil-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-base/powerdevil/powerdevil-.ebuild 
b/kde-base/powerdevil/powerdevil-.ebuild
index b4c7944..8297988 100644
--- a/kde-base/powerdevil/powerdevil-.ebuild
+++ b/kde-base/powerdevil/powerdevil-.ebuild
@@ -33,7 +33,10 @@ DEPEND=
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
-   upower? ( || ( =sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )
+   upower? (
+   || ( =sys-power/upower-0.9.23 sys-power/upower-pm-utils )
+   virtual/udev
+   )
X? (
dev-qt/qtx11extras:5
x11-libs/libX11



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

2014-06-02 Thread Michael Palimaka
commit: aa02fe7ca8e27e5d7d660ebfe4dd551cdbdda573
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 10:27:06 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 10:27:06 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=aa02fe7c

[kde-base/powerdevil] upower is called via dbus at runtime, there is no binary 
links.

Package-Manager: portage-2.2.10

---
 kde-base/powerdevil/powerdevil-.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/kde-base/powerdevil/powerdevil-.ebuild 
b/kde-base/powerdevil/powerdevil-.ebuild
index 8297988..857a2c8 100644
--- a/kde-base/powerdevil/powerdevil-.ebuild
+++ b/kde-base/powerdevil/powerdevil-.ebuild
@@ -33,10 +33,7 @@ DEPEND=
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
-   upower? (
-   || ( =sys-power/upower-0.9.23 sys-power/upower-pm-utils )
-   virtual/udev
-   )
+   upower? ( virtual/udev )
X? (
dev-qt/qtx11extras:5
x11-libs/libX11
@@ -47,6 +44,7 @@ DEPEND=
 
 RDEPEND=
${DEPEND}
+   upower? ( || ( =sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )
!kde-base/powerdevil:4
 
 



[gentoo-commits] gentoo-x86 commit in dev-python/peewee: peewee-2.2.4.ebuild ChangeLog peewee-2.1.6.ebuild peewee-2.1.5.ebuild peewee-2.1.4.ebuild peewee-2.1.7.ebuild peewee-2.2.1.ebuild

2014-06-02 Thread Ian Delaney (idella4)
idella4 14/06/02 10:28:05

  Modified: ChangeLog
  Added:peewee-2.2.4.ebuild
  Removed:  peewee-2.1.6.ebuild peewee-2.1.5.ebuild
peewee-2.1.4.ebuild peewee-2.1.7.ebuild
peewee-2.2.1.ebuild
  Log:
  bump; fix test phase, assisted with support testing by eroen
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.9  dev-python/peewee/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   2 Jun 2014 05:28:57 -   1.8
+++ ChangeLog   2 Jun 2014 10:28:05 -   1.9
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/peewee
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.8 
2014/06/02 05:28:57 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.9 
2014/06/02 10:28:05 idella4 Exp $
+
+*peewee-2.2.4 (02 Jun 2014)
+
+  02 Jun 2014; Ian Delaney idel...@gentoo.org +peewee-2.2.4.ebuild,
+  -peewee-2.1.4.ebuild, -peewee-2.1.5.ebuild, -peewee-2.1.6.ebuild,
+  -peewee-2.1.7.ebuild, -peewee-2.2.1.ebuild:
+  bump; fix test phase, assisted with support testing by eroen
 
 *peewee-2.2.1 (02 Jun 2014)
 



1.1  dev-python/peewee/peewee-2.2.4.ebuild

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

Index: peewee-2.2.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/peewee-2.2.4.ebuild,v 1.1 
2014/06/02 10:28:05 idella4 Exp $

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

inherit distutils-r1

DESCRIPTION=Small python ORM
HOMEPAGE=https://github.com/coleifer/peewee/;
SRC_URI=https://github.com/coleifer/${PN}/archive/${PV}.tar.gz;
LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=doc examples test

RDEPEND=
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/apsw[${PYTHON_USEDEP}]
dev-python/psycopg[${PYTHON_USEDEP}]
dev-python/django[${PYTHON_USEDEP}]
)
# Req'd to ensure a unique tmp.db for each python impl running the testsuite.
DISTUTILS_IN_SOURCE_BUILD=1

python_compile_all() {
use doc  emake -C docs html
}

python_test() {
${PYTHON} ./runtests.py || die tests failed under ${EPYTHON}
}

python_install_all() {
use doc  local HTML_DOCS=( docs/_build/html/. )
use examples  local EXAMPLES=( example/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in app-doc/doxygen: doxygen-1.8.5.ebuild ChangeLog

2014-06-02 Thread Mikle Kolyada (zlogene)
zlogene 14/06/02 10:30:54

  Modified: doxygen-1.8.5.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #511450
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.4  app-doc/doxygen/doxygen-1.8.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/doxygen-1.8.5.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/doxygen-1.8.5.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/doxygen-1.8.5.ebuild?r1=1.3r2=1.4

Index: doxygen-1.8.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.8.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- doxygen-1.8.5.ebuild28 May 2014 23:53:41 -  1.3
+++ doxygen-1.8.5.ebuild2 Jun 2014 10:30:53 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.8.5.ebuild,v 1.3 
2014/05/28 23:53:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.8.5.ebuild,v 1.4 
2014/06/02 10:30:53 zlogene Exp $
 
 EAPI=4
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x86-solaris
 IUSE=debug doc dot qt4 latex sqlite elibc_FreeBSD userland_GNU
 
 #missing SerbianCyrilic, JapaneseEn, KoreanEn, Chinesetraditional



1.262app-doc/doxygen/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/ChangeLog?rev=1.262view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/ChangeLog?rev=1.262content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/doxygen/ChangeLog?r1=1.261r2=1.262

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog   28 May 2014 23:53:41 -  1.261
+++ ChangeLog   2 Jun 2014 10:30:53 -   1.262
@@ -1,6 +1,9 @@
 # ChangeLog for app-doc/doxygen
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v 1.261 
2014/05/28 23:53:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v 1.262 
2014/06/02 10:30:53 zlogene Exp $
+
+  02 Jun 2014; Mikle Kolyada zlog...@gentoo.org doxygen-1.8.5.ebuild:
+  amd64 stable wrt bug #511450
 
   28 May 2014; Jeroen Roovers j...@gentoo.org doxygen-1.8.5.ebuild:
   RESTRICT=test (bug #504448).






[gentoo-commits] gentoo-x86 commit in dev-python/peewee: ChangeLog

2014-06-02 Thread Ian Delaney (idella4)
idella4 14/06/02 10:34:10

  Modified: ChangeLog
  Log:
  extend msg in Changelog
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.10 dev-python/peewee/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/peewee/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   2 Jun 2014 10:28:05 -   1.9
+++ ChangeLog   2 Jun 2014 10:34:10 -   1.10
@@ -1,13 +1,14 @@
 # ChangeLog for dev-python/peewee
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.9 
2014/06/02 10:28:05 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.10 
2014/06/02 10:34:10 idella4 Exp $
 
 *peewee-2.2.4 (02 Jun 2014)
 
   02 Jun 2014; Ian Delaney idel...@gentoo.org +peewee-2.2.4.ebuild,
   -peewee-2.1.4.ebuild, -peewee-2.1.5.ebuild, -peewee-2.1.6.ebuild,
   -peewee-2.1.7.ebuild, -peewee-2.2.1.ebuild:
-  bump; fix test phase, assisted with support testing by eroen
+  bump; fix test phase, assisted with support testing by eroen, remove
+  some oldies
 
 *peewee-2.2.1 (02 Jun 2014)
 






[gentoo-commits] gentoo-x86 commit in app-office/libreoffice: libreoffice-4.2.3.3-r1.ebuild ChangeLog

2014-06-02 Thread Mikle Kolyada (zlogene)
zlogene 14/06/02 10:35:02

  Modified: libreoffice-4.2.3.3-r1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #511144
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild?r1=1.1r2=1.2

Index: libreoffice-4.2.3.3-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libreoffice-4.2.3.3-r1.ebuild   2 May 2014 16:07:05 -   1.1
+++ libreoffice-4.2.3.3-r1.ebuild   2 Jun 2014 10:35:02 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild,v 
1.1 2014/05/02 16:07:05 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.2.3.3-r1.ebuild,v 
1.2 2014/06/02 10:35:02 zlogene Exp $
 
 EAPI=5
 
@@ -89,7 +89,7 @@
 LICENSE=|| ( LGPL-3 MPL-1.1 )
 SLOT=0
 [[ ${PV} == ** ]] || \
-KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux
 
 COMMON_DEPEND=
${PYTHON_DEPS}



1.556app-office/libreoffice/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/ChangeLog?rev=1.556view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/ChangeLog?rev=1.556content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice/ChangeLog?r1=1.555r2=1.556

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v
retrieving revision 1.555
retrieving revision 1.556
diff -u -r1.555 -r1.556
--- ChangeLog   18 May 2014 09:04:49 -  1.555
+++ ChangeLog   2 Jun 2014 10:35:02 -   1.556
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/libreoffice
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.555 
2014/05/18 09:04:49 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.556 
2014/06/02 10:35:02 zlogene Exp $
+
+  02 Jun 2014; Mikle Kolyada zlog...@gentoo.org 
libreoffice-4.2.3.3-r1.ebuild:
+  amd64 stable wrt bug #511144
 
   18 May 2014; Tomáš Chvátal scarab...@gentoo.org libreoffice-4.2.4.2.ebuild,
   libreoffice-4.2..ebuild, libreoffice--r2.ebuild:






[gentoo-commits] gentoo-x86 commit in app-office/libreoffice-l10n: ChangeLog

2014-06-02 Thread Mikle Kolyada (zlogene)
zlogene 14/06/02 10:35:27

  Modified: ChangeLog
  Log:
  amd64 stable wrt bug #511144
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.106app-office/libreoffice-l10n/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-l10n/ChangeLog?rev=1.106view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-l10n/ChangeLog?rev=1.106content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-l10n/ChangeLog?r1=1.105r2=1.106

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog   25 May 2014 12:11:54 -  1.105
+++ ChangeLog   2 Jun 2014 10:35:27 -   1.106
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/libreoffice-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 
1.105 2014/05/25 12:11:54 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 
1.106 2014/06/02 10:35:27 zlogene Exp $
+
+  02 Jun 2014; Mikle Kolyada zlog...@gentoo.org
+  libreoffice-l10n-4.2.3.3.ebuild:
+  amd64 stable wrt bug #511144
 
   25 May 2014; Mikle Kolyada zlog...@gentoo.org
   libreoffice-l10n-4.2.3.3.ebuild:






[gentoo-commits] gentoo-x86 commit in app-office/libreoffice-bin: libreoffice-bin-4.2.3.3-r1.ebuild ChangeLog

2014-06-02 Thread Mikle Kolyada (zlogene)
zlogene 14/06/02 10:35:59

  Modified: libreoffice-bin-4.2.3.3-r1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #511144
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  
app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild?r1=1.1r2=1.2

Index: libreoffice-bin-4.2.3.3-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libreoffice-bin-4.2.3.3-r1.ebuild   23 May 2014 22:12:27 -  1.1
+++ libreoffice-bin-4.2.3.3-r1.ebuild   2 Jun 2014 10:35:59 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild,v
 1.1 2014/05/23 22:12:27 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.2.3.3-r1.ebuild,v
 1.2 2014/06/02 10:35:59 zlogene Exp $
 
 EAPI=5
 
@@ -55,7 +55,7 @@
 IUSE=gnome java kde
 LICENSE=LGPL-3
 SLOT=0
-KEYWORDS=-* ~amd64 ~x86
+KEYWORDS=-* amd64 ~x86
 
 BIN_COMMON_DEPEND=
=app-text/libexttextcat-3.4*



1.139app-office/libreoffice-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-bin/ChangeLog?rev=1.139view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-bin/ChangeLog?rev=1.139content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/libreoffice-bin/ChangeLog?r1=1.138r2=1.139

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog   23 May 2014 22:12:27 -  1.138
+++ ChangeLog   2 Jun 2014 10:35:59 -   1.139
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/libreoffice-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/ChangeLog,v 
1.138 2014/05/23 22:12:27 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/ChangeLog,v 
1.139 2014/06/02 10:35:59 zlogene Exp $
+
+  02 Jun 2014; Mikle Kolyada zlog...@gentoo.org
+  libreoffice-bin-4.2.3.3-r1.ebuild:
+  amd64 stable wrt bug #511144
 
 *libreoffice-bin-4.2.3.3-r1 (23 May 2014)
 






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/metastructure/herds: herds.xml

2014-06-02 Thread Jauhien Piatlicki (jauhien)
jauhien 14/06/02 10:41:49

  Modified: herds.xml
  Log:
  Add lxqt to freedesktop herd

Revision  ChangesPath
1.1107   xml/htdocs/proj/en/metastructure/herds/herds.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1107view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1107content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1106r2=1.1107

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1106
retrieving revision 1.1107
diff -u -r1.1106 -r1.1107
--- herds.xml   2 Jun 2014 09:20:45 -   1.1106
+++ herds.xml   2 Jun 2014 10:41:49 -   1.1107
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1106 
2014/06/02 09:20:45 mrueg Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1107 
2014/06/02 10:41:49 jauhien Exp $
 
 --
 herds
@@ -218,6 +218,9 @@
 nameTom Wijsman/name
 roleMATE desktop maintenance/role
   /maintainer
+  maintainer
+emaill...@gentoo.org/email
+  /maintainer
 /herd
 herd
   namegnome/name






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

2014-06-02 Thread Michael Palimaka
commit: 9d71791f884ecfde7103f8045bbd919128cadd69
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 10:44:35 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 10:44:35 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9d71791f

[kde-base/baloo] Add missing dependency.

It's required to build the baloo KCM.

Package-Manager: portage-2.2.10

---
 kde-base/baloo/baloo-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-base/baloo/baloo-.ebuild b/kde-base/baloo/baloo-.ebuild
index 97669b8..099fbbf 100644
--- a/kde-base/baloo/baloo-.ebuild
+++ b/kde-base/baloo/baloo-.ebuild
@@ -14,6 +14,7 @@ IUSE=
 # TODO re-enable kdepim integration
 DEPEND=
$(add_frameworks_dep kauth)
+   $(add_frameworks_dep kcmutils)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)



[gentoo-commits] gentoo-x86 commit in app-text/pdfgrep: metadata.xml ChangeLog

2014-06-02 Thread Sergei Trofimovich (slyfox)
slyfox  14/06/02 11:05:57

  Modified: metadata.xml ChangeLog
  Log:
  Update flow's mail address by his request.
  
  (Portage version: 2.2.10_p15/cvs/Linux x86_64, signed Manifest commit with 
key 611FF3AA)

Revision  ChangesPath
1.7  app-text/pdfgrep/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfgrep/metadata.xml?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfgrep/metadata.xml?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pdfgrep/metadata.xml?r1=1.6r2=1.7

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-text/pdfgrep/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml26 Jun 2013 14:00:59 -  1.6
+++ metadata.xml2 Jun 2014 11:05:57 -   1.7
@@ -7,7 +7,7 @@
 descriptionTree Proxy/description
   /maintainer
   maintainer
-emailf...@freakempire.de/email
+emailf...@geekplace.eu/email
 descriptionMaintainer, CC him on bugs/description
   /maintainer
   use



1.9  app-text/pdfgrep/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/pdfgrep/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   26 Jun 2013 14:00:59 -  1.8
+++ ChangeLog   2 Jun 2014 11:05:57 -   1.9
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/pdfgrep
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pdfgrep/ChangeLog,v 1.8 2013/06/26 
14:00:59 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/pdfgrep/ChangeLog,v 1.9 2014/06/02 
11:05:57 slyfox Exp $
+
+  02 Jun 2014; Sergei Trofimovich sly...@gentoo.org metadata.xml:
+  Update flow's mail address by his request.
 
   26 Jun 2013; Justin Lecher j...@gentoo.org -pdfgrep-1.2.ebuild,
   metadata.xml:






[gentoo-commits] gentoo-x86 commit in x11-misc/xmonad-log-applet: metadata.xml ChangeLog

2014-06-02 Thread Sergei Trofimovich (slyfox)
slyfox  14/06/02 11:06:59

  Modified: metadata.xml ChangeLog
  Log:
  Update flow's mail address by his request.
  
  (Portage version: 2.2.10_p15/cvs/Linux x86_64, signed Manifest commit with 
key 611FF3AA)

Revision  ChangesPath
1.3  x11-misc/xmonad-log-applet/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xmonad-log-applet/metadata.xml?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xmonad-log-applet/metadata.xml?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xmonad-log-applet/metadata.xml?r1=1.2r2=1.3

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xmonad-log-applet/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml28 Feb 2014 14:30:11 -  1.2
+++ metadata.xml2 Jun 2014 11:06:59 -   1.3
@@ -6,7 +6,7 @@
   emailhask...@gentoo.org/email
 /maintainer
 maintainer
-  emailf...@freakempire.de/email
+  emailf...@geekplace.eu/email
   descriptionMaintainer, CC him on bugs/description
 /maintainer
 longdescription



1.4  x11-misc/xmonad-log-applet/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xmonad-log-applet/ChangeLog?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xmonad-log-applet/ChangeLog?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xmonad-log-applet/ChangeLog?r1=1.3r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xmonad-log-applet/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   1 Jun 2014 18:22:02 -   1.3
+++ ChangeLog   2 Jun 2014 11:06:59 -   1.4
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xmonad-log-applet
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmonad-log-applet/ChangeLog,v 1.3 
2014/06/01 18:22:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmonad-log-applet/ChangeLog,v 1.4 
2014/06/02 11:06:59 slyfox Exp $
+
+  02 Jun 2014; Sergei Trofimovich sly...@gentoo.org metadata.xml:
+  Update flow's mail address by his request.
 
 *xmonad-log-applet-2.0.0-r301 (01 Jun 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-lang/icc: ChangeLog icc-14.0.3.174.ebuild

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 11:27:11

  Modified: ChangeLog
  Added:icc-14.0.3.174.ebuild
  Log:
  dev-lang/icc: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.102dev-lang/icc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icc/ChangeLog?rev=1.102view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icc/ChangeLog?rev=1.102content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icc/ChangeLog?r1=1.101r2=1.102

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icc/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog   24 Mar 2014 18:09:30 -  1.101
+++ ChangeLog   2 Jun 2014 11:27:11 -   1.102
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/icc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/ChangeLog,v 1.101 2014/03/24 
18:09:30 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/ChangeLog,v 1.102 2014/06/02 
11:27:11 jlec Exp $
+
+*icc-14.0.3.174 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org +icc-14.0.3.174.ebuild:
+  Version Bump
 
 *icc-14.0.2.144 (24 Mar 2014)
 



1.1  dev-lang/icc/icc-14.0.3.174.ebuild

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

Index: icc-14.0.3.174.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/icc-14.0.3.174.ebuild,v 1.1 
2014/06/02 11:27:11 jlec Exp $

EAPI=5

INTEL_DPN=parallel_studio_xe
INTEL_DID=4220
INTEL_DPV=2013_sp1_update3
INTEL_SUBDIR=composerxe
INTEL_SINGLE_ARCH=false

inherit intel-sdp

DESCRIPTION=Intel C/C++ Compiler
HOMEPAGE=http://software.intel.com/en-us/articles/intel-composer-xe/;

IUSE=eclipse linguas_ja
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux

DEPEND=
!dev-lang/ifc[linguas_ja]
eclipse? ( dev-util/eclipse-sdk )
RDEPEND=${DEPEND}
~dev-libs/intel-common-${PV}[compiler,multilib=]

INTEL_BIN_RPMS=compilerproc compilerproc-devel
INTEL_DAT_RPMS=compilerproc-common

CHECKREQS_DISK_BUILD=325M

src_install() {
if ! use linguas_ja; then
find ${S} -type d -name ja_JP -exec rm -rf '{}' + || die
fi
intel-sdp_src_install
}






[gentoo-commits] gentoo-x86 commit in dev-lang/ifc: ifc-14.0.3.174.ebuild ChangeLog

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 11:27:27

  Modified: ChangeLog
  Added:ifc-14.0.3.174.ebuild
  Log:
  dev-lang/ifc: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.76 dev-lang/ifc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ifc/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   24 Mar 2014 18:04:21 -  1.75
+++ ChangeLog   2 Jun 2014 11:27:27 -   1.76
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/ifc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ChangeLog,v 1.75 2014/03/24 
18:04:21 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ChangeLog,v 1.76 2014/06/02 
11:27:27 jlec Exp $
+
+*ifc-14.0.3.174 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org +ifc-14.0.3.174.ebuild:
+  Version Bump
 
 *ifc-14.0.2.144 (24 Mar 2014)
 



1.1  dev-lang/ifc/ifc-14.0.3.174.ebuild

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

Index: ifc-14.0.3.174.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ifc-14.0.3.174.ebuild,v 1.1 
2014/06/02 11:27:27 jlec Exp $

EAPI=5

INTEL_DPN=parallel_studio_xe
INTEL_DID=4220
INTEL_DPV=2013_sp1_update3
INTEL_SUBDIR=composerxe
INTEL_SINGLE_ARCH=false

inherit intel-sdp

DESCRIPTION=Intel FORTRAN Compiler
HOMEPAGE=http://software.intel.com/en-us/articles/intel-composer-xe/;

IUSE=linguas_ja
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux

DEPEND=!dev-lang/ifc[linguas_jp]
RDEPEND=${DEPEND}
~dev-libs/intel-common-${PV}[compiler,multilib=]

INTEL_BIN_RPMS=compilerprof compilerprof-devel
INTEL_DAT_RPMS=compilerprof-common

CHECKREQS_DISK_BUILD=375M

src_install() {
if ! use linguas_ja; then
find ${S} -type d -name ja_JP -exec rm -rf '{}' + || die
fi
intel-sdp_src_install
}






[gentoo-commits] gentoo-x86 commit in dev-lang/idb: ChangeLog idb-14.0.3.174.ebuild

2014-06-02 Thread Justin Lecher (jlec)
jlec14/06/02 11:29:35

  Modified: ChangeLog
  Added:idb-14.0.3.174.ebuild
  Log:
  dev-lang/idb: Version Bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.33 dev-lang/idb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   24 Mar 2014 18:18:43 -  1.32
+++ ChangeLog   2 Jun 2014 11:29:35 -   1.33
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/idb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v 1.32 2014/03/24 
18:18:43 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v 1.33 2014/06/02 
11:29:35 jlec Exp $
+
+*idb-14.0.3.174 (02 Jun 2014)
+
+  02 Jun 2014; Justin Lecher j...@gentoo.org +idb-14.0.3.174.ebuild:
+  Version Bump
 
 *idb-14.0.2.144 (24 Mar 2014)
 



1.1  dev-lang/idb/idb-14.0.3.174.ebuild

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

Index: idb-14.0.3.174.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-14.0.3.174.ebuild,v 1.1 
2014/06/02 11:29:35 jlec Exp $

EAPI=5

INTEL_DPN=parallel_studio_xe
INTEL_DID=4220
INTEL_DPV=2013_sp1_update3
INTEL_SUBDIR=composerxe
INTEL_SINGLE_ARCH=false

inherit intel-sdp

_INTEL_PV1=14

DESCRIPTION=Intel C/C++/FORTRAN debugger
HOMEPAGE=http://software.intel.com/en-us/articles/intel-composer-xe/;

IUSE=eclipse
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux

DEPEND==dev-libs/intel-common-13.1[compiler]
RDEPEND=${DEPEND}
virtual/jre
eclipse? ( dev-util/eclipse-sdk )

INTEL_BIN_RPMS=idb
INTEL_DAT_RPMS=idb-common idbcdt

CHECKREQS_DISK_BUILD=475M

pkg_setup() {
_INTEL_PV1=13 intel-sdp_pkg_setup
}

src_prepare() {
sed \
-e /^INSTALLDIR/s:=.*:=${INTEL_SDP_EDIR}:g \
-i ${INTEL_SDP_DIR}/bin/intel*/idb || die
}






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

2014-06-02 Thread Panagiotis Christopoulos
commit: 396b573823c8a9e8d9aaedd97f4dd99b02bb0cd3
Author: Panagiotis Christopoulos (pchrist) pchrist AT gentoo DOT org
AuthorDate: Mon Jun  2 11:40:46 2014 +
Commit: Panagiotis Christopoulos pchrist AT gentoo DOT org
CommitDate: Mon Jun  2 11:40:46 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=396b5738

dev-scheme/guile: pushing a guile-2.0.11 preliminary ebuld (work in progress)

---
 dev-scheme/guile/guile-2.0.11.ebuild | 56 
 1 file changed, 56 insertions(+)

diff --git a/dev-scheme/guile/guile-2.0.11.ebuild 
b/dev-scheme/guile/guile-2.0.11.ebuild
new file mode 100644
index 000..832e120
--- /dev/null
+++ b/dev-scheme/guile/guile-2.0.11.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION=Scheme interpreter. Also The GNU extension language
+HOMEPAGE=http://www.gnu.org/software/guile/;
+SRC_URI=mirror://gnu/guile/${P}.tar.gz
+
+LICENSE=LGPL-3+
+SLOT=0
+#KEYWORDS=~amd64
+# Work in progress. No keywords.
+# TODO: 
+# 1. Emacs support 
+# 2. Testing agains revdeps
+# 3. Check file placing
+# 4. ...
+KEYWORDS=
+IUSE=networking +regex +deprecated nls debug-malloc debug +threads static
+
+RDEPEND=
+   dev-libs/gmp
+   virtual/libiconv
+   virtual/libintl
+   sys-devel/libtool
+   dev-libs/boehm-gc
+   dev-libs/libunistring
+   dev-libs/libffi
+
+DEPEND=${RDEPEND}
+   virtual/pkgconfig
+
+src_configure() {
+   econf \
+   --disable-rpath \
+   $(use_enable static) \
+   --disable-error-on-warning \
+   $(use_enable debug-malloc) \
+   $(use_enable debug guile-debug) \
+   --enable-posix \
+   $(use_enable networking) \
+   $(use_enable regex) \
+   $(use_enable deprecated) \
+   $(use_enable nls) \
+   $(use_with threads) \
+   --with-modules
+}
+
+src_install() {
+   einstall || die einstall failed
+   dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README THANKS || die
+}



[gentoo-commits] gentoo-x86 commit in dev-lang/spidermonkey: spidermonkey-24.2.0-r2.ebuild ChangeLog spidermonkey-24.2.0-r1.ebuild

2014-06-02 Thread Ian Stakenvicius (axs)
axs 14/06/02 11:46:35

  Modified: spidermonkey-24.2.0-r2.ebuild ChangeLog
  Removed:  spidermonkey-24.2.0-r1.ebuild
  Log:
  dropped optimizations so build system will respect cflags, bug 444126, thanks 
to hasufell for patches; removed old :24 ebuild
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
2B6559ED)

Revision  ChangesPath
1.2  dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild?r1=1.1r2=1.2

Index: spidermonkey-24.2.0-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- spidermonkey-24.2.0-r2.ebuild   23 May 2014 21:13:46 -  1.1
+++ spidermonkey-24.2.0-r2.ebuild   2 Jun 2014 11:46:35 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild,v 
1.1 2014/05/23 21:13:46 axs Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-24.2.0-r2.ebuild,v 
1.2 2014/06/02 11:46:35 axs Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.1
@@ -75,6 +75,7 @@
--enable-threadsafe \
--with-system-nspr \
--enable-system-ffi \
+   --disable-optimize \
$(use_enable icu intl-api) \
$(use_enable debug) \
$(use_enable jit yarr-jit) \
@@ -89,10 +90,14 @@
make CFLAGS= CXXFLAGS= \
CC=$(tc-getBUILD_CC) CXX=$(tc-getBUILD_CXX) \
AR=$(tc-getBUILD_AR) RANLIB=$(tc-getBUILD_RANLIB) \
+   MOZ_OPTIMIZE_FLAGS= MOZ_DEBUG_FLAGS= \
+   HOST_OPTIMIZE_FLAGS= MODULE_OPTIMIZE_FLAGS= \
+   MOZ_PGO_OPTIMIZE_FLAGS= \
jscpucfg host_jsoplengen host_jskwgen || die
make CFLAGS= CXXFLAGS= \
CC=$(tc-getBUILD_CC) CXX=$(tc-getBUILD_CXX) \
AR=$(tc-getBUILD_AR) RANLIB=$(tc-getBUILD_RANLIB) \
+   MOZ_OPTIMIZE_FLAGS= MOZ_DEBUG_FLAGS= 
HOST_OPTIMIZE_FLAGS= \
-C config nsinstall || die
mv {,native-}jscpucfg || die
mv {,native-}host_jskwgen || die
@@ -108,7 +113,10 @@
host_jskwgen.o \
host_jsoplengen.o || die
fi
-   emake
+   emake \
+   MOZ_OPTIMIZE_FLAGS= MOZ_DEBUG_FLAGS= \
+   HOST_OPTIMIZE_FLAGS= MODULE_OPTIMIZE_FLAGS= \
+   MOZ_PGO_OPTIMIZE_FLAGS=
 }
 
 src_test() {



1.151dev-lang/spidermonkey/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/ChangeLog?rev=1.151view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/ChangeLog?rev=1.151content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/ChangeLog?r1=1.150r2=1.151

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog   23 May 2014 21:13:46 -  1.150
+++ ChangeLog   2 Jun 2014 11:46:35 -   1.151
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/spidermonkey
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/ChangeLog,v 1.150 
2014/05/23 21:13:46 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/ChangeLog,v 1.151 
2014/06/02 11:46:35 axs Exp $
+
+  02 Jun 2014; Ian Stakenvicius (_AxS_) a...@gentoo.org
+  -spidermonkey-24.2.0-r1.ebuild, spidermonkey-24.2.0-r2.ebuild:
+  dropped optimizations so build system will respect cflags, bug 444126, thanks
+  to hasufell for patches; removed old :24 ebuild
 
 *spidermonkey-24.2.0-r2 (23 May 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-kernel/git-sources: ChangeLog git-sources-3.15_rc8.ebuild

2014-06-02 Thread Mike Pagano (mpagano)
mpagano 14/06/02 11:53:05

  Modified: ChangeLog
  Added:git-sources-3.15_rc8.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1388   sys-kernel/git-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v
retrieving revision 1.1387
retrieving revision 1.1388
diff -u -r1.1387 -r1.1388
--- ChangeLog   25 May 2014 23:48:53 -  1.1387
+++ ChangeLog   2 Jun 2014 11:53:05 -   1.1388
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/git-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1387 
2014/05/25 23:48:53 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1388 
2014/06/02 11:53:05 mpagano Exp $
+
+*git-sources-3.15_rc8 (02 Jun 2014)
+
+  02 Jun 2014; Mike Pagano mpag...@gentoo.org +git-sources-3.15_rc8.ebuild:
+  Version bump
 
 *git-sources-3.15_rc7 (25 May 2014)
 



1.1  sys-kernel/git-sources/git-sources-3.15_rc8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/git-sources-3.15_rc8.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/git-sources/git-sources-3.15_rc8.ebuild?rev=1.1content-type=text/plain

Index: git-sources-3.15_rc8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/git-sources/git-sources-3.15_rc8.ebuild,v 
1.1 2014/06/02 11:53:05 mpagano Exp $

EAPI=5
UNIPATCH_STRICTORDER=yes
K_NOUSENAME=yes
K_NOSETEXTRAVERSION=yes
K_NOUSEPR=yes
K_SECURITY_UNSUPPORTED=yes
K_DEBLOB_AVAILABLE=0
ETYPE=sources
CKV=${PVR/-r/-git}

# only use this if it's not an _rc/_pre release
[ ${PV/_pre} == ${PV} ]  [ ${PV/_rc} == ${PV} ]  OKV=${PV}
inherit kernel-2
detect_version

DESCRIPTION=The very latest -git version of the Linux kernel
HOMEPAGE=http://www.kernel.org;
SRC_URI=${KERNEL_URI}

KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86
IUSE=

K_EXTRAEINFO=This kernel is not supported by Gentoo due to its unstable and
experimental nature. If you have any issues, try a matching vanilla-sources
ebuild -- if the problem is not there, please contact the upstream kernel
developers at http://bugzilla.kernel.org and on the linux-kernel mailing list to
report the problem so it can be fixed in time for the next kernel release.

RDEPEND=
DEPEND=${RDEPEND}
=sys-devel/patch-2.7.1-r3

pkg_postinst() {
postinst_sources
}






[gentoo-commits] gentoo-x86 commit in app-admin/rsyslog: rsyslog-7.6.3-r1.ebuild ChangeLog rsyslog-7.6.3.ebuild

2014-06-02 Thread Alexys Jacob (ultrabug)
ultrabug14/06/02 11:55:36

  Modified: ChangeLog
  Added:rsyslog-7.6.3-r1.ebuild
  Removed:  rsyslog-7.6.3.ebuild
  Log:
  fix #511748 thx to consus
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.114app-admin/rsyslog/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rsyslog/ChangeLog?rev=1.114view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rsyslog/ChangeLog?rev=1.114content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rsyslog/ChangeLog?r1=1.113r2=1.114

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/rsyslog/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog   22 May 2014 12:30:41 -  1.113
+++ ChangeLog   2 Jun 2014 11:55:36 -   1.114
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/rsyslog
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/rsyslog/ChangeLog,v 1.113 
2014/05/22 12:30:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/rsyslog/ChangeLog,v 1.114 
2014/06/02 11:55:36 ultrabug Exp $
+
+*rsyslog-7.6.3-r1 (02 Jun 2014)
+
+  02 Jun 2014; Ultrabug ultra...@gentoo.org -rsyslog-7.6.3.ebuild,
+  +rsyslog-7.6.3-r1.ebuild, files/7-stable/rsyslog.initd-r1:
+  fix #511748 thx to consus
 
   22 May 2014; Jeroen Roovers j...@gentoo.org rsyslog-7.6.3.ebuild:
   Marked ~hppa (bug #511026).



1.1  app-admin/rsyslog/rsyslog-7.6.3-r1.ebuild

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

Index: rsyslog-7.6.3-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/rsyslog/rsyslog-7.6.3-r1.ebuild,v 
1.1 2014/06/02 11:55:36 ultrabug Exp $

EAPI=5
AUTOTOOLS_AUTORECONF=1

inherit autotools-utils eutils systemd

DESCRIPTION=An enhanced multi-threaded syslogd with database support and more
HOMEPAGE=http://www.rsyslog.com/;
SRC_URI=http://www.rsyslog.com/files/download/${PN}/${P}.tar.gz;

LICENSE=GPL-3 LGPL-3 Apache-2.0
KEYWORDS=~amd64 ~hppa ~x86
SLOT=0
IUSE=dbi debug doc elasticsearch +gcrypt kerberos mongodb mysql normalize 
omudpspoof oracle postgres rabbitmq redis relp rfc3195 rfc5424hmac snmp ssl 
systemd usertools zeromq

RDEPEND=
=dev-libs/json-c-0.11:=
=dev-libs/libestr-0.1.9
=dev-libs/liblogging-1.0.1:=[stdlog]
=sys-libs/zlib-1.2.5
dbi? ( =dev-db/libdbi-0.8.3 )
elasticsearch? ( =net-misc/curl-7.35.0 )
gcrypt? ( =dev-libs/libgcrypt-1.5.3:= )
kerberos? ( virtual/krb5 )
mongodb? ( =dev-libs/libmongo-client-0.1.4 )
mysql? ( virtual/mysql )
normalize? (
=dev-libs/libee-0.4.0
=dev-libs/liblognorm-0.3.1:=
!=dev-libs/liblognorm-1.0.0
)
omudpspoof? ( =net-libs/libnet-1.1.6 )
oracle? ( =dev-db/oracle-instantclient-basic-10.2 )
postgres? ( =dev-db/postgresql-base-8.4.20 )
rabbitmq? ( =net-libs/rabbitmq-c-0.3.0 )
redis? ( =dev-libs/hiredis-0.11.0 )
relp? ( =dev-libs/librelp-1.2.5 )
rfc3195? ( =dev-libs/liblogging-1.0.1:=[rfc3195] )
rfc5424hmac? ( =dev-libs/openssl-0.9.8y )
snmp? ( =net-analyzer/net-snmp-5.7.2 )
ssl? ( =net-libs/gnutls-2.12.23 )
systemd? ( =sys-apps/systemd-208 )
zeromq? ( =net-libs/czmq-1.2.0 )
DEPEND=${RDEPEND}
virtual/pkgconfig

BRANCH=7-stable

# Test suite requires a special setup or will always fail
RESTRICT=test

# Maitainer note : open a bug to upstream
# showing that building in a separate dir fails
AUTOTOOLS_IN_SOURCE_BUILD=1

AUTOTOOLS_PRUNE_LIBTOOL_FILES=modules

DOCS=(
AUTHORS
ChangeLog
doc/rsyslog-example.conf
${FILESDIR}/${BRANCH}/README.gentoo
)

PATCHES=(
${FILESDIR}/${BRANCH}/${PN}-7.x-mmjsonparse.patch
${FILESDIR}/${BRANCH}/fix-omruleset-default-value.patch
${FILESDIR}/${BRANCH}/bugfix_52.patch
${FILESDIR}/${BRANCH}/bugfix_73.patch
)

src_configure() {
# Maintainer notes:
# * Guardtime support is missing because libgt isn't yet available
#   in portage.
# * Hadoop's HDFS file system output module is currently not
#   supported in Gentoo because nobody is able to test it
#   (JAVA dependency).
# * dev-libs/hiredis doesn't provide pkg-config (see #504614,
#   upstream PR 129 and 136) so we need to 

[gentoo-commits] gentoo-x86 commit in app-admin/rsyslog/files/7-stable: rsyslog.initd-r1

2014-06-02 Thread Alexys Jacob (ultrabug)
ultrabug14/06/02 11:55:36

  Modified: rsyslog.initd-r1
  Log:
  fix #511748 thx to consus
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.2  app-admin/rsyslog/files/7-stable/rsyslog.initd-r1

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rsyslog/files/7-stable/rsyslog.initd-r1?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rsyslog/files/7-stable/rsyslog.initd-r1?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/rsyslog/files/7-stable/rsyslog.initd-r1?r1=1.1r2=1.2

Index: rsyslog.initd-r1
===
RCS file: 
/var/cvsroot/gentoo-x86/app-admin/rsyslog/files/7-stable/rsyslog.initd-r1,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rsyslog.initd-r122 May 2014 11:15:49 -  1.1
+++ rsyslog.initd-r12 Jun 2014 11:55:36 -   1.2
@@ -1,7 +1,7 @@
 #!/sbin/runscript
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/rsyslog/files/7-stable/rsyslog.initd-r1,v 1.1 
2014/05/22 11:15:49 ultrabug Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/rsyslog/files/7-stable/rsyslog.initd-r1,v 1.2 
2014/06/02 11:55:36 ultrabug Exp $
 
 RSYSLOG_CONFIGFILE=${RSYSLOG_CONFIGFILE:-/etc/rsyslog.conf}
 RSYSLOG_PIDFILE=${RSYSLOG_PIDFILE:-/run/rsyslogd.pid}
@@ -12,7 +12,7 @@
 pidfile=${RSYSLOG_PIDFILE}
 retry=${RSYSLOG_TERMTIMEOUT}
 
-required_files=( ${RSYSLOG_CONFIGFILE} )
+required_files=${RSYSLOG_CONFIGFILE}
 
 description=RSYSLOG is the rocket-fast system for log processing (syslog 
replacement).
 






[gentoo-commits] gentoo-x86 commit in sys-apps/hwids: hwids-20140602.ebuild ChangeLog

2014-06-02 Thread Diego Petteno (flameeyes)
flameeyes14/06/02 11:58:34

  Modified: ChangeLog
  Added:hwids-20140602.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
1CD13C8AD4301342)

Revision  ChangesPath
1.143sys-apps/hwids/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog   30 May 2014 14:41:46 -  1.142
+++ ChangeLog   2 Jun 2014 11:58:34 -   1.143
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/hwids
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.142 2014/05/30 
14:41:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.143 2014/06/02 
11:58:34 flameeyes Exp $
+
+*hwids-20140602 (02 Jun 2014)
+
+  02 Jun 2014; Diego E. Pettenò flamee...@gentoo.org +hwids-20140602.ebuild:
+  Version bump.
 
   30 May 2014; Mike Frysinger vap...@gentoo.org hwids-20140509.ebuild,
   hwids-.ebuild:



1.1  sys-apps/hwids/hwids-20140602.ebuild

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

Index: hwids-20140602.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20140602.ebuild,v 1.1 
2014/06/02 11:58:34 flameeyes Exp $

EAPI=5
inherit udev eutils

DESCRIPTION=Hardware (PCI, USB, OUI, IAB) IDs databases
HOMEPAGE=https://github.com/gentoo/hwids;
SRC_URI=https://github.com/gentoo/hwids/archive/${P}.tar.gz;

LICENSE=|| ( GPL-2 BSD ) public-domain
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux 
~x86-linux
IUSE=+udev

DEPEND=udev? (
dev-lang/perl
=virtual/udev-206
)
RDEPEND=!sys-apps/pciutils-3.1.9-r2
!sys-apps/usbutils-005-r1

S=${WORKDIR}/hwids-${P}

src_prepare() {
sed -i -e '/udevadm hwdb/d' Makefile || die
}

src_compile() {
emake UDEV=$(usex udev)
}

src_install() {
emake UDEV=$(usex udev) install \
DOCDIR=${EPREFIX}/usr/share/doc/${PF} \
MISCDIR=${EPREFIX}/usr/share/misc \
HWDBDIR=${EPREFIX}$(get_udevdir)/hwdb.d \
DESTDIR=${D}
}

pkg_postinst() {
if use udev; then
udevadm hwdb --update --root=${ROOT%/}
# 
http://cgit.freedesktop.org/systemd/systemd/commit/?id=1fab57c209035f7e66198343074e9cee06718bda
[ ${ROOT:-/} = / ]  udevadm control --reload
fi
}






[gentoo-commits] proj/qt:master commit in: app-admin/lxqt-admin/

2014-06-02 Thread Davide Pesavento
commit: 75c0dab7d1ceeb1e4471d3c8bd83fe83191bc132
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Mon Jun  2 11:05:46 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon Jun  2 11:05:46 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=75c0dab7

Add app-admin/lxqt-admin

---
 app-admin/lxqt-admin/lxqt-admin-.ebuild | 22 ++
 app-admin/lxqt-admin/metadata.xml   |  5 +
 2 files changed, 27 insertions(+)

diff --git a/app-admin/lxqt-admin/lxqt-admin-.ebuild 
b/app-admin/lxqt-admin/lxqt-admin-.ebuild
new file mode 100644
index 000..cdee4d5
--- /dev/null
+++ b/app-admin/lxqt-admin/lxqt-admin-.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+inherit cmake-utils
+
+DESCRIPTION=LXQt system administration tool
+HOMEPAGE=http://www.lxqt.org/;
+
+inherit git-r3
+EGIT_REPO_URI=git://git.lxde.org/git/lxde/${PN}.git
+
+LICENSE=LGPL-2.1+
+SLOT=0
+
+DEPEND=dev-libs/glib:2
+   dev-libs/liboobs
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   ~lxqt-base/liblxqt-${PV}
+RDEPEND=${DEPEND}

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



[gentoo-commits] proj/qt:master commit in: profiles/

2014-06-02 Thread Davide Pesavento
commit: 51bb3e6e1acd14744850f9a229f4bfc2cc9c16b0
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Mon Jun  2 12:00:35 2014 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Mon Jun  2 12:00:35 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=51bb3e6e

[profiles] Delete redundant categories file.

---
 profiles/categories | 1 -
 1 file changed, 1 deletion(-)

diff --git a/profiles/categories b/profiles/categories
deleted file mode 100644
index 7da8cc8..000
--- a/profiles/categories
+++ /dev/null
@@ -1 +0,0 @@
-lxqt-base



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

2014-06-02 Thread Jauhien Piatlicki
commit: d2eee77e01938d323acecef76cd4e6a148bd7628
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Sun Jun  1 16:29:29 2014 +
Commit: Jauhien Piatlicki jauhien AT gentoo DOT org
CommitDate: Sun Jun  1 16:29:29 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d2eee77e

Merge remote-tracking branch 'gentoo/master' into upstream-master


 sci-biology/bedtools/ChangeLog | 6 ++
 sci-biology/bedtools/Manifest  | 2 +-
 .../bedtools/{bedtools-2.19.1.ebuild = bedtools-2.20.1.ebuild}| 0
 sys-cluster/lustre/ChangeLog   | 7 +++
 ...0001-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch | 2 +-
 ...0002-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch | 2 +-
 .../0003-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch  | 2 +-
 sys-cluster/lustre/lustre-.ebuild  | 2 ++
 8 files changed, 19 insertions(+), 4 deletions(-)



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

2014-06-02 Thread Jauhien Piatlicki
commit: 3751a04d3152832cf00dcf5a75523fa8e6bb166b
Author: Sébastien Fabbro sebfabbro AT gmail DOT com
AuthorDate: Mon May 26 23:34:47 2014 +
Commit: Jauhien Piatlicki jauhien AT gentoo DOT org
CommitDate: Mon May 26 23:34:47 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3751a04d

Merge pull request #227 from sargas/casapy-bin

sci-astronomy/casapy-bin: casapy-bin version bump to 4.2.1


 sci-astronomy/casapy-bin/ChangeLog  | 6 ++
 sci-astronomy/casapy-bin/Manifest   | 1 +
 ...2.0.28322.021_p1.ebuild = casapy-bin-4.2.1.29047.001_p1.ebuild} | 0
 3 files changed, 7 insertions(+)



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

2014-06-02 Thread Jauhien Piatlicki
commit: 7078e8bfcae1c3da2b8d32e73d7091227209488a
Author: Jauhien Piatlicki piatlicki AT gmail DOT com
AuthorDate: Sun Jun  1 16:24:32 2014 +
Commit: Jauhien Piatlicki jauhien AT gentoo DOT org
CommitDate: Sun Jun  1 16:24:32 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7078e8bf

Merge pull request #229 from jauhien/master

dev-lang/berkeley_upc, dev-lang/berkeley_upc_translator: version bump to 2.18.2


 dev-lang/berkeley_upc/ChangeLog  | 8 +++-
 dev-lang/berkeley_upc/Manifest   | 1 +
 .../{berkeley_upc-2.16.2.ebuild = berkeley_upc-2.18.2.ebuild}   | 0
 dev-lang/berkeley_upc/metadata.xml   | 3 ++-
 dev-lang/berkeley_upc_translator/ChangeLog   | 9 -
 dev-lang/berkeley_upc_translator/Manifest| 1 +
 .../berkeley_upc_translator-2.16.2.ebuild| 2 +-
 .../berkeley_upc_translator-2.18.0.ebuild| 2 +-
 ...lator-2.16.2.ebuild = berkeley_upc_translator-2.18.2.ebuild} | 2 +-
 dev-lang/berkeley_upc_translator/metadata.xml| 3 ++-
 10 files changed, 24 insertions(+), 7 deletions(-)



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

2014-06-02 Thread Jauhien Piatlicki
commit: ac43a14d3a8e7d6469cf6fd137728665e7021be7
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Mon Jun  2 12:10:19 2014 +
Commit: Jauhien Piatlicki jauhien AT gentoo DOT org
CommitDate: Mon Jun  2 12:10:19 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ac43a14d

Merge branch 'master' of git+ssh://git.overlays.gentoo.org/proj/sci into 
gentoo-master


 sci-biology/ncbi-tools++/ncbi-tools++-12.0.0.ebuild   | 3 +++
 sci-biology/ncbi-tools++/ncbi-tools++-9.0.0-r1.ebuild | 4 
 sci-biology/ncbi-tools++/ncbi-tools++-9.0.0.ebuild| 5 +
 3 files changed, 12 insertions(+)



[gentoo-commits] proj/sci:master commit in: dev-lang/berkeley_upc_translator/, dev-lang/berkeley_upc/

2014-06-02 Thread Jauhien Piatlicki
commit: 7b1ba13928f4121c9528c5cb4de2e147f7f26596
Author: Jauhien Piatlicki jauhien AT gentoo DOT org
AuthorDate: Sun Jun  1 16:22:59 2014 +
Commit: Jauhien Piatlicki jauhien AT gentoo DOT org
CommitDate: Sun Jun  1 16:22:59 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7b1ba139

dev-lang/berkeley_upc, dev-lang/berkeley_upc_translator: version bump to 2.18.2

---
 dev-lang/berkeley_upc/ChangeLog|  8 ++-
 dev-lang/berkeley_upc/berkeley_upc-2.18.2.ebuild   | 58 ++
 dev-lang/berkeley_upc/metadata.xml |  3 +-
 dev-lang/berkeley_upc_translator/ChangeLog |  9 +++-
 .../berkeley_upc_translator-2.16.2.ebuild  |  2 +-
 .../berkeley_upc_translator-2.18.0.ebuild  |  2 +-
 ...build = berkeley_upc_translator-2.18.2.ebuild} |  2 +-
 dev-lang/berkeley_upc_translator/metadata.xml  |  3 +-
 8 files changed, 80 insertions(+), 7 deletions(-)

diff --git a/dev-lang/berkeley_upc/ChangeLog b/dev-lang/berkeley_upc/ChangeLog
index 90dc522..4df9727 100644
--- a/dev-lang/berkeley_upc/ChangeLog
+++ b/dev-lang/berkeley_upc/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for dev-lang/berkeley_upc
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*berkeley_upc-2.18.2 (01 Jun 2014)
+
+  01 Jun 2014; Jauhien Piatlicki jauh...@gentoo.org
+  +berkeley_upc-2.18.2.ebuild:
+  version bump
+
 *berkeley_upc-2.18.0 (02 Nov 2013)
 
   02 Nov 2013; Jauhien Piatlicki piatli...@gmail.com

diff --git a/dev-lang/berkeley_upc/berkeley_upc-2.18.2.ebuild 
b/dev-lang/berkeley_upc/berkeley_upc-2.18.2.ebuild
new file mode 100644
index 000..71dbcca
--- /dev/null
+++ b/dev-lang/berkeley_upc/berkeley_upc-2.18.2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION=The Berkeley UPC Runtime/driver
+HOMEPAGE=http://upc.lbl.gov/;
+SRC_URI=http://upc.lbl.gov/download/release/${P}.tar.gz;
+LICENSE=BSD-4
+
+SLOT=0
+KEYWORDS=~amd64 ~x86
+IUSE=mpi mpi-compat pshm +segment-fast segment-large +single +sptr-packed
+   sptr-struct sptr-symmetric threads +udp
+
+REQUIRED_USE=
+   ^^ ( segment-fast segment-large )
+   ^^ ( sptr-packed sptr-struct sptr-symmetric )
+
+DEPEND=mpi? ( virtual/mpi )
+   mpi-compat? ( virtual/mpi )
+
+pkg_setup() {
+   elog There is a lot of options for this package,
+   elog especially network conduits settings.
+   elog You can set them using EXTRA_ECONF variable.
+   elog To see full list of options visit 
${HOMEPAGE}download/dist/INSTALL.TXT
+}
+
+src_configure() {
+   ./configure \
+   --prefix=${EPREFIX}/usr/libexec/${P} \
+   --mandir=${EPREFIX}/usr/share/man/ \
+   --disable-aligned-segments \
+   --disable-auto-conduit-detect \
+   $(use_enable mpi) \
+   $(use_enable mpi-compat) \
+   $(use_enable pshm) \
+   $(use_enable segment-fast) \
+   $(use_enable segment-large) \
+   $(use_enable single smp) \
+   $(use_enable sptr-packed) \
+   $(use_enable sptr-struct) \
+   $(use_enable sptr-symmetric) \
+   $(use_enable threads par) \
+   $(use_enable udp) \
+   ${EXTRA_ECONF} || die
+}
+
+src_install() {
+   default
+   dodir /usr/bin
+   dosym ../libexec/${P}/bin/upc_trace /usr/bin/upc_trace
+   dosym ../libexec/${P}/bin/upcc /usr/bin/upcc
+   dosym ../libexec/${P}/bin/upcdecl /usr/bin/upcdecl
+   dosym ../libexec/${P}/bin/upcrun /usr/bin/upcrun
+}

diff --git a/dev-lang/berkeley_upc/metadata.xml 
b/dev-lang/berkeley_upc/metadata.xml
index 7da2d6d..9e55133 100644
--- a/dev-lang/berkeley_upc/metadata.xml
+++ b/dev-lang/berkeley_upc/metadata.xml
@@ -3,7 +3,8 @@
 
 pkgmetadata
   maintainer
-emailpiatli...@gmail.com/email
+emailjauh...@gentoo.org/email
+nameJauhien Piatlicki/name
   /maintainer
   use
 flag name=mpi-compatEnable interoperability with MPI/flag

diff --git a/dev-lang/berkeley_upc_translator/ChangeLog 
b/dev-lang/berkeley_upc_translator/ChangeLog
index f3fb792..a8229eb 100644
--- a/dev-lang/berkeley_upc_translator/ChangeLog
+++ b/dev-lang/berkeley_upc_translator/ChangeLog
@@ -1,7 +1,14 @@
 # ChangeLog for dev-lang/berkeley_upc_translator
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*berkeley_upc_translator-2.18.2 (01 Jun 2014)
+
+  01 Jun 2014; Jauhien Piatlicki jauh...@gentoo.org
+  berkeley_upc_translator-2.16.2.ebuild, berkeley_upc_translator-2.18.0.ebuild,
+  +berkeley_upc_translator-2.18.2.ebuild, metadata.xml:
+  version bump
+
 *berkeley_upc_translator-2.18.0 (02 Nov 2013)
 
   02 Nov 2013; 

[gentoo-commits] gentoo-x86 commit in net-libs/libmicrohttpd: libmicrohttpd-0.9.37.ebuild ChangeLog

2014-06-02 Thread Anthony G. Basile (blueness)
blueness14/06/02 12:22:57

  Modified: ChangeLog
  Added:libmicrohttpd-0.9.37.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.72 net-libs/libmicrohttpd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   26 May 2014 00:23:22 -  1.71
+++ ChangeLog   2 Jun 2014 12:22:57 -   1.72
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/libmicrohttpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.71 
2014/05/26 00:23:22 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/ChangeLog,v 1.72 
2014/06/02 12:22:57 blueness Exp $
+
+*libmicrohttpd-0.9.37 (02 Jun 2014)
+
+  02 Jun 2014; Anthony G. Basile bluen...@gentoo.org
+  +libmicrohttpd-0.9.37.ebuild:
+  Version bump
 
 *libmicrohttpd-0.9.36 (26 May 2014)
 



1.1  net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild

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

Index: libmicrohttpd-0.9.37.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild,v 
1.1 2014/06/02 12:22:57 blueness Exp $

EAPI=5

MY_P=${P/_/}

DESCRIPTION=A small C library that makes it easy to run an HTTP server as part 
of another application.
HOMEPAGE=http://www.gnu.org/software/libmicrohttpd/;
SRC_URI=mirror://gnu/${PN}/${MY_P}.tar.gz

IUSE=epoll messages ssl static-libs test
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86
LICENSE=LGPL-2.1
SLOT=0

RDEPEND=ssl? (
dev-libs/libgcrypt:0
net-libs/gnutls
)

DEPEND=${RDEPEND}
test?   (
ssl? ( =net-misc/curl-7.25.0-r1[ssl] )
)

S=${WORKDIR}/${MY_P}

DOCS=AUTHORS NEWS README ChangeLog

src_configure() {
econf \
--enable-bauth \
--enable-dauth \
--disable-spdy \
$(use_enable epoll) \
$(use_enable test curl) \
$(use_enable messages) \
$(use_enable messages postprocessor) \
$(use_enable ssl https) \
$(use_with ssl gnutls) \
$(use_enable static-libs static)
}

src_install() {
default

use static-libs || find ${ED} -name '*.la' -exec rm -f {} +
}






[gentoo-commits] gentoo-x86 commit in mail-mta/sendmail: ChangeLog sendmail-8.14.9.ebuild

2014-06-02 Thread Jeroen Roovers (jer)
jer 14/06/02 12:25:54

  Modified: ChangeLog sendmail-8.14.9.ebuild
  Log:
  Stable for HPPA (bug #511760).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.128mail-mta/sendmail/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.128view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?rev=1.128content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/ChangeLog?r1=1.127r2=1.128

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog   31 May 2014 10:26:58 -  1.127
+++ ChangeLog   2 Jun 2014 12:25:54 -   1.128
@@ -1,6 +1,9 @@
 # ChangeLog for mail-mta/sendmail
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.127 
2014/05/31 10:26:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/ChangeLog,v 1.128 
2014/06/02 12:25:54 jer Exp $
+
+  02 Jun 2014; Jeroen Roovers j...@gentoo.org sendmail-8.14.9.ebuild:
+  Stable for HPPA (bug #511760).
 
   31 May 2014; Agostino Sarubbo a...@gentoo.org sendmail-8.14.9.ebuild:
   Stable for amd64, wrt bug #511760



1.3  mail-mta/sendmail/sendmail-8.14.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.9.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.9.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/sendmail/sendmail-8.14.9.ebuild?r1=1.2r2=1.3

Index: sendmail-8.14.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sendmail-8.14.9.ebuild  31 May 2014 10:26:58 -  1.2
+++ sendmail-8.14.9.ebuild  2 Jun 2014 12:25:54 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.9.ebuild,v 
1.2 2014/05/31 10:26:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.9.ebuild,v 
1.3 2014/06/02 12:25:54 jer Exp $
 
 EAPI=5
 inherit eutils multilib systemd toolchain-funcs user
@@ -11,7 +11,7 @@
 
 LICENSE=Sendmail
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
 IUSE=ssl ldap sasl tcpd mbox ipv6 nis sockets
 
 DEPEND=net-mail/mailbase






[gentoo-commits] gentoo-x86 commit in net-ftp/filezilla: filezilla-3.8.1.ebuild ChangeLog

2014-06-02 Thread Bernard Cafarelli (voyageur)
voyageur14/06/02 12:27:36

  Modified: ChangeLog
  Added:filezilla-3.8.1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.116net-ftp/filezilla/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.116view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.116content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.115r2=1.116

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   28 Mar 2014 16:53:05 -  1.115
+++ ChangeLog   2 Jun 2014 12:27:36 -   1.116
@@ -1,6 +1,11 @@
 # ChangeLog for net-ftp/filezilla
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.115 
2014/03/28 16:53:05 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.116 
2014/06/02 12:27:36 voyageur Exp $
+
+*filezilla-3.8.1 (02 Jun 2014)
+
+  02 Jun 2014; Bernard Cafarelli voyag...@gentoo.org +filezilla-3.8.1.ebuild:
+  Version bump
 
 *filezilla-3.8.0 (28 Mar 2014)
 



1.1  net-ftp/filezilla/filezilla-3.8.1.ebuild

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

Index: filezilla-3.8.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.8.1.ebuild,v 
1.1 2014/06/02 12:27:36 voyageur Exp $

EAPI=5

WX_GTK_VER=2.8

inherit autotools eutils flag-o-matic multilib wxwidgets

MY_PV=${PV/_/-}
MY_P=FileZilla_${MY_PV}

DESCRIPTION=FTP client with lots of useful features and an intuitive interface
HOMEPAGE=http://filezilla-project.org/;
SRC_URI=mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux 
~x86-linux ~x86-macos
IUSE=aqua dbus nls test

RDEPEND==app-admin/eselect-wxwidgets-0.7-r1
=dev-db/sqlite-3.7
=dev-libs/tinyxml-2.6.1-r1[stl]
net-dns/libidn
=net-libs/gnutls-2.8.3
aqua? ( =x11-libs/wxGTK-2.8.12:2.8[aqua] )
!aqua? ( =x11-libs/wxGTK-2.8.12:2.8[X] x11-misc/xdg-utils )
dbus? ( sys-apps/dbus )
DEPEND=${RDEPEND}
virtual/pkgconfig
=sys-devel/libtool-1.4
nls? ( =sys-devel/gettext-0.11 )
test? ( dev-util/cppunit )

S=${WORKDIR}/${PN}-${MY_PV}

src_prepare() {
epatch ${FILESDIR}/${PN}-3.7.4-debug.patch
append-cppflags -DTIXML_USE_STL
eautoreconf
}

src_configure() {
econf $(use_with dbus) $(use_enable nls locales) \
--with-tinyxml=system \
--disable-autoupdatecheck
}

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

doicon src/interface/resources/48x48/${PN}.png

dodoc AUTHORS ChangeLog NEWS

if use aqua ; then
cat  ${T}/${PN} -EOF
#!${EPREFIX}/bin/bash
open ${EPREFIX}/Applications/FileZilla.app
EOF
rm ${ED}/usr/bin/${PN} || die
dobin ${T}/${PN}
insinto /Applications
doins -r ${S}/FileZilla.app
fi
}






[gentoo-commits] gentoo-x86 commit in x11-drivers/nvidia-drivers: ChangeLog nvidia-drivers-337.25.ebuild nvidia-drivers-337.12.ebuild nvidia-drivers-337.19.ebuild

2014-06-02 Thread Jeroen Roovers (jer)
jer 14/06/02 12:29:09

  Modified: ChangeLog
  Added:nvidia-drivers-337.25.ebuild
  Removed:  nvidia-drivers-337.12.ebuild
nvidia-drivers-337.19.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.553x11-drivers/nvidia-drivers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.553view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.553content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?r1=1.552r2=1.553

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v
retrieving revision 1.552
retrieving revision 1.553
diff -u -r1.552 -r1.553
--- ChangeLog   29 May 2014 03:43:33 -  1.552
+++ ChangeLog   2 Jun 2014 12:29:09 -   1.553
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/nvidia-drivers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 
1.552 2014/05/29 03:43:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 
1.553 2014/06/02 12:29:09 jer Exp $
+
+*nvidia-drivers-337.25 (02 Jun 2014)
+
+  02 Jun 2014; Jeroen Roovers j...@gentoo.org -nvidia-drivers-337.12.ebuild,
+  -nvidia-drivers-337.19.ebuild, +nvidia-drivers-337.25.ebuild:
+  Version bump.
 
   29 May 2014; Jeroen Roovers j...@gentoo.org -nvidia-drivers-331.67.ebuild,
   nvidia-drivers-331.79.ebuild:



1.1  x11-drivers/nvidia-drivers/nvidia-drivers-337.25.ebuild

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

Index: nvidia-drivers-337.25.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-337.25.ebuild,v
 1.1 2014/06/02 12:29:09 jer Exp $

EAPI=5

inherit eutils flag-o-matic linux-info linux-mod multilib nvidia-driver \
portability toolchain-funcs unpacker user udev

NV_URI=http://us.download.nvidia.com/XFree86/;
X86_NV_PACKAGE=NVIDIA-Linux-x86-${PV}
AMD64_NV_PACKAGE=NVIDIA-Linux-x86_64-${PV}
X86_FBSD_NV_PACKAGE=NVIDIA-FreeBSD-x86-${PV}
AMD64_FBSD_NV_PACKAGE=NVIDIA-FreeBSD-x86_64-${PV}

DESCRIPTION=NVIDIA Accelerated Graphics Driver
HOMEPAGE=http://www.nvidia.com/;
SRC_URI=
amd64-fbsd? ( 
${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz )
amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run )
x86-fbsd? ( ${NV_URI}FreeBSD-x86/${PV}/${X86_FBSD_NV_PACKAGE}.tar.gz )
x86? ( ${NV_URI}Linux-x86/${PV}/${X86_NV_PACKAGE}.run )


LICENSE=GPL-2 NVIDIA-r2
SLOT=0
KEYWORDS=-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd
IUSE=acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X uvm
RESTRICT=bindist mirror strip
EMULTILIB_PKG=true

COMMON=
app-admin/eselect-opencl
kernel_linux? ( =sys-libs/glibc-2.6.1 )
X? (
=app-admin/eselect-opengl-1.0.9
)

DEPEND=
${COMMON}
app-arch/xz-utils
kernel_linux? ( virtual/linux-sources )

RDEPEND=
${COMMON}
acpi? ( sys-power/acpid )
tools? (
dev-libs/atk
dev-libs/glib
x11-libs/gdk-pixbuf
=x11-libs/gtk+-2.4:2
x11-libs/libX11
x11-libs/libXext
x11-libs/pango[X]
)
X? (
x11-base/xorg-server-1.15.99
=x11-libs/libvdpau-0.3-r1
multilib? (
|| (
 (
x11-libs/libX11[abi_x86_32]
x11-libs/libXext[abi_x86_32]
 )
app-emulation/emul-linux-x86-xlibs
)
)
)


REQUIRED_USE=tools? ( X )

QA_PREBUILT=opt/* usr/lib*

S=${WORKDIR}/

pkg_pretend() {

if use amd64  has_multilib_profile  \
[ ${DEFAULT_ABI} != amd64 ]; then
eerror This ebuild doesn't currently support changing your 
default ABI
die Unexpected \${DEFAULT_ABI} = ${DEFAULT_ABI}
fi

if use kernel_linux  kernel_is ge 3 15 ; then
ewarn Gentoo supports kernels which are supported by NVIDIA

[gentoo-commits] gentoo-x86 commit in profiles/arch/amd64: ChangeLog package.use.stable.mask

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:37:57

  Modified: ChangeLog package.use.stable.mask
  Log:
  Mask abi_x86_32 for virtual/libudev and virtual/libgudev.

Revision  ChangesPath
1.260profiles/arch/amd64/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog   28 May 2014 19:02:32 -  1.259
+++ ChangeLog   2 Jun 2014 12:37:57 -   1.260
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/AMD64 profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/ChangeLog,v 1.259 
2014/05/28 19:02:32 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/ChangeLog,v 1.260 
2014/06/02 12:37:57 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org package.use.stable.mask:
+  Mask abi_x86_32 for virtual/libudev and virtual/libgudev.
 
   28 May 2014; Sven Vermeulen sw...@gentoo.org no-multilib/package.mask:
   Remove huludesktop from package.mask (package has been removed)



1.11 profiles/arch/amd64/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/package.use.stable.mask?rev=1.11view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/package.use.stable.mask?rev=1.11content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/amd64/package.use.stable.mask?r1=1.10r2=1.11

Index: package.use.stable.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- package.use.stable.mask 24 May 2014 12:05:30 -  1.10
+++ package.use.stable.mask 2 Jun 2014 12:37:57 -   1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v 1.10 
2014/05/24 12:05:30 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v 1.11 
2014/06/02 12:37:57 ssuominen 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
@@ -371,6 +371,8 @@
 virtual/libusb abi_x86_32
 virtual/opengl abi_x86_32
 virtual/udev abi_x86_32
+virtual/libudev abi_x86_32
+virtual/libgudev abi_x86_32
 x11-libs/cairo abi_x86_32
 x11-libs/gdk-pixbuf abi_x86_32
 x11-libs/gtk+ abi_x86_32






[gentoo-commits] gentoo-x86 commit in virtual/libudev: libudev-208.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:38:56

  Modified: libudev-208.ebuild ChangeLog
  Log:
  Stabilize for everyone because providers have been marked stable wrt bugs 
#506078 and #505962
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  virtual/libudev/libudev-208.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libudev/libudev-208.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libudev/libudev-208.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libudev/libudev-208.ebuild?r1=1.1r2=1.2

Index: libudev-208.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/libudev/libudev-208.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libudev-208.ebuild  27 Mar 2014 21:59:15 -  1.1
+++ libudev-208.ebuild  2 Jun 2014 12:38:56 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/libudev/libudev-208.ebuild,v 1.1 
2014/03/27 21:59:15 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/libudev/libudev-208.ebuild,v 1.2 
2014/06/02 12:38:56 ssuominen Exp $
 
 EAPI=5
 inherit multilib-build
@@ -11,7 +11,7 @@
 
 LICENSE=
 SLOT=0/1
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86
 IUSE=static-libs
 
 DEPEND=



1.3  virtual/libudev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libudev/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libudev/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libudev/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/libudev/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   29 Mar 2014 16:09:38 -  1.2
+++ ChangeLog   2 Jun 2014 12:38:56 -   1.3
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/libudev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/libudev/ChangeLog,v 1.2 2014/03/29 
16:09:38 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/libudev/ChangeLog,v 1.3 2014/06/02 
12:38:56 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org libudev-208.ebuild:
+  Stabilize for everyone because providers have been marked stable wrt bugs
+  #506078 and #505962
 
   29 Mar 2014; Anthony G. Basile bluen...@gentoo.org metadata.xml:
   Add eudev@g.o as a maintainer






[gentoo-commits] gentoo-x86 commit in virtual/libgudev: libgudev-208.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:40:20

  Modified: libgudev-208.ebuild ChangeLog
  Log:
  Stabilize for everyone because providers have been marked stable wrt bugs 
#506078 and #505962
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.4  virtual/libgudev/libgudev-208.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/libgudev-208.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/libgudev-208.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/libgudev-208.ebuild?r1=1.3r2=1.4

Index: libgudev-208.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/libgudev/libgudev-208.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libgudev-208.ebuild 28 Mar 2014 15:02:39 -  1.3
+++ libgudev-208.ebuild 2 Jun 2014 12:40:20 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/libgudev-208.ebuild,v 1.3 
2014/03/28 15:02:39 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/libgudev-208.ebuild,v 1.4 
2014/06/02 12:40:20 ssuominen Exp $
 
 EAPI=5
 inherit multilib-build
@@ -11,7 +11,7 @@
 
 LICENSE=
 SLOT=0/0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86
 IUSE=introspection static-libs
 
 DEPEND=



1.5  virtual/libgudev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/ChangeLog?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/ChangeLog?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/ChangeLog?r1=1.4r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/libgudev/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   29 Mar 2014 16:11:12 -  1.4
+++ ChangeLog   2 Jun 2014 12:40:20 -   1.5
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/libgudev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/ChangeLog,v 1.4 2014/03/29 
16:11:12 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/ChangeLog,v 1.5 2014/06/02 
12:40:20 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org libgudev-208.ebuild:
+  Stabilize for everyone because providers have been marked stable wrt bugs
+  #506078 and #505962
 
   29 Mar 2014; Anthony G. Basile bluen...@gentoo.org metadata.xml:
   Add eudev@g.o as a maintainer






[gentoo-commits] gentoo-x86 commit in virtual/udev: udev-208-r2.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:41:26

  Modified: udev-208-r2.ebuild ChangeLog
  Log:
  Stabilize for everyone because providers have been marked stable wrt bugs 
#506078 and #505962
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.3  virtual/udev/udev-208-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/udev-208-r2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/udev-208-r2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/udev-208-r2.ebuild?r1=1.2r2=1.3

Index: udev-208-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/udev/udev-208-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- udev-208-r2.ebuild  11 May 2014 16:41:17 -  1.2
+++ udev-208-r2.ebuild  2 Jun 2014 12:41:26 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/udev/udev-208-r2.ebuild,v 1.2 
2014/05/11 16:41:17 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/udev/udev-208-r2.ebuild,v 1.3 
2014/06/02 12:41:26 ssuominen Exp $
 
 EAPI=5
 inherit multilib-build
@@ -11,7 +11,7 @@
 
 LICENSE=
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86
 # These default enabled IUSE flags should follow defaults of sys-fs/udev.
 IUSE=gudev introspection static-libs
 



1.79 virtual/udev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?rev=1.79view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?rev=1.79content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?r1=1.78r2=1.79

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog   11 May 2014 16:41:17 -  1.78
+++ ChangeLog   2 Jun 2014 12:41:26 -   1.79
@@ -1,6 +1,10 @@
 # ChangeLog for virtual/udev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v 1.78 2014/05/11 
16:41:17 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v 1.79 2014/06/02 
12:41:26 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org udev-208-r2.ebuild:
+  Stabilize for everyone because providers have been marked stable wrt bugs
+  #506078 and #505962
 
   11 May 2014; Samuli Suominen ssuomi...@gentoo.org udev-208-r2.ebuild:
   Update DESCRIPTION to not exclude sys-apps/systemd.






[gentoo-commits] gentoo-x86 commit in virtual/udev: ChangeLog udev-208-r1.ebuild

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:42:06

  Modified: ChangeLog
  Removed:  udev-208-r1.ebuild
  Log:
  old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.80 virtual/udev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?rev=1.80view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?rev=1.80content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?r1=1.79r2=1.80

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   2 Jun 2014 12:41:26 -   1.79
+++ ChangeLog   2 Jun 2014 12:42:06 -   1.80
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/udev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v 1.79 2014/06/02 
12:41:26 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v 1.80 2014/06/02 
12:42:06 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org -udev-208-r1.ebuild:
+  old
 
   02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org udev-208-r2.ebuild:
   Stabilize for everyone because providers have been marked stable wrt bugs






[gentoo-commits] gentoo-x86 commit in virtual/udev: metadata.xml ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:42:53

  Modified: metadata.xml ChangeLog
  Log:
  Remove unused local description for USE=kmod which turned to be redudant.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.6  virtual/udev/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/metadata.xml?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/metadata.xml?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/metadata.xml?r1=1.5r2=1.6

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/virtual/udev/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml29 Mar 2014 16:07:53 -  1.5
+++ metadata.xml2 Jun 2014 12:42:53 -   1.6
@@ -9,6 +9,5 @@
/maintainer
use
flag name='gudev'Build the gobject interface library/flag
-   flag name='kmod'Enable kernel module loading/unloading 
support using pkgsys-apps/kmod/pkg/flag
/use
 /pkgmetadata



1.81 virtual/udev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?rev=1.81view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?rev=1.81content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/udev/ChangeLog?r1=1.80r2=1.81

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog   2 Jun 2014 12:42:06 -   1.80
+++ ChangeLog   2 Jun 2014 12:42:53 -   1.81
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/udev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v 1.80 2014/06/02 
12:42:06 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/udev/ChangeLog,v 1.81 2014/06/02 
12:42:53 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org metadata.xml:
+  Remove unused local description for USE=kmod which turned to be redudant.
 
   02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org -udev-208-r1.ebuild:
   old






[gentoo-commits] gentoo-x86 commit in sys-power/upower: upower-0.9.23-r2.ebuild upower-0.99.0.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:47:33

  Modified: upower-0.9.23-r2.ebuild upower-0.99.0.ebuild
ChangeLog
  Log:
  Pull in virtual/libgudev and use := subslotting for it to gain automatic 
rebuild from SONAME change.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.5  sys-power/upower/upower-0.9.23-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild?r1=1.4r2=1.5

Index: upower-0.9.23-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- upower-0.9.23-r2.ebuild 27 May 2014 11:21:17 -  1.4
+++ upower-0.9.23-r2.ebuild 2 Jun 2014 12:47:33 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild,v 
1.4 2014/05/27 11:21:17 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r2.ebuild,v 
1.5 2014/06/02 12:47:33 ssuominen Exp $
 
 EAPI=5
 inherit eutils systemd
@@ -21,7 +21,8 @@
introspection? ( dev-libs/gobject-introspection )
kernel_linux? (
virtual/libusb:1
-   =virtual/udev-200[gudev]
+   virtual/libgudev:=
+   virtual/udev
ios? (
=app-pda/libimobiledevice-1:=
=app-pda/libplist-1:=



1.6  sys-power/upower/upower-0.99.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.99.0.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.99.0.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.99.0.ebuild?r1=1.5r2=1.6

Index: upower-0.99.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.99.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- upower-0.99.0.ebuild31 May 2014 20:34:55 -  1.5
+++ upower-0.99.0.ebuild2 Jun 2014 12:47:33 -   1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.99.0.ebuild,v 1.5 
2014/05/31 20:34:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.99.0.ebuild,v 1.6 
2014/06/02 12:47:33 ssuominen Exp $
 
 EAPI=5
 inherit eutils systemd
@@ -21,7 +21,8 @@
introspection? ( dev-libs/gobject-introspection )
kernel_linux? (
virtual/libusb:1
-   =virtual/udev-200[gudev]
+   virtual/libgudev:=
+   virtual/udev
ios? (
=app-pda/libimobiledevice-1:=
=app-pda/libplist-1:=



1.150sys-power/upower/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.150view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.150content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?r1=1.149r2=1.150

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog   31 May 2014 20:34:55 -  1.149
+++ ChangeLog   2 Jun 2014 12:47:33 -   1.150
@@ -1,6 +1,11 @@
 # ChangeLog for sys-power/upower
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.149 
2014/05/31 20:34:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.150 
2014/06/02 12:47:33 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org upower-0.9.23-r2.ebuild,
+  upower-0.99.0.ebuild:
+  Pull in virtual/libgudev and use := subslotting for it to gain automatic
+  rebuild from SONAME change.
 
   31 May 2014; Samuli Suominen ssuomi...@gentoo.org upower-0.99.0.ebuild:
   Release 0.99 to ~arch because most of the tree has been adapted.






[gentoo-commits] gentoo-x86 commit in sys-power/upower-pm-utils: upower-pm-utils-0.9.23.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 12:48:21

  Modified: upower-pm-utils-0.9.23.ebuild ChangeLog
  Log:
  Pull in virtual/libgudev and use := subslotting for it to gain automatic 
rebuild from SONAME change.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.4  sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild?r1=1.3r2=1.4

Index: upower-pm-utils-0.9.23.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- upower-pm-utils-0.9.23.ebuild   31 May 2014 20:34:38 -  1.3
+++ upower-pm-utils-0.9.23.ebuild   2 Jun 2014 12:48:21 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild,v
 1.3 2014/05/31 20:34:38 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-power/upower-pm-utils/upower-pm-utils-0.9.23.ebuild,v
 1.4 2014/06/02 12:48:21 ssuominen Exp $
 
 EAPI=5
 inherit eutils systemd
@@ -21,7 +21,8 @@
introspection? ( dev-libs/gobject-introspection )
kernel_linux? (
virtual/libusb:1
-   =virtual/udev-200[gudev]
+   virtual/libgudev:=
+   virtual/udev
ios? (
=app-pda/libimobiledevice-1:=
=app-pda/libplist-1:=



1.3  sys-power/upower-pm-utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower-pm-utils/ChangeLog?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower-pm-utils/ChangeLog?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower-pm-utils/ChangeLog?r1=1.2r2=1.3

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower-pm-utils/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   31 May 2014 20:34:38 -  1.2
+++ ChangeLog   2 Jun 2014 12:48:21 -   1.3
@@ -1,6 +1,11 @@
 # ChangeLog for sys-power/upower-pm-utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower-pm-utils/ChangeLog,v 1.2 
2014/05/31 20:34:38 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower-pm-utils/ChangeLog,v 1.3 
2014/06/02 12:48:21 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org
+  upower-pm-utils-0.9.23.ebuild:
+  Pull in virtual/libgudev and use := subslotting for it to gain automatic
+  rebuild from SONAME change.
 
   31 May 2014; Samuli Suominen ssuomi...@gentoo.org
   upower-pm-utils-0.9.23.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-qmake: - New directory

2014-06-02 Thread Jason Donenfeld (zx2c4)
zx2c4   14/06/02 12:49:52

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-qmake: kdevelop-qmake-1.6.0.ebuild metadata.xml ChangeLog

2014-06-02 Thread Jason Donenfeld (zx2c4)
zx2c4   14/06/02 12:50:18

  Added:kdevelop-qmake-1.6.0.ebuild metadata.xml ChangeLog
  Log:
  Initial import.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A5DE03AE)

Revision  ChangesPath
1.1  dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild

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

Index: kdevelop-qmake-1.6.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v 
1.1 2014/06/02 12:50:18 zx2c4 Exp $

EAPI=5

KDEBASE=kdevelop
KMNAME=kdev-qmake
inherit kde4-base

MY_PN=${KMNAME}
S=${WORKDIR}/${MY_PN}
DESCRIPTION=Qt's qmake build system plugin for KDevelop
HOMEPAGE=http://www.kdevelop.org/;
SRC_URI=http://quickgit.kde.org/?p=${MY_PN}.gita=snapshoth=${PV%%.0} - 
${P}.tar.gz

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

DEPEND=dev-util/kdevelop-pg-qt
RDEPEND=dev-util/kdevelop ${DEPEND}

src_install() {
kde4-base_src_install
rm ${D}/usr/share/apps/kdevappwizard/templates/qmake_qt4guiapp.tar.bz2
}



1.1  dev-util/kdevelop-qmake/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/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
herdkde/herd
/pkgmetadata



1.1  dev-util/kdevelop-qmake/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-util/kdevelop-qmake
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v 1.1 
2014/06/02 12:50:18 zx2c4 Exp $

*kdevelop-qmake-1.6.0 (02 Jun 2014)

  02 Jun 2014; Jason A. Donenfeld zx...@gentoo.org
  +kdevelop-qmake-1.6.0.ebuild, +metadata.xml:
  Initial import.






[gentoo-commits] gentoo-x86 commit in net-misc/youtube-dl: ChangeLog youtube-dl-2014.06.02.ebuild

2014-06-02 Thread Jeroen Roovers (jer)
jer 14/06/02 12:59:01

  Modified: ChangeLog
  Added:youtube-dl-2014.06.02.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.341net-misc/youtube-dl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.341view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.341content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?r1=1.340r2=1.341

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v
retrieving revision 1.340
retrieving revision 1.341
diff -u -r1.340 -r1.341
--- ChangeLog   19 May 2014 19:58:05 -  1.340
+++ ChangeLog   2 Jun 2014 12:59:01 -   1.341
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/youtube-dl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.340 
2014/05/19 19:58:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.341 
2014/06/02 12:59:01 jer Exp $
+
+*youtube-dl-2014.06.02 (02 Jun 2014)
+
+  02 Jun 2014; Jeroen Roovers j...@gentoo.org +youtube-dl-2014.06.02.ebuild:
+  Version bump.
 
 *youtube-dl-2014.05.19 (19 May 2014)
 



1.1  net-misc/youtube-dl/youtube-dl-2014.06.02.ebuild

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

Index: youtube-dl-2014.06.02.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.06.02.ebuild,v 1.1 
2014/06/02 12:59:01 jer Exp $

EAPI=5

PYTHON_COMPAT=(python{2_6,2_7,3_3,3_4})
DISTUTILS_SINGLE_IMPL=true
inherit bash-completion-r1 distutils-r1 eutils

DESCRIPTION=Download videos from YouTube.com (and mores sites...)
HOMEPAGE=http://rg3.github.com/youtube-dl/;
SRC_URI=http://youtube-dl.org/downloads/${PV}/${P}.tar.gz;

LICENSE=public-domain
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
IUSE=offensive test

DEPEND=
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[coverage(+)] )


S=${WORKDIR}/${PN}

src_prepare() {
if ! use offensive; then
sed -i -e /__version__/s|'$|-gentoo_no_offensive_sites'|g \
youtube_dl/version.py || die
local xxx=(
extremetube fourtube hentaistigma mofosex pornhd 
pornhub pornotube
redtube slutload spankwire thisav trutube tube8 xbef 
xhamster xnxx
xtube xvideos youjizz youporn
)
sed -i -e $( printf '/%s/d;' ${xxx[@]} ) 
youtube_dl/extractor/__init__.py || die
rm $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
test/test_age_restriction.py || die
fi
}

src_compile() {
distutils-r1_src_compile
}

src_test() {
emake test
}

src_install() {
python_domodule youtube_dl
dobin bin/${PN}
dodoc README.txt
doman ${PN}.1
newbashcomp ${PN}.bash-completion ${PN}
python_fix_shebang ${ED}
}






[gentoo-commits] gentoo-x86 commit in sci-libs/itpp: itpp-4.3.1-r1.ebuild ChangeLog

2014-06-02 Thread Richard Farina (zerochaos)
zerochaos14/06/02 13:15:44

  Modified: ChangeLog
  Added:itpp-4.3.1-r1.ebuild
  Log:
  fixing multilib-strict failure, acked by xarthisius
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.120sci-libs/itpp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/itpp/ChangeLog?rev=1.120view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/itpp/ChangeLog?rev=1.120content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/itpp/ChangeLog?r1=1.119r2=1.120

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog   15 Jan 2014 06:01:25 -  1.119
+++ ChangeLog   2 Jun 2014 13:15:44 -   1.120
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/itpp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.119 2014/01/15 
06:01:25 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.120 2014/06/02 
13:15:44 zerochaos Exp $
+
+*itpp-4.3.1-r1 (02 Jun 2014)
+
+  02 Jun 2014; Rick Farina zeroch...@gentoo.org +itpp-4.3.1-r1.ebuild:
+  fixing multilib-strict failure, acked by xarthisius
 
 *itpp-4.3.1 (15 Jan 2014)
 



1.1  sci-libs/itpp/itpp-4.3.1-r1.ebuild

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

Index: itpp-4.3.1-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.3.1-r1.ebuild,v 1.1 
2014/06/02 13:15:44 zerochaos Exp $

EAPI=5

inherit cmake-utils multilib

DESCRIPTION=C++ library of mathematical, signal processing and communication
HOMEPAGE=http://itpp.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

SLOT=0
LICENSE=GPL-3
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
IUSE=doc

RDEPEND=
virtual/blas
virtual/lapack
=sci-libs/fftw-3
DEPEND=${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen virtual/latex-base )

DOCS=(ChangeLog NEWS AUTHORS README)

src_prepare() {
# gentoo redefines the CMAKE_BUILD_TYPE
sed -i \
-e 's/CMAKE_BUILD_TYPE STREQUAL Release/NOT CMAKE_BUILD_TYPE 
STREQUAL Debug/' \
CMakeLists.txt || die
# respect gentoo doc dir
sed -i \
-e s:share/doc/itpp:share/doc/${PF}: \
itpp/CMakeLists.txt || die

# respect gentoo libdir
sed -i s#/lib#/$(get_libdir)# itpp-config.cmake.in
sed -i s#/lib#/$(get_libdir)# itpp.pc.cmake.in
sed -i \
-e s#LIBRARY DESTINATION lib#LIBRARY DESTINATION 
$(get_libdir)# \
-e s#ARCHIVE DESTINATION lib#ARCHIVE DESTINATION 
$(get_libdir)# \
itpp/CMakeLists.txt || die
}

src_configure() {
local mycmakeargs=(
-DBLA_VENDOR=Generic
$(cmake-utils_use doc HTML_DOCS)
)
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in www-client/uzbl: uzbl-2012.05.14.ebuild uzbl-9999.ebuild ChangeLog metadata.xml

2014-06-02 Thread Tom Wijsman (tomwij)
tomwij  14/06/02 13:30:41

  Modified: uzbl-2012.05.14.ebuild uzbl-.ebuild ChangeLog
metadata.xml
  Log:
  Added Kéwan Marconnet (tharvik) as proxy maintainer.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.4  www-client/uzbl/uzbl-2012.05.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild?r1=1.3r2=1.4

Index: uzbl-2012.05.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- uzbl-2012.05.14.ebuild  23 Dec 2013 14:48:27 -  1.3
+++ uzbl-2012.05.14.ebuild  2 Jun 2014 13:30:41 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild,v 
1.3 2013/12/23 14:48:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild,v 
1.4 2014/06/02 13:30:41 tomwij Exp $
 
 EAPI=4
 
@@ -20,7 +20,7 @@
SRC_URI=http://github.com/Dieterbe/${PN}/tarball/${PV} - ${P}.tar.gz
 fi
 
-DESCRIPTION=Web interface tools which adhere to the unix philosophy.
+DESCRIPTION=Web interface tools which adhere to the unix philosophy
 HOMEPAGE=http://www.uzbl.org;
 
 LICENSE=LGPL-2.1 MPL-1.1



1.27 www-client/uzbl/uzbl-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-.ebuild?rev=1.27view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-.ebuild?rev=1.27content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-.ebuild?r1=1.26r2=1.27

Index: uzbl-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-.ebuild,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- uzbl-.ebuild20 Aug 2012 17:12:46 -  1.26
+++ uzbl-.ebuild2 Jun 2014 13:30:41 -   1.27
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-.ebuild,v 1.26 
2012/08/20 17:12:46 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-.ebuild,v 1.27 
2014/06/02 13:30:41 tomwij Exp $
 
 EAPI=4
 
@@ -20,7 +20,7 @@
SRC_URI=http://github.com/Dieterbe/${PN}/tarball/${PV} - ${P}.tar.gz
 fi
 
-DESCRIPTION=Web interface tools which adhere to the unix philosophy.
+DESCRIPTION=Web interface tools which adhere to the unix philosophy
 HOMEPAGE=http://www.uzbl.org;
 
 LICENSE=LGPL-2.1 MPL-1.1



1.56 www-client/uzbl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   8 May 2014 04:06:51 -   1.55
+++ ChangeLog   2 Jun 2014 13:30:41 -   1.56
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/uzbl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v 1.55 2014/05/08 
04:06:51 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v 1.56 2014/06/02 
13:30:41 tomwij Exp $
+
+  02 Jun 2014; Tom Wijsman tom...@gentoo.org metadata.xml:
+  Added Kéwan Marconnet (tharvik) as proxy maintainer.
 
   08 May 2014; Alex Alexander wi...@gentoo.org metadata.xml:
   maintainer-needed



1.7  www-client/uzbl/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/metadata.xml?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/metadata.xml?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/metadata.xml?r1=1.6r2=1.7

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- 

[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux/musl: make.defaults

2014-06-02 Thread Anthony G. Basile (blueness)
blueness14/06/02 13:31:28

  Modified: make.defaults
  Log:
  Enable sandbox on musl profiles

Revision  ChangesPath
1.3  profiles/hardened/linux/musl/make.defaults

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/make.defaults?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/make.defaults?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/hardened/linux/musl/make.defaults?r1=1.2r2=1.3

Index: make.defaults
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/make.defaults,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- make.defaults   24 Jan 2014 20:05:04 -  1.2
+++ make.defaults   2 Jun 2014 13:31:28 -   1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/make.defaults,v 1.2 
2014/01/24 20:05:04 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/make.defaults,v 1.3 
2014/06/02 13:31:28 blueness Exp $
 
 ELIBC=musl
 
-FEATURES=sfperms strict
+FEATURES=sandbox sfperms strict
 
 USE=hardened nptl pax_kernel pic unicode xattr -berkdb -jit -orc
 BOOTSTRAP_USE=${BOOTSTRAP_USE} hardened nptl pax_kernel pic -berkdb -jit -orc






[gentoo-commits] gentoo-x86 commit in sys-fs/udev: udev-208-r1.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 13:32:26

  Modified: ChangeLog
  Added:udev-208-r1.ebuild
  Log:
  Backport building of multilib libgudev-1.0 to =208-r1 from =212-r1 because 
only 208 works with Linux 2.6.32.x series since CONFIG_FHANDLE=y was introduced 
in Linux 2.6.39.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 4868F14D)

Revision  ChangesPath
1.1042   sys-fs/udev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.1042view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.1042content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?r1=1.1041r2=1.1042

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v
retrieving revision 1.1041
retrieving revision 1.1042
diff -u -r1.1041 -r1.1042
--- ChangeLog   1 Jun 2014 18:33:31 -   1.1041
+++ ChangeLog   2 Jun 2014 13:32:26 -   1.1042
@@ -1,6 +1,13 @@
 # ChangeLog for sys-fs/udev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.1041 2014/06/01 
18:33:31 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.1042 2014/06/02 
13:32:26 ssuominen Exp $
+
+*udev-208-r1 (02 Jun 2014)
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org +udev-208-r1.ebuild:
+  Backport building of multilib libgudev-1.0 to =208-r1 from =212-r1 because
+  only 208 works with Linux 2.6.32.x series since CONFIG_FHANDLE=y was
+  introduced in Linux 2.6.39.
 
   01 Jun 2014; Mikle Kolyada zlog...@gentoo.org udev-212-r1.ebuild:
   ia64 stable wrt big #505962



1.1  sys-fs/udev/udev-208-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/udev-208-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/udev-208-r1.ebuild?rev=1.1content-type=text/plain

Index: udev-208-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-208-r1.ebuild,v 1.1 
2014/06/02 13:32:26 ssuominen Exp $

EAPI=5

inherit autotools eutils linux-info multilib toolchain-funcs versionator 
multilib-minimal

if [[ ${PV} = * ]]; then
EGIT_REPO_URI=git://anongit.freedesktop.org/systemd/systemd
inherit git-2
else
patchset=1

SRC_URI=http://www.freedesktop.org/software/systemd/systemd-${PV}.tar.xz - 
systemd-${PV}-r1.tar.xz
if [[ -n ${patchset} ]]; then
SRC_URI=${SRC_URI}

http://dev.gentoo.org/~ssuominen/${P}-patches-${patchset}.tar.xz

http://dev.gentoo.org/~williamh/dist/${P}-patches-${patchset}.tar.xz;
fi
KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86
fi

DESCRIPTION=Linux dynamic and persistent device naming support (aka userspace 
devfs)
HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd;

LICENSE=LGPL-2.1 MIT GPL-2
SLOT=0
IUSE=acl doc +firmware-loader gudev introspection +kmod selinux static-libs

RESTRICT=test

COMMON_DEPEND==sys-apps/util-linux-2.20
acl? ( sys-apps/acl )
gudev? ( =dev-libs/glib-2.22[${MULTILIB_USEDEP}] )
introspection? ( =dev-libs/gobject-introspection-1.31.1 )
kmod? ( =sys-apps/kmod-14 )
selinux? ( =sys-libs/libselinux-2.1.9 )
!sys-libs/glibc-2.11
!sys-apps/gentoo-systemd-integration
!sys-apps/systemd
abi_x86_32? (
!=app-emulation/emul-linux-x86-baselibs-20130224-r7
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)
DEPEND=${COMMON_DEPEND}
dev-util/gperf
=sys-devel/make-3.82-r4
virtual/os-headers
virtual/pkgconfig
!sys-kernel/linux-headers-2.6.32
doc? ( =dev-util/gtk-doc-1.18 )
if [[ ${PV} = * ]]; then
DEPEND=${DEPEND}
app-text/docbook-xml-dtd:4.2
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
=dev-util/intltool-0.50
fi
RDEPEND=${COMMON_DEPEND}
!sys-apps/coldplug
!sys-fs/lvm2-2.02.97-r1
!sys-fs/device-mapper
!sys-fs/udev-init-scripts-22
!sys-kernel/dracut-017-r1
!sys-kernel/genkernel-3.4.25
!sec-policy/selinux-base-2.20120725-r10
PDEPEND==sys-apps/hwids-20130717-r1[udev]
=sys-fs/udev-init-scripts-25

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

# The multilib-build.eclass doesn't handle situation where the installed headers
# are different in ABIs. In this case, we install libgudev headers in 

[gentoo-commits] gentoo-x86 commit in profiles/hardened: ChangeLog

2014-06-02 Thread Anthony G. Basile (blueness)
blueness14/06/02 13:33:08

  Modified: ChangeLog
  Log:
  Manually update ChangeLog

Revision  ChangesPath
1.47 profiles/hardened/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   1 Jun 2014 14:34:48 -   1.46
+++ ChangeLog   2 Jun 2014 13:33:08 -   1.47
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/AMD64 profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v 1.46 
2014/06/01 14:34:48 zorry Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v 1.47 
2014/06/02 13:33:08 blueness Exp $
+
+  01 Jun 2014; Anthony G. Basile bluen...@gentoo.org
+  profiles/hardened/linux/musl: Enable sandbox on musl profiles
 
   01 Jun 2014; Magnus Granberg zo...@gentoo.org
   linux/amd64/package.use:






[gentoo-commits] gentoo-x86 commit in x11-drivers/ati-drivers: ati-drivers-14.4_p1.ebuild ChangeLog

2014-06-02 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/06/02 13:33:13

  Modified: ati-drivers-14.4_p1.ebuild ChangeLog
  Log:
  Stabilize latest.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.2  x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild?r1=1.1r2=1.2

Index: ati-drivers-14.4_p1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ati-drivers-14.4_p1.ebuild  27 May 2014 15:55:02 -  1.1
+++ ati-drivers-14.4_p1.ebuild  2 Jun 2014 13:33:12 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild,v 
1.1 2014/05/27 15:55:02 chithanh Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.4_p1.ebuild,v 
1.2 2014/06/02 13:33:12 chithanh Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 IUSE=debug +modules multilib qt4 static-libs pax_kernel
 
 LICENSE=AMD GPL-2 QPL-1.0
-KEYWORDS=-* ~amd64 ~x86
+KEYWORDS=-* amd64 x86
 
 RESTRICT=bindist test
 



1.360x11-drivers/ati-drivers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.360view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.360content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?r1=1.359r2=1.360

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
retrieving revision 1.359
retrieving revision 1.360
diff -u -r1.359 -r1.360
--- ChangeLog   27 May 2014 15:55:02 -  1.359
+++ ChangeLog   2 Jun 2014 13:33:12 -   1.360
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/ati-drivers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.359 
2014/05/27 15:55:02 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.360 
2014/06/02 13:33:12 chithanh Exp $
+
+  02 Jun 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  ati-drivers-14.4_p1.ebuild:
+  Stabilize latest.
 
 *ati-drivers-14.4_p1 (27 May 2014)
 






[gentoo-commits] gentoo-x86 commit in virtual/libgudev: libgudev-208.ebuild ChangeLog

2014-06-02 Thread Samuli Suominen (ssuominen)
ssuominen14/06/02 13:33:34

  Modified: libgudev-208.ebuild ChangeLog
  Log:
  Accept =sys-fs/udev-208-r1 as a multilib libgudev-1.0 provider.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.5  virtual/libgudev/libgudev-208.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/libgudev-208.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/libgudev-208.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/libgudev/libgudev-208.ebuild?r1=1.4r2=1.5

Index: libgudev-208.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/virtual/libgudev/libgudev-208.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libgudev-208.ebuild 2 Jun 2014 12:40:20 -   1.4
+++ libgudev-208.ebuild 2 Jun 2014 13:33:34 -   1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/libgudev-208.ebuild,v 1.4 
2014/06/02 12:40:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/libgudev-208.ebuild,v 1.5 
2014/06/02 13:33:34 ssuominen Exp $
 
 EAPI=5
 inherit multilib-build
@@ -17,7 +17,7 @@
 DEPEND=
 RDEPEND=
|| (
-   
=sys-fs/udev-212-r1:0/0[${MULTILIB_USEDEP},gudev,introspection?,static-libs?]
+   
=sys-fs/udev-208-r1:0/0[${MULTILIB_USEDEP},gudev,introspection?,static-libs?]

=sys-apps/systemd-208:0/2[${MULTILIB_USEDEP},gudev,introspection?,static-libs(-)?]

=sys-apps/systemd-208:0/1[${MULTILIB_USEDEP},gudev,introspection?,static-libs(-)?]

=sys-apps/systemd-208:0/0[${MULTILIB_USEDEP},gudev,introspection?,static-libs(-)?]



1.6  virtual/libgudev/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/libgudev/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   2 Jun 2014 12:40:20 -   1.5
+++ ChangeLog   2 Jun 2014 13:33:34 -   1.6
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/libgudev
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/ChangeLog,v 1.5 2014/06/02 
12:40:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/libgudev/ChangeLog,v 1.6 2014/06/02 
13:33:34 ssuominen Exp $
+
+  02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org libgudev-208.ebuild:
+  Accept =sys-fs/udev-208-r1 as a multilib libgudev-1.0 provider.
 
   02 Jun 2014; Samuli Suominen ssuomi...@gentoo.org libgudev-208.ebuild:
   Stabilize for everyone because providers have been marked stable wrt bugs






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

2014-06-02 Thread Anthony G. Basile (blueness)
blueness14/06/02 13:36:12

  Modified: ChangeLog profiles.desc
  Log:
  Add hardened musl profiles for amd64 and x86 as exp

Revision  ChangesPath
1.9038   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9037
retrieving revision 1.9038
diff -u -r1.9037 -r1.9038
--- ChangeLog   2 Jun 2014 09:35:48 -   1.9037
+++ ChangeLog   2 Jun 2014 13:36:11 -   1.9038
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9037 2014/06/02 
09:35:48 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9038 2014/06/02 
13:36:11 blueness 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!
 
+  02 Jun 2014; Anthony G. Basile bluen...@gentoo.org profiles.desc:
+  Add hardened musl profiles for amd64 and x86 as exp
+
   02 Jun 2014; Manuel Rüger mr...@gentoo.org package.mask:
   Clean up package.mask
 



1.239profiles/profiles.desc

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

Index: profiles.desc
===
RCS file: /var/cvsroot/gentoo-x86/profiles/profiles.desc,v
retrieving revision 1.238
retrieving revision 1.239
diff -u -r1.238 -r1.239
--- profiles.desc   26 Mar 2014 19:35:09 -  1.238
+++ profiles.desc   2 Jun 2014 13:36:12 -   1.239
@@ -172,6 +172,7 @@
 amd64  hardened/linux/amd64/no-multilib/selinuxstable
 amd64  hardened/linux/amd64/x32dev
 amd64  hardened/linux/uclibc/amd64 dev
+amd64  hardened/linux/musl/amd64   exp
 armhardened/linux/arm/armv7a   dev
 armhardened/linux/arm/armv6j   dev
 armhardened/linux/uclibc/arm/armv7adev
@@ -184,6 +185,7 @@
 x86hardened/linux/x86  stable
 x86hardened/linux/x86/selinux  stable
 x86hardened/linux/uclibc/x86   dev
+x86hardened/linux/musl/x86 exp
 
 # uclibc/embedded multiarch profiles
 #amd64 uclibc/amd64dev






[gentoo-commits] gentoo-x86 commit in net-ftp/lftp/files: lftp-4.5.0-Torrent.patch

2014-06-02 Thread Jeroen Roovers (jer)
jer 14/06/02 13:37:25

  Removed:  lftp-4.5.0-Torrent.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)



[gentoo-commits] gentoo-x86 commit in net-ftp/lftp: ChangeLog lftp-4.5.1.ebuild lftp-4.5.0-r1.ebuild

2014-06-02 Thread Jeroen Roovers (jer)
jer 14/06/02 13:37:25

  Modified: ChangeLog
  Added:lftp-4.5.1.ebuild
  Removed:  lftp-4.5.0-r1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.473net-ftp/lftp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.473view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?rev=1.473content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/lftp/ChangeLog?r1=1.472r2=1.473

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v
retrieving revision 1.472
retrieving revision 1.473
diff -u -r1.472 -r1.473
--- ChangeLog   23 May 2014 16:06:37 -  1.472
+++ ChangeLog   2 Jun 2014 13:37:25 -   1.473
@@ -1,6 +1,12 @@
 # ChangeLog for net-ftp/lftp
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.472 2014/05/23 
16:06:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.473 2014/06/02 
13:37:25 jer Exp $
+
+*lftp-4.5.1 (02 Jun 2014)
+
+  02 Jun 2014; Jeroen Roovers j...@gentoo.org -lftp-4.5.0-r1.ebuild,
+  +lftp-4.5.1.ebuild, -files/lftp-4.5.0-Torrent.patch:
+  Version bump.
 
 *lftp-4.5.0-r1 (23 May 2014)
 



1.1  net-ftp/lftp/lftp-4.5.1.ebuild

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

Index: lftp-4.5.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.1.ebuild,v 1.1 
2014/06/02 13:37:25 jer Exp $

EAPI=5
inherit autotools eutils libtool

DESCRIPTION=A sophisticated ftp/sftp/http/https/torrent client and file 
transfer program
HOMEPAGE=http://lftp.yar.ru/;
SRC_URI=http://${PN}.yar.ru/ftp/${P}.tar.xz;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris

IUSE=convert-mozilla-cookies +gnutls nls openssl socks5 +ssl verify-file
LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru zh_CN zh_HK zh_TW )
IUSE+= ${LFTP_LINGUAS[@]/#/linguas_}

REQUIRED_USE=
ssl? ( ^^ ( openssl gnutls ) )


RDEPEND=
=sys-libs/ncurses-5.1
=sys-libs/readline-5.1
dev-libs/expat
sys-libs/zlib
convert-mozilla-cookies? ( dev-perl/DBI )
socks5? (
=net-proxy/dante-1.1.12
virtual/pam
)
ssl? (
gnutls? ( =net-libs/gnutls-1.2.3 )
openssl? ( =dev-libs/openssl-0.9.6 )
)
verify-file? (
dev-perl/string-crc32
virtual/perl-Digest-MD5
)


DEPEND=
${RDEPEND}
=sys-devel/libtool-2*
app-arch/xz-utils
nls? ( sys-devel/gettext )
virtual/pkgconfig


DOCS=(
BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels
README.dnssec README.modules THANKS TODO
)

src_prepare() {
epatch \
${FILESDIR}/${PN}-4.0.2.91-lafile.patch \
${FILESDIR}/${PN}-4.3.5-autopoint.patch \
${FILESDIR}/${PN}-4.3.8-gets.patch

sed -i configure.ac -e 's|^AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
eautoreconf
elibtoolize # for Darwin bundles
}

src_configure() {
econf \
$(use_enable nls) \
$(use_with gnutls) \
$(use_with openssl openssl ${EPREFIX}/usr) \
$(use_with socks5 socksdante ${EPREFIX}/usr) \
--enable-packager-mode \
--sysconfdir=${EPREFIX}/etc/${PN} \
--with-modules \
--without-included-regex
}

src_install() {
default
local script
for script in {convert-mozilla-cookies,verify-file}; do
use ${script} || { rm ${ED}/usr/share/${PN}/${script} || die 
;}
done
}






[gentoo-commits] gentoo-x86 commit in www-client/uzbl: uzbl-9999.ebuild uzbl-2012.05.14.ebuild ChangeLog

2014-06-02 Thread Tom Wijsman (tomwij)
tomwij  14/06/02 13:43:20

  Modified: uzbl-.ebuild uzbl-2012.05.14.ebuild ChangeLog
  Log:
  Repoman didn't update the Gentoo Copyright header for some reason.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 
6D34E57D)

Revision  ChangesPath
1.28 www-client/uzbl/uzbl-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-.ebuild?rev=1.28view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-.ebuild?rev=1.28content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-.ebuild?r1=1.27r2=1.28

Index: uzbl-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-.ebuild,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- uzbl-.ebuild2 Jun 2014 13:30:41 -   1.27
+++ uzbl-.ebuild2 Jun 2014 13:43:20 -   1.28
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-.ebuild,v 1.27 
2014/06/02 13:30:41 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-.ebuild,v 1.28 
2014/06/02 13:43:20 tomwij Exp $
 
 EAPI=4
 



1.5  www-client/uzbl/uzbl-2012.05.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild?r1=1.4r2=1.5

Index: uzbl-2012.05.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- uzbl-2012.05.14.ebuild  2 Jun 2014 13:30:41 -   1.4
+++ uzbl-2012.05.14.ebuild  2 Jun 2014 13:43:20 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild,v 
1.4 2014/06/02 13:30:41 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2012.05.14.ebuild,v 
1.5 2014/06/02 13:43:20 tomwij Exp $
 
 EAPI=4
 



1.57 www-client/uzbl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   2 Jun 2014 13:30:41 -   1.56
+++ ChangeLog   2 Jun 2014 13:43:20 -   1.57
@@ -1,6 +1,10 @@
 # ChangeLog for www-client/uzbl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v 1.56 2014/06/02 
13:30:41 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/ChangeLog,v 1.57 2014/06/02 
13:43:20 tomwij Exp $
+
+  02 Jun 2014; Tom Wijsman tom...@gentoo.org uzbl-2012.05.14.ebuild,
+  uzbl-.ebuild:
+  Repoman didn't update the Gentoo Copyright header for some reason.
 
   02 Jun 2014; Tom Wijsman tom...@gentoo.org metadata.xml:
   Added Kéwan Marconnet (tharvik) as proxy maintainer.






[gentoo-commits] gentoo-x86 commit in www-servers/uwsgi: ChangeLog uwsgi-2.0.5.1.ebuild uwsgi-2.0.3.ebuild

2014-06-02 Thread Alexys Jacob (ultrabug)
ultrabug14/06/02 13:52:35

  Modified: ChangeLog
  Added:uwsgi-2.0.5.1.ebuild
  Removed:  uwsgi-2.0.3.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.57 www-servers/uwsgi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/uwsgi/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   7 May 2014 19:03:10 -   1.56
+++ ChangeLog   2 Jun 2014 13:52:35 -   1.57
@@ -1,6 +1,12 @@
 # ChangeLog for www-servers/uwsgi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/uwsgi/ChangeLog,v 1.56 
2014/05/07 19:03:10 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/uwsgi/ChangeLog,v 1.57 
2014/06/02 13:52:35 ultrabug Exp $
+
+*uwsgi-2.0.5.1 (02 Jun 2014)
+
+  02 Jun 2014; Ultrabug ultra...@gentoo.org -uwsgi-2.0.3.ebuild,
+  +uwsgi-2.0.5.1.ebuild:
+  version bump
 
   07 May 2014; Manuel Rüger mr...@gentoo.org uwsgi-1.4.10.ebuild,
   uwsgi-1.4.8.ebuild, uwsgi-1.4.9.ebuild:



1.1  www-servers/uwsgi/uwsgi-2.0.5.1.ebuild

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

Index: uwsgi-2.0.5.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/uwsgi/uwsgi-2.0.5.1.ebuild,v 1.1 
2014/06/02 13:52:35 ultrabug Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{2,3,4} )

RUBY_OPTIONAL=yes
USE_RUBY=ruby19 ruby20 ruby21

PHP_EXT_INI=no
PHP_EXT_NAME=dummy
PHP_EXT_OPTIONAL_USE=php
USE_PHP=php5-3 php5-4 php5-5 # deps must be registered separately below

MY_P=${P/_/-}

inherit apache-module distutils-r1 eutils multilib pax-utils php-ext-source-r2 
python-r1 ruby-ng versionator

DESCRIPTION=uWSGI server for Python web applications
HOMEPAGE=http://projects.unbit.it/uwsgi/;
SRC_URI=http://projects.unbit.it/downloads/${MY_P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86

UWSGI_PLUGINS_STD=( ping cache carbon nagios rpc rrdtool
http ugreen signal syslog rsyslog

router_{uwsgi,redirect,basicauth,rewrite,http,cache,static,memcached,redis,hash,expires,metrics}
{core,fast,raw,ssl}router
redislog mongodblog log{file,socket}
spooler cheaper_busyness symcall
transformation_{chunked,gzip,offload,tofile}
zergpool )
UWSGI_PLUGINS_OPT=( alarm_{curl,xmpp} clock_{monotonic,realtime} curl_cron
dumbloop echo emperor_{amqp,pg,zeromq} forkptyrouter
geoip graylog2 legion_cache_fetch ldap log{crypto,pipe} notfound pam
router_{access,radius,spnego,xmldir}
sqlite ssi stats_pusher_statsd
systemd_logger transformation_toupper tuntap webdav xattr xslt zabbix )

LANG_SUPPORT_SIMPLE=( cgi mono perl ) # plugins which can be built in the main 
build process
LANG_SUPPORT_EXTENDED=( lua php python python_asyncio python_gevent ruby )

# plugins to be ignored (for now):
# cheaper_backlog2: example plugin
# coroae: TODO
# cplusplus: partially example code, needs explicit class
# dummy: no idea
# example: example plugin
# exception_log: example plugin
# *go*: TODO
# *java*: TODO
# v8: TODO
# matheval: TODO
IUSE=apache2 +caps debug +embedded expat jemalloc json +pcre +routing +ssl 
+xml yajl yaml zeromq

for plugin in ${UWSGI_PLUGINS_STD[@]}  ; do IUSE=${IUSE} 
+uwsgi_plugins_${plugin} ; done
for plugin in ${UWSGI_PLUGINS_OPT[@]}  ; do IUSE=${IUSE} 
uwsgi_plugins_${plugin} ; done
IUSE=${IUSE} ${LANG_SUPPORT_SIMPLE[@]} ${LANG_SUPPORT_EXTENDED[@]}

REQUIRED_USE=|| ( ${LANG_SUPPORT_SIMPLE[@]} ${LANG_SUPPORT_EXTENDED[@]} )
uwsgi_plugins_logcrypto? ( ssl )
uwsgi_plugins_sslrouter? ( ssl )
routing? ( pcre )
uwsgi_plugins_emperor_zeromq? ( zeromq )
uwsgi_plugins_router_xmldir? ( xml )
uwsgi_plugins_forkptyrouter? ( uwsgi_plugins_corerouter )
python? ( ${PYTHON_REQUIRED_USE} )
python_asyncio? ( python_targets_python3_4 python_gevent )
python_gevent? ( python )
expat? ( xml )

# util-linux is required for libuuid when requesting zeromq support
# Order:
# 1. Unconditional
# 2. General features
# 3. Plugins
# 4. Language/app support

[gentoo-commits] proj/releng:master commit in: tools-musl/catalyst/portage.i686.vanilla/, ...

2014-06-02 Thread Anthony G. Basile
commit: ab5bc81aec77dbf8f8da79908a696e729e95dbda
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Mon Jun  2 13:59:12 2014 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Mon Jun  2 13:59:12 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=ab5bc81a

tools-musl/catalyst: update profiles

---
 tools-musl/catalyst/portage.amd64.hardened/make.profile/parent  | 1 -
 tools-musl/catalyst/portage.amd64.hardened/package.keywords | 2 +-
 tools-musl/catalyst/portage.amd64.vanilla/make.profile/parent   | 1 -
 tools-musl/catalyst/portage.amd64.vanilla/package.keywords  | 2 +-
 .../catalyst/portage.amd64.vanilla/{make.profile = profile}/use.mask   | 0
 tools-musl/catalyst/portage.i686.hardened/make.profile/parent   | 1 -
 tools-musl/catalyst/portage.i686.hardened/package.keywords  | 2 +-
 tools-musl/catalyst/portage.i686.vanilla/make.profile/parent| 1 -
 tools-musl/catalyst/portage.i686.vanilla/package.keywords   | 2 +-
 .../catalyst/portage.i686.vanilla/{make.profile = profile}/use.mask| 0
 10 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/tools-musl/catalyst/portage.amd64.hardened/make.profile/parent 
b/tools-musl/catalyst/portage.amd64.hardened/make.profile/parent
deleted file mode 100644
index d224f93..000
--- a/tools-musl/catalyst/portage.amd64.hardened/make.profile/parent
+++ /dev/null
@@ -1 +0,0 @@
-/usr/portage/profiles/hardened/linux/musl/amd64

diff --git a/tools-musl/catalyst/portage.amd64.hardened/package.keywords 
b/tools-musl/catalyst/portage.amd64.hardened/package.keywords
index 9a9769c..25bfa75 100644
--- a/tools-musl/catalyst/portage.amd64.hardened/package.keywords
+++ b/tools-musl/catalyst/portage.amd64.hardened/package.keywords
@@ -1,2 +1,2 @@
-=sys-libs/musl-1.1.0 ~*
+=sys-libs/musl-1.1.1 ~*
 =sys-apps/getent-0 ~*

diff --git a/tools-musl/catalyst/portage.amd64.vanilla/make.profile/parent 
b/tools-musl/catalyst/portage.amd64.vanilla/make.profile/parent
deleted file mode 100644
index d224f93..000
--- a/tools-musl/catalyst/portage.amd64.vanilla/make.profile/parent
+++ /dev/null
@@ -1 +0,0 @@
-/usr/portage/profiles/hardened/linux/musl/amd64

diff --git a/tools-musl/catalyst/portage.amd64.vanilla/package.keywords 
b/tools-musl/catalyst/portage.amd64.vanilla/package.keywords
index 9a9769c..25bfa75 100644
--- a/tools-musl/catalyst/portage.amd64.vanilla/package.keywords
+++ b/tools-musl/catalyst/portage.amd64.vanilla/package.keywords
@@ -1,2 +1,2 @@
-=sys-libs/musl-1.1.0 ~*
+=sys-libs/musl-1.1.1 ~*
 =sys-apps/getent-0 ~*

diff --git a/tools-musl/catalyst/portage.amd64.vanilla/make.profile/use.mask 
b/tools-musl/catalyst/portage.amd64.vanilla/profile/use.mask
similarity index 100%
rename from tools-musl/catalyst/portage.amd64.vanilla/make.profile/use.mask
rename to tools-musl/catalyst/portage.amd64.vanilla/profile/use.mask

diff --git a/tools-musl/catalyst/portage.i686.hardened/make.profile/parent 
b/tools-musl/catalyst/portage.i686.hardened/make.profile/parent
deleted file mode 100644
index b9abebd..000
--- a/tools-musl/catalyst/portage.i686.hardened/make.profile/parent
+++ /dev/null
@@ -1 +0,0 @@
-/usr/portage/profiles/hardened/linux/musl/x86

diff --git a/tools-musl/catalyst/portage.i686.hardened/package.keywords 
b/tools-musl/catalyst/portage.i686.hardened/package.keywords
index 9a9769c..25bfa75 100644
--- a/tools-musl/catalyst/portage.i686.hardened/package.keywords
+++ b/tools-musl/catalyst/portage.i686.hardened/package.keywords
@@ -1,2 +1,2 @@
-=sys-libs/musl-1.1.0 ~*
+=sys-libs/musl-1.1.1 ~*
 =sys-apps/getent-0 ~*

diff --git a/tools-musl/catalyst/portage.i686.vanilla/make.profile/parent 
b/tools-musl/catalyst/portage.i686.vanilla/make.profile/parent
deleted file mode 100644
index b9abebd..000
--- a/tools-musl/catalyst/portage.i686.vanilla/make.profile/parent
+++ /dev/null
@@ -1 +0,0 @@
-/usr/portage/profiles/hardened/linux/musl/x86

diff --git a/tools-musl/catalyst/portage.i686.vanilla/package.keywords 
b/tools-musl/catalyst/portage.i686.vanilla/package.keywords
index 9a9769c..25bfa75 100644
--- a/tools-musl/catalyst/portage.i686.vanilla/package.keywords
+++ b/tools-musl/catalyst/portage.i686.vanilla/package.keywords
@@ -1,2 +1,2 @@
-=sys-libs/musl-1.1.0 ~*
+=sys-libs/musl-1.1.1 ~*
 =sys-apps/getent-0 ~*

diff --git a/tools-musl/catalyst/portage.i686.vanilla/make.profile/use.mask 
b/tools-musl/catalyst/portage.i686.vanilla/profile/use.mask
similarity index 100%
rename from tools-musl/catalyst/portage.i686.vanilla/make.profile/use.mask
rename to tools-musl/catalyst/portage.i686.vanilla/profile/use.mask



[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/

2014-06-02 Thread Michael Palimaka
commit: f59c56d7fe44d39b9ebf2e4ca05dbcd85069d28c
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 13:54:00 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 13:54:12 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f59c56d7

[Documentation] Pull in KDE 4 version of yakuake.

---
 Documentation/package.unmask/kde-extras-live | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/package.unmask/kde-extras-live 
b/Documentation/package.unmask/kde-extras-live
index 7645fb0..4893dfa 100644
--- a/Documentation/package.unmask/kde-extras-live
+++ b/Documentation/package.unmask/kde-extras-live
@@ -31,7 +31,7 @@
 ~kde-misc/plasma-emergelog-
 ~kde-misc/raptormenu-
 ~kde-misc/translatoid-
-~kde-misc/yakuake-
+~kde-misc/yakuake-4.
 ~media-gfx/digikam-
 ~media-gfx/kflickr-
 ~media-libs/liblastfm-



[gentoo-commits] gentoo commit in xml/htdocs/security/en/glsa: glsa-201401-26.xml

2014-06-02 Thread Sergey Popov (pinkbyte)
pinkbyte14/06/02 14:00:47

  Modified: glsa-201401-26.xml
  Log:
  GLSA 201401-26 fix versions, bug #506224, thanks to Agostino Sarubbo

Revision  ChangesPath
1.2  xml/htdocs/security/en/glsa/glsa-201401-26.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201401-26.xml?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201401-26.xml?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201401-26.xml?r1=1.1r2=1.2

Index: glsa-201401-26.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/security/en/glsa/glsa-201401-26.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glsa-201401-26.xml  23 Jan 2014 07:12:52 -  1.1
+++ glsa-201401-26.xml  2 Jun 2014 14:00:46 -   1.2
@@ -9,14 +9,13 @@
   /synopsis
   product type=ebuildzabbix/product
   announcedJanuary 23, 2014/announced
-  revisedJanuary 23, 2014: 1/revised
+  revisedJune 02, 2014: 2/revised
   bug493250/bug
   accessremote/access
   affected
 package name=net-analyzer/zabbix auto=yes arch=*
-  unaffected range=ge2.2.0-r4/unaffected
-  unaffected range=rge2.0.9-r1/unaffected
-  vulnerable range=lt2.2.0-r4/vulnerable
+  unaffected range=ge2.0.9-r1/unaffected
+  vulnerable range=lt2.0.9-r1/vulnerable
 /package
   /affected
   background
@@ -55,7 +54,7 @@
 uri 
link=http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-6824;CVE-2013-6824/uri
   /references
   metadata tag=requester timestamp=Tue, 17 Dec 2013 19:46:48 
+Zlogene/metadata
-  metadata tag=submitter timestamp=Thu, 23 Jan 2014 07:12:21 +
+  metadata tag=submitter timestamp=Mon, 02 Jun 2014 13:59:58 +
 pinkbyte
   /metadata
 /glsa






[gentoo-commits] gentoo-x86 commit in x11-misc/gccmakedep: gccmakedep-1.0.3.ebuild ChangeLog gccmakedep-1.0.2.ebuild

2014-06-02 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/06/02 14:00:58

  Modified: ChangeLog
  Added:gccmakedep-1.0.3.ebuild
  Removed:  gccmakedep-1.0.2.ebuild
  Log:
  Version bump. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.34 x11-misc/gccmakedep/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/gccmakedep/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   22 Feb 2013 17:15:45 -  1.33
+++ ChangeLog   2 Jun 2014 14:00:58 -   1.34
@@ -1,6 +1,12 @@
 # ChangeLog for x11-misc/gccmakedep
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/gccmakedep/ChangeLog,v 1.33 
2013/02/22 17:15:45 zmedico Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/gccmakedep/ChangeLog,v 1.34 
2014/06/02 14:00:58 chithanh Exp $
+
+*gccmakedep-1.0.3 (02 Jun 2014)
+
+  02 Jun 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +gccmakedep-1.0.3.ebuild, -gccmakedep-1.0.2.ebuild:
+  Version bump. Remove old.
 
   22 Feb 2013; Zac Medico zmed...@gentoo.org gccmakedep-1.0.2-r1.ebuild:
   Add ~arm-linux keyword.



1.1  x11-misc/gccmakedep/gccmakedep-1.0.3.ebuild

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

Index: gccmakedep-1.0.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/gccmakedep/gccmakedep-1.0.3.ebuild,v 1.1 
2014/06/02 14:00:58 chithanh Exp $

EAPI=5
inherit xorg-2

DESCRIPTION=create dependencies in makefiles using 'gcc -M'
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
IUSE=

DEPEND=x11-proto/xproto






[gentoo-commits] proj/sci:master commit in: sci-physics/openmx/

2014-06-02 Thread Honza Macháček
commit: 7991408e4a0ac2c51c0f76b5eee00452d7b9e4ac
Author: Honza Macháček Hloupy.Honza AT centrum DOT cz
AuthorDate: Mon Jun  2 14:04:33 2014 +
Commit: Honza Macháček Hloupy.Honza AT centrum DOT cz
CommitDate: Mon Jun  2 14:04:33 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7991408e

sci-physics/openmx bumped to the version 3.7.8

Package-Manager: portage-2.2.10

---
 sci-physics/openmx/ChangeLog| 8 +++-
 sci-physics/openmx/{openmx-3.7.6.ebuild = openmx-3.7.8.ebuild} | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/sci-physics/openmx/ChangeLog b/sci-physics/openmx/ChangeLog
index e0852b2..7ddb2f4 100644
--- a/sci-physics/openmx/ChangeLog
+++ b/sci-physics/openmx/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for sci-physics/openmx
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*openmx-3.7.8 (02 Jun 2014)
+
+  02 Jun 2014; Honza Macháček hloupy.ho...@centrum.cz -openmx-3.7.6.ebuild,
+  +openmx-3.7.8.ebuild:
+  Version bumped to 3.7.8
+
 *openmx-3.7.6 (19 Sep 2013)
 
   19 Sep 2013; Honza Macháček hloupy.ho...@centrum.cz -openmx-3.7.4.ebuild,

diff --git a/sci-physics/openmx/openmx-3.7.6.ebuild 
b/sci-physics/openmx/openmx-3.7.8.ebuild
similarity index 99%
rename from sci-physics/openmx/openmx-3.7.6.ebuild
rename to sci-physics/openmx/openmx-3.7.8.ebuild
index 45f1f11..d10da70 100644
--- a/sci-physics/openmx/openmx-3.7.6.ebuild
+++ b/sci-physics/openmx/openmx-3.7.8.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils multilib toolchain-funcs fortran-2
 
-PATCHDATE=13Sep01
+PATCHDATE=14Feb17
 
 DESCRIPTION=Material eXplorer using DFT, NC pseudopotentials, and 
pseudo-atomic localized basis functions
 HOMEPAGE=http://www.openmx-square.org/;



[gentoo-commits] gentoo-x86 commit in x11-apps/xcursorgen: xcursorgen-1.0.6.ebuild ChangeLog xcursorgen-1.0.4.ebuild

2014-06-02 Thread Chi-Thanh Christopher Nguyen (chithanh)
chithanh14/06/02 14:05:04

  Modified: ChangeLog
  Added:xcursorgen-1.0.6.ebuild
  Removed:  xcursorgen-1.0.4.ebuild
  Log:
  Version bump. Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.66 x11-apps/xcursorgen/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xcursorgen/ChangeLog?rev=1.66view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xcursorgen/ChangeLog?rev=1.66content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xcursorgen/ChangeLog?r1=1.65r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-apps/xcursorgen/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   26 Aug 2012 16:39:54 -  1.65
+++ ChangeLog   2 Jun 2014 14:05:04 -   1.66
@@ -1,6 +1,12 @@
 # ChangeLog for x11-apps/xcursorgen
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-apps/xcursorgen/ChangeLog,v 1.65 
2012/08/26 16:39:54 armin76 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/xcursorgen/ChangeLog,v 1.66 
2014/06/02 14:05:04 chithanh Exp $
+
+*xcursorgen-1.0.6 (02 Jun 2014)
+
+  02 Jun 2014; Chí-Thanh Christopher Nguyễn chith...@gentoo.org
+  +xcursorgen-1.0.6.ebuild, -xcursorgen-1.0.4.ebuild:
+  Version bump. Remove old.
 
   26 Aug 2012; Raúl Porcel armi...@gentoo.org xcursorgen-1.0.5.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #419473
@@ -245,4 +251,3 @@
   08 Aug 2005; Donnie Berkholz spyder...@gentoo.org;
   +xcursorgen-0.99.0.ebuild:
   Initial commit for modular X.
-



1.1  x11-apps/xcursorgen/xcursorgen-1.0.6.ebuild

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

Index: xcursorgen-1.0.6.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-apps/xcursorgen/xcursorgen-1.0.6.ebuild,v 1.1 
2014/06/02 14:05:04 chithanh Exp $

EAPI=5
inherit xorg-2

DESCRIPTION=create an X cursor file from a collection of PNG images

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd
IUSE=

RDEPEND=x11-libs/libX11
x11-libs/libXcursor
media-libs/libpng:0
DEPEND=${RDEPEND}






[gentoo-commits] gentoo-x86 commit in x11-wm/ratpoison: ratpoison-1.4.7.ebuild ratpoison-9999.ebuild ChangeLog

2014-06-02 Thread Jeroen Roovers (jer)
jer 14/06/02 14:05:10

  Modified: ratpoison-1.4.7.ebuild ratpoison-.ebuild
ChangeLog
  Log:
  Work around configure error interpreting --disable-debug (bug #512168 by 
no-person).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.4  x11-wm/ratpoison/ratpoison-1.4.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild?r1=1.3r2=1.4

Index: ratpoison-1.4.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ratpoison-1.4.7.ebuild  31 May 2014 16:59:18 -  1.3
+++ ratpoison-1.4.7.ebuild  2 Jun 2014 14:05:10 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild,v 
1.3 2014/05/31 16:59:18 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild,v 
1.4 2014/06/02 14:05:10 jer Exp $
 
 EAPI=5
 
@@ -38,8 +38,8 @@
 
 src_configure() {
econf \
-   $(use_enable debug) \
$(use_with xft) \
+   $(usex debug --enable-debug '') \
$(usex history '' --disable-history)
 }
 



1.3  x11-wm/ratpoison/ratpoison-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild?r1=1.2r2=1.3

Index: ratpoison-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ratpoison-.ebuild   6 Mar 2014 18:31:27 -   1.2
+++ ratpoison-.ebuild   2 Jun 2014 14:05:10 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild,v 
1.2 2014/03/06 18:31:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-.ebuild,v 
1.3 2014/06/02 14:05:10 jer Exp $
 
 EAPI=5
 
@@ -40,8 +40,8 @@
 src_configure() {
econf \
--without-electric-fence \
-   $(use_enable debug) \
$(use_with xft) \
+   $(usex debug --enable-debug '') \
$(usex history '' --disable-history)
 }
 



1.101x11-wm/ratpoison/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ChangeLog?rev=1.101view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ChangeLog?rev=1.101content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/ratpoison/ChangeLog?r1=1.100r2=1.101

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog   31 May 2014 16:59:18 -  1.100
+++ ChangeLog   2 Jun 2014 14:05:10 -   1.101
@@ -1,6 +1,11 @@
 # ChangeLog for x11-wm/ratpoison
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.100 
2014/05/31 16:59:18 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.101 
2014/06/02 14:05:10 jer Exp $
+
+  02 Jun 2014; Jeroen Roovers j...@gentoo.org ratpoison-1.4.7.ebuild,
+  ratpoison-.ebuild:
+  Work around configure error interpreting --disable-debug (bug #512168 by
+  no-person).
 
   31 May 2014; Chema Alonso nim...@gentoo.org ratpoison-1.4.7.ebuild:
   Stable for amd64 wrt bug #511108






[gentoo-commits] gentoo commit in xml/htdocs/security/en/glsa: glsa-201010-01.xml glsa-201206-15.xml glsa-201209-02.xml

2014-06-02 Thread Sergey Popov (pinkbyte)
pinkbyte14/06/02 14:07:34

  Modified: glsa-201010-01.xml glsa-201206-15.xml
glsa-201209-02.xml
  Log:
  GLSA fixes for libpng and libtiff versions, bugs #340261 and #507372

Revision  ChangesPath
1.7  xml/htdocs/security/en/glsa/glsa-201010-01.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201010-01.xml?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201010-01.xml?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201010-01.xml?r1=1.6r2=1.7

Index: glsa-201010-01.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/security/en/glsa/glsa-201010-01.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- glsa-201010-01.xml  15 Oct 2012 21:50:28 -  1.6
+++ glsa-201010-01.xml  2 Jun 2014 14:07:33 -   1.7
@@ -9,7 +9,7 @@
   /synopsis
   product type=ebuildlibpng/product
   announcedOctober 05, 2010/announced
-  revisedOctober 15, 2012: 6/revised
+  revisedJune 02, 2014: 7/revised
   bug307637/bug
   bug324153/bug
   bug335887/bug
@@ -21,6 +21,7 @@
   unaffected range=rge1.2.47/unaffected
   unaffected range=rge1.2.49/unaffected
   unaffected range=rge1.2.50/unaffected
+  unaffected range=rge1.2.51/unaffected
   vulnerable range=lt1.4.3/vulnerable
 /package
   /affected
@@ -84,6 +85,6 @@
 /uri
   /references
   metadata tag=requester timestamp=Fri, 07 Oct 2011 22:32:46 
+craig/metadata
-  metadata tag=submitter timestamp=Mon, 15 Oct 2012 21:42:41 
+system/metadata
-  metadata tag=bugReady timestamp=Mon, 15 Oct 2012 23:42:43 
+0200system/metadata
+  metadata tag=submitter timestamp=Mon, 02 Jun 2014 14:04:35 
+system/metadata
+  metadata tag=bugReady timestamp=Mon, 02 Jun 2014 16:04:37 
+0200system/metadata
 /glsa



1.3  xml/htdocs/security/en/glsa/glsa-201206-15.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201206-15.xml?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201206-15.xml?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201206-15.xml?r1=1.2r2=1.3

Index: glsa-201206-15.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/security/en/glsa/glsa-201206-15.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- glsa-201206-15.xml  15 Oct 2012 21:50:28 -  1.2
+++ glsa-201206-15.xml  2 Jun 2014 14:07:33 -   1.3
@@ -9,7 +9,7 @@
   /synopsis
   product type=ebuildlibpng/product
   announcedJune 22, 2012/announced
-  revisedOctober 15, 2012: 2/revised
+  revisedJune 02, 2014: 3/revised
   bug373967/bug
   bug386185/bug
   bug401987/bug
@@ -21,6 +21,7 @@
   unaffected range=ge1.5.10/unaffected
   unaffected range=rge1.2.49/unaffected
   unaffected range=rge1.2.50/unaffected
+  unaffected range=rge1.2.51/unaffected
   vulnerable range=lt1.5.10/vulnerable
 /package
   /affected
@@ -106,5 +107,5 @@
   metadata tag=requester timestamp=Fri, 07 Oct 2011 23:37:07 +
 underling
   /metadata
-  metadata tag=submitter timestamp=Mon, 15 Oct 2012 21:43:53 
+ackle/metadata
+  metadata tag=submitter timestamp=Mon, 02 Jun 2014 14:05:24 
+ackle/metadata
 /glsa



1.2  xml/htdocs/security/en/glsa/glsa-201209-02.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201209-02.xml?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201209-02.xml?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201209-02.xml?r1=1.1r2=1.2

Index: glsa-201209-02.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/security/en/glsa/glsa-201209-02.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glsa-201209-02.xml  23 Sep 2012 18:39:13 -  1.1
+++ glsa-201209-02.xml  2 Jun 2014 14:07:33 -   1.2
@@ -9,7 +9,7 @@
   /synopsis
   product type=ebuildtiff/product
   announcedSeptember 23, 2012/announced
-  revisedSeptember 23, 2012: 5/revised
+  revisedJune 02, 2014: 6/revised
   bug307001/bug
   bug324885/bug
   bug357271/bug
@@ -23,6 +23,7 @@
 package name=media-libs/tiff auto=yes arch=*
   unaffected range=ge4.0.2-r1/unaffected
   unaffected range=rge3.9.5-r2/unaffected
+  unaffected range=rge3.9.7-r1/unaffected
   vulnerable range=lt4.0.2-r1/vulnerable
 /package
   /affected
@@ -92,5 +93,5 @@
   metadata tag=requester timestamp=Fri, 07 Oct 2011 23:38:10 +
 underling
   /metadata
-  

[gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.3.ebuild ChangeLog

2014-06-02 Thread Mike Frysinger (vapier)
vapier  14/06/02 14:08:48

  Modified: nano-2.3.3.ebuild ChangeLog
  Log:
  Fix deletion of extraneous html pages #512142 by Justin Lecher.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  app-editors/nano/nano-2.3.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild?r1=1.1r2=1.2

Index: nano-2.3.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nano-2.3.3.ebuild   30 May 2014 14:29:23 -  1.1
+++ nano-2.3.3.ebuild   2 Jun 2014 14:08:48 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild,v 1.1 
2014/05/30 14:29:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild,v 1.2 
2014/06/02 14:08:48 vapier Exp $
 
 EAPI=4
 
@@ -41,6 +41,7 @@
esac
econf \
--bindir=${EPREFIX}/bin \
+   --htmldir=/trash \
$(use_enable !minimal color) \
$(use_enable !minimal multibuffer) \
$(use_enable !minimal nanorc) \
@@ -57,7 +58,7 @@
 
 src_install() {
default
-   rm -rf ${ED}/usr/share/nano/man-html
+   rm -rf ${ED}/trash
 
dodoc doc/nanorc.sample
dohtml doc/faq.html



1.308app-editors/nano/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/ChangeLog?rev=1.308view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/ChangeLog?rev=1.308content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/ChangeLog?r1=1.307r2=1.308

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -r1.307 -r1.308
--- ChangeLog   30 May 2014 14:29:23 -  1.307
+++ ChangeLog   2 Jun 2014 14:08:48 -   1.308
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.307 
2014/05/30 14:29:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.308 
2014/06/02 14:08:48 vapier Exp $
+
+  02 Jun 2014; Mike Frysinger vap...@gentoo.org nano-2.3.3.ebuild:
+  Fix deletion of extraneous html pages #512142 by Justin Lecher.
 
 *nano-2.3.3 (30 May 2014)
 






[gentoo-commits] proj/portage:repoman commit in: pym/repoman/

2014-06-02 Thread Tom Wijsman
commit: f40235dc6ae4e9efd5db5be259740dc6f1a70b8e
Author: Tom Wijsman tomwij AT gentoo DOT org
AuthorDate: Mon Jun  2 14:10:21 2014 +
Commit: Tom Wijsman tomwij AT gentoo DOT org
CommitDate: Mon Jun  2 14:10:21 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=f40235dc

repoman/main.py: Fix qa_tracker import

---
 pym/repoman/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index c680752..dfe188d 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -60,7 +60,7 @@ from repoman.profile import check_profiles, dev_keywords, 
setup_profile
 from repoman.qa_data import (format_qa_output, format_qa_output_column, qahelp,
qawarnings, qacats, max_desc_len, missingvars,
ruby_deprecated, suspect_virtual, suspect_rdepend, valid_restrict)
-from qa_tracker import QATracker
+from repoman.qa_tracker import QATracker
 from repoman.repos import has_global_mask, RepoSettings, repo_metadata
 from repoman.scan import Changes, scan
 from repoman._subprocess import repoman_popen, repoman_getstatusoutput



[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/, Documentation/

2014-06-02 Thread Michael Palimaka
commit: 879c81fd0f2c863f7a6cc6ec9808f01700ff1cd5
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Jun  2 14:12:22 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Jun  2 14:12:22 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=879c81fd

[Documentation] Regenerate files.

---
 Documentation/CONTRIBUTORS | 1 +
 Documentation/package.accept_keywords/kde-extras-live.keywords | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 52fc5cf..4be0b2e 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -60,6 +60,7 @@ Robert Förster de...@gmake.de
 Robert Piasek dag...@gentoo.org
 Romain Perier mrpo...@gentoo.org
 Ronan Arraes Jardim Chagas roni...@gmail.com
+Samuli Suominen ssuomi...@gentoo.org
 Scarlett Clark scarl...@scarlettgatelyclark.com
 Steffen Stramm kry...@soylent.eu
 Theo Chatzimichos tampak...@gentoo.org

diff --git a/Documentation/package.accept_keywords/kde-extras-live.keywords 
b/Documentation/package.accept_keywords/kde-extras-live.keywords
index 0576b90..f571a71 100644
--- a/Documentation/package.accept_keywords/kde-extras-live.keywords
+++ b/Documentation/package.accept_keywords/kde-extras-live.keywords
@@ -32,7 +32,7 @@
 ~kde-misc/plasma-emergelog- **
 ~kde-misc/raptormenu- **
 ~kde-misc/translatoid- **
-~kde-misc/yakuake- **
+~kde-misc/yakuake-4. **
 ~media-gfx/digikam- **
 ~media-gfx/kflickr- **
 ~media-libs/liblastfm- **



[gentoo-commits] gentoo-x86 commit in sys-auth/pam_bioapi/files: pam_bioapi-0.4.0-headers.patch

2014-06-02 Thread Mike Frysinger (vapier)
vapier  14/06/02 14:16:26

  Modified: pam_bioapi-0.4.0-headers.patch
  Log:
  Fix building with newer glibc #512106 by Paweł Hajdan, Jr..
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.2  sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch?r1=1.1r2=1.2

Index: pam_bioapi-0.4.0-headers.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pam_bioapi-0.4.0-headers.patch  30 Nov 2008 00:42:41 -  1.1
+++ pam_bioapi-0.4.0-headers.patch  2 Jun 2014 14:16:26 -   1.2
@@ -3,8 +3,20 @@
 http://code.google.com/p/pam-bioapi/issues/detail?id=3
 http://bugs.gentoo.org/241322
 
+fix building with newer glibc
+
+https://bugs.gentoo.org/512106
+
 --- libpam_bioapi/pam_bioapi.h
 +++ libpam_bioapi/pam_bioapi.h
+@@ -19,6 +19,7 @@
+ #include sys/stat.h
+ #include sys/types.h /* defines 'uid_t', etc.  */
+ 
++#include sys/resource.h
+ #include sys/types.h
+ #include sys/wait.h
+ #include earray.h
 @@ -23,6 +23,7 @@
  #include sys/wait.h
  #include earray.h






[gentoo-commits] gentoo-x86 commit in sys-auth/pam_bioapi: ChangeLog

2014-06-02 Thread Mike Frysinger (vapier)
vapier  14/06/02 14:16:26

  Modified: ChangeLog
  Log:
  Fix building with newer glibc #512106 by Paweł Hajdan, Jr..
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.10 sys-auth/pam_bioapi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_bioapi/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_bioapi/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_bioapi/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_bioapi/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   4 Nov 2012 06:35:21 -   1.9
+++ ChangeLog   2 Jun 2014 14:16:26 -   1.10
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/pam_bioapi
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_bioapi/ChangeLog,v 1.9 
2012/11/04 06:35:21 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_bioapi/ChangeLog,v 1.10 
2014/06/02 14:16:26 vapier Exp $
+
+  02 Jun 2014; Mike Frysinger vap...@gentoo.org
+  files/pam_bioapi-0.4.0-headers.patch:
+  Fix building with newer glibc #512106 by Paweł Hajdan, Jr..
 
   04 Nov 2012; Mike Frysinger vap...@gentoo.org pam_bioapi-0.4.0-r1.ebuild:
   Stabilize #441520 by Paweł Hajdan, Jr.






[gentoo-commits] proj/portage:repoman commit in: pym/repoman/

2014-06-02 Thread Brian Dolbec
commit: 9b3d5b8544074c62ed30a45484039f9c18457a8d
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Mon Jun  2 14:23:26 2014 +
Commit: Brian Dolbec brian.dolbec AT gmail DOT com
CommitDate: Mon Jun  2 14:23:54 2014 +
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9b3d5b85

repoman/main.py: Remove the exit_handler() and intialization

This script is no longer the start script.
There is a handler in hte new start script.

---
 pym/repoman/main.py | 17 +++--
 1 file changed, 3 insertions(+), 14 deletions(-)

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index dfe188d..c5a6ea6 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -96,18 +96,6 @@ if repoman_settings.get(NOCOLOR, ).lower() in (yes, 
true) or \
not sys.stdout.isatty():
nocolor()
 
-
-def exithandler(signum=None, _frame=None):
-   logging.fatal(Interrupted; exiting...)
-   if signum is None:
-   sys.exit(1)
-   else:
-   sys.exit(128 + signum)
-
-
-signal.signal(signal.SIGINT, exithandler)
-
-
 options, arguments = parse_args(
sys.argv, qahelp, repoman_settings.get(REPOMAN_DEFAULT_OPTS, ))
 
@@ -205,12 +193,13 @@ if options.mode == 'commit':
 
 # Make startdir relative to the canonical repodir, so that we can pass
 # it to digestgen and it won't have to be canonicalized again.
+print(REPOLEVEL:, repolevel)
 if repolevel == 1:
startdir = repo_settings.repodir
 else:
startdir = normalize_path(mydir)
startdir = os.path.join(repo_settings.repodir, 
*startdir.split(os.sep)[-2 - repolevel + 3:])
-
+print(STARTDIR:, startdir)
 ###
 
 # get lists of valid keywords, licenses, and use
@@ -299,7 +288,7 @@ for xpkg in effective_scanlist:
if manifester.run(checkdir, portdb):
continue
if not manifester.generated_manifest:
-manifester.digest_check(checkdir)
+manifester.digest_check(xpkg, checkdir)
 ##
 
if options.mode == 'manifest-check':



  1   2   3   >