[gentoo-commits] gentoo-x86 commit in dev-ruby/timers: ChangeLog timers-4.0.1.ebuild

2014-09-12 Thread Hans de Graaff (graaff)
graaff  14/09/13 06:11:51

  Modified: ChangeLog
  Added:timers-4.0.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.11 dev-ruby/timers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/timers/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/timers/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/timers/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/timers/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   12 Aug 2014 22:44:55 -  1.10
+++ ChangeLog   13 Sep 2014 06:11:51 -  1.11
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/timers
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/timers/ChangeLog,v 1.10 2014/08/12 
22:44:55 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/timers/ChangeLog,v 1.11 2014/09/13 
06:11:51 graaff Exp $
+
+*timers-4.0.1 (13 Sep 2014)
+
+  13 Sep 2014; Hans de Graaff  +timers-4.0.1.ebuild:
+  Version bump.
 
   12 Aug 2014; Anthony G. Basile  timers-1.1.0-r1.ebuild,
   timers-2.0.0.ebuild:



1.1  dev-ruby/timers/timers-4.0.1.ebuild

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

Index: timers-4.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-ruby/timers/timers-4.0.1.ebuild,v 1.1 
2014/09/13 06:11:51 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_RECIPE_TEST="rspec"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"

inherit ruby-fakegem

DESCRIPTION="Pure Ruby one-shot and periodic timers"
HOMEPAGE="https://github.com/tarcieri/timers";

LICENSE="MIT"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~ppc64"
IUSE=""

ruby_add_rdepend "dev-ruby/hitimes"

all_ruby_prepare() {
rm Gemfile || die
sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die
sed -i -e '/coveralls/ s:^:#:' spec/spec_helper.rb || die
sed -i -e '/Coveralls/ s:^:#:' spec/spec_helper.rb || die

# Remove performance spec due to dependencies and being to dependent
# on machine specifics.
rm spec/performance_spec.rb

# Remove rspec3 configuration so we can still run with rspec2.
sed -e '/expose/ s:^:#:' -i spec/spec_helper.rb || die
}






[gentoo-commits] proj/portage:master commit in: pym/_emerge/

2014-09-12 Thread Brian Dolbec
commit: e7eca8a5ec2ec4e7dd03b1b5afb05647e199a687
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Sep 12 00:04:17 2014 +
Commit: Brian Dolbec  gmail  com>
CommitDate: Sat Sep 13 05:53:03 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=e7eca8a5

_emerge: Fix hard-coded emerge-fetch.log locations Bug 520378

Use emergelog._emerge_log_dir instead of the hard-coded paths.

---
 pym/_emerge/Binpkg.py  | 6 +++---
 pym/_emerge/EbuildBuild.py | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pym/_emerge/Binpkg.py b/pym/_emerge/Binpkg.py
index c0f0951..6978fb3 100644
--- a/pym/_emerge/Binpkg.py
+++ b/pym/_emerge/Binpkg.py
@@ -1,6 +1,7 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+import _emerge.emergelog
 from _emerge.EbuildPhase import EbuildPhase
 from _emerge.BinpkgFetcher import BinpkgFetcher
 from _emerge.BinpkgEnvExtractor import BinpkgEnvExtractor
@@ -87,9 +88,8 @@ class Binpkg(CompositeTask):
 
waiting_msg = ("Fetching '%s' " + \
"in the background. " + \
-   "To view fetch progress, run `tail -f %s" + \
-   "/var/log/emerge-fetch.log` in another " + \
-   "terminal.") % (prefetcher.pkg_path, 
settings["EPREFIX"])
+   "To view fetch progress, run `tail -f %s` in 
another terminal.") \
+   % (prefetcher.pkg_path, 
_emerge.emergelog._emerge_log_dir)
msg_prefix = colorize("GOOD", " * ")
waiting_msg = "".join("%s%s\n" % (msg_prefix, line) \
for line in textwrap.wrap(waiting_msg, 65))

diff --git a/pym/_emerge/EbuildBuild.py b/pym/_emerge/EbuildBuild.py
index 86a5631..7bd10aa 100644
--- a/pym/_emerge/EbuildBuild.py
+++ b/pym/_emerge/EbuildBuild.py
@@ -1,6 +1,7 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+import _emerge.emergelog
 from _emerge.EbuildExecuter import EbuildExecuter
 from _emerge.EbuildPhase import EbuildPhase
 from _emerge.EbuildBinpkg import EbuildBinpkg
@@ -74,9 +75,8 @@ class EbuildBuild(CompositeTask):
 
waiting_msg = "Fetching files " + \
"in the background. " + \
-   "To view fetch progress, run `tail -f " + \
-   "/var/log/emerge-fetch.log` in another " + \
-   "terminal."
+   "To view fetch progress, run `tail -f %s` in 
another terminal." \
+   % (_emerge.emergelog._emerge_log_dir)
msg_prefix = colorize("GOOD", " * ")
from textwrap import wrap
waiting_msg = "".join("%s%s\n" % (msg_prefix, line) \



[gentoo-commits] gentoo-x86 commit in dev-util/buildbot: ChangeLog buildbot-0.8.9.ebuild

2014-09-12 Thread Jeroen Roovers (jer)
jer 14/09/13 05:49:20

  Modified: ChangeLog buildbot-0.8.9.ebuild
  Log:
  Stable for HPPA (bug #521732).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.154dev-util/buildbot/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.154&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?rev=1.154&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot/ChangeLog?r1=1.153&r2=1.154

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog   30 Jun 2014 18:10:33 -  1.153
+++ ChangeLog   13 Sep 2014 05:49:20 -  1.154
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.153 
2014/06/30 18:10:33 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.154 
2014/09/13 05:49:20 jer Exp $
+
+  13 Sep 2014; Jeroen Roovers  buildbot-0.8.9.ebuild:
+  Stable for HPPA (bug #521732).
 
 *buildbot-0.8.9 (30 Jun 2014)
 



1.2  dev-util/buildbot/buildbot-0.8.9.ebuild

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

Index: buildbot-0.8.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildbot-0.8.9.ebuild   30 Jun 2014 18:10:33 -  1.1
+++ buildbot-0.8.9.ebuild   13 Sep 2014 05:49:20 -  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-util/buildbot/buildbot-0.8.9.ebuild,v 
1.1 2014/06/30 18:10:33 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.9.ebuild,v 
1.2 2014/09/13 05:49:20 jer Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris"
 IUSE="doc examples irc mail manhole test"
 
 # sqlite3 module of Python 2.5 is not supported.






[gentoo-commits] gentoo-x86 commit in dev-util/buildbot-slave: ChangeLog buildbot-slave-0.8.9.ebuild

2014-09-12 Thread Jeroen Roovers (jer)
jer 14/09/13 05:49:20

  Modified: ChangeLog buildbot-slave-0.8.9.ebuild
  Log:
  Stable for HPPA (bug #521732).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.60 dev-util/buildbot-slave/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   30 Jun 2014 18:12:05 -  1.59
+++ ChangeLog   13 Sep 2014 05:49:20 -  1.60
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot-slave
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.59 
2014/06/30 18:12:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/ChangeLog,v 1.60 
2014/09/13 05:49:20 jer Exp $
+
+  13 Sep 2014; Jeroen Roovers  buildbot-slave-0.8.9.ebuild:
+  Stable for HPPA (bug #521732).
 
 *buildbot-slave-0.8.9 (30 Jun 2014)
 



1.2  dev-util/buildbot-slave/buildbot-slave-0.8.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.9.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.9.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.9.ebuild?r1=1.1&r2=1.2

Index: buildbot-slave-0.8.9.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildbot-slave-0.8.9.ebuild 30 Jun 2014 18:12:05 -  1.1
+++ buildbot-slave-0.8.9.ebuild 13 Sep 2014 05:49:20 -  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-util/buildbot-slave/buildbot-slave-0.8.9.ebuild,v 
1.1 2014/06/30 18:12:05 hwoarang Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.9.ebuild,v 
1.2 2014/09/13 05:49:20 jer Exp $
 
 EAPI="5"
 PYTHON_DEPEND="2"
@@ -20,7 +20,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-interix ~amd64-linux"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-interix ~amd64-linux"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools






[gentoo-commits] gentoo-x86 commit in dev-python/pillow: ChangeLog pillow-2.5.3.ebuild

2014-09-12 Thread Jeroen Roovers (jer)
jer 14/09/13 05:47:10

  Modified: ChangeLog pillow-2.5.3.ebuild
  Log:
  Stable for HPPA (bug #522426).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.38 dev-python/pillow/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   31 Aug 2014 15:16:53 -  1.37
+++ ChangeLog   13 Sep 2014 05:47:10 -  1.38
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pillow
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.37 
2014/08/31 15:16:53 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.38 
2014/09/13 05:47:10 jer Exp $
+
+  13 Sep 2014; Jeroen Roovers  pillow-2.5.3.ebuild:
+  Stable for HPPA (bug #522426).
 
   31 Aug 2014; Mike Gilbert  pillow-2.5.3.ebuild:
   Restore selftest.



1.5  dev-python/pillow/pillow-2.5.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild?r1=1.4&r2=1.5

Index: pillow-2.5.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pillow-2.5.3.ebuild 31 Aug 2014 15:16:53 -  1.4
+++ pillow-2.5.3.ebuild 13 Sep 2014 05:47:10 -  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/dev-python/pillow/pillow-2.5.3.ebuild,v 1.4 
2014/08/31 15:16:53 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild,v 1.5 
2014/09/13 05:47:10 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
@@ -17,7 +17,7 @@
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples jpeg jpeg2k lcms scanner test tiff tk truetype webp zlib"
 REQUIRED_USE="test? ( jpeg )"
 






[gentoo-commits] gentoo-x86 commit in net-print/cups: ChangeLog cups-1.7.5.ebuild

2014-09-12 Thread Jeroen Roovers (jer)
jer 14/09/13 05:38:25

  Modified: ChangeLog cups-1.7.5.ebuild
  Log:
  Stable for HPPA (bug #519792).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.630net-print/cups/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/ChangeLog?rev=1.630&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/ChangeLog?rev=1.630&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/ChangeLog?r1=1.629&r2=1.630

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-print/cups/ChangeLog,v
retrieving revision 1.629
retrieving revision 1.630
diff -u -r1.629 -r1.630
--- ChangeLog   7 Sep 2014 20:48:21 -   1.629
+++ ChangeLog   13 Sep 2014 05:38:25 -  1.630
@@ -1,6 +1,9 @@
 # ChangeLog for net-print/cups
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/cups/ChangeLog,v 1.629 2014/09/07 
20:48:21 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/cups/ChangeLog,v 1.630 2014/09/13 
05:38:25 jer Exp $
+
+  13 Sep 2014; Jeroen Roovers  cups-1.7.5.ebuild:
+  Stable for HPPA (bug #519792).
 
   07 Sep 2014; Andreas K. Huettel  cups-1.7.5.ebuild,
   cups-1.7..ebuild, cups-.ebuild:



1.4  net-print/cups/cups-1.7.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/cups-1.7.5.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/cups-1.7.5.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups/cups-1.7.5.ebuild?r1=1.3&r2=1.4

Index: cups-1.7.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-print/cups/cups-1.7.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cups-1.7.5.ebuild   7 Sep 2014 20:48:21 -   1.3
+++ cups-1.7.5.ebuild   13 Sep 2014 05:38:25 -  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/net-print/cups/cups-1.7.5.ebuild,v 1.3 
2014/09/07 20:48:21 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-1.7.5.ebuild,v 1.4 
2014/09/13 05:38:25 jer Exp $
 
 EAPI=5
 
@@ -21,10 +21,10 @@
if [[ ${PV} !=  ]]; then
EGIT_BRANCH=branch-${PV/.}
fi
-   KEYWORDS=""
+   KEYWORDS="hppa"
 else
SRC_URI="http://www.cups.org/software/${MY_PV}/${MY_P}-source.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
+   KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
 fi
 
 DESCRIPTION="The Common Unix Printing System"






[gentoo-commits] gentoo-x86 commit in app-text/dos2unix: ChangeLog dos2unix-6.0.6.ebuild

2014-09-12 Thread Jeroen Roovers (jer)
jer 14/09/13 05:31:07

  Modified: ChangeLog dos2unix-6.0.6.ebuild
  Log:
  Stable for HPPA (bug #522520).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.146app-text/dos2unix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dos2unix/ChangeLog?rev=1.146&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dos2unix/ChangeLog?rev=1.146&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/dos2unix/ChangeLog?r1=1.145&r2=1.146

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog   11 Sep 2014 05:20:14 -  1.145
+++ ChangeLog   13 Sep 2014 05:31:07 -  1.146
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/dos2unix
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.145 
2014/09/11 05:20:14 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.146 
2014/09/13 05:31:07 jer Exp $
+
+  13 Sep 2014; Jeroen Roovers  dos2unix-6.0.6.ebuild:
+  Stable for HPPA (bug #522520).
 
   11 Sep 2014; Lars Wendler  +dos2unix-7.0.ebuild:
   Move dependency for test run from RDEPEND to DEPEND.



1.2  app-text/dos2unix/dos2unix-6.0.6.ebuild

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

Index: dos2unix-6.0.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-6.0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dos2unix-6.0.6.ebuild   4 Aug 2014 19:28:43 -   1.1
+++ dos2unix-6.0.6.ebuild   13 Sep 2014 05:31:07 -  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-text/dos2unix/dos2unix-6.0.6.ebuild,v 
1.1 2014/08/04 19:28:43 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-6.0.6.ebuild,v 
1.2 2014/09/13 05:31:07 jer Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
 IUSE="debug nls"
 
 RDEPEND="






[gentoo-commits] gentoo-x86 commit in media-gfx/scrot: scrot-0.8_p13.ebuild ChangeLog

2014-09-12 Thread Samuli Suominen (ssuominen)
ssuominen14/09/13 04:49:27

  Modified: ChangeLog
  Added:scrot-0.8_p13.ebuild
  Log:
  Use latest patchset.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.26 media-gfx/scrot/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/scrot/ChangeLog?rev=1.26&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/scrot/ChangeLog?rev=1.26&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/scrot/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/scrot/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   27 Aug 2014 13:50:44 -  1.25
+++ ChangeLog   13 Sep 2014 04:49:27 -  1.26
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/scrot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/scrot/ChangeLog,v 1.25 2014/08/27 
13:50:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/scrot/ChangeLog,v 1.26 2014/09/13 
04:49:27 ssuominen Exp $
+
+*scrot-0.8_p13 (13 Sep 2014)
+
+  13 Sep 2014; Samuli Suominen  +scrot-0.8_p13.ebuild:
+  Use latest patchset.
 
 *scrot-0.8-r1 (27 Aug 2014)
 



1.1  media-gfx/scrot/scrot-0.8_p13.ebuild

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

Index: scrot-0.8_p13.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/scrot/scrot-0.8_p13.ebuild,v 1.1 
2014/09/13 04:49:27 ssuominen Exp $

EAPI=5

MY_PV=${PV/_p/-}

inherit bash-completion-r1 eutils

DESCRIPTION="Screen capture utility using imlib2 library"
HOMEPAGE="http://scrot.sourcearchive.com/";
SRC_URI="http://${PN}.sourcearchive.com/downloads/${MY_PV}/${PN}_0.8.orig.tar.gz

http://${PN}.sourcearchive.com/downloads/${MY_PV}/${PN}_${MY_PV}.debian.tar.gz";

LICENSE="feh LGPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd"
IUSE=""

RDEPEND=">=media-libs/imlib2-1.0.3
>=media-libs/giblib-1.2.3"
DEPEND="${RDEPEND}"

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

src_prepare() {
local d=${WORKDIR}/debian/patches
EPATCH_SOURCE=${d} epatch $(<"${d}"/series)
}

src_install() {
emake DESTDIR="${D}" install
rm -r "${D}"/usr/doc
dodoc AUTHORS ChangeLog

newbashcomp "${FILESDIR}"/${PN}.bash-completion ${PN}
}






[gentoo-commits] proj/sci:lapack-multibuild commit in: dev-lang/julia/

2014-09-12 Thread Mark Wright
commit: e5dfe0d3b1f390d8092b911157c032209fbfa704
Author: gienah  gentoo  org>
AuthorDate: Sat Sep 13 04:10:58 2014 +
Commit: Mark Wright  gentoo  org>
CommitDate: Sat Sep 13 04:10:58 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e5dfe0d3

Add int64 use flag to julia-.ebuild. Depend on 
>=virtual/blas-2.1-r2[int64?] and >=virtual/lapack-3.5-r2[int64?]. Fixes 
dev-lang/julia wont compile against openblas #102.

---
 dev-lang/julia/ChangeLog |  5 
 dev-lang/julia/julia-.ebuild | 59 ++--
 dev-lang/julia/metadata.xml  |  8 --
 3 files changed, 55 insertions(+), 17 deletions(-)

diff --git a/dev-lang/julia/ChangeLog b/dev-lang/julia/ChangeLog
index c53e175..347e2fb 100644
--- a/dev-lang/julia/ChangeLog
+++ b/dev-lang/julia/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  13 Sep 2014; Mark Wright  julia-.ebuild:
+  Add int64 use flag to julia-.ebuild. Depend on
+  >=virtual/blas-2.1-r2[int64?] and >=virtual/lapack-3.5-r2[int64?]. Fixes
+  dev-lang/julia wont compile against openblas -int64 #102.
+
   27 Aug 2014; François Bissey 
   julia-.ebuild:
   Bump dependency on llvm as in 0.3

diff --git a/dev-lang/julia/julia-.ebuild b/dev-lang/julia/julia-.ebuild
index 69bff79..b54ecfa 100644
--- a/dev-lang/julia/julia-.ebuild
+++ b/dev-lang/julia/julia-.ebuild
@@ -14,7 +14,7 @@ EGIT_REPO_URI="git://github.com/JuliaLang/julia.git"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
-IUSE="doc emacs"
+IUSE="doc emacs int64"
 
 RDEPEND="
dev-lang/R:0=
@@ -26,6 +26,7 @@ RDEPEND="
sci-libs/arpack:0=
sci-libs/camd:0=
sci-libs/cholmod:0=
+   sci-libs/fdlibm:0=
sci-libs/fftw:3.0=[threads]
sci-libs/openlibm:0=
sci-libs/spqr:0=
@@ -35,10 +36,9 @@ RDEPEND="
>=sys-libs/libunwind-1.1:7=
sys-libs/readline:0=
sys-libs/zlib:0=
-   virtual/blas
-   virtual/lapack
+   >=virtual/blas-2.1-r2[int64?]
+   >=virtual/lapack-3.5-r2[int64?]
emacs? ( app-emacs/ess )"
-
 DEPEND="${RDEPEND}
dev-util/patchelf
virtual/pkgconfig
@@ -55,35 +55,64 @@ src_prepare() {
-e "s|/usr/include|${EPREFIX%/}/usr/include|g" \
deps/Makefile || die
 
+   local blasprofname=$(usex int64 "blas-int64" "blas")
+   local lapackprofname=$(usex int64 "lapack-int64" "lapack")
+   local blasname=$($(tc-getPKG_CONFIG) --libs-only-l "${blasprofname}" | \
+   sed -e "s/-l\([^ \t]*\).*/lib\1/")
+   local lapackname=$($(tc-getPKG_CONFIG) --libs-only-l 
"${lapackprofname}" | \
+   sed -e "s/-l\([^ \t]*\).*/lib\1/")
sed -i \
-   -e "s|\(JULIA_EXECUTABLE = \)\(\$(JULIAHOME)/julia\)|\1 
LD_LIBRARY_PATH=\$(BUILD)/$(get_libdir) \2|" \
-e "s|-O3|${CFLAGS}|g" \
-e "s|libdir = \$(prefix)/lib|libdir = 
\$(prefix)/$(get_libdir)|" \
+   -e "s|build_libdir = \$(build_prefix)/lib|build_libdir = 
\$(build_prefix)/$(get_libdir)|" \
+   -e "s|build_private_libdir = 
\$(build_prefix)/lib/julia|build_private_libdir = 
\$(build_prefix)/$(get_libdir)/julia|" \
-e "s|/usr/lib|${EPREFIX}/usr/$(get_libdir)|" \
-e "s|/usr/include|${EPREFIX}/usr/include|" \
-   -e "s|\$(BUILD)/lib|\$(BUILD)/$(get_libdir)|" \
-e "s|^JULIA_COMMIT = .*|JULIA_COMMIT = v${PV}|" \
+   -e "s|-lblas|$($(tc-getPKG_CONFIG) --libs-only-l 
${blasprofname})|" \
+   -e "s|-llapack|$($(tc-getPKG_CONFIG) --libs-only-l 
${lapackprofname})|" \
+   -e "s|liblapack|${lapackname}|g" \
+   -e "s|libblas|${blasname}|g" \
+   -e "s|-O3|${CFLAGS}|g" \
+   -e "s|JCFLAGS = |JCFLAGS = $($(tc-getPKG_CONFIG) --cflags 
"${lapackprofname}") ${CFLAGS} |g" \
+   -e "s|JCXXCFLAGS = |JCXXFLAGS = $($(tc-getPKG_CONFIG) --cflags 
"${lapackprofname}") ${CXXFLAGS} |g" \
+   -e "s|JFFLAGS = |JFFLAGS = ${FFLAGS} |g" \
-e '/MARCH = /d' \
Make.inc || die
 
sed -i \
-e "s|,lib)|,$(get_libdir))|g" \
-e "s|\$(BUILD)/lib|\$(BUILD)/$(get_libdir)|g" \
+   -e "s|\$(JL_LIBDIR),lib|\$(JL_LIBDIR),$(get_libdir)|" \
+   -e 
"s|\$(JL_PRIVATE_LIBDIR),lib|\$(JL_PRIVATE_LIBDIR),$(get_libdir)|" \
Makefile || die
 
sed -i \
-e "s|ar -rcs|$(tc-getAR) -rcs|g" \
+   -e "s|LLVMLINK = -lLLVM-\$(LLVM_VER)|LLVMLINK = $(llvm-config 
--libs) $(llvm-config --ldflags)|" \
src/Makefile || die
+
+   sed -e "s|libopenblas|${blasname}|g" \
+   -i base/util.jl \
+   -i test/perf/micro/Makefile || die
+
+   # Occasional test suite failure due to ARPACK #6162 
https://github.com/JuliaLang/julia

[gentoo-commits] gentoo-x86 commit in dev-python/PyQt4: PyQt4-4.11.1.ebuild ChangeLog

2014-09-12 Thread Davide Pesavento (pesa)
pesa14/09/13 01:42:01

  Modified: PyQt4-4.11.1.ebuild ChangeLog
  Log:
  Drop deprecated python versions.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.3  dev-python/PyQt4/PyQt4-4.11.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild?r1=1.2&r2=1.3

Index: PyQt4-4.11.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- PyQt4-4.11.1.ebuild 13 Sep 2014 01:39:25 -  1.2
+++ PyQt4-4.11.1.ebuild 13 Sep 2014 01:42:01 -  1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild,v 1.2 
2014/09/13 01:39:25 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild,v 1.3 
2014/09/13 01:42:01 pesa Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit eutils multibuild python-r1 qmake-utils toolchain-funcs
 



1.267dev-python/PyQt4/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?rev=1.267&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?rev=1.267&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?r1=1.266&r2=1.267

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v
retrieving revision 1.266
retrieving revision 1.267
diff -u -r1.266 -r1.267
--- ChangeLog   13 Sep 2014 01:39:25 -  1.266
+++ ChangeLog   13 Sep 2014 01:42:01 -  1.267
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/PyQt4
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.266 
2014/09/13 01:39:25 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.267 
2014/09/13 01:42:01 pesa Exp $
+
+  13 Sep 2014; Davide Pesavento  PyQt4-4.11.1.ebuild:
+  Drop deprecated python versions.
 
   13 Sep 2014; Davide Pesavento  -PyQt4-4.10.3-r3.ebuild,
   PyQt4-4.11.1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/PyQt4: PyQt4-4.11.1.ebuild ChangeLog PyQt4-4.10.3-r3.ebuild

2014-09-12 Thread Davide Pesavento (pesa)
pesa14/09/13 01:39:25

  Modified: PyQt4-4.11.1.ebuild ChangeLog
  Removed:  PyQt4-4.10.3-r3.ebuild
  Log:
  Stop using dohtml, remove old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.2  dev-python/PyQt4/PyQt4-4.11.1.ebuild

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

Index: PyQt4-4.11.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PyQt4-4.11.1.ebuild 15 Jul 2014 17:34:33 -  1.1
+++ PyQt4-4.11.1.ebuild 13 Sep 2014 01:39:25 -  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-python/PyQt4/PyQt4-4.11.1.ebuild,v 1.1 
2014/07/15 17:34:33 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.1.ebuild,v 1.2 
2014/09/13 01:39:25 pesa Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
@@ -200,7 +200,7 @@
dodoc NEWS THANKS
 
if use doc; then
-   dohtml -r doc/html/*
+   dodoc -r doc/html
fi
 
if use examples; then



1.266dev-python/PyQt4/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?rev=1.266&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?rev=1.266&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?r1=1.265&r2=1.266

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -r1.265 -r1.266
--- ChangeLog   17 Jul 2014 10:21:25 -  1.265
+++ ChangeLog   13 Sep 2014 01:39:25 -  1.266
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/PyQt4
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.265 
2014/07/17 10:21:25 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.266 
2014/09/13 01:39:25 pesa Exp $
+
+  13 Sep 2014; Davide Pesavento  -PyQt4-4.10.3-r3.ebuild,
+  PyQt4-4.11.1.ebuild:
+  Stop using dohtml, remove old.
 
   17 Jul 2014; Michael Palimaka  -PyQt4-4.11.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in dev-ruby/pdf-core: pdf-core-0.3.1.ebuild ChangeLog

2014-09-12 Thread Manuel Rueger (mrueg)
mrueg   14/09/13 01:34:25

  Modified: ChangeLog
  Added:pdf-core-0.3.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.9  dev-ruby/pdf-core/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/pdf-core/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   19 Aug 2014 12:12:09 -  1.8
+++ ChangeLog   13 Sep 2014 01:34:25 -  1.9
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/pdf-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pdf-core/ChangeLog,v 1.8 
2014/08/19 12:12:09 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pdf-core/ChangeLog,v 1.9 
2014/09/13 01:34:25 mrueg Exp $
+
+*pdf-core-0.3.1 (13 Sep 2014)
+
+  13 Sep 2014; Manuel Rüger  +pdf-core-0.3.1.ebuild:
+  Version bump.
 
   19 Aug 2014; Raúl Porcel  pdf-core-0.2.5.ebuild:
   add ~alpha/~arm/~ia64/~sparc/~x86, bug #519170



1.1  dev-ruby/pdf-core/pdf-core-0.3.1.ebuild

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

Index: pdf-core-0.3.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pdf-core/pdf-core-0.3.1.ebuild,v 
1.1 2014/09/13 01:34:25 mrueg Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_RECIPE_TEST="rspec"

RUBY_FAKEGEM_RECIPE_DOC="rdoc"

inherit ruby-fakegem

DESCRIPTION="Implements low level PDF features for Prawn"
HOMEPAGE="http://github.com/prawnpdf/pdf-core/";

LICENSE="|| ( Ruby GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"

ruby_add_bdepend "test? ( =dev-ruby/pdf-inspector-1.1*
>=dev-ruby/pdf-reader-1.2 =dev-ruby/pdf-reader-1* )"

all_ruby_prepare() {
sed -i -e "/[Bb]undler/d" spec/spec_helper.rb || die
}






[gentoo-commits] gentoo-x86 commit in net-p2p/tribler: tribler-6.3.3.ebuild ChangeLog tribler-6.3.1.ebuild

2014-09-12 Thread Anthony G. Basile (blueness)
blueness14/09/13 01:32:07

  Modified: ChangeLog
  Added:tribler-6.3.3.ebuild
  Removed:  tribler-6.3.1.ebuild
  Log:
  Version bump, remove older unstable
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.53 net-p2p/tribler/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.53&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.53&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog   9 Sep 2014 00:10:43 -   1.52
+++ ChangeLog   13 Sep 2014 01:32:07 -  1.53
@@ -1,6 +1,12 @@
 # ChangeLog for net-p2p/tribler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.52 2014/09/09 
00:10:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.53 2014/09/13 
01:32:07 blueness Exp $
+
+*tribler-6.3.3 (13 Sep 2014)
+
+  13 Sep 2014; Anthony G. Basile  +tribler-6.3.3.ebuild,
+  -tribler-6.3.1.ebuild:
+  Version bump, remove older unstable
 
   09 Sep 2014; Anthony G. Basile  -tribler-6.1.0.ebuild,
   -tribler-6.2.0.ebuild:



1.1  net-p2p/tribler/tribler-6.3.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-6.3.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-6.3.3.ebuild?rev=1.1&content-type=text/plain

Index: tribler-6.3.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-6.3.3.ebuild,v 1.1 
2014/09/13 01:32:07 blueness Exp $

EAPI="5"

inherit eutils unpacker

DESCRIPTION="Bittorrent client that does not require a website to discover 
content"
HOMEPAGE="http://www.tribler.org/";
SRC_URI="

https://github.com/Tribler/tribler/releases/download/v6.3.1/tribler_6.3.1_all.deb
x86?   ( 
https://github.com/Tribler/tribler/releases/download/v6.3.1/tribler-swift_6.3.1_i386.deb
 )
amd64? ( 
https://github.com/Tribler/tribler/releases/download/v6.3.1/tribler-swift_6.3.1_amd64.deb
 )"

LICENSE="GPL-2 LGPL-2.1+ PSF-2.4 openssl wxWinLL-3.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="vlc"

RDEPEND="
dev-lang/python:2.7[sqlite]
dev-python/apsw
dev-python/feedparser
dev-python/m2crypto
dev-python/netifaces
dev-libs/openssl:0[-bindist]
dev-python/wxpython
net-libs/rb_libtorrent
vlc? (
media-video/vlc
media-video/ffmpeg:0
)"

DEPEND="${RDEPEND}
app-arch/unzip"

S="${WORKDIR}"

QA_PREBUILT="/usr/lib/tribler/swift"

src_prepare() {
epatch "${FILESDIR}/${PN}-log2homedir.patch"
epatch "${FILESDIR}/${PN}-6.2.0-fix-desktop.patch"
}

src_compile() { :; }

src_install() {
#Remove the licenses scattered throughout
rm usr/share/doc/${PN}-swift/copyright  # LGPL-2.1+
rm usr/share/doc/${PN}/copyright# LGPL-2.1+
rm usr/share/${PN}/Tribler/binary-LICENSE-postfix.txt # GPL-2 LGPL-2.1+ 
PSF-2.4 openssl wxWinLL-3.1

#Rename the doc dir properly
mv usr/share/doc/${PN}-swift usr/share/doc/${PN}
mv usr/share/doc/${PN} usr/share/doc/${P}

#Move the readme to the doc dir
mv usr/share/${PN}/Tribler/readme.txt usr/share/doc/${P}

#Copy the rest over
cp -pPR usr/ "${ED}"/
}






[gentoo-commits] gentoo-x86 commit in dev-python/qscintilla-python: qscintilla-python-2.8.4.ebuild ChangeLog qscintilla-python-2.8.3.ebuild

2014-09-12 Thread Davide Pesavento (pesa)
pesa14/09/13 01:12:14

  Modified: ChangeLog
  Added:qscintilla-python-2.8.4.ebuild
  Removed:  qscintilla-python-2.8.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.111dev-python/qscintilla-python/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.111&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.111&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog   3 Aug 2014 15:49:24 -   1.110
+++ ChangeLog   13 Sep 2014 01:12:14 -  1.111
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/qscintilla-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 
1.110 2014/08/03 15:49:24 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 
1.111 2014/09/13 01:12:14 pesa Exp $
+
+*qscintilla-python-2.8.4 (13 Sep 2014)
+
+  13 Sep 2014; Davide Pesavento 
+  +qscintilla-python-2.8.4.ebuild, -qscintilla-python-2.8.3.ebuild:
+  Version bump.
 
   03 Aug 2014; Michał Górny  qscintilla-python-2.8.3.ebuild:
   Enable Python 3.4.



1.1  dev-python/qscintilla-python/qscintilla-python-2.8.4.ebuild

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

Index: qscintilla-python-2.8.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/qscintilla-python/qscintilla-python-2.8.4.ebuild,v
 1.1 2014/09/13 01:12:14 pesa Exp $

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

inherit python-r1 qmake-utils

MY_P=QScintilla-gpl-${PV}

DESCRIPTION="Python bindings for Qscintilla"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro";
SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"

LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"

DEPEND="
${PYTHON_DEPS}
>=dev-python/sip-4.16:=[${PYTHON_USEDEP}]
>=dev-python/PyQt4-4.11[X,${PYTHON_USEDEP}]
dev-qt/qtcore:4
dev-qt/qtgui:4
~x11-libs/qscintilla-${PV}:=
"
RDEPEND="${DEPEND}"

REQUIRED_USE="${PYTHON_REQUIRED_USE}"

S=${WORKDIR}/${MY_P}/Python

src_prepare() {
python_copy_sources
}

src_configure() {
configuration() {
local myconf=(
"${PYTHON}" configure.py
--destdir="$(python_get_sitedir)"/PyQt4
--pyqt=PyQt4
--sip-incdir="$(python_get_includedir)"
--pyqt-sipdir="${EPREFIX}"/usr/share/sip
--qsci-sipdir="${EPREFIX}"/usr/share/sip
$(use debug && echo --debug)
--no-timestamp
)
echo "${myconf[@]}"
"${myconf[@]}" || die

# Run eqmake4 to respect toolchain, build flags, and prevent 
stripping
eqmake4
}
python_parallel_foreach_impl run_in_build_dir configuration
}

src_compile() {
python_foreach_impl run_in_build_dir default
}

src_install() {
installation() {
emake INSTALL_ROOT="${D}" install
python_optimize
}
python_foreach_impl run_in_build_dir installation
}






[gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: qscintilla-2.8.4.ebuild metadata.xml ChangeLog qscintilla-2.8.3.ebuild

2014-09-12 Thread Davide Pesavento (pesa)
pesa14/09/13 01:07:02

  Modified: metadata.xml ChangeLog
  Added:qscintilla-2.8.4.ebuild
  Removed:  qscintilla-2.8.3.ebuild
  Log:
  Bump and finally fix bug #466120. Remove old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.3  x11-libs/qscintilla/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml18 Jul 2014 19:50:08 -  1.2
+++ metadata.xml13 Sep 2014 01:07:02 -  1.3
@@ -1,6 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-qt
-python
+   qt
+   python
+   
+   Build plugin for Qt Designer
+   
 



1.102x11-libs/qscintilla/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.102&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.102&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog   18 Jul 2014 19:50:08 -  1.101
+++ ChangeLog   13 Sep 2014 01:07:02 -  1.102
@@ -1,6 +1,14 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.101 
2014/07/18 19:50:08 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.102 
2014/09/13 01:07:02 pesa Exp $
+
+*qscintilla-2.8.4 (13 Sep 2014)
+
+  13 Sep 2014; Davide Pesavento 
+  +files/qscintilla-2.8.4-designer.patch, +qscintilla-2.8.4.ebuild,
+  -files/qscintilla-2.8.3-designer.patch, -qscintilla-2.8.3.ebuild,
+  metadata.xml:
+  Bump and finally fix bug #466120. Remove old.
 
 *qscintilla-2.8.3 (18 Jul 2014)
 



1.1  x11-libs/qscintilla/qscintilla-2.8.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.8.4.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.8.4.ebuild?rev=1.1&content-type=text/plain

Index: qscintilla-2.8.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.8.4.ebuild,v 1.1 
2014/09/13 01:07:02 pesa Exp $

EAPI=5

inherit eutils qmake-utils

MY_P=QScintilla-gpl-${PV}

DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro";
SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"

LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0/11"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
IUSE="designer doc"

DEPEND="
>=dev-qt/qtcore-4.8.5:4
>=dev-qt/qtgui-4.8.5:4
designer? ( >=dev-qt/designer-4.8.5:4 )
"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_P}

PATCHES=(
"${FILESDIR}/${PN}-2.8.4-designer.patch"
)

src_unpack() {
default

# Sub-slot sanity check
local subslot=${SLOT#*/}
local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' 
"${S}"/Qt4Qt5/qscintilla.pro)
local major=${version%%.*}
if [[ ${subslot} != ${major} ]]; then
eerror
eerror "Ebuild sub-slot (${subslot}) does not match QScintilla 
major version (${major})"
eerror "Please update SLOT variable as follows:"
eerror "SLOT=\"${SLOT%%/*}/${major}\""
eerror
die "sub-slot sanity check failed"
fi
}

src_prepare() {
[[ ${PATCHES[@]} ]] && epatch "${PATCHES[@]}"
}

src_configure() {
pushd Qt4Qt5 > /dev/null
eqmake4
popd > /dev/null

if use designer; then
pushd designer-Qt4Qt5 > /dev/null
eqmake4
popd > /dev/null
fi
}

src_compile() {
pushd Qt4Qt5 > /dev/null
emake
popd > /dev/null

if use designer; then
pushd designer-Qt4Q

[gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla/files: qscintilla-2.8.4-designer.patch qscintilla-2.8.3-designer.patch

2014-09-12 Thread Davide Pesavento (pesa)
pesa14/09/13 01:07:02

  Added:qscintilla-2.8.4-designer.patch
  Removed:  qscintilla-2.8.3-designer.patch
  Log:
  Bump and finally fix bug #466120. Remove old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.1  x11-libs/qscintilla/files/qscintilla-2.8.4-designer.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/files/qscintilla-2.8.4-designer.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/files/qscintilla-2.8.4-designer.patch?rev=1.1&content-type=text/plain

Index: qscintilla-2.8.4-designer.patch
===
This patch causes the designer plugin to be built against the just-built
libqscintilla2.so, rather than trying to build against the system library
which may either (a) not be installed yet, or (b) belong to an older
installation and thus have a different soname (bug 466120).

diff --git a/designer-Qt4Qt5/designer.pro b/designer-Qt4Qt5/designer.pro
index e3432ff..2b7fa6a 100644
--- a/designer-Qt4Qt5/designer.pro
+++ b/designer-Qt4Qt5/designer.pro
@@ -4,7 +4,11 @@
 TEMPLATE = lib
 TARGET = qscintillaplugin
 
-CONFIG += release plugin qscintilla2
+CONFIG += release plugin
+
+INCLUDEPATH  += ../Qt4Qt5
+QMAKE_LIBDIR += ../Qt4Qt5
+LIBS += -lqscintilla2
 
 greaterThan(QT_MAJOR_VERSION, 4) {
 QT += designer






[gentoo-commits] proj/sci:lapack-multibuild commit in: sci-libs/openblas/

2014-09-12 Thread Mark Wright
commit: 709b3e5d88baf54ca019efa22443bfee7d3f0d25
Author: gienah  gentoo  org>
AuthorDate: Sat Sep 13 01:02:57 2014 +
Commit: Mark Wright  gentoo  org>
CommitDate: Sat Sep 13 01:02:57 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=709b3e5d

Remove the setting of the FC and F77 environment variables, instead sed the 
COMMON_OPT in Makefile.rule to include the $(get_abi_CFLAGS). Add 
get_openblas_abi_cflags and get_openblas_abi_fflags, call them to create the 
pkg-config ${profname}.pc files. Call get_openblas_abi_cflags to obtain the 
defines, then remove the OPENBLAS_ at the start, and sed these into COMMON_OPT 
in Makefile.rule, as USE64BITINT was removed by the patch 
openblas-0.2.11-openblas_config_header_same_between_ABIs.patch that is required 
to ensure the openblas_config.h header file is the same between ABIs.

---
 sci-libs/openblas/ChangeLog| 11 
 sci-libs/openblas/openblas-.ebuild | 50 --
 2 files changed, 41 insertions(+), 20 deletions(-)

diff --git a/sci-libs/openblas/ChangeLog b/sci-libs/openblas/ChangeLog
index 9f9c82e..bb794f4 100644
--- a/sci-libs/openblas/ChangeLog
+++ b/sci-libs/openblas/ChangeLog
@@ -2,6 +2,17 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  13 Sep 2014; Mark Wright  openblas-.ebuild:
+  Remove the setting of the FC and F77 environment variables, instead sed the
+  COMMON_OPT in Makefile.rule to include the $(get_abi_CFLAGS). Add
+  get_openblas_abi_cflags and get_openblas_abi_fflags, call them to create the
+  pkg-config ${profname}.pc files. Call get_openblas_abi_cflags to obtain the
+  defines, then remove the OPENBLAS_ at the start, and sed these into
+  COMMON_OPT in Makefile.rule, as USE64BITINT was removed by the patch
+  openblas-0.2.11-openblas_config_header_same_between_ABIs.patch that is
+  required to ensure the openblas_config.h header file is the same between
+  ABIs.
+
   06 Sep 2014; Mark Wright  +openblas-0.2.11.ebuild,
   openblas-.ebuild,
   +files/openblas-0.2.11-openblas_config_header_same_between_ABIs.patch,

diff --git a/sci-libs/openblas/openblas-.ebuild 
b/sci-libs/openblas/openblas-.ebuild
index b3854fe..61ddcf0 100644
--- a/sci-libs/openblas/openblas-.ebuild
+++ b/sci-libs/openblas/openblas-.ebuild
@@ -55,6 +55,27 @@ get_openblas_flags() {
echo "${openblas_flags}"
 }
 
+get_openblas_abi_cflags() {
+   local openblas_abi_cflags=""
+   if [[ "${ABI}" == "x86" ]]; then
+   openblas_abi_cflags="-DOPENBLAS_ARCH_X86=1 
-DOPENBLAS___32BIT__=1"
+   else
+   openblas_abi_cflags="-DOPENBLAS_ARCH_X86_64=1 
-DOPENBLAS___64BIT__=1"
+   fi
+   if [[ "${MULTIBUILD_ID}" =~ "_${INT64_SUFFIX}" ]]; then
+   openblas_abi_cflags+=" -DOPENBLAS_USE64BITINT"
+   fi
+   echo "${openblas_abi_cflags}"
+}
+
+get_openblas_abi_fflags() {
+   local openblas_abi_fflags=""
+   if [[ "${MULTIBUILD_ID}" =~ "_${INT64_SUFFIX}" ]]; then
+   openblas_abi_fflags+="-fdefault-integer-8"
+   fi
+   echo "${openblas_abi_fflags}"
+}
+
 get_profname() {
local profname="${BASE_PROFNAME}"
use dynamic && \
@@ -118,8 +139,6 @@ _int64_multilib_multibuild_wrapper() {
 
local ABI="${MULTIBUILD_VARIANT/_${INT64_SUFFIX}/}"
multilib_toolchain_setup "${ABI}"
-   export FC="$(tc-getFC) $(get_abi_CFLAGS)"
-   export F77="$(tc-getF77) $(get_abi_CFLAGS)"
"${@}"
 }
 
@@ -167,10 +186,12 @@ src_prepare() {
 src_configure() {
local MULTIBUILD_VARIANTS=( $(int64_multilib_get_enabled_abis) )
my_configure() {
+   local openblas_abi_cflags="$(get_openblas_abi_cflags)"
+   local 
internal_openblas_abi_cflags="${openblas_abi_cflags//OPENBLAS_}"
sed \
-e "s:^#\s*\(CC\)\s*=.*:\1=$(tc-getCC) 
$(get_abi_CFLAGS):" \
-e "s:^#\s*\(FC\)\s*=.*:\1=$(tc-getFC) 
$(get_abi_CFLAGS):" \
-   -e "s:^#\s*\(COMMON_OPT\)\s*=.*:\1=${CFLAGS}:" \
+   -e "s:^#\s*\(COMMON_OPT\)\s*=.*:\1=${CFLAGS} 
${internal_openblas_abi_cflags}:" \
-i Makefile.rule || die
}
multibuild_foreach_variant run_in_build_dir 
_int64_multilib_multibuild_wrapper my_configure
@@ -207,23 +228,12 @@ src_compile() {
Libs: -L\${libdir} -l${libname}
Libs.private: -lm
EOF
-   local openblas_abi_defs=""
-   if [[ "${ABI}" == "x86" ]]; then
-   openblas_abi_defs="-DOPENBLAS_ARCH_X86=1 
-DOPENBLAS___32BIT__=1"
-   else
-   openblas_abi_defs="-DOPENBLAS_ARCH_X86_64=1 
-DOPENBLAS___64BIT__=1"
-   fi
-   if [[ "${MULTIBUILD_ID}" =~ "_${INT64_SUFFIX}" ]]; then
-   cat <<-EOF >> ${profname}.pc
-

[gentoo-commits] gentoo-x86 commit in dev-util/valgrind/files: valgrind-3.10.0-non-exec-stack.patch

2014-09-12 Thread Anthony G. Basile (blueness)
blueness14/09/13 00:57:21

  Added:valgrind-3.10.0-non-exec-stack.patch
  Log:
  Version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1  
dev-util/valgrind/files/valgrind-3.10.0-non-exec-stack.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/files/valgrind-3.10.0-non-exec-stack.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/files/valgrind-3.10.0-non-exec-stack.patch?rev=1.1&content-type=text/plain

Index: valgrind-3.10.0-non-exec-stack.patch
===
diff -Naur valgrind-3.10.0.orig/coregrind/Makefile.am 
valgrind-3.10.0/coregrind/Makefile.am
--- valgrind-3.10.0.orig/coregrind/Makefile.am  2014-09-08 08:28:30.0 
-0400
+++ valgrind-3.10.0/coregrind/Makefile.am   2014-09-12 20:54:25.720389938 
-0400
@@ -333,18 +333,6 @@
m_demangle/demangle.c \
m_demangle/dyn-string.c \
m_demangle/safe-ctype.c \
-   m_dispatch/dispatch-x86-linux.S \
-   m_dispatch/dispatch-amd64-linux.S \
-   m_dispatch/dispatch-ppc32-linux.S \
-   m_dispatch/dispatch-ppc64be-linux.S \
-   m_dispatch/dispatch-ppc64le-linux.S \
-   m_dispatch/dispatch-arm-linux.S \
-   m_dispatch/dispatch-arm64-linux.S \
-   m_dispatch/dispatch-s390x-linux.S \
-   m_dispatch/dispatch-mips32-linux.S \
-   m_dispatch/dispatch-mips64-linux.S \
-   m_dispatch/dispatch-x86-darwin.S \
-   m_dispatch/dispatch-amd64-darwin.S \
m_gdbserver/inferiors.c \
m_gdbserver/m_gdbserver.c \
m_gdbserver/regcache.c \
@@ -368,8 +356,6 @@
m_initimg/initimg-pathscan.c \
m_mach/mach_basics.c \
m_mach/mach_msg.c \
-   m_mach/mach_traps-x86-darwin.S \
-   m_mach/mach_traps-amd64-darwin.S \
m_replacemalloc/replacemalloc_core.c \
m_scheduler/scheduler.c \
m_scheduler/sema.c \
@@ -386,18 +372,6 @@
m_sigframe/sigframe-mips64-linux.c \
m_sigframe/sigframe-x86-darwin.c \
m_sigframe/sigframe-amd64-darwin.c \
-   m_syswrap/syscall-x86-linux.S \
-   m_syswrap/syscall-amd64-linux.S \
-   m_syswrap/syscall-ppc32-linux.S \
-   m_syswrap/syscall-ppc64be-linux.S \
-   m_syswrap/syscall-ppc64le-linux.S \
-   m_syswrap/syscall-arm-linux.S \
-   m_syswrap/syscall-arm64-linux.S \
-   m_syswrap/syscall-s390x-linux.S \
-   m_syswrap/syscall-mips32-linux.S \
-   m_syswrap/syscall-mips64-linux.S \
-   m_syswrap/syscall-x86-darwin.S \
-   m_syswrap/syscall-amd64-darwin.S \
m_syswrap/syswrap-main.c \
m_syswrap/syswrap-generic.c \
m_syswrap/syswrap-linux.c \
@@ -420,6 +394,29 @@
m_ume/main.c \
m_ume/script.c
 
+COREGRIND_SOURCES_COMMON += \
+   m_dispatch/dispatch-@VGCONF_ARCH_PRI@-@VGCONF_OS@.S \
+   m_syswrap/syscall-@VGCONF_ARCH_PRI@-@VGCONF_OS@.S
+
+if VGCONF_HAVE_PLATFORM_SEC
+COREGRIND_SOURCES_COMMON += \
+   m_dispatch/dispatch-@VGCONF_ARCH_SEC@-@VGCONF_OS@.S \
+   m_syswrap/syscall-@VGCONF_ARCH_SEC@-@VGCONF_OS@.S
+endif
+
+if VGCONF_OS_IS_DARWIN
+COREGRIND_SOURCES_COMMON += \
+   m_dispatch/dispatch-@VGCONF_ARCH_PRI@-darwin.S \
+   m_syswrap/syscall-@VGCONF_ARCH_PRI@-darwin.S \
+   m_mach/mach_traps-@VGCONF_ARCH_PRI@-darwin.S
+if VGCONF_HAVE_PLATFORM_SEC
+COREGRIND_SOURCES_COMMON += \
+   m_dispatch/dispatch-@VGCONF_ARCH_SEC@-darwin.S \
+   m_syswrap/syscall-@VGCONF_ARCH_SEC@-darwin.S \
+   m_mach/mach_traps-@VGCONF_ARCH_SEC@-darwin.S
+endif
+endif
+
 libcoregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_SOURCES = \
 $(COREGRIND_SOURCES_COMMON)
 nodist_libcoregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_SOURCES = \
diff -Naur valgrind-3.10.0.orig/coregrind/m_dispatch/dispatch-amd64-linux.S 
valgrind-3.10.0/coregrind/m_dispatch/dispatch-amd64-linux.S
--- valgrind-3.10.0.orig/coregrind/m_dispatch/dispatch-amd64-linux.S
2014-09-08 08:28:46.0 -0400
+++ valgrind-3.10.0/coregrind/m_dispatch/dispatch-amd64-linux.S 2014-09-12 
20:49:14.681385751 -0400
@@ -249,11 +249,11 @@
 
 .size VG_(disp_run_translations), .-VG_(disp_run_translations)
 
+#endif // defined(VGP_amd64_linux)
+
 /* Let the linker know we don't need an executable stack */
 .section .note.GNU-stack,"",@progbits
 
-#endif // defined(VGP_amd64_linux)
-
 /**/
 /*--- end  ---*/
 /**/
diff -Naur valgrind-3.10.0.orig/coregrind/m_dispatch/dispatch-x86-linux.S 
valgrind-3.10.0/coregrind/m_dispatch/dispatch-x86-linux.S
--- valgrind-3.10.0.orig/coregrind/m_dispatch/dispatch-x86-linux.S  
2014-09-08 08:28:46.0 -0400
+++ valgrind-3.10.0/coregrind/m_dispatch/dispatch-x86-linux.S   2014-09-12 

[gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.10.0.ebuild ChangeLog

2014-09-12 Thread Anthony G. Basile (blueness)
blueness14/09/13 00:57:21

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

Revision  ChangesPath
1.177dev-util/valgrind/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.177&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.177&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/valgrind/ChangeLog?r1=1.176&r2=1.177

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog   10 Sep 2014 11:56:23 -  1.176
+++ ChangeLog   13 Sep 2014 00:57:21 -  1.177
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.176 
2014/09/10 11:56:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.177 
2014/09/13 00:57:21 blueness Exp $
+
+*valgrind-3.10.0 (13 Sep 2014)
+
+  13 Sep 2014; Anthony G. Basile 
+  +files/valgrind-3.10.0-non-exec-stack.patch, +valgrind-3.10.0.ebuild:
+  Version bump
 
   10 Sep 2014; Anthony G. Basile  valgrind-3.9.0.ebuild:
   Stable on arm, bug #518666



1.1  dev-util/valgrind/valgrind-3.10.0.ebuild

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

Index: valgrind-3.10.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/valgrind/valgrind-3.10.0.ebuild,v 
1.1 2014/09/13 00:57:21 blueness Exp $

EAPI="4"
inherit autotools eutils flag-o-matic toolchain-funcs multilib pax-utils

DESCRIPTION="An open-source memory debugger for GNU/Linux"
HOMEPAGE="http://www.valgrind.org";
SRC_URI="http://www.valgrind.org/downloads/${P}.tar.bz2";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
IUSE="mpi"

DEPEND="mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"

src_prepare() {
# Correct hard coded doc location
sed -i -e "s:doc/valgrind:doc/${PF}:" docs/Makefile.am || die

# Don't force multiarch stuff on OSX, bug #306467
sed -i -e 's:-arch \(i386\|x86_64\)::g' Makefile.all.am || die

# Respect CFLAGS, LDFLAGS
epatch "${FILESDIR}"/${PN}-3.7.0-respect-flags.patch

# Changing Makefile.all.am to disable SSP
epatch "${FILESDIR}"/${PN}-3.7.0-fno-stack-protector.patch

# Yet more local labels, this time for ppc32 & ppc64
epatch "${FILESDIR}"/${PN}-3.6.0-local-labels.patch

# Don't build in empty assembly files for other platforms or we'll get 
a QA
# warning about executable stacks.
epatch "${FILESDIR}"/${PN}-3.10.0-non-exec-stack.patch

# glibc 2.19 fix
epatch "${FILESDIR}"/${PN}-3.9.0-glibc-2.19.patch

# Regenerate autotools files
eautoreconf
}

src_configure() {
local myconf

# Respect ar, bug #468114
tc-export AR

# -fomit-frame-pointer  "Assembler messages: Error: junk `8' after 
expression"
#   while compiling insn_sse.c in none/tests/x86
# -fpie valgrind seemingly hangs when built with pie on
#   amd64 (bug #102157)
# -fstack-protector more undefined references to __guard and 
__stack_smash_handler
#   because valgrind doesn't link to glibc (bug 
#114347)
# -m64 -mx32for multilib-portage, bug #398825
# -ggdb3segmentation fault on startup
filter-flags -fomit-frame-pointer
filter-flags -fpie
filter-flags -fstack-protector
filter-flags -m64 -mx32
replace-flags -ggdb3 -ggdb2

if use amd64 || use ppc64; then
! has_multilib_profile && myconf="${myconf} --enable-only64bit"
fi

# Force bitness on darwin, bug #306467
use x86-macos && myconf="${myconf} --enable-only32bit"
use x64-macos && myconf="${myconf} --enable-only64bit"

# Don't use mpicc unless the user asked for it (bug #258832)
if ! use mpi; then
myconf="${myconf} --without-mpicc"
fi

econf ${myconf}
}

src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS FAQ.tx

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

2014-09-12 Thread Anthony G. Basile (blueness)
blueness14/09/13 00:04:44

  Modified: ChangeLog
  Added:tor-0.2.5.7_rc.ebuild
  Log:
  Version bump 2.5 branch, new RC candidate
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.431net-misc/tor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.430
retrieving revision 1.431
diff -u -r1.430 -r1.431
--- ChangeLog   6 Sep 2014 13:54:19 -   1.430
+++ ChangeLog   13 Sep 2014 00:04:44 -  1.431
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.430 2014/09/06 
13:54:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.431 2014/09/13 
00:04:44 blueness Exp $
+
+*tor-0.2.5.7_rc (13 Sep 2014)
+
+  13 Sep 2014; Anthony G. Basile  +tor-0.2.5.7_rc.ebuild:
+  Version bump 2.5 branch, new RC candidate
 
   06 Sep 2014; Anthony G. Basile  -tor-0.2.4.22.ebuild,
   files/tor-0.2.3.14_alpha-torrc.sample.patch:



1.1  net-misc/tor/tor-0.2.5.7_rc.ebuild

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

Index: tor-0.2.5.7_rc.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.5.7_rc.ebuild,v 1.1 
2014/09/13 00:04:44 blueness Exp $

EAPI="5"

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

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

LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="-bufferevents +ecc nat-pmp selinux stats tor-hardening transparent-proxy 
threads test upnp web"

DEPEND="dev-libs/openssl
sys-libs/zlib
dev-libs/libevent
bufferevents? ( dev-libs/libevent[ssl] )
nat-pmp? ( net-libs/libnatpmp )
upnp? ( net-libs/miniupnpc )
selinux? ( sec-policy/selinux-tor )"
RDEPEND="${DEPEND}"

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

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

src_configure() {
# Upstream isn't sure of all the user provided CFLAGS that
# will break tor, but does recommend against -fstrict-aliasing.
# We'll filter-flags them here as we encounter them.
filter-flags -fstrict-aliasing
econf \
--disable-buf-freelists \
--enable-asciidoc \
--docdir=/usr/share/doc/${PF} \
$(use_enable stats instrument-downloads) \
$(use_enable bufferevents) \
$(use_enable ecc curve25519) \
$(use_enable nat-pmp) \
$(use_enable tor-hardening gcc-hardening) \
$(use_enable tor-hardening linker-hardening) \
$(use_enable transparent-proxy transparent) \
$(use_enable threads) \
$(use_enable upnp) \
$(use_enable web tor2web-mode) \
$(use_enable test unittests) \
$(use_enable test coverage)
}

src_test() {
emake check
}

src_install() {
readme.gentoo_create_doc

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

emake DESTDIR="${D}" install

keepdir /var/lib/tor

dodoc README ChangeLog ReleaseNotes doc/HACKING

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

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

pkg_postinst() {
readme.gentoo_pkg_postinst

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

[gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.3.ebuild sip-4.16.2.ebuild ChangeLog sip-4.15.4.ebuild

2014-09-12 Thread Davide Pesavento (pesa)
pesa14/09/12 21:47:29

  Modified: sip-4.16.2.ebuild ChangeLog
  Added:sip-4.16.3.ebuild
  Removed:  sip-4.15.4.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.2  dev-python/sip/sip-4.16.2.ebuild

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

Index: sip-4.16.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sip-4.16.2.ebuild   15 Jul 2014 17:27:22 -  1.1
+++ sip-4.16.2.ebuild   12 Sep 2014 21:47:29 -  1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.1 
2014/07/15 17:27:22 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.2 
2014/09/12 21:47:29 pesa Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit eutils python-r1 toolchain-funcs
 



1.288dev-python/sip/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.288&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.288&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.287&r2=1.288

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog   17 Jul 2014 10:26:42 -  1.287
+++ ChangeLog   12 Sep 2014 21:47:29 -  1.288
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/sip
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.287 2014/07/17 
10:26:42 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.288 2014/09/12 
21:47:29 pesa Exp $
+
+*sip-4.16.3 (12 Sep 2014)
+
+  12 Sep 2014; Davide Pesavento  +sip-4.16.3.ebuild,
+  -sip-4.15.4.ebuild, sip-4.16.2.ebuild:
+  Version bump, remove old.
 
   17 Jul 2014; Michael Palimaka  -sip-4.14.7.ebuild,
   -sip-4.16.ebuild:



1.1  dev-python/sip/sip-4.16.3.ebuild

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

Index: sip-4.16.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.3.ebuild,v 1.1 
2014/09/12 21:47:29 pesa Exp $

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

inherit eutils python-r1 toolchain-funcs

DESCRIPTION="Python extension module generator for C and C++ libraries"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/sip/intro 
http://pypi.python.org/pypi/SIP";
LICENSE="|| ( GPL-2 GPL-3 sip )"

if [[ ${PV} == ** ]]; then
# live version from mercurial repo
EHG_REPO_URI="http://www.riverbankcomputing.com/hg/sip";
inherit mercurial
elif [[ ${PV} == *_pre* ]]; then
# development snapshot
HG_REVISION=
MY_P=${PN}-${PV%_pre*}-snapshot-${HG_REVISION}
SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${MY_P}.tar.gz";
S=${WORKDIR}/${MY_P}
else
# official release
SRC_URI="mirror://sourceforge/pyqt/${P}.tar.gz"
fi

# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"

DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}"

[[ ${PV} == ** ]] && DEPEND+="
=dev-lang/python-2*
sys-devel/bison
sys-devel/flex
doc? ( dev-python/sphinx[$(python_gen_usedep 'python2*')] )
"

REQUIRED_USE="${PYTHON_REQUIRED_USE}"

src_prepare() {
epatch "${FILESDIR}"/${PN}-4.15.5-darwin.patch

if [[ ${PV} == ** ]]; then
python2 build.py prepare || die
if use doc; then
python2 build.py doc || die
fi
fi

# Sub-slot san

[gentoo-commits] proj/portage:master commit in: pym/portage/

2014-09-12 Thread Zac Medico
commit: a14d1493716ee0b026dc56ef6c6c1f24169fd880
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Sep 12 21:24:08 2014 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Sep 12 21:24:08 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=a14d1493

portage/mail.py: don't encode Date header to bytes

As reported in bug #520752 comment #4, the _unicode_encode usage
triggers the following error with python 3.3.5:

'bytes' object has no attribute 'encode'"

The _unicode_encode call is not needed for python2.x, since formatdate
returns bytes for python2.x.

Fixes: 7204b87040ed ("portage/mail.py: Make email date, timestamp RFC-compliant 
Bug 520752")
X-Gentoo-Bug: 520752
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=520752

---
 pym/portage/mail.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pym/portage/mail.py b/pym/portage/mail.py
index 945cccd..11923ee 100644
--- a/pym/portage/mail.py
+++ b/pym/portage/mail.py
@@ -91,8 +91,7 @@ def create_message(sender, recipient, subject, body, 
attachments=None):
#input_bytes = s.encode(input_charset, errors)
#UnicodeEncodeError: 'ascii' codec can't encode characters in position 
0-9: ordinal not in range(128)
mymessage["Subject"] = Header(_force_ascii_if_necessary(subject))
-   mymessage["Date"] = _unicode_encode(formatdate(localtime=True),
-   encoding=_encodings['content'], errors='backslashreplace')
+   mymessage["Date"] = formatdate(localtime=True)
 
return mymessage
 



[gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: ChangeLog megaglest-3.9.0.4.ebuild megaglest-3.9.1.ebuild

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 20:59:05

  Modified: ChangeLog megaglest-3.9.0.4.ebuild
megaglest-3.9.1.ebuild
  Log:
  Add subslot dependency on dev-libs/icu
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.20 games-strategy/megaglest/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.20&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.20&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   15 May 2014 17:05:54 -  1.19
+++ ChangeLog   12 Sep 2014 20:59:05 -  1.20
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/megaglest
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.19 
2014/05/15 17:05:54 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.20 
2014/09/12 20:59:05 dilfridge Exp $
+
+  12 Sep 2014; Andreas K. Huettel 
+  megaglest-3.9.0.4.ebuild, megaglest-3.9.1.ebuild:
+  Add subslot dependency on dev-libs/icu
 
   15 May 2014; Ulrich Müller  megaglest-3.6.0.3.ebuild,
   megaglest-3.7.0.ebuild, megaglest-3.7.1.ebuild, megaglest-3.9.0.4.ebuild,



1.3  games-strategy/megaglest/megaglest-3.9.0.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.9.0.4.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.9.0.4.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.9.0.4.ebuild?r1=1.2&r2=1.3

Index: megaglest-3.9.0.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.9.0.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- megaglest-3.9.0.4.ebuild15 May 2014 17:05:54 -  1.2
+++ megaglest-3.9.0.4.ebuild12 Sep 2014 20:59:05 -  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/games-strategy/megaglest/megaglest-3.9.0.4.ebuild,v 1.2 
2014/05/15 17:05:54 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.9.0.4.ebuild,v 1.3 
2014/09/12 20:59:05 dilfridge Exp $
 
 # google-breakpad
 # TODO: fribidi, libvorbis static
@@ -36,7 +36,7 @@
fribidi? ( dev-libs/fribidi )
model-viewer? ( x11-libs/wxGTK:2.8[X] )
!static? (
-   dev-libs/icu
+   dev-libs/icu:=
dev-libs/xerces-c[icu]
media-libs/ftgl
media-libs/glew



1.3  games-strategy/megaglest/megaglest-3.9.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1.ebuild?r1=1.2&r2=1.3

Index: megaglest-3.9.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- megaglest-3.9.1.ebuild  15 May 2014 17:05:54 -  1.2
+++ megaglest-3.9.1.ebuild  12 Sep 2014 20:59:05 -  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/games-strategy/megaglest/megaglest-3.9.1.ebuild,v 1.2 
2014/05/15 17:05:54 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1.ebuild,v 1.3 
2014/09/12 20:59:05 dilfridge Exp $
 
 # google-breakpad
 # TODO: fribidi, libvorbis static
@@ -36,7 +36,7 @@
fribidi? ( dev-libs/fribidi )
model-viewer? ( x11-libs/wxGTK:2.8[X] )
!static? (
-   dev-libs/icu
+   dev-libs/icu:=
dev-libs/xerces-c[icu]
media-libs/ftgl
media-libs/glew






[gentoo-commits] gentoo-x86 commit in games-strategy/0ad: ChangeLog 0ad-0.0.16_alpha-r2.ebuild

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 20:54:31

  Modified: ChangeLog 0ad-0.0.16_alpha-r2.ebuild
  Log:
  Add subslot dependency on dev-libs/icu
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.4  games-strategy/0ad/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/0ad/ChangeLog?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/0ad/ChangeLog?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/0ad/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/0ad/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   17 Jun 2014 20:44:55 -  1.3
+++ ChangeLog   12 Sep 2014 20:54:31 -  1.4
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/0ad
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/0ad/ChangeLog,v 1.3 
2014/06/17 20:44:55 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/0ad/ChangeLog,v 1.4 
2014/09/12 20:54:31 dilfridge Exp $
+
+  12 Sep 2014; Andreas K. Huettel 
+  0ad-0.0.16_alpha-r2.ebuild:
+  Add subslot dependency on dev-libs/icu
 
 *0ad-0.0.16_alpha-r2 (17 Jun 2014)
 



1.2  games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild?r1=1.1&r2=1.2

Index: 0ad-0.0.16_alpha-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 0ad-0.0.16_alpha-r2.ebuild  17 Jun 2014 20:44:55 -  1.1
+++ 0ad-0.0.16_alpha-r2.ebuild  12 Sep 2014 20:54:31 -  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/games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild,v 1.1 
2014/06/17 20:44:55 hasufell Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/0ad/0ad-0.0.16_alpha-r2.ebuild,v 1.2 
2014/09/12 20:54:31 dilfridge Exp $
 
 EAPI=5
 
@@ -22,7 +22,7 @@
 RDEPEND="
dev-lang/spidermonkey:24
dev-libs/boost
-   dev-libs/icu
+   dev-libs/icu:=
dev-libs/libxml2
~games-strategy/0ad-data-${PV}
media-gfx/nvidia-texture-tools






[gentoo-commits] gentoo-x86 commit in dev-ruby/charlock_holmes: charlock_holmes-0.7.2.ebuild ChangeLog charlock_holmes-0.7.3.ebuild

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 20:48:24

  Modified: charlock_holmes-0.7.2.ebuild ChangeLog
charlock_holmes-0.7.3.ebuild
  Log:
  Add subslot dependency on dev-libs/icu
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.2  dev-ruby/charlock_holmes/charlock_holmes-0.7.2.ebuild

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

Index: charlock_holmes-0.7.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/charlock_holmes-0.7.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- charlock_holmes-0.7.2.ebuild6 Jun 2014 05:35:37 -   1.1
+++ charlock_holmes-0.7.2.ebuild12 Sep 2014 20:48:24 -  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-ruby/charlock_holmes/charlock_holmes-0.7.2.ebuild,v 
1.1 2014/06/06 05:35:37 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/charlock_holmes-0.7.2.ebuild,v 
1.2 2014/09/12 20:48:24 dilfridge Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21"
@@ -21,7 +21,7 @@
 ruby_add_bdepend "test? (
dev-ruby/minitest )"
 
-CDEPEND="dev-libs/icu
+CDEPEND="dev-libs/icu:=
sys-libs/zlib"
 DEPEND+=" ${CDEPEND}"
 RDEPEND+=" ${CDEPEND}"



1.6  dev-ruby/charlock_holmes/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   15 Jun 2014 15:40:11 -  1.5
+++ ChangeLog   12 Sep 2014 20:48:24 -  1.6
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/charlock_holmes
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/ChangeLog,v 1.5 
2014/06/15 15:40:11 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/ChangeLog,v 1.6 
2014/09/12 20:48:24 dilfridge Exp $
+
+  12 Sep 2014; Andreas K. Huettel 
+  charlock_holmes-0.7.2.ebuild, charlock_holmes-0.7.3.ebuild:
+  Add subslot dependency on dev-libs/icu
 
   15 Jun 2014; Manuel Rüger  -charlock_holmes-0.6.9.4.ebuild,
   -charlock_holmes-0.7.1.ebuild, -files/charlock_holmes-0.6.9.4-extconf.patch:



1.2  dev-ruby/charlock_holmes/charlock_holmes-0.7.3.ebuild

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

Index: charlock_holmes-0.7.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/charlock_holmes-0.7.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- charlock_holmes-0.7.3.ebuild14 Jun 2014 02:49:53 -  1.1
+++ charlock_holmes-0.7.3.ebuild12 Sep 2014 20:48:24 -  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-ruby/charlock_holmes/charlock_holmes-0.7.3.ebuild,v 
1.1 2014/06/14 02:49:53 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/charlock_holmes/charlock_holmes-0.7.3.ebuild,v 
1.2 2014/09/12 20:48:24 dilfridge Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21"
@@ -21,7 +21,7 @@
 ruby_add_bdepend "test? (
dev-ruby/minitest )"
 
-CDEPEND="dev-libs/icu
+CDEPEND="dev-libs/icu:=
sys-libs/zlib"
 DEPEND+=" ${CDEPEND}"
 RDEPEND+=" ${CDEPEND}"






[gentoo-commits] gentoo-x86 commit in mail-filter/spamassassin: ChangeLog spamassassin-3.3.2-r5.ebuild

2014-09-12 Thread Jeroen Roovers (jer)
jer 14/09/12 20:01:51

  Modified: ChangeLog spamassassin-3.3.2-r5.ebuild
  Log:
  Stable for HPPA (bug #519186).
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.240mail-filter/spamassassin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamassassin/ChangeLog?rev=1.240&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamassassin/ChangeLog?rev=1.240&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamassassin/ChangeLog?r1=1.239&r2=1.240

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-filter/spamassassin/ChangeLog,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -r1.239 -r1.240
--- ChangeLog   10 Sep 2014 20:24:27 -  1.239
+++ ChangeLog   12 Sep 2014 20:01:51 -  1.240
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/spamassassin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/spamassassin/ChangeLog,v 1.239 
2014/09/10 20:24:27 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/spamassassin/ChangeLog,v 1.240 
2014/09/12 20:01:51 jer Exp $
+
+  12 Sep 2014; Jeroen Roovers  spamassassin-3.3.2-r5.ebuild:
+  Stable for HPPA (bug #519186).
 
   10 Sep 2014; Andreas K. Huettel 
   -spamassassin-3.3.2-r1.ebuild, -spamassassin-3.3.2-r3.ebuild:



1.2  mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild?r1=1.1&r2=1.2

Index: spamassassin-3.3.2-r5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- spamassassin-3.3.2-r5.ebuild10 Sep 2014 20:22:25 -  1.1
+++ spamassassin-3.3.2-r5.ebuild12 Sep 2014 20:01:51 -  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/mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild,v 
1.1 2014/09/10 20:22:25 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/spamassassin/spamassassin-3.3.2-r5.ebuild,v 
1.2 2014/09/12 20:01:51 jer Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 # need keyword request for Mail-SPF ppc ppc64
 IUSE="berkdb qmail ssl doc ldap mysql postgres sqlite ipv6"
 






[gentoo-commits] proj/kde:master commit in: games-board/kaya/

2014-09-12 Thread Johannes Huber
commit: 2859c23da6aaab87d7423ea55508acf3e8ed5a74
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 19:45:25 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 19:45:25 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2859c23d

[games-board/kaya] Remove, dead upstream

Last commit in 2012.

---
 games-board/kaya/kaya-.ebuild | 65 ---
 games-board/kaya/metadata.xml |  8 -
 2 files changed, 73 deletions(-)

diff --git a/games-board/kaya/kaya-.ebuild 
b/games-board/kaya/kaya-.ebuild
deleted file mode 100644
index 26ba98a..000
--- a/games-board/kaya/kaya-.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-USE_RUBY="ruby19"
-CMAKE_IN_SOURCE_BUILD=1
-
-inherit kde4-base ruby-ng
-
-DESCRIPTION="Board game suite for KDE"
-HOMEPAGE="http://pcapriotti.github.com/kaya/";
-EGIT_REPO_URI="git://github.com/pcapriotti/kaya.git"
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS=""
-IUSE="debug"
-
-DEPEND=""
-RDEPEND=""
-ruby_add_rdepend "|| ( kde-base/korundum kde-base/kdebindings-ruby )"
-ruby_add_rdepend "dev-ruby/builder"
-
-EGIT_SOURCE_UNPACK="${WORKDIR}/all/${P}"
-
-pkg_setup() {
-   ruby-ng_pkg_setup
-   kde4-base_pkg_setup
-}
-
-src_unpack() {
-   kde4-base_src_unpack
-
-   cd "${WORKDIR}"
-   mkdir all
-   mv ${P} all/ || die "Could not move sources"
-}
-
-all_ruby_prepare() {
-   kde4-base_src_prepare
-}
-
-all_ruby_configure() {
-   CMAKE_USE_DIR=${S}
-   kde4-base_src_configure
-}
-
-all_ruby_compile() {
-   CMAKE_USE_DIR=${S}
-   kde4-base_src_compile
-}
-
-all_ruby_install() {
-   CMAKE_USE_DIR=${S}
-   kde4-base_src_install
-}
-
-pkg_postinst() {
-   kde4-base_pkg_postinst
-   elog "To be able to use the kaya board game front-end, you need to 
install at least one"
-   elog "of the following game engines: "
-   elog "games-board/gnuchess"
-   elog "games-board/gnushogi"
-}

diff --git a/games-board/kaya/metadata.xml b/games-board/kaya/metadata.xml
deleted file mode 100644
index 7811270..000
--- a/games-board/kaya/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   kde
-   
-   dilfri...@gentoo.org
-   
-



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/uclibc/mips: package.use.force

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:42:27

  Added:package.use.force
  Log:
  Add package.use.force - Force 'deprecated' USE flag for www-client/midori

Revision  ChangesPath
1.1  profiles/default/linux/uclibc/mips/package.use.force

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/mips/package.use.force?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/mips/package.use.force?rev=1.1&content-type=text/plain

Index: package.use.force
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/mips/package.use.force,v 
1.1 2014/09/12 19:42:27 vincent Exp $

# Vicente Olivert Riera  (12 Sep 2014)
# If deprecated USE flag is not set, www-client/midori will
# depend on net-libs/webkit-gtk:3 which fails to compile
# on MIPS
www-client/midori deprecated






[gentoo-commits] gentoo-x86 commit in profiles/arch/mips: package.use.force

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:41:51

  Added:package.use.force
  Log:
  Add package.use.force - Force 'deprecated' USE flag for www-client/midori

Revision  ChangesPath
1.1  profiles/arch/mips/package.use.force

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.force?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.force?rev=1.1&content-type=text/plain

Index: package.use.force
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.force,v 1.1 
2014/09/12 19:41:50 vincent Exp $

# Vicente Olivert Riera  (12 Sep 2014)
# If deprecated USE flag is not set, www-client/midori will
# depend on net-libs/webkit-gtk:3 which fails to compile
# on MIPS
www-client/midori deprecated






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

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:36:03

  Modified: package.use.mask
  Log:
  Revert last commit. Better package.use.force to force 'deprecated' USE flag 
for www-client/midori

Revision  ChangesPath
1.66 profiles/arch/mips/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.66&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.66&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?r1=1.65&r2=1.66

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- package.use.mask12 Sep 2014 19:14:20 -  1.65
+++ package.use.mask12 Sep 2014 19:36:03 -  1.66
@@ -1,11 +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/mips/package.use.mask,v 1.65 
2014/09/12 19:14:20 vincent Exp $
-
-# Vicente Olivert Riera  (12 Sep 2014)
-# www-client/midori[webkit2] depends on net-libs/webkit-gtk:3
-# which fails to compile for MIPS
-www-client/midori webkit2
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.66 
2014/09/12 19:36:03 vincent Exp $
 
 # Vicente Olivert Riera  (11 Sep 2014)
 # www-client/midori[jit] depends on net-libs/webkit-gtk[jit]






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

2014-09-12 Thread Johannes Huber
commit: 010cc5ca11b4decefc0094061e459c14eb18fcf8
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 19:32:04 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 19:33:25 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=010cc5ca

Update README.md

Add content, thanks to gentoo qt.

---
 README.md | 22 +-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 7a3ddb5..8f05309 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,22 @@
-### Repoman status
+# Welcome to the kde overlay!
+
 [![Repoman 
Status](https://travis-ci.org/gentoo/kde.png)](https://travis-ci.org/gentoo/kde)
+
+This is where the Gentoo KDE team develops and maintains ebuilds for
+experimental KDE related packages (pre-releases and "live" code from git).
+For your convenience we provide sets and keyword, masks and unmask files.
+
+The overlay is hosted on Github and on the official Gentoo Overlays
+infrastructure at:
+
+- https://github.com/gentoo/kde
+- https://git.overlays.gentoo.org/gitweb/?p=proj/kde.git
+
+If you have questions, you can find us on IRC in #gentoo-kde on Freenode or at
+[k...@gentoo.org](mailto:k...@gentoo.org).
+
+Bugs should be reported on https://bugs.gentoo.org. Be sure to include
+"[kde overlay]" in the summary of your bug report.
+
+Users wanting to contribute should first read the
+[coding style guide](https://wiki.gentoo.org/wiki/Project:KDE/Coding_style).



[gentoo-commits] gentoo-x86 commit in app-backup/snapper: snapper-0.2.3.ebuild snapper-9999.ebuild ChangeLog snapper-0.2.2-r1.ebuild

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 19:32:35

  Modified: snapper-0.2.3.ebuild snapper-.ebuild ChangeLog
snapper-0.2.2-r1.ebuild
  Log:
  Add subslot dependency on dev-libs/icu
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.2  app-backup/snapper/snapper-0.2.3.ebuild

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

Index: snapper-0.2.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-backup/snapper/snapper-0.2.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- snapper-0.2.3.ebuild9 Jul 2014 07:07:41 -   1.1
+++ snapper-0.2.3.ebuild12 Sep 2014 19:32: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/app-backup/snapper/snapper-0.2.3.ebuild,v 
1.1 2014/07/09 07:07:41 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-backup/snapper/snapper-0.2.3.ebuild,v 
1.2 2014/09/12 19:32:35 dilfridge Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 RDEPEND="dev-libs/boost[threads]
dev-libs/libxml2
-   dev-libs/icu
+   dev-libs/icu:=
sys-apps/acl
sys-apps/dbus
sys-apps/util-linux



1.4  app-backup/snapper/snapper-.ebuild

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

Index: snapper-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-backup/snapper/snapper-.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- snapper-.ebuild 30 May 2014 09:59:55 -  1.3
+++ snapper-.ebuild 12 Sep 2014 19:32:35 -  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-backup/snapper/snapper-.ebuild,v 
1.3 2014/05/30 09:59:55 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-backup/snapper/snapper-.ebuild,v 
1.4 2014/09/12 19:32:35 dilfridge Exp $
 
 EAPI=5
 
@@ -20,7 +20,7 @@
 
 RDEPEND="dev-libs/boost[threads]
dev-libs/libxml2
-   dev-libs/icu
+   dev-libs/icu:=
sys-apps/acl
sys-apps/dbus
sys-apps/util-linux



1.5  app-backup/snapper/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-backup/snapper/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   9 Jul 2014 07:07:41 -   1.4
+++ ChangeLog   12 Sep 2014 19:32:35 -  1.5
@@ -1,6 +1,10 @@
 # ChangeLog for app-backup/snapper
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-backup/snapper/ChangeLog,v 1.4 
2014/07/09 07:07:41 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-backup/snapper/ChangeLog,v 1.5 
2014/09/12 19:32:35 dilfridge Exp $
+
+  12 Sep 2014; Andreas K. Huettel 
+  snapper-0.2.2-r1.ebuild, snapper-0.2.3.ebuild, snapper-.ebuild:
+  Add subslot dependency on dev-libs/icu
 
 *snapper-0.2.3 (09 Jul 2014)
 



1.3  app-backup/snapper/snapper-0.2.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/snapper/snapper-0.2.2-r1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/snapper/snapper-0.2.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/snapper/snapper-0.2.2-r1.ebuild?r1=1.2&r2=1.3

Index: snapper-0.2.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-backup/snapper/snapper-0.2.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- snapper-0.2.2-r1.ebuild 30 May 2014 09:59:55 -  1.2
+++ snapper-0.2.2-r1.

[gentoo-commits] proj/kde:master commit in: net-libs/libnm-qt/

2014-09-12 Thread Michael Palimaka
commit: 447cdbb42f2047728ed51a9d73b4654d6558d286
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 19:30:29 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 19:30:29 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=447cdbb4

[net-libs/libnm-qt] Version bump.

Package-Manager: portage-2.2.10

---
 net-libs/libnm-qt/libnm-qt-5.0.93.ebuild | 35 
 1 file changed, 35 insertions(+)

diff --git a/net-libs/libnm-qt/libnm-qt-5.0.93.ebuild 
b/net-libs/libnm-qt/libnm-qt-5.0.93.ebuild
new file mode 100644
index 000..e998453
--- /dev/null
+++ b/net-libs/libnm-qt/libnm-qt-5.0.93.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_TEST="true"
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="mirror://kde/stable/plasma/5.0.2/${P}.tar.xz"
+else
+   KEYWORDS=""
+fi
+
+DESCRIPTION="NetworkManager bindings for Qt"
+HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libnm-qt";
+
+LICENSE="LGPL-2"
+# maybe remove SLOT when it becomes official KDE Framework
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtdbus:5
+   dev-qt/qtnetwork:5
+   || (
+   >=net-misc/networkmanager-0.9.8.4[consolekit]
+   >=net-misc/networkmanager-0.9.8.4[systemd]
+   )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"



[gentoo-commits] proj/kde:master commit in: net-libs/libmm-qt/

2014-09-12 Thread Michael Palimaka
commit: 3dcc1172575933752b81c23e4db378b8e65ff4bd
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 19:29:50 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 19:29:50 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3dcc1172

[net-libs/libmm-qt] Version bump.

Package-Manager: portage-2.2.10

---
 net-libs/libmm-qt/libmm-qt-5.0.93.ebuild | 30 ++
 1 file changed, 30 insertions(+)

diff --git a/net-libs/libmm-qt/libmm-qt-5.0.93.ebuild 
b/net-libs/libmm-qt/libmm-qt-5.0.93.ebuild
new file mode 100644
index 000..92d065a
--- /dev/null
+++ b/net-libs/libmm-qt/libmm-qt-5.0.93.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="mirror://kde/stable/plasma/5.0.2/${P}.tar.xz"
+else
+   KEYWORDS=""
+fi
+
+DESCRIPTION="Modemmanager bindings for Qt"
+HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libmm-qt";
+
+LICENSE="LGPL-2"
+# maybe remove SLOT when it becomes a official KDE Framework
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtdbus:5
+   dev-qt/qtxml:5
+   net-misc/mobile-broadband-provider-info
+   >=net-misc/networkmanager-0.9.8[modemmanager]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] gentoo-x86 commit in net-misc/modemmanager: modemmanager-1.2.0-r1.ebuild modemmanager-1.2.0.ebuild modemmanager-1.0.0-r2.ebuild modemmanager-0.6.0.0.ebuild ChangeLog

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:28:47

  Modified: modemmanager-1.2.0-r1.ebuild
modemmanager-1.2.0.ebuild
modemmanager-1.0.0-r2.ebuild
modemmanager-0.6.0.0.ebuild ChangeLog
  Log:
  Add ~mips keyword
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
5AE9E7B2E9BBCBA8)

Revision  ChangesPath
1.7  net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild?r1=1.6&r2=1.7

Index: modemmanager-1.2.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- modemmanager-1.2.0-r1.ebuild21 Aug 2014 10:45:35 -  1.6
+++ modemmanager-1.2.0-r1.ebuild12 Sep 2014 19:28:47 -  1.7
@@ -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/net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild,v 
1.6 2014/08/21 10:45:35 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0-r1.ebuild,v 
1.7 2014/09/12 19:28:47 vincent Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="+introspection mbim policykit +qmi qmi-newest vala"
 REQUIRED_USE="
qmi-newest? ( qmi )



1.3  net-misc/modemmanager/modemmanager-1.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0.ebuild?r1=1.2&r2=1.3

Index: modemmanager-1.2.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- modemmanager-1.2.0.ebuild   24 Jul 2014 18:18:56 -  1.2
+++ modemmanager-1.2.0.ebuild   12 Sep 2014 19:28:47 -  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/net-misc/modemmanager/modemmanager-1.2.0.ebuild,v 1.2 
2014/07/24 18:18:56 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-misc/modemmanager/modemmanager-1.2.0.ebuild,v 1.3 
2014/09/12 19:28:47 vincent Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+introspection mbim policykit +qmi qmi-newest vala"
 REQUIRED_USE="
qmi-newest? ( qmi )



1.8  net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild?r1=1.7&r2=1.8

Index: modemmanager-1.0.0-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- modemmanager-1.0.0-r2.ebuild24 Jul 2014 18:18:56 -  1.7
+++ modemmanager-1.0.0-r2.ebuild12 Sep 2014 19:28:47 -  1.8
@@ -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/net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild,v 
1.7 2014/07/24 18:18:56 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-misc/modemmanager/modemmanager-1.0.0-r2.ebuild,v 
1.8 2014/09/12 19:28:47 vincent Exp $
 
 EAPI="5"
 inherit autotools eutils user multilib readme.gentoo toolchain-funcs udev 

[gentoo-commits] proj/kde:master commit in: x11-libs/libkscreen/

2014-09-12 Thread Michael Palimaka
commit: 3b6cce682abc5b349719b8a0e4b74b084a6a7166
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 19:28:07 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 19:28:07 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3b6cce68

[x11-libs/libkscreen] Version bump.

Package-Manager: portage-2.2.10

---
 x11-libs/libkscreen/libkscreen-5.0.93.ebuild | 33 
 1 file changed, 33 insertions(+)

diff --git a/x11-libs/libkscreen/libkscreen-5.0.93.ebuild 
b/x11-libs/libkscreen/libkscreen-5.0.93.ebuild
new file mode 100644
index 000..674f180
--- /dev/null
+++ b/x11-libs/libkscreen/libkscreen-5.0.93.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+VIRTUALX_REQUIRED="test"
+if [[ $PV = ** ]]; then
+   EGIT_BRANCH="frameworks"
+   KEYWORDS=""
+else
+   SRC_URI="mirror://kde/stable/plasma/5.0.2/${P}.tar.xz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+inherit kde5
+
+DESCRIPTION="KDE screen management library"
+HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libkscreen";
+
+LICENSE="GPL-2"
+IUSE=""
+
+# TODO: add X use flag, does not build at the moment
+
+DEPEND="
+   dev-qt/qtgui:5
+   dev-qt/qtx11extras:5
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXrandr
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] gentoo-x86 commit in net-libs/libqmi: libqmi-1.10.2.ebuild libqmi-1.4.0.ebuild libqmi-1.8.0.ebuild libqmi-1.0.0.ebuild ChangeLog

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:27:37

  Modified: libqmi-1.10.2.ebuild libqmi-1.4.0.ebuild
libqmi-1.8.0.ebuild libqmi-1.0.0.ebuild ChangeLog
  Log:
  Add ~mips keyword
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
5AE9E7B2E9BBCBA8)

Revision  ChangesPath
1.2  net-libs/libqmi/libqmi-1.10.2.ebuild

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

Index: libqmi-1.10.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libqmi/libqmi-1.10.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libqmi-1.10.2.ebuild10 Sep 2014 05:19:18 -  1.1
+++ libqmi-1.10.2.ebuild12 Sep 2014 19:27:37 -  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/net-libs/libqmi/libqmi-1.10.2.ebuild,v 1.1 
2014/09/10 05:19:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libqmi/libqmi-1.10.2.ebuild,v 1.2 
2014/09/12 19:27:37 vincent Exp $
 
 EAPI="5"
 
@@ -9,7 +9,7 @@
inherit git-r3 autotools
EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="~amd64 ~arm ~mips ~x86"
SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz";
 fi
 



1.6  net-libs/libqmi/libqmi-1.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.4.0.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.4.0.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.4.0.ebuild?r1=1.5&r2=1.6

Index: libqmi-1.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libqmi/libqmi-1.4.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libqmi-1.4.0.ebuild 31 Aug 2013 14:48:12 -  1.5
+++ libqmi-1.4.0.ebuild 12 Sep 2014 19:27:37 -  1.6
@@ -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/net-libs/libqmi/libqmi-1.4.0.ebuild,v 1.5 
2013/08/31 14:48:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libqmi/libqmi-1.4.0.ebuild,v 1.6 
2014/09/12 19:27:37 vincent Exp $
 
 EAPI="4"
 
@@ -9,7 +9,7 @@
inherit git-2 autotools
EGIT_REPO_URI="git://anongit.freedesktop.org/libqmi"
 else
-   KEYWORDS="amd64 arm x86"
+   KEYWORDS="amd64 arm ~mips x86"
SRC_URI="http://www.freedesktop.org/software/libqmi/${P}.tar.xz";
 fi
 



1.6  net-libs/libqmi/libqmi-1.8.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.8.0.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.8.0.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.8.0.ebuild?r1=1.5&r2=1.6

Index: libqmi-1.8.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libqmi/libqmi-1.8.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libqmi-1.8.0.ebuild 8 Mar 2014 22:12:24 -   1.5
+++ libqmi-1.8.0.ebuild 12 Sep 2014 19:27:37 -  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/net-libs/libqmi/libqmi-1.8.0.ebuild,v 1.5 
2014/03/08 22:12:24 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libqmi/libqmi-1.8.0.ebuild,v 1.6 
2014/09/12 19:27:37 vincent Exp $
 
 EAPI="5"
 
@@ -9,7 +9,7 @@
inherit git-r3 autotools
EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-   KEYWORDS="amd64 arm x86"
+   KEYWORDS="amd64 arm ~mips x86"
SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz";
 fi
 



1.4  net-libs/libqmi/libqmi-1.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.0.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.0.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libqmi/libqmi-1.0.0.ebuild?r1=1.3&r2=1.4

Index: libqmi-1.0.0.ebuild
==

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

2014-09-12 Thread Michael Palimaka
commit: 85b0467e5843fe2020f4ace6f766d7f63c345c3e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 19:27:06 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 19:27:06 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=85b0467e

[media-fonts/oxygen-fonts] Version bump.

Package-Manager: portage-2.2.10

---
 media-fonts/oxygen-fonts/oxygen-fonts-0.4.2.ebuild | 34 ++
 1 file changed, 34 insertions(+)

diff --git a/media-fonts/oxygen-fonts/oxygen-fonts-0.4.2.ebuild 
b/media-fonts/oxygen-fonts/oxygen-fonts-0.4.2.ebuild
new file mode 100644
index 000..019976a
--- /dev/null
+++ b/media-fonts/oxygen-fonts/oxygen-fonts-0.4.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils font
+
+DESCRIPTION="Desktop/GUI font family for integrated use with the KDE desktop"
+HOMEPAGE="https://projects.kde.org/projects/playground/artwork/oxygen-fonts";
+SRC_URI="mirror://kde/stable/plasma/5.0.2/${P}.tar.xz"
+
+LICENSE="OFL-1.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   dev-libs/extra-cmake-modules
+   media-gfx/fontforge
+"
+
+src_configure() {
+   local mycmakeargs=(
+   -DOXYGEN_FONT_INSTALL_DIR="${FONTDIR}"
+   )
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   font_src_install
+}



[gentoo-commits] proj/kde:master commit in: kde-base/kwin/, kde-base/plasma-nm/, kde-base/baloo/, kde-base/ksysguard/, ...

2014-09-12 Thread Michael Palimaka
commit: f2f9b8920a87ad2dd02dfdca9cff8e43921293e6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 19:26:02 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 19:26:02 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f2f9b892

[kde-base] Add Plasma 5.0.2

---
 kde-base/baloo/baloo-5.0.2.ebuild  |  45 +++
 kde-base/breeze/breeze-5.0.2.ebuild|  22 
 kde-base/kde-cli-tools/kde-cli-tools-5.0.2.ebuild  |  50 
 kde-base/kfilemetadata/kfilemetadata-5.0.2.ebuild  |  38 ++
 kde-base/khelpcenter/khelpcenter-5.0.2.ebuild  |  49 
 kde-base/khotkeys/khotkeys-5.0.2.ebuild|  45 +++
 kde-base/kinfocenter/kinfocenter-5.0.2.ebuild  |  70 +++
 kde-base/kio-extras/kio-extras-5.0.2.ebuild|  82 +
 kde-base/kmenuedit/kmenuedit-5.0.2.ebuild  |  44 +++
 kde-base/ksysguard/ksysguard-5.0.2.ebuild  |  47 +++
 kde-base/kwin/kwin-5.0.2.ebuild|  78 
 kde-base/kwrited/kwrited-5.0.2.ebuild  |  23 
 kde-base/libksysguard/libksysguard-5.0.2.ebuild|  53 
 kde-base/milou/milou-5.0.2.ebuild  |  23 
 kde-base/oxygen/oxygen-5.0.2.ebuild|  34 ++
 .../plasma-desktop/plasma-desktop-5.0.2.ebuild | 109 +
 kde-base/plasma-nm/plasma-nm-5.0.2.ebuild  |  62 ++
 .../plasma-workspace-wallpapers-5.0.2.ebuild   |  16 +++
 .../plasma-workspace/plasma-workspace-5.0.2.ebuild | 135 +
 kde-base/powerdevil/powerdevil-5.0.2.ebuild|  56 +
 .../systemsettings/systemsettings-5.0.2.ebuild |  39 ++
 21 files changed, 1120 insertions(+)

diff --git a/kde-base/baloo/baloo-5.0.2.ebuild 
b/kde-base/baloo/baloo-5.0.2.ebuild
new file mode 100644
index 000..5962a40
--- /dev/null
+++ b/kde-base/baloo/baloo-5.0.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit kde5
+
+DESCRIPTION="Framework for searching and managing metadata"
+KEYWORDS=" ~amd64"
+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)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kidletime)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep solid)
+   $(add_kdebase_dep kfilemetadata)
+   =dev-libs/xapian-1.2*[chert]
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtsql:5
+   dev-qt/qtwidgets:5
+   sys-apps/attr
+   !https://projects.kde.org/projects/kde/workspace/breeze";
+KEYWORDS=" ~amd64"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   dev-qt/qtwidgets:5
+"
+RDEPEND="
+   ${DEPEND}
+   dev-qt/qtgraphicaleffects:5
+"

diff --git a/kde-base/kde-cli-tools/kde-cli-tools-5.0.2.ebuild 
b/kde-base/kde-cli-tools/kde-cli-tools-5.0.2.ebuild
new file mode 100644
index 000..8b362e2
--- /dev/null
+++ b/kde-base/kde-cli-tools/kde-cli-tools-5.0.2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_TEST="true"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Tools based on KDE Frameworks 5 to better interact with the 
system"
+HOMEPAGE="https://projects.kde.org/projects/kde/workspace/kde-cli-tools";
+KEYWORDS=" ~amd64"
+IUSE="X"
+
+DEPEND="
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kdesu)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   X? (
+   dev-qt/qtx11extras:5
+   x11-libs/libX11
+   )
+"
+RDEPEND="${DEPEND}"
+
+# requires running kde environment
+RESTRICT="test"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package X Qt5X11Extras)
+   )
+
+   kde5_src_configure
+}

diff --git a/kde-base/kfilemetadata/kfilemetadata-5.0.2.ebuild 
b/kde-base/kfilemetadata/kfilemetadata-5.0.2.ebuild
new file m

[gentoo-commits] gentoo-x86 commit in net-libs/libmbim: libmbim-1.6.0.ebuild ChangeLog

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:24:46

  Modified: libmbim-1.6.0.ebuild ChangeLog
  Log:
  Add ~mips keyword
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
5AE9E7B2E9BBCBA8)

Revision  ChangesPath
1.6  net-libs/libmbim/libmbim-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmbim/libmbim-1.6.0.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmbim/libmbim-1.6.0.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libmbim/libmbim-1.6.0.ebuild?r1=1.5&r2=1.6

Index: libmbim-1.6.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libmbim/libmbim-1.6.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libmbim-1.6.0.ebuild20 Jul 2014 12:11:31 -  1.5
+++ libmbim-1.6.0.ebuild12 Sep 2014 19:24:46 -  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/net-libs/libmbim/libmbim-1.6.0.ebuild,v 1.5 
2014/07/20 12:11:31 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libmbim/libmbim-1.6.0.ebuild,v 1.6 
2014/09/12 19:24:46 vincent Exp $
 
 EAPI="5"
 
@@ -9,7 +9,7 @@
inherit git-r3 autotools
EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
 else
-   KEYWORDS="~alpha amd64 ~arm x86"
+   KEYWORDS="~alpha amd64 ~arm ~mips x86"
SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz";
 fi
 



1.6  net-libs/libmbim/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libmbim/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   20 Jul 2014 12:11:31 -  1.5
+++ ChangeLog   12 Sep 2014 19:24:46 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libmbim
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libmbim/ChangeLog,v 1.5 2014/07/20 
12:11:31 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libmbim/ChangeLog,v 1.6 2014/09/12 
19:24:46 vincent Exp $
+
+  12 Sep 2014; Vicente Olivert Riera  libmbim-1.6.0.ebuild:
+  Add ~mips keyword
 
   20 Jul 2014; Alexey Shvetsov  libmbim-1.6.0.ebuild,
   libmbim-.ebuild:






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

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 19:24:03

  Modified: ChangeLog
  Removed:  poppler-0.26.2.ebuild poppler-0.26.3.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.430app-text/poppler/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v
retrieving revision 1.429
retrieving revision 1.430
diff -u -r1.429 -r1.430
--- ChangeLog   24 Aug 2014 12:31:23 -  1.429
+++ ChangeLog   12 Sep 2014 19:24:03 -  1.430
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/poppler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.429 
2014/08/24 12:31:23 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.430 
2014/09/12 19:24:03 dilfridge Exp $
+
+  12 Sep 2014; Andreas K. Huettel 
+  -poppler-0.26.2.ebuild, -poppler-0.26.3.ebuild:
+  Remove old
 
 *poppler-0.26.4 (24 Aug 2014)
 






[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2014-09-12 Thread Michael Palimaka
commit: 317168972ac2696d92e8b5a261bbd1d91543e264
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 19:23:56 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 19:23:56 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=31716897

[profiles/package.mask] Mask Plasma 5.0.2

---
 profiles/package.mask/plasma-5.0.2 | 26 ++
 1 file changed, 26 insertions(+)

diff --git a/profiles/package.mask/plasma-5.0.2 
b/profiles/package.mask/plasma-5.0.2
new file mode 100644
index 000..7a64cf6
--- /dev/null
+++ b/profiles/package.mask/plasma-5.0.2
@@ -0,0 +1,26 @@
+# Michael Palimaka  (12 Sep 2014)
+# Unreleased.
+~kde-base/baloo-5.0.2
+~kde-base/breeze-5.0.2
+~kde-base/kde-cli-tools-5.0.2
+~kde-base/kfilemetadata-5.0.2
+~kde-base/khelpcenter-5.0.2
+~kde-base/khotkeys-5.0.2
+~kde-base/kinfocenter-5.0.2
+~kde-base/kio-extras-5.0.2
+~kde-base/kmenuedit-5.0.2
+~kde-base/ksysguard-5.0.2
+~kde-base/kwin-5.0.2
+~kde-base/kwrited-5.0.2
+~kde-base/libksysguard-5.0.2
+~kde-base/milou-5.0.2
+~kde-base/oxygen-5.0.2
+~kde-base/plasma-desktop-5.0.2
+~kde-base/plasma-nm-5.0.2
+~kde-base/plasma-workspace-5.0.2
+~kde-base/powerdevil-5.0.2
+~kde-base/systemsettings-5.0.2
+~media-fonts/oxygen-fonts-0.4.2
+~net-libs/libmm-qt-5.0.93
+~net-libs/libnm-qt-5.0.93
+~x11-libs/libkscreen-5.0.93



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

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:14:20

  Modified: package.use.mask
  Log:
  Mask webkit2 USE flag for www-client/midori because it make it depend on 
net-libs/webkit-gtk:3 which fails to compile on MIPS

Revision  ChangesPath
1.65 profiles/arch/mips/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.65&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.65&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?r1=1.64&r2=1.65

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- package.use.mask12 Sep 2014 19:04:13 -  1.64
+++ package.use.mask12 Sep 2014 19:14:20 -  1.65
@@ -1,6 +1,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.64 
2014/09/12 19:04:13 vincent Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.65 
2014/09/12 19:14:20 vincent Exp $
+
+# Vicente Olivert Riera  (12 Sep 2014)
+# www-client/midori[webkit2] depends on net-libs/webkit-gtk:3
+# which fails to compile for MIPS
+www-client/midori webkit2
 
 # Vicente Olivert Riera  (11 Sep 2014)
 # www-client/midori[jit] depends on net-libs/webkit-gtk[jit]






[gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-51.2-r1.ebuild icu-51.2-r2.ebuild

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 19:13:33

  Modified: ChangeLog
  Removed:  icu-51.2-r1.ebuild icu-51.2-r2.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.283dev-libs/icu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.283&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.283&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.282&r2=1.283

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.282
retrieving revision 1.283
diff -u -r1.282 -r1.283
--- ChangeLog   12 Sep 2014 00:49:11 -  1.282
+++ ChangeLog   12 Sep 2014 19:13:33 -  1.283
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.282 2014/09/12 
00:49:11 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.283 2014/09/12 
19:13:33 dilfridge Exp $
+
+  12 Sep 2014; Andreas K. Huettel  -icu-51.2-r1.ebuild,
+  -icu-51.2-r2.ebuild, -files/icu-51.1-CVE-2013-2924.patch:
+  Remove old
 
   12 Sep 2014; Jack Morgan  icu-52.1.ebuild:
   sparc stable for bz512012






[gentoo-commits] gentoo-x86 commit in dev-libs/icu/files: icu-51.1-CVE-2013-2924.patch

2014-09-12 Thread Andreas HAttel (dilfridge)
dilfridge14/09/12 19:13:33

  Removed:  icu-51.1-CVE-2013-2924.patch
  Log:
  Remove old
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)



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

2014-09-12 Thread Johannes Huber (johu)
johu14/09/12 19:13:34

  Modified: ChangeLog package.use.mask
  Log:
  Mask media-sound/tomahawk[qt5].

Revision  ChangesPath
1.720profiles/base/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v
retrieving revision 1.719
retrieving revision 1.720
diff -u -r1.719 -r1.720
--- ChangeLog   6 Sep 2014 17:43:40 -   1.719
+++ ChangeLog   12 Sep 2014 19:13:34 -  1.720
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo base-profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.719 2014/09/06 
17:43:40 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.720 2014/09/12 
19:13:34 johu Exp $
+
+  12 Sep 2014; Johannes Huber  package.use.mask:
+  Mask media-sound/tomahawk[qt5].
 
   06 Sep 2014; Michał Górny  package.use.mask:
   Add missing py2.6 mask for portage.



1.597profiles/base/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/package.use.mask?rev=1.597&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/package.use.mask?rev=1.597&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/package.use.mask?r1=1.596&r2=1.597

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v
retrieving revision 1.596
retrieving revision 1.597
diff -u -r1.596 -r1.597
--- package.use.mask7 Sep 2014 13:22:31 -   1.596
+++ package.use.mask12 Sep 2014 19:13:34 -  1.597
@@ -1,11 +1,15 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v 1.596 
2014/09/07 13:22:31 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v 1.597 
2014/09/12 19:13:34 johu Exp $
 
 # This file requires >=portage-2.1.1
 # New entries go on top.
 #
 
+# Johannes Huber  (12 Sep 2014)
+# Masked until all dependencies are packaged.
+media-sound/tomahawk qt5
+
 # Michał Górny  (06 Sep 2014)
 # Mask the removed/deprecated flags for old ebuilds that do not use
 # the python-r1 eclass.






[gentoo-commits] gentoo-x86 commit in dev-games/clanlib/files: clanlib-2.3.7-doc.patch

2014-09-12 Thread Alfredo Tupone (tupone)
tupone  14/09/12 19:12:38

  Added:clanlib-2.3.7-doc.patch
  Log:
  Fix build with USE=doc. Bug #521340
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.1  dev-games/clanlib/files/clanlib-2.3.7-doc.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/files/clanlib-2.3.7-doc.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/files/clanlib-2.3.7-doc.patch?rev=1.1&content-type=text/plain

Index: clanlib-2.3.7-doc.patch
===
--- Documentation/Utilities/ReferenceDocs/Makefile.old  2014-09-12 
20:06:52.970459560 +0200
+++ Documentation/Utilities/ReferenceDocs/Makefile  2014-09-12 
20:08:17.387048685 +0200
@@ -3,7 +3,10 @@
 LIBS=clanCore
 EXTRA_LIBS=-lpthread
 
-include ../../../Examples/Makefile.conf
+CXXFLAGS += -pthread -std=c++0x -I.
+all: $(EXAMPLE_BIN)
+$(EXAMPLE_BIN): $(OBJF)
+   $(CXX) $(CXXFLAGS) $(OBJF) -o $(EXAMPLE_BIN) 
-Wl,-R../../Sources/Core/.libs -L../../../Sources/Core/.libs -lclan23Core 
$(EXTRA_LIBS)
 
 # EOF #
 






[gentoo-commits] gentoo-x86 commit in dev-games/clanlib: clanlib-2.3.7.ebuild ChangeLog

2014-09-12 Thread Alfredo Tupone (tupone)
tupone  14/09/12 19:12:38

  Modified: clanlib-2.3.7.ebuild ChangeLog
  Log:
  Fix build with USE=doc. Bug #521340
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.2  dev-games/clanlib/clanlib-2.3.7.ebuild

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

Index: clanlib-2.3.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-2.3.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clanlib-2.3.7.ebuild28 Oct 2013 23:31:47 -  1.1
+++ clanlib-2.3.7.ebuild12 Sep 2014 19:12:38 -  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-games/clanlib/clanlib-2.3.7.ebuild,v 
1.1 2013/10/28 23:31:47 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-2.3.7.ebuild,v 
1.2 2014/09/12 19:12:38 tupone Exp $
 
 EAPI=4
 inherit flag-o-matic eutils autotools-utils
@@ -44,7 +44,10 @@
 
 S=${WORKDIR}/${MY_P}
 
-PATCHES=( "${FILESDIR}"/${P}-autotools.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-autotools.patch
+   "${FILESDIR}"/${P}-doc.patch
+)
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_IN_SOURCE_BUILD=1
 DOCS=(
@@ -54,6 +57,11 @@
README
 )
 
+src_prepare() {
+   autotools-utils_src_prepare
+   ln -sf ../../../Sources/API 
Documentation/Utilities/ReferenceDocs/ClanLib
+}
+
 src_configure() {
myeconfargs=(
$(use_enable doc docs)



1.65 dev-games/clanlib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.65&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.65&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog   28 Oct 2013 23:31:47 -  1.64
+++ ChangeLog   12 Sep 2014 19:12:38 -  1.65
@@ -1,6 +1,10 @@
 # ChangeLog for dev-games/clanlib
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.64 
2013/10/28 23:31:47 mr_bones_ Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.65 
2014/09/12 19:12:38 tupone Exp $
+
+  12 Sep 2014; Tupone Alfredo  clanlib-2.3.7.ebuild,
+  +files/clanlib-2.3.7-doc.patch:
+  Fix build with USE=doc. Bug #521340 by flameeyes
 
 *clanlib-2.3.7 (28 Oct 2013)
 






[gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: webkit-gtk-2.4.4.ebuild webkit-gtk-2.2.6.ebuild ChangeLog

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:10:48

  Modified: webkit-gtk-2.4.4.ebuild webkit-gtk-2.2.6.ebuild
ChangeLog
  Log:
  Remove ~mips keyword for net-libs/webkit-gtk:3 because it fails to compile on 
MIPS
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
5AE9E7B2E9BBCBA8)

Revision  ChangesPath
1.11 net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild?r1=1.10&r2=1.11

Index: webkit-gtk-2.4.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- webkit-gtk-2.4.4.ebuild 25 Aug 2014 11:03:04 -  1.10
+++ webkit-gtk-2.4.4.ebuild 12 Sep 2014 19:10:48 -  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/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild,v 1.10 
2014/08/25 11:03:04 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.4.4.ebuild,v 1.11 
2014/09/12 19:10:48 vincent Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2+ BSD"
 SLOT="3/25" # soname version of libwebkit2gtk-3.0
-KEYWORDS="alpha amd64 ~arm ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
 IUSE="aqua coverage debug +egl +geoloc gles2 +gstreamer +introspection +jit 
libsecret +opengl spell wayland +webgl +X"
 # bugs 372493, 416331
 REQUIRED_USE="



1.10 net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild?r1=1.9&r2=1.10

Index: webkit-gtk-2.2.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- webkit-gtk-2.2.6.ebuild 21 Apr 2014 10:30:20 -  1.9
+++ webkit-gtk-2.2.6.ebuild 12 Sep 2014 19:10:48 -  1.10
@@ -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/net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild,v 1.9 
2014/04/21 10:30:20 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.2.6.ebuild,v 1.10 
2014/09/12 19:10:48 vincent Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2+ BSD"
 SLOT="3/29" # soname version
-KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
 IUSE="aqua coverage debug +egl +geoloc gles2 +gstreamer +introspection +jit 
libsecret +opengl spell +webgl"
 # bugs 372493, 416331
 REQUIRED_USE="



1.278net-libs/webkit-gtk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.278&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.278&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.277&r2=1.278

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- ChangeLog   25 Aug 2014 11:03:04 -  1.277
+++ ChangeLog   12 Sep 2014 19:10:48 -  1.278
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.277 
2014/08/25 11:03:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.278 
2014/09/12 19:10:48 vincent Exp $
+
+  12 Sep 2014; Vicente Olivert Riera 
+  webkit-gtk-2.2.6.ebuild, webkit-gtk-2.

[gentoo-commits] gentoo-x86 commit in profiles/default/linux/uclibc/mips: package.use.mask

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:06:25

  Added:package.use.mask
  Log:
  Mask jit USE for www-client/midori on MIPS architecture

Revision  ChangesPath
1.1  profiles/default/linux/uclibc/mips/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/mips/package.use.mask?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/uclibc/mips/package.use.mask?rev=1.1&content-type=text/plain

Index: package.use.mask
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/uclibc/mips/package.use.mask,v 
1.1 2014/09/12 19:06:25 vincent Exp $

# Vicente Olivert Riera  (11 Sep 2014)
# www-client/midori[jit] depends on net-libs/webkit-gtk[jit]
# which is masked on base/package.use.mask and not unmasked
# on arch/mips/package.use.mask by "net-libs/webkit-gtk -jit"
www-client/midori jit






[gentoo-commits] proj/kde:master commit in: app-office/akonadi-server/

2014-09-12 Thread Johannes Huber
commit: 26104d316fd8867deccb1692b3e71fd8afb141f9
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 19:03:41 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 19:03:41 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=26104d31

[app-office/akonadi-server] Enable ASAN by default in configure phase

We check on gcc4.8 in eclass so feature is available.

Package-Manager: portage-2.2.12

---
 app-office/akonadi-server/akonadi-server-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/app-office/akonadi-server/akonadi-server-.ebuild 
b/app-office/akonadi-server/akonadi-server-.ebuild
index d5e29ad..6c84bc6 100644
--- a/app-office/akonadi-server/akonadi-server-.ebuild
+++ b/app-office/akonadi-server/akonadi-server-.ebuild
@@ -27,8 +27,6 @@ IUSE="+mysql postgres sqlite test"
 
 REQUIRED_USE="|| ( sqlite mysql postgres )"
 
-# TODO: new optional dep see ENABLE_ASAN
-
 CDEPEND="
dev-qt/qtdbus:5
dev-qt/qtgui:5
@@ -81,7 +79,7 @@ pkg_setup() {
 
 src_configure() {
local mycmakeargs=(
-   -DKDE_INSTALL_USE_QT_SYS_PATHS=OFF
+   -DENABLE_ASAN=ON
-DINSTALL_QSQLITE_IN_QT_PREFIX=ON
$(cmake-utils_use sqlite AKONADI_BUILD_QSQLITE)
)



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

2014-09-12 Thread Vicente Olivert Riera (vincent)
vincent 14/09/12 19:04:13

  Modified: package.use.mask
  Log:
  Mask jit USE for www-client/midori on MIPS architecture

Revision  ChangesPath
1.64 profiles/arch/mips/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.64&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.64&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?r1=1.63&r2=1.64

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- package.use.mask22 Jul 2014 18:16:50 -  1.63
+++ package.use.mask12 Sep 2014 19:04:13 -  1.64
@@ -1,6 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.63 
2014/07/22 18:16:50 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.64 
2014/09/12 19:04:13 vincent Exp $
+
+# Vicente Olivert Riera  (11 Sep 2014)
+# www-client/midori[jit] depends on net-libs/webkit-gtk[jit]
+# which is masked on base/package.use.mask and not unmasked
+# on arch/mips/package.use.mask by "net-libs/webkit-gtk -jit"
+www-client/midori jit
 
 # Davide Pesavento  (02 Jun 2014)
 # dev-qt/qtdeclarative:4 is not keyworded on mips






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

2014-09-12 Thread Davide Pesavento
commit: 13a49cb260ab856a73af13d81c88a1081dd79bd8
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 18:46:24 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 18:46:24 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=13a49cb2

[sets] Use ~ operator in lxde-qt-live.

---
 sets/lxde-qt-live | 46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/sets/lxde-qt-live b/sets/lxde-qt-live
index e82f069..15d693e 100644
--- a/sets/lxde-qt-live
+++ b/sets/lxde-qt-live
@@ -1,24 +1,24 @@
-=lxde-base/libqtxdg-
-=lxde-base/liblxqt-
-=lxde-base/liblxqt-mount-
-=lxde-base/lxqt-globalkeys-
-=lxde-base/lxqt-notificationd-
-=lxde-base/libsysstat-
-=lxde-base/menu-cache-
-=lxde-base/lxqt-panel-
-=lxde-base/lxsession-
-=lxde-base/lxqt-runner-
-=lxde-base/lxqt-appswitcher-
-=lxde-base/lxqt-policykit-
-=lxde-base/lxqt-openssh-askpass-
-=lxde-base/lxqt-power-
-=lxde-base/lxqt-powermanagement-
-=lxde-base/lxinput-qt-
-=lxde-base/lxrandr-qt-
-=lxde-base/lxqt-about-
-=lxde-base/lxqt-config-
-=lxde-base/lxqt-common-
-=lxde-base/lxmenu-data-
-=lxde-base/libxdsettings-
+~lxde-base/liblxqt-
+~lxde-base/liblxqt-mount-
+~lxde-base/libqtxdg-
+~lxde-base/libsysstat-
+~lxde-base/libxdsettings-
+~lxde-base/lxinput-qt-
+~lxde-base/lxmenu-data-
+~lxde-base/lxqt-about-
+~lxde-base/lxqt-appswitcher-
+~lxde-base/lxqt-common-
+~lxde-base/lxqt-config-
+~lxde-base/lxqt-globalkeys-
+~lxde-base/lxqt-notificationd-
+~lxde-base/lxqt-openssh-askpass-
+~lxde-base/lxqt-panel-
+~lxde-base/lxqt-policykit-
+~lxde-base/lxqt-power-
+~lxde-base/lxqt-powermanagement-
+~lxde-base/lxqt-runner-
+~lxde-base/lxrandr-qt-
+~lxde-base/lxsession-
+~lxde-base/menu-cache-
+~lxde-base/obconf-qt-
 x11-wm/openbox:3
-=lxde-base/obconf-qt-



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

2014-09-12 Thread Davide Pesavento
commit: 4a0412136767aee73eb0c145c1f586f91adbb26c
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 18:47:45 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 18:47:45 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=4a041213

[sets] Rename lxde-qt-live -> lxqt-live

---
 sets/{lxde-qt-live => lxqt-live} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/sets/lxde-qt-live b/sets/lxqt-live
similarity index 100%
rename from sets/lxde-qt-live
rename to sets/lxqt-live



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

2014-09-12 Thread Davide Pesavento
commit: 72d6fc2e1fca3355204e1bf889e4503b8f733628
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 19:01:42 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 19:01:42 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=72d6fc2e

[sets/lxqt-live] Add lxqt-qtplugin.

---
 sets/lxqt-live | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sets/lxqt-live b/sets/lxqt-live
index aca3ac1..fdfb292 100644
--- a/sets/lxqt-live
+++ b/sets/lxqt-live
@@ -14,6 +14,7 @@
 ~lxqt-base/lxqt-policykit-
 ~lxqt-base/lxqt-power-
 ~lxqt-base/lxqt-powermanagement-
+~lxqt-base/lxqt-qtplugin-
 ~lxqt-base/lxqt-runner-
 ~lxqt-base/lxqt-session-
 ~net-misc/lxqt-openssh-askpass-



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

2014-09-12 Thread Davide Pesavento
commit: 46dc4e4072a8de50834f8e5c0842212cf61df555
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 18:59:33 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 18:59:33 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=46dc4e40

[sets/lxqt-live] Fix categories and package names.

---
 sets/lxqt-live | 40 +++-
 1 file changed, 19 insertions(+), 21 deletions(-)

diff --git a/sets/lxqt-live b/sets/lxqt-live
index 15d693e..aca3ac1 100644
--- a/sets/lxqt-live
+++ b/sets/lxqt-live
@@ -1,24 +1,22 @@
-~lxde-base/liblxqt-
-~lxde-base/liblxqt-mount-
-~lxde-base/libqtxdg-
-~lxde-base/libsysstat-
-~lxde-base/libxdsettings-
-~lxde-base/lxinput-qt-
 ~lxde-base/lxmenu-data-
-~lxde-base/lxqt-about-
-~lxde-base/lxqt-appswitcher-
-~lxde-base/lxqt-common-
-~lxde-base/lxqt-config-
-~lxde-base/lxqt-globalkeys-
-~lxde-base/lxqt-notificationd-
-~lxde-base/lxqt-openssh-askpass-
-~lxde-base/lxqt-panel-
-~lxde-base/lxqt-policykit-
-~lxde-base/lxqt-power-
-~lxde-base/lxqt-powermanagement-
-~lxde-base/lxqt-runner-
-~lxde-base/lxrandr-qt-
-~lxde-base/lxsession-
 ~lxde-base/menu-cache-
-~lxde-base/obconf-qt-
+~lxqt-base/liblxqt-
+~lxqt-base/liblxqt-mount-
+~lxqt-base/libsysstat-
+~lxqt-base/lxqt-about-
+~lxqt-base/lxqt-appswitcher-
+~lxqt-base/lxqt-common-
+~lxqt-base/lxqt-config-
+~lxqt-base/lxqt-config-randr-
+~lxqt-base/lxqt-globalkeys-
+~lxqt-base/lxqt-notificationd-
+~lxqt-base/lxqt-panel-
+~lxqt-base/lxqt-policykit-
+~lxqt-base/lxqt-power-
+~lxqt-base/lxqt-powermanagement-
+~lxqt-base/lxqt-runner-
+~lxqt-base/lxqt-session-
+~net-misc/lxqt-openssh-askpass-
+~razorqt-base/libqtxdg-
+~x11-misc/obconf-qt-
 x11-wm/openbox:3



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

2014-09-12 Thread Davide Pesavento
commit: 3a5944203c70a69c0b608a7ea50b13a58d8fdd5e
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 18:45:43 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 18:45:43 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=3a594420

[sets] Remove unmaintained qt-extras-live set.

---
 sets/qt-extras-live | 32 
 1 file changed, 32 deletions(-)

diff --git a/sets/qt-extras-live b/sets/qt-extras-live
deleted file mode 100644
index 8cdea00..000
--- a/sets/qt-extras-live
+++ /dev/null
@@ -1,32 +0,0 @@
-~app-admin/keepassx-
-~app-crypt/pinentry-
-~app-dicts/goldendict-
-~app-emulation/q4wine-
-~dev-db/unixODBC-GUI-Qt-
-~dev-libs/qjson-
-~dev-libs/qoauth-
-~dev-python/pyside-
-~dev-python/shiboken-
-~dev-python/sip-4.
-~dev-qt/qt-creator-
-~dev-vcs/hgview-
-~dev-vcs/qgit-
-~media-gfx/photivo-
-~media-sound/mp3diags-
-~media-sound/qpitch-
-~media-sound/qtmpc-
-~media-video/elltube-
-~media-video/minitube-
-~media-video/xvideoservicethief-
-~net-im/qtwitter-
-~net-im/qwit-
-~net-misc/networkled-
-~net-misc/qconnman-
-~net-misc/qrdc-
-~sci-calculators/speedcrunch-
-~www-client/surfer-
-~x11-libs/libqxt-
-~x11-libs/qtermwidget-
-~x11-libs/remotecontrolwidget-
-~x11-terms/qterminal-
-~x11-themes/xcurtheme-



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2014-09-12 Thread Johannes Huber
commit: 69c3cb01e0d141b96a3d9172fa2aace10e558e08
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 18:12:51 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 18:12:51 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=69c3cb01

[profiles/package.mask] Remove KDE Frameworks 5.1

---
 profiles/package.mask/frameworks-5.1.0 | 61 --
 1 file changed, 61 deletions(-)

diff --git a/profiles/package.mask/frameworks-5.1.0 
b/profiles/package.mask/frameworks-5.1.0
deleted file mode 100644
index 7689f99..000
--- a/profiles/package.mask/frameworks-5.1.0
+++ /dev/null
@@ -1,61 +0,0 @@
-# Michael Palimaka  (07 Aug 2014)
-# Cross-overlay dependencies.
-~kde-frameworks/attica-5.1.0
-~kde-frameworks/frameworkintegration-5.1.0
-~kde-frameworks/kactivities-5.1.0
-~kde-frameworks/kapidox-5.1.0
-~kde-frameworks/karchive-5.1.0
-~kde-frameworks/kauth-5.1.0
-~kde-frameworks/kbookmarks-5.1.0
-~kde-frameworks/kcmutils-5.1.0
-~kde-frameworks/kcodecs-5.1.0
-~kde-frameworks/kcompletion-5.1.0
-~kde-frameworks/kconfig-5.1.0
-~kde-frameworks/kconfigwidgets-5.1.0
-~kde-frameworks/kcoreaddons-5.1.0
-~kde-frameworks/kcrash-5.1.0
-~kde-frameworks/kdbusaddons-5.1.0
-~kde-frameworks/kdeclarative-5.1.0
-~kde-frameworks/kded-5.1.0
-~kde-frameworks/kdelibs4support-5.1.0
-~kde-frameworks/kdesignerplugin-5.1.0
-~kde-frameworks/kdesu-5.1.0
-~kde-frameworks/kdewebkit-5.1.0
-~kde-frameworks/kdnssd-5.1.0
-~kde-frameworks/kdoctools-5.1.0
-~kde-frameworks/kemoticons-5.1.0
-~kde-frameworks/kglobalaccel-5.1.0
-~kde-frameworks/kguiaddons-5.1.0
-~kde-frameworks/khtml-5.1.0
-~kde-frameworks/ki18n-5.1.0
-~kde-frameworks/kiconthemes-5.1.0
-~kde-frameworks/kidletime-5.1.0
-~kde-frameworks/kimageformats-5.1.0
-~kde-frameworks/kinit-5.1.0
-~kde-frameworks/kio-5.1.0
-~kde-frameworks/kitemmodels-5.1.0
-~kde-frameworks/kitemviews-5.1.0
-~kde-frameworks/kjobwidgets-5.1.0
-~kde-frameworks/kjs-5.1.0
-~kde-frameworks/kjsembed-5.1.0
-~kde-frameworks/kmediaplayer-5.1.0
-~kde-frameworks/knewstuff-5.1.0
-~kde-frameworks/knotifications-5.1.0
-~kde-frameworks/knotifyconfig-5.1.0
-~kde-frameworks/kparts-5.1.0
-~kde-frameworks/kplotting-5.1.0
-~kde-frameworks/kpty-5.1.0
-~kde-frameworks/kross-5.1.0
-~kde-frameworks/krunner-5.1.0
-~kde-frameworks/kservice-5.1.0
-~kde-frameworks/ktexteditor-5.1.0
-~kde-frameworks/ktextwidgets-5.1.0
-~kde-frameworks/kunitconversion-5.1.0
-~kde-frameworks/kwallet-5.1.0
-~kde-frameworks/kwidgetsaddons-5.1.0
-~kde-frameworks/kwindowsystem-5.1.0
-~kde-frameworks/kxmlgui-5.1.0
-~kde-frameworks/plasma-5.1.0
-~kde-frameworks/solid-5.1.0
-~kde-frameworks/sonnet-5.1.0
-~kde-frameworks/threadweaver-5.1.0



[gentoo-commits] proj/kde:master commit in: dev-libs/extra-cmake-modules/

2014-09-12 Thread Johannes Huber
commit: e529feae76e953940e0a4c7db1d1b3c5897dbee4
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 18:15:12 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 18:15:12 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e529feae

[dev-libs/extra-cmake-modules] Remove old

Package-Manager: portage-2.2.12

---
 .../extra-cmake-modules-1.1.0.ebuild   | 44 --
 1 file changed, 44 deletions(-)

diff --git a/dev-libs/extra-cmake-modules/extra-cmake-modules-1.1.0.ebuild 
b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.1.0.ebuild
deleted file mode 100644
index 708e0f6..000
--- a/dev-libs/extra-cmake-modules/extra-cmake-modules-1.1.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit cmake-utils python-any-r1
-
-DESCRIPTION="Extra modules and scripts for CMake"
-HOMEPAGE="https://projects.kde.org/projects/kdesupport/extra-cmake-modules";
-SRC_URI="mirror://kde/stable/frameworks/5.1.0/${P}.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc"
-
-DEPEND="
-   app-arch/xz-utils
-   >=dev-util/cmake-2.8.12
-   doc? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]')
-   )
-"
-
-python_check_deps() {
-   has_version "dev-python/sphinx[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use doc && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_build doc HTML_DOCS)
-   $(cmake-utils_use_build doc MAN_DOCS)
-   )
-
-   cmake-utils_src_configure
-}



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2014-09-12 Thread Johannes Huber
commit: c90d409a8a015b2268189e6e46c764e0486f7fa5
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 18:13:59 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 18:13:59 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c90d409a

[profiles/package.mask] Update KDE Frameworks 5.2.0

---
 profiles/package.mask/frameworks-5.2.0 | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/profiles/package.mask/frameworks-5.2.0 
b/profiles/package.mask/frameworks-5.2.0
index 826eb4f..ecea2e7 100644
--- a/profiles/package.mask/frameworks-5.2.0
+++ b/profiles/package.mask/frameworks-5.2.0
@@ -1,6 +1,5 @@
-# Michael Palimaka  (09 Sep 2014)
-# Unreleased.
-~dev-libs/extra-cmake-modules-1.2.0
+# Michael Palimaka  (12 Sep 2014)
+# Depends on Qt5 which is masked.
 ~kde-frameworks/attica-5.2.0
 ~kde-frameworks/frameworkintegration-5.2.0
 ~kde-frameworks/kactivities-5.2.0



[gentoo-commits] proj/qt:master commit in: dev-qt/qtnetwork/, dev-qt/qtpaths/, dev-qt/pixeltool/, dev-qt/qdbusviewer/, ...

2014-09-12 Thread Davide Pesavento
commit: 4f5dbf76baa2dc7e4272c0881dd822f9845eda61
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 18:11:43 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 18:11:43 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=4f5dbf76

Qt 5.4.0_alpha version bump.

---
 dev-qt/assistant/Manifest  |   1 +
 dev-qt/assistant/assistant-5.4.0_alpha.ebuild  |  42 ++
 dev-qt/designer/Manifest   |   1 +
 dev-qt/designer/designer-5.4.0_alpha.ebuild|  41 ++
 dev-qt/linguist-tools/Manifest |   1 +
 .../linguist-tools-5.4.0_alpha.ebuild  |  40 ++
 dev-qt/linguist/Manifest   |   1 +
 dev-qt/linguist/linguist-5.4.0_alpha.ebuild|  33 +
 dev-qt/pixeltool/Manifest  |   1 +
 dev-qt/pixeltool/pixeltool-5.4.0_alpha.ebuild  |  31 +
 dev-qt/qdbus/Manifest  |   1 +
 dev-qt/qdbus/qdbus-5.4.0_alpha.ebuild  |  30 
 dev-qt/qdbusviewer/Manifest|   1 +
 dev-qt/qdbusviewer/qdbusviewer-5.4.0_alpha.ebuild  |  32 +
 dev-qt/qdoc/Manifest   |   1 +
 dev-qt/qdoc/qdoc-5.4.0_alpha.ebuild|  29 
 dev-qt/qtconcurrent/Manifest   |   1 +
 .../qtconcurrent/qtconcurrent-5.4.0_alpha.ebuild   |  28 
 dev-qt/qtcore/Manifest |   1 +
 dev-qt/qtcore/qtcore-5.4.0_alpha.ebuild|  43 ++
 dev-qt/qtdbus/Manifest |   1 +
 dev-qt/qtdbus/qtdbus-5.4.0_alpha.ebuild|  44 ++
 dev-qt/qtdeclarative/Manifest  |   1 +
 .../qtdeclarative/qtdeclarative-5.4.0_alpha.ebuild |  49 +++
 dev-qt/qtdiag/Manifest |   1 +
 dev-qt/qtdiag/qtdiag-5.4.0_alpha.ebuild|  30 
 dev-qt/qtgraphicaleffects/Manifest |   1 +
 .../qtgraphicaleffects-5.4.0_alpha.ebuild  |  31 +
 dev-qt/qtgui/Manifest  |   1 +
 dev-qt/qtgui/qtgui-5.4.0_alpha.ebuild  | 152 +
 dev-qt/qthelp/Manifest |   1 +
 dev-qt/qthelp/qthelp-5.4.0_alpha.ebuild|  36 +
 dev-qt/qtimageformats/Manifest |   1 +
 .../qtimageformats-5.4.0_alpha.ebuild  |  27 
 dev-qt/qtmultimedia/Manifest   |   1 +
 .../qtmultimedia/qtmultimedia-5.4.0_alpha.ebuild   |  64 +
 dev-qt/qtnetwork/Manifest  |   1 +
 dev-qt/qtnetwork/qtnetwork-5.4.0_alpha.ebuild  |  55 
 dev-qt/qtopengl/Manifest   |   1 +
 dev-qt/qtopengl/qtopengl-5.4.0_alpha.ebuild|  39 ++
 dev-qt/qtpaths/Manifest|   1 +
 dev-qt/qtpaths/qtpaths-5.4.0_alpha.ebuild  |  28 
 dev-qt/qtprintsupport/Manifest |   1 +
 .../qtprintsupport-5.4.0_alpha.ebuild  |  46 +++
 dev-qt/qtquick1/Manifest   |   1 +
 dev-qt/qtquick1/qtquick1-5.4.0_alpha.ebuild|  52 +++
 dev-qt/qtquickcontrols/Manifest|   1 +
 .../qtquickcontrols-5.4.0_alpha.ebuild |  36 +
 dev-qt/qtscript/Manifest   |   1 +
 dev-qt/qtscript/qtscript-5.4.0_alpha.ebuild|  33 +
 dev-qt/qtserialport/Manifest   |   1 +
 .../qtserialport/qtserialport-5.4.0_alpha.ebuild   |  23 
 dev-qt/qtsql/Manifest  |   1 +
 dev-qt/qtsql/qtsql-5.4.0_alpha.ebuild  |  58 
 dev-qt/qtsvg/Manifest  |   1 +
 dev-qt/qtsvg/qtsvg-5.4.0_alpha.ebuild  |  27 
 dev-qt/qttest/Manifest |   1 +
 dev-qt/qttest/qttest-5.4.0_alpha.ebuild|  34 +
 dev-qt/qttranslations/Manifest |   1 +
 .../qttranslations-5.4.0_alpha.ebuild  |  23 
 dev-qt/qtwayland/Manifest  |   1 +
 dev-qt/qtwayland/qtwayland-5.4.0_alpha.ebuild  |  42 ++
 dev-qt/qtwebkit/Manifest   |   1 +
 dev-qt/qtwebkit/qtwebkit-5.4.0_alpha.ebuild|  88 
 dev-qt/qtwebsockets/Manifest   |   1 +
 .../qtwebsockets/qtwebsockets-5.4.0_alpha.ebuild   |  31 +
 dev-qt/qtwidgets/Manifest  |   1 +
 dev-qt/qtwidgets/qtwidgets-5.4.0_alpha.ebuild  |  57 
 dev-qt/qtx11extras/Manifest|   1 +
 dev-qt/qtx11extras/qtx11extras-5.4.0_alpha.ebuild  |  24 
 dev-qt/qtxml/Manifest  |   1 +
 dev-qt/qtxml/qtxml-5.4.0_alpha.ebuild  |  30 
 dev-qt/qtxmlpatterns/Manifest  |   1 +
 .../qtxmlpatterns/qtxmlpatterns-5.4.0_alpha.ebuild |  23 
 74 files changed, 1568 insertions

[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/.kde-frameworks-5.1/, Documentation/package.unmask/, ...

2014-09-12 Thread Johannes Huber
commit: ae0ac6249570f98c2feccc5ff8056f1de80adefa
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:54:47 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:54:47 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ae0ac624

[Documentation] Remove KDE Frameworks 5.1

---
 .../.kde-frameworks-5.1/_HEADER_   |  2 -
 .../.kde-frameworks-5.1/kde-frameworks-5.1 |  1 -
 .../.kde-frameworks-5.1/more-deps  | 20 --
 .../kde-frameworks-5.1.keywords| 82 --
 Documentation/package.mask/kde-frameworks-5.1  | 62 
 .../package.unmask/.kde-frameworks-5.1/_HEADER_|  2 -
 .../.kde-frameworks-5.1/kde-frameworks-5.1 |  1 -
 Documentation/package.unmask/kde-frameworks-5.1| 62 
 8 files changed, 232 deletions(-)

diff --git a/Documentation/package.accept_keywords/.kde-frameworks-5.1/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.1/_HEADER_
deleted file mode 100644
index d33649b..000
--- a/Documentation/package.accept_keywords/.kde-frameworks-5.1/_HEADER_
+++ /dev/null
@@ -1,2 +0,0 @@
-# You can use this file to keyword/unkeyword the KDE Frameworks 5.1 release.
-# Edit Documentation/package.keywords/.kde-frameworks-5.1/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.1/kde-frameworks-5.1 
b/Documentation/package.accept_keywords/.kde-frameworks-5.1/kde-frameworks-5.1
deleted file mode 12
index 45f6adf..000
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5.1/kde-frameworks-5.1
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5.1
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.1/more-deps 
b/Documentation/package.accept_keywords/.kde-frameworks-5.1/more-deps
deleted file mode 100644
index bb73d2b..000
--- a/Documentation/package.accept_keywords/.kde-frameworks-5.1/more-deps
+++ /dev/null
@@ -1,20 +0,0 @@
->=dev-libs/extra-cmake-modules-1.1.0
->=kde-frameworks/kf-env-2
->=dev-qt/designer-5.3.1:5
->=dev-qt/qtconcurrent-5.3.1:5
->=dev-qt/qtcore-5.3.1:5
->=dev-qt/qtdbus-5.3.1:5
->=dev-qt/qtdeclarative-5.3.1:5
->=dev-qt/qtgui-5.3.1:5
->=dev-qt/qtnetwork-5.3.1:5
->=dev-qt/qtprintsupport-5.3.1:5
->=dev-qt/qtquick1-5.3.1:5
->=dev-qt/qtquickcontrols-5.3.1:5
->=dev-qt/qtscript-5.3.1:5
->=dev-qt/qtsql-5.3.1:5
->=dev-qt/qtsvg-5.3.1:5
->=dev-qt/qttest-5.3.1:5
->=dev-qt/qtwebkit-5.3.1:5
->=dev-qt/qtwidgets-5.3.1:5
->=dev-qt/qtxml-5.3.1:5
->=dev-qt/qtx11extras-5.3.1:5

diff --git a/Documentation/package.accept_keywords/kde-frameworks-5.1.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.1.keywords
deleted file mode 100644
index c2c7c64..000
--- a/Documentation/package.accept_keywords/kde-frameworks-5.1.keywords
+++ /dev/null
@@ -1,82 +0,0 @@
-# Autogenerated by regenerate-files, DO NOT EDIT.
-# You can use this file to keyword/unkeyword the KDE Frameworks 5.1 release.
-# Edit Documentation/package.keywords/.kde-frameworks-5.1/ files instead.
-=dev-libs/extra-cmake-modules-1.1.0
->=kde-frameworks/kf-env-2
->=dev-qt/designer-5.3.1:5
->=dev-qt/qtconcurrent-5.3.1:5
->=dev-qt/qtcore-5.3.1:5
->=dev-qt/qtdbus-5.3.1:5
->=dev-qt/qtdeclarative-5.3.1:5
->=dev-qt/qtgui-5.3.1:5
->=dev-qt/qtnetwork-5.3.1:5
->=dev-qt/qtprintsupport-5.3.1:5
->=dev-qt/qtquick1-5.3.1:5
->=dev-qt/qtquickcontrols-5.3.1:5
->=dev-qt/qtscript-5.3.1:5
->=dev-qt/qtsql-5.3.1:5
->=dev-qt/qtsvg-5.3.1:5
->=dev-qt/qttest-5.3.1:5
->=dev-qt/qtwebkit-5.3.1:5
->=dev-qt/qtwidgets-5.3.1:5
->=dev-qt/qtxml-5.3.1:5
->=dev-qt/qtx11extras-5.3.1:5

diff --git a/Documentation/package.mask/kde-frameworks-5.1 
b/Documentation/package.mask/kde-frameworks-5.1
deleted file mode 100644
index 185726f..000
--- a/Documentation/package.mask/kde-frameworks-5.1
+++ /dev/null
@@ -1,62 +0,0 @@
-# Autogenerated by regenerate-files, DO NOT EDIT.
-# You can use this file to unmask the KDE Frameworks 5.1 release.
-# Edit Documentation/package.unmask/.kde-frameworks-5.1/ files instead.
->=kde-frameworks/attica-5.1
->=kde-frameworks/frameworkintegration-5.1
->=kde-frameworks/kactivities-5.1
->=kde-frameworks/kapidox-5.1
->=kde-frameworks/karchive-5.1
->=kde-frameworks/kauth-5.1
->=kde-frameworks/kbookmarks-5.1
->=kde-frameworks/kcmutils-5.1
->=kde-frameworks/kcodecs-5.1
->=kde-frameworks/kcompletion-5.1
->=kde-frameworks/kconfig-5.1
->=kde-frameworks/kconfigwidgets-5.1
->=kde-frameworks/kcoreaddons-5.1
->=kde-frameworks/kcrash-5.1
->=kde-frameworks/kdbusaddons-5.1
->=kde-frameworks/kdeclarative-5.1
->=kde-frameworks/kded-5.1
->=kde-frameworks/kdelibs4support-5.1
->=kde-frameworks/kdesignerplugin-5.1
->=kde-frameworks/kdesu-5.1
->=kde-frameworks/kdewebkit-5.1
->=kde-frameworks/kdnssd-5.1
->=kde-frameworks/kdoctools-5.1
->=kde-frameworks/kemoticons-5.1
->=kde-frameworks/kglobalaccel-5.1
->=kde-frameworks/kguiaddons-5.1
->=kde-frameworks/khtml-5.1
-

[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/, ...

2014-09-12 Thread Johannes Huber
commit: 944506e20f779820cc50fd80ee61d145d3009211
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:51:52 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:51:52 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=944506e2

[Documentation] Add KDE Frameworks 5.2

---
 Documentation/maintainers/regenerate-files |  4 +-
 .../.kde-frameworks-5.2/_HEADER_   |  2 +
 .../.kde-frameworks-5.2/kde-frameworks-5.2 |  1 +
 .../.kde-frameworks-5.2/more-deps  | 20 ++
 .../kde-frameworks-5.2.keywords| 82 ++
 Documentation/package.mask/kde-frameworks-5.2  | 62 
 .../package.unmask/.kde-frameworks-5.2/_HEADER_|  2 +
 .../.kde-frameworks-5.2/kde-frameworks-5.2 |  1 +
 Documentation/package.unmask/kde-frameworks-5.2| 62 
 9 files changed, 234 insertions(+), 2 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index e04b213..6ae0c12 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -12,8 +12,8 @@ HEADER="# Autogenerated by ${SCRIPT}, DO NOT EDIT."
 KDE_RELEASES="4.11 4.12 4.13 4.14"
 RELEASE=${RELEASE:-4.12} # current stable
 
-KF_RELEASES="5.1"
-KF_RELEASE=${KF_RELEASE:-5.1}
+KF_RELEASES="5.2"
+KF_RELEASE=${KF_RELEASE:-5.2}
 
 PLASMA_RELEASES="5.0"
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.0}

diff --git a/Documentation/package.accept_keywords/.kde-frameworks-5.2/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.2/_HEADER_
new file mode 100644
index 000..610d248
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-frameworks-5.2/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.2 release.
+# Edit Documentation/package.keywords/.kde-frameworks-5.2/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.2/kde-frameworks-5.2 
b/Documentation/package.accept_keywords/.kde-frameworks-5.2/kde-frameworks-5.2
new file mode 12
index 000..e23c550
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.2/kde-frameworks-5.2
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-5.2
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.2/more-deps 
b/Documentation/package.accept_keywords/.kde-frameworks-5.2/more-deps
new file mode 100644
index 000..7850029
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-frameworks-5.2/more-deps
@@ -0,0 +1,20 @@
+>=dev-libs/extra-cmake-modules-1.2.0
+>=kde-frameworks/kf-env-2
+>=dev-qt/designer-5.3.1:5
+>=dev-qt/qtconcurrent-5.3.1:5
+>=dev-qt/qtcore-5.3.1:5
+>=dev-qt/qtdbus-5.3.1:5
+>=dev-qt/qtdeclarative-5.3.1:5
+>=dev-qt/qtgui-5.3.1:5
+>=dev-qt/qtnetwork-5.3.1:5
+>=dev-qt/qtprintsupport-5.3.1:5
+>=dev-qt/qtquick1-5.3.1:5
+>=dev-qt/qtquickcontrols-5.3.1:5
+>=dev-qt/qtscript-5.3.1:5
+>=dev-qt/qtsql-5.3.1:5
+>=dev-qt/qtsvg-5.3.1:5
+>=dev-qt/qttest-5.3.1:5
+>=dev-qt/qtwebkit-5.3.1:5
+>=dev-qt/qtwidgets-5.3.1:5
+>=dev-qt/qtxml-5.3.1:5
+>=dev-qt/qtx11extras-5.3.1:5

diff --git a/Documentation/package.accept_keywords/kde-frameworks-5.2.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.2.keywords
new file mode 100644
index 000..3d9a60a
--- /dev/null
+++ b/Documentation/package.accept_keywords/kde-frameworks-5.2.keywords
@@ -0,0 +1,82 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.2 release.
+# Edit Documentation/package.keywords/.kde-frameworks-5.2/ files instead.
+=dev-libs/extra-cmake-modules-1.2.0
+>=kde-frameworks/kf-env-2
+>=dev-qt/designer-5.3.1:5
+>=dev-qt/qtconcurrent-5.3.1:5
+>=dev-qt/qtcore-5.3.1:5
+>=dev-qt/qtdbus-5.3.1:5
+>=dev-qt/qtdeclarative-5.3.1:5
+>=dev-qt/qtgui-5.3.1:5
+>=dev-qt/qtnetwork-5.3.1:5
+>=dev-qt/qtprintsupport-5.3.1:5
+>=dev-qt/qtquick1-5.3.1:5
+>=dev-qt/qtquickcontrols-5.3.1:5
+>=dev-qt/qtscript-5.3.1:5
+>=dev-qt/qtsql-5.3.1:5
+>=dev-qt/qtsvg-5.3.1:5
+>=dev-qt/qttest-5.3.1:5
+>=dev-qt/qtwebkit-5.3.1:5
+>=dev-qt/qtwidgets-5.3.1:5
+>=dev-qt/qtxml-5.3.1:5
+>=dev-qt/qtx11extras-5.3.1:5

diff --git a/Documentation/package.mask/kde-frameworks-5.2 
b/Documentation/package.mask/kde-frameworks-5.2
new file mode 100644
index 000..0d67374
--- /dev/null
+++ b/Documentation/package.mask/kde-frameworks-5.2
@@ -0,0 +1,62 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to unmask the KDE Frameworks 5.2 release.
+# Edit Documentation/package.unmask/.kde-frameworks-5.2/ files instead.
+>=kde-frameworks/attica-5.2
+>=kde-frameworks/frameworkintegration-5.2
+>=kde-frameworks/kactivities-5.2
+>=kde-frameworks/kapidox-5.2
+>=kde-frameworks/karchive-5.2
+>=kde-frameworks/kauth-5.2
+>=kde-frameworks/kbookmarks-5.2
+>=kde-frameworks/kcmutils-5.2
+>=kde-frameworks

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

2014-09-12 Thread Johannes Huber
commit: 1759989bf56a39bec9ddb7214b006c37ca06545c
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:52:39 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:52:39 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1759989b

[sets] Remove kde-frameworks-5.1

---
 sets/kde-frameworks-5.1 | 59 -
 1 file changed, 59 deletions(-)

diff --git a/sets/kde-frameworks-5.1 b/sets/kde-frameworks-5.1
deleted file mode 100644
index 0075990..000
--- a/sets/kde-frameworks-5.1
+++ /dev/null
@@ -1,59 +0,0 @@
-

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

2014-09-12 Thread Johannes Huber
commit: 9c4d66e98a85174634120ab9c310603ce1519238
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:45:44 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:45:44 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9c4d66e9

[sets] Add kde-frameworks-5.2

---
 sets/kde-frameworks-5.2 | 59 +
 1 file changed, 59 insertions(+)

diff --git a/sets/kde-frameworks-5.2 b/sets/kde-frameworks-5.2
new file mode 100644
index 000..9768158
--- /dev/null
+++ b/sets/kde-frameworks-5.2
@@ -0,0 +1,59 @@
+

[gentoo-commits] proj/kde:master commit in: kde-base/libplasmagenericshell/, kde-base/libtaskmanager/, ...

2014-09-12 Thread Johannes Huber
commit: 4073d7143120835f57530b4cb6c37335bfb1b64f
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:41:46 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:41:46 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=4073d714

[kde-base] Add KDE Workspace 4.11.12

Package-Manager: portage-2.2.12

---
 .../freespacenotifier-4.11.12.ebuild   |  12 ++
 kde-base/kcheckpass/kcheckpass-4.11.12.ebuild  |  33 +
 kde-base/kcminit/kcminit-4.11.12.ebuild|  17 +++
 .../kdebase-cursors/kdebase-cursors-4.11.12.ebuild |  13 ++
 .../kdebase-startkde-4.11.12.ebuild|  92 
 kde-base/kdm/kdm-4.11.12.ebuild| 162 +
 kde-base/kephal/kephal-4.11.12.ebuild  |  25 
 kde-base/khotkeys/khotkeys-4.11.12.ebuild  |  23 +++
 kde-base/kinfocenter/kinfocenter-4.11.12.ebuild|  37 +
 kde-base/klipper/klipper-4.11.12.ebuild|  31 
 kde-base/kmenuedit/kmenuedit-4.11.12.ebuild|  31 
 kde-base/krunner/krunner-4.11.12.ebuild|  51 +++
 kde-base/kscreensaver/kscreensaver-4.11.12.ebuild  |  22 +++
 kde-base/ksmserver/ksmserver-4.11.12.ebuild|  43 ++
 kde-base/ksplash/ksplash-4.11.12.ebuild|  38 +
 .../kstartupconfig/kstartupconfig-4.11.12.ebuild   |  12 ++
 kde-base/kstyles/kstyles-4.11.12.ebuild|  22 +++
 kde-base/ksysguard/ksysguard-4.11.12.ebuild|  46 ++
 kde-base/ksystraycmd/ksystraycmd-4.11.12.ebuild|  15 ++
 kde-base/kwin/kwin-4.11.12.ebuild  |  80 ++
 kde-base/kwrited/kwrited-4.11.12.ebuild|  16 ++
 .../libkworkspace/libkworkspace-4.11.12.ebuild |  34 +
 .../liboxygenstyle/liboxygenstyle-4.11.12.ebuild   |  17 +++
 .../libplasmaclock/libplasmaclock-4.11.12.ebuild   |  33 +
 .../libplasmagenericshell-4.11.12.ebuild   |  28 
 .../libtaskmanager/libtaskmanager-4.11.12.ebuild   |  35 +
 .../plasma-workspace-4.11.12.ebuild| 122 
 kde-base/powerdevil/powerdevil-4.11.12.ebuild  |  32 
 .../qguiplatformplugin_kde-4.11.12.ebuild  |  12 ++
 .../solid-actions-kcm-4.11.12.ebuild   |  19 +++
 .../systemsettings/systemsettings-4.11.12.ebuild   |  96 
 31 files changed, 1249 insertions(+)

diff --git a/kde-base/freespacenotifier/freespacenotifier-4.11.12.ebuild 
b/kde-base/freespacenotifier/freespacenotifier-4.11.12.ebuild
new file mode 100644
index 000..6a79633
--- /dev/null
+++ b/kde-base/freespacenotifier/freespacenotifier-4.11.12.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KMNAME="kde-workspace"
+inherit kde4-meta
+
+DESCRIPTION="A module that monitors free disk space on the home dir"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"

diff --git a/kde-base/kcheckpass/kcheckpass-4.11.12.ebuild 
b/kde-base/kcheckpass/kcheckpass-4.11.12.ebuild
new file mode 100644
index 000..bf1d2e6
--- /dev/null
+++ b/kde-base/kcheckpass/kcheckpass-4.11.12.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KMNAME="kde-workspace"
+inherit kde4-meta
+
+DESCRIPTION="A simple password checker, used by any software in need of user 
authentication"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug pam"
+
+RDEPEND="
+   pam? (
+   >=kde-base/kdebase-pam-7
+   virtual/pam
+   )
+"
+
+src_prepare() {
+   kde4-meta_src_prepare
+
+   use pam && epatch "${FILESDIR}/${PN}-4.4.2-no-SUID-no-GUID.patch"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_with pam)
+   )
+
+   kde4-meta_src_configure
+}

diff --git a/kde-base/kcminit/kcminit-4.11.12.ebuild 
b/kde-base/kcminit/kcminit-4.11.12.ebuild
new file mode 100644
index 000..7380eb9
--- /dev/null
+++ b/kde-base/kcminit/kcminit-4.11.12.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KMNAME="kde-workspace"
+inherit kde4-meta
+
+DESCRIPTION="KCMInit - runs startups initialization for Control Modules"
+KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+   x11-libs/libX11
+"
+RDEPEND="${DEPEND}"

diff --git a/kde-base/kdebase-cursors/kdebase-cursors-4.11.12.ebuild 
b/kde-base/kdebase-cursors/kdebase-cursors-4.11.12.ebuild
new file mode 100644
index 000..ad7a13b
--- /dev/null
+++ b/kde-base/kdebase-cursors/kdebase-cursors-4.11.12.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+E

[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2014-09-12 Thread Johannes Huber
commit: 6397a39b03001dd4188e82bfabdf86006b6a62fc
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:42:18 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:42:18 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=6397a39b

[profiles/package.mask] Add KDE Workspace 4.11.12

---
 profiles/package.mask/kde-workspace-4.11.12 | 34 +
 1 file changed, 34 insertions(+)

diff --git a/profiles/package.mask/kde-workspace-4.11.12 
b/profiles/package.mask/kde-workspace-4.11.12
new file mode 100644
index 000..5e80ae5
--- /dev/null
+++ b/profiles/package.mask/kde-workspace-4.11.12
@@ -0,0 +1,34 @@
+# Johannes Huber  (12 Sep 2014)
+# KDE Workspace 4.11.12
+# Unreleased.
+~kde-base/freespacenotifier-4.11.12
+~kde-base/kcheckpass-4.11.12
+~kde-base/kcminit-4.11.12
+~kde-base/kdebase-cursors-4.11.12
+~kde-base/kdebase-startkde-4.11.12
+~kde-base/kdm-4.11.12
+~kde-base/kephal-4.11.12
+~kde-base/khotkeys-4.11.12
+~kde-base/kinfocenter-4.11.12
+~kde-base/klipper-4.11.12
+~kde-base/kmenuedit-4.11.12
+~kde-base/krunner-4.11.12
+~kde-base/kscreensaver-4.11.12
+~kde-base/ksmserver-4.11.12
+~kde-base/ksplash-4.11.12
+~kde-base/kstartupconfig-4.11.12
+~kde-base/kstyles-4.11.12
+~kde-base/ksysguard-4.11.12
+~kde-base/ksystraycmd-4.11.12
+~kde-base/kwin-4.11.12
+~kde-base/kwrited-4.11.12
+~kde-base/libkworkspace-4.11.12
+~kde-base/liboxygenstyle-4.11.12
+~kde-base/libplasmaclock-4.11.12
+~kde-base/libplasmagenericshell-4.11.12
+~kde-base/libtaskmanager-4.11.12
+~kde-base/plasma-workspace-4.11.12
+~kde-base/powerdevil-4.11.12
+~kde-base/qguiplatformplugin_kde-4.11.12
+~kde-base/solid-actions-kcm-4.11.12
+~kde-base/systemsettings-4.11.12



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2014-09-12 Thread Johannes Huber
commit: 1754e1cab685da4a3666b0227d2d06322bca2abd
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 17:26:29 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 17:26:29 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1754e1ca

[profiles/package.mask] Add KDE SC 4.14.1

---
 profiles/package.mask/kde-4.14.1 | 301 +++
 1 file changed, 301 insertions(+)

diff --git a/profiles/package.mask/kde-4.14.1 b/profiles/package.mask/kde-4.14.1
new file mode 100644
index 000..8756625
--- /dev/null
+++ b/profiles/package.mask/kde-4.14.1
@@ -0,0 +1,301 @@
+# Johannes Huber  (12 Sep 2014)
+# KDE SC 4.14.1
+# Unreleased.
+~kde-base/kdeplasma-addons-4.14.1
+~kde-base/kde-l10n-4.14.1
+~kde-base/dolphin-4.14.1
+~kde-base/kdepasswd-4.14.1
+~kde-base/kdialog-4.14.1
+~kde-base/keditbookmarks-4.14.1
+~kde-base/kfind-4.14.1
+~kde-base/kfmclient-4.14.1
+~kde-base/konqueror-4.14.1
+~kde-base/konq-plugins-4.14.1
+~kde-base/konsole-4.14.1
+~kde-base/kwrite-4.14.1
+~kde-base/libkonq-4.14.1
+~kde-base/nsplugins-4.14.1
+~kde-base/plasma-apps-4.14.1
+~kde-base/jovie-4.14.1
+~kde-base/kaccessible-4.14.1
+~kde-base/kdeaccessibility-meta-4.14.1
+~kde-base/kmag-4.14.1
+~kde-base/kmousetool-4.14.1
+~kde-base/kmouth-4.14.1
+~kde-base/kcron-4.14.1
+~kde-base/kdeadmin-meta-4.14.1
+~kde-base/ksystemlog-4.14.1
+~kde-base/kuser-4.14.1
+~kde-base/kdeartwork-colorschemes-4.14.1
+~kde-base/kdeartwork-desktopthemes-4.14.1
+~kde-base/kdeartwork-emoticons-4.14.1
+~kde-base/kdeartwork-iconthemes-4.14.1
+~kde-base/kdeartwork-kscreensaver-4.14.1
+~kde-base/kdeartwork-meta-4.14.1
+~kde-base/kdeartwork-styles-4.14.1
+~kde-base/kdeartwork-wallpapers-4.14.1
+~kde-base/kdeartwork-weatherwallpapers-4.14.1
+~kde-base/attica-4.14.1
+~kde-base/drkonqi-4.14.1
+~kde-base/kcmshell-4.14.1
+~kde-base/kcontrol-4.14.1
+~kde-base/kdebase-data-4.14.1
+~kde-base/kdebase-desktoptheme-4.14.1
+~kde-base/kdebase-kioslaves-4.14.1
+~kde-base/kdebase-menu-4.14.1
+~kde-base/kdebase-menu-icons-4.14.1
+~kde-base/kdebase-runtime-meta-4.14.1
+~kde-base/kdebugdialog-4.14.1
+~kde-base/kdesu-4.14.1
+~kde-base/kde-base-artwork-4.14.1
+~kde-base/kde-wallpapers-4.14.1
+~kde-base/kdontchangethehostname-4.14.1
+~kde-base/keditfiletype-4.14.1
+~kde-base/kfile-4.14.1
+~kde-base/kglobalaccel-4.14.1
+~kde-base/khelpcenter-4.14.1
+~kde-base/kiconfinder-4.14.1
+~kde-base/kimgio-4.14.1
+~kde-base/kioclient-4.14.1
+~kde-base/kmimetypefinder-4.14.1
+~kde-base/knetattach-4.14.1
+~kde-base/knewstuff-4.14.1
+~kde-base/knotify-4.14.1
+~kde-base/kpasswdserver-4.14.1
+~kde-base/kquitapp-4.14.1
+~kde-base/kreadconfig-4.14.1
+~kde-base/kstart-4.14.1
+~kde-base/ktimezoned-4.14.1
+~kde-base/ktraderclient-4.14.1
+~kde-base/kuiserver-4.14.1
+~kde-base/kurifilter-plugins-4.14.1
+~kde-base/kwalletd-4.14.1
+~kde-base/nepomuk-4.14.1
+~kde-base/phonon-kde-4.14.1
+~kde-base/plasma-runtime-4.14.1
+~kde-base/renamedlg-plugins-4.14.1
+~kde-base/solid-runtime-4.14.1
+~kde-base/freespacenotifier-4.14.1
+~kde-base/kcheckpass-4.14.1
+~kde-base/kcminit-4.14.1
+~kde-base/kdebase-cursors-4.14.1
+~kde-base/kdebase-startkde-4.14.1
+~kde-base/kdm-4.14.1
+~kde-base/kephal-4.14.1
+~kde-base/khotkeys-4.14.1
+~kde-base/kinfocenter-4.14.1
+~kde-base/klipper-4.14.1
+~kde-base/kmenuedit-4.14.1
+~kde-base/krunner-4.14.1
+~kde-base/kscreensaver-4.14.1
+~kde-base/ksmserver-4.14.1
+~kde-base/ksplash-4.14.1
+~kde-base/kstartupconfig-4.14.1
+~kde-base/kstyles-4.14.1
+~kde-base/ksysguard-4.14.1
+~kde-base/ksystraycmd-4.14.1
+~kde-base/kwin-4.14.1
+~kde-base/kwrited-4.14.1
+~kde-base/libkworkspace-4.14.1
+~kde-base/liboxygenstyle-4.14.1
+~kde-base/libplasmaclock-4.14.1
+~kde-base/libplasmagenericshell-4.14.1
+~kde-base/libtaskmanager-4.14.1
+~kde-base/plasma-workspace-4.14.1
+~kde-base/powerdevil-4.14.1
+~kde-base/qguiplatformplugin_kde-4.14.1
+~kde-base/solid-actions-kcm-4.14.1
+~kde-base/systemsettings-4.14.1
+~kde-base/kdebindings-meta-4.14.1
+~kde-base/kimono-4.14.1
+~kde-base/korundum-4.14.1
+~kde-base/krossjava-4.14.1
+~kde-base/krosspython-4.14.1
+~kde-base/krossruby-4.14.1
+~kde-base/perlkde-4.14.1
+~kde-base/perlqt-4.14.1
+~kde-base/pykde4-4.14.1
+~kde-base/smokegen-4.14.1
+~kde-base/smokekde-4.14.1
+~kde-base/smokeqt-4.14.1
+~kde-base/qtruby-4.14.1
+~kde-base/qyoto-4.14.1
+~kde-base/analitza-4.14.1
+~kde-base/artikulate-4.14.1
+~kde-base/blinken-4.14.1
+~kde-base/cantor-4.14.1
+~kde-base/kalgebra-4.14.1
+~kde-base/kalzium-4.14.1
+~kde-base/kanagram-4.14.1
+~kde-base/kbruch-4.14.1
+~kde-base/kdeedu-meta-4.14.1
+~kde-base/kgeography-4.14.1
+~kde-base/khangman-4.14.1
+~kde-base/kig-4.14.1
+~kde-base/kiten-4.14.1
+~kde-base/klettres-4.14.1
+~kde-base/kmplot-4.14.1
+~kde-base/kqtquickcharts-4.14.1
+~kde-base/kstars-4.14.1
+~kde-base/ktouch-4.14.1
+~kde-base/kturtle-4.14.1
+~kde-base/kwordquiz-4.14.1
+~kde-base/libkdeedu-4.14.1
+~kde-base/marble-4.14.1
+~kde-base/pairs-4.14.1
+~kde-base/parley-4.14.1
+~kde-base/rocs-4.14.1
+~kde-base

[gentoo-commits] gentoo-x86 commit in dev-perl/Bit-Vector: Bit-Vector-7.300.0.ebuild ChangeLog

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:38:15

  Modified: ChangeLog
  Added:Bit-Vector-7.300.0.ebuild
  Log:
  Version bump wrt bug #521358
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.59 dev-perl/Bit-Vector/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Bit-Vector/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   21 Aug 2014 14:52:11 -  1.58
+++ ChangeLog   12 Sep 2014 17:38:15 -  1.59
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/Bit-Vector
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Bit-Vector/ChangeLog,v 1.58 
2014/08/21 14:52:11 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Bit-Vector/ChangeLog,v 1.59 
2014/09/12 17:38:15 zlogene Exp $
+
+*Bit-Vector-7.300.0 (12 Sep 2014)
+
+  12 Sep 2014; Mikle Kolyada  +Bit-Vector-7.300.0.ebuild:
+  Version bump wrt bug #521358
 
 *Bit-Vector-7.200.0-r1 (21 Aug 2014)
 



1.1  dev-perl/Bit-Vector/Bit-Vector-7.300.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Bit-Vector/Bit-Vector-7.300.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Bit-Vector/Bit-Vector-7.300.0.ebuild?rev=1.1&content-type=text/plain

Index: Bit-Vector-7.300.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Bit-Vector/Bit-Vector-7.300.0.ebuild,v 1.1 
2014/09/12 17:38:15 zlogene Exp $

EAPI=5

MODULE_AUTHOR=STBEY
MODULE_VERSION=7.3
inherit perl-module

DESCRIPTION="Efficient bit vector, set of integers and big int math library"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
IUSE=""

RDEPEND="dev-perl/Carp-Clan
>=virtual/perl-Storable-2.20"
DEPEND="${RDEPEND}"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Pango: ChangeLog Pango-1.223.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:30:33

  Modified: ChangeLog
  Removed:  Pango-1.223.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.45 dev-perl/Pango/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Pango/ChangeLog?rev=1.45&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Pango/ChangeLog?rev=1.45&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Pango/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Pango/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   4 Mar 2014 20:16:04 -   1.44
+++ ChangeLog   12 Sep 2014 17:30:33 -  1.45
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Pango
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Pango/ChangeLog,v 1.44 2014/03/04 
20:16:04 vincent Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Pango/ChangeLog,v 1.45 2014/09/12 
17:30:33 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -Pango-1.223.0.ebuild:
+  Drop old.
 
   04 Mar 2014; Vicente Olivert Riera  Pango-1.224.0.ebuild:
   Add ~mips keyword.






[gentoo-commits] gentoo-x86 commit in dev-perl/B-Utils: ChangeLog B-Utils-0.210.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:27:51

  Modified: ChangeLog
  Removed:  B-Utils-0.210.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.24 dev-perl/B-Utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/ChangeLog?rev=1.24&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/ChangeLog?rev=1.24&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   26 Aug 2014 15:56:32 -  1.23
+++ ChangeLog   12 Sep 2014 17:27:51 -  1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/B-Utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/ChangeLog,v 1.23 
2014/08/26 15:56:32 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/ChangeLog,v 1.24 
2014/09/12 17:27:51 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -B-Utils-0.210.0.ebuild:
+  Drop old.
 
 *B-Utils-0.220.0-r1 (26 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/Config-Properties: ChangeLog Config-Properties-1.750.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:26:40

  Modified: ChangeLog
  Removed:  Config-Properties-1.750.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.7  dev-perl/Config-Properties/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Config-Properties/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   19 Feb 2014 10:58:46 -  1.6
+++ ChangeLog   12 Sep 2014 17:26:39 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Config-Properties
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Config-Properties/ChangeLog,v 1.6 
2014/02/19 10:58:46 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Config-Properties/ChangeLog,v 1.7 
2014/09/12 17:26:39 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada 
+  -Config-Properties-1.750.0.ebuild:
+  Drop old.
 
 *Config-Properties-1.760.0 (19 Feb 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/ImageInfo: ChangeLog ImageInfo-1.330.0.ebuild ImageInfo-1.320.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:25:29

  Modified: ChangeLog
  Removed:  ImageInfo-1.330.0.ebuild ImageInfo-1.320.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.108dev-perl/ImageInfo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ImageInfo/ChangeLog?rev=1.108&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ImageInfo/ChangeLog?rev=1.108&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ImageInfo/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/ImageInfo/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog   6 Mar 2014 10:34:03 -   1.107
+++ ChangeLog   12 Sep 2014 17:25:29 -  1.108
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/ImageInfo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/ImageInfo/ChangeLog,v 1.107 
2014/03/06 10:34:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/ImageInfo/ChangeLog,v 1.108 
2014/09/12 17:25:29 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -ImageInfo-1.320.0.ebuild,
+  -ImageInfo-1.330.0.ebuild:
+  Drop old.
 
   06 Mar 2014; Agostino Sarubbo  ImageInfo-1.360.0.ebuild:
   Stable for ppc64, wrt bug #495424






[gentoo-commits] gentoo-x86 commit in dev-perl/IO-Pager: ChangeLog IO-Pager-0.300.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:23:54

  Modified: ChangeLog
  Removed:  IO-Pager-0.300.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.37 dev-perl/IO-Pager/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/IO-Pager/ChangeLog?rev=1.37&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/IO-Pager/ChangeLog?rev=1.37&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/IO-Pager/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/IO-Pager/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   22 Aug 2014 19:26:47 -  1.36
+++ ChangeLog   12 Sep 2014 17:23:54 -  1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/IO-Pager
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/IO-Pager/ChangeLog,v 1.36 
2014/08/22 19:26:47 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/IO-Pager/ChangeLog,v 1.37 
2014/09/12 17:23:54 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -IO-Pager-0.300.0.ebuild:
+  Drop old.
 
 *IO-Pager-0.310.0-r1 (22 Aug 2014)
 






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

2014-09-12 Thread Christoph Junghans
commit: 65c3565eaed9ddade3c515a9c12e0d32eb14dedf
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 12 17:22:28 2014 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 12 17:22:28 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=65c3565e

added missing masks

---
 profiles/package.mask | 10 ++
 profiles/package.use.mask |  4 
 2 files changed, 14 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index cb09f9e..ca04efb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,16 @@
 
 #--- END OF EXAMPLES ---
 
+# Christoph Junghans  (12 Sep 2014)
+# gcc:4.1 not available on no-multilib, selinux
+sci-chemistry/cpmgfit
+sci-chemistry/curvefit
+sci-chemistry/modelfree
+
+# Christoph Junghans  (12 Sep 2014)
+# due to www-apps/py-swish-e being masked
+sci-chemistry/chimera-bin
+
 # Jauhien Piatlicki  (09 Sep 2014)
 # www-apps/swish-e masked in tree for removal
 # www-apps/py-swish-e should be masked until

diff --git a/profiles/package.use.mask b/profiles/package.use.mask
index d309713..f66f9b2 100644
--- a/profiles/package.use.mask
+++ b/profiles/package.use.mask
@@ -16,6 +16,10 @@
 ## =media-video/mplayer-0.90_pre5-r1 foo
 #
 
+# Christoph Junghans  (12 Sep 2014)
+# icc and ifc don't work on no-multilib
+sci-biology/estscan icc ifc
+
 # Justin Lecher  (06 Jan 2014)
 # Missing dep dev-python/scikits-cuda
 sci-biology/mne-python cuda



[gentoo-commits] gentoo-x86 commit in dev-perl/Devel-StackTrace: ChangeLog Devel-StackTrace-1.270.0.ebuild Devel-StackTrace-1.290.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:22:52

  Modified: ChangeLog
  Removed:  Devel-StackTrace-1.270.0.ebuild
Devel-StackTrace-1.290.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.91 dev-perl/Devel-StackTrace/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Devel-StackTrace/ChangeLog?rev=1.91&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Devel-StackTrace/ChangeLog?rev=1.91&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Devel-StackTrace/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Devel-StackTrace/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog   22 Aug 2014 20:42:24 -  1.90
+++ ChangeLog   12 Sep 2014 17:22:52 -  1.91
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Devel-StackTrace
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-StackTrace/ChangeLog,v 1.90 
2014/08/22 20:42:24 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-StackTrace/ChangeLog,v 1.91 
2014/09/12 17:22:52 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada 
+  -Devel-StackTrace-1.270.0.ebuild, -Devel-StackTrace-1.290.0.ebuild:
+  Drop old.
 
 *Devel-StackTrace-1.300.0-r1 (22 Aug 2014)
 






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

2014-09-12 Thread Christoph Junghans
commit: 121fb06db3b1f8c2990f875f269197f1c4d292de
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 12 16:43:12 2014 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 12 16:43:12 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=121fb06d

drop sci-biology/jalview as dep 
-  jalview-2.4.ebuild:
-  Added comment about dependency: dev-java/vecmath is only in the java
-  overlay. Removed pmask for now.
-
-  10 Jul 2010; Andreas K. Huettel (dilfridge)  ChangeLog:
-  mask for removal since dependencies cannot be fulfilled (dev-java/vecmath)
-
-  10 Oct 2009; Andrey Kislyuk  ChangeLog:
-  New package, ebuild written by me
-

diff --git a/sci-biology/jalview/jalview-2.6.1.ebuild 
b/sci-biology/jalview/jalview-2.6.1.ebuild
deleted file mode 100644
index 5f9ca5c..000
--- a/sci-biology/jalview/jalview-2.6.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-EANT_GENTOO_CLASSPATH="jmol,castor-1.0,log4j,commons-logging,commons-discovery,wsdl4j,xerces-2,saaj,vecmath,javahelp,sun-jaf"
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_BUILD_TARGET="distclean makedist"
-JAVA_PKG_IUSE="source doc"
-
-inherit java-pkg-2 java-ant-2 eutils
-
-DESCRIPTION="A multiple DNA sequence alignment editor"
-HOMEPAGE="http://www.jalview.org/";
-SRC_URI="http://www.jalview.org/source/jalview_2_6_1.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-COMMON_DEPS=">=sci-chemistry/jmol-11.0.2 / or 
// or /
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   wea...@gentoo.org
-   Andrey Kislyuk
-   
-   sci-biology
-



[gentoo-commits] proj/sci:master commit in: sci-libs/cgnsfoam/, sci-libs/cgnsfoam/files/

2014-09-12 Thread Christoph Junghans
commit: 29f575970e59223bdaca3342122ae5e57f95ac0c
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 12 16:59:39 2014 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 12 16:59:39 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=29f57597

drop sci-libs/cgnsfoam as dep sci-libs/openfoam:1.7 is missing

---
 sci-libs/cgnsfoam/ChangeLog| 17 -
 sci-libs/cgnsfoam/cgnsfoam-1732.ebuild | 39 
 sci-libs/cgnsfoam/files/cgnsfoam-compile.patch | 51 --
 sci-libs/cgnsfoam/metadata.xml |  5 ---
 4 files changed, 112 deletions(-)

diff --git a/sci-libs/cgnsfoam/ChangeLog b/sci-libs/cgnsfoam/ChangeLog
deleted file mode 100644
index b78a999..000
--- a/sci-libs/cgnsfoam/ChangeLog
+++ /dev/null
@@ -1,17 +0,0 @@
-# ChangeLog for sci-libs/cgnsfoam
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  25 Jun 2011; Justin Lecher  cgnsfoam-1732.ebuild,
-  metadata.xml:
-  Fixed dep on openfoam
-
-*cgnsfoam-1732 (10 Jan 2011)
-
-  10 Jan 2011; Oliver Borm (boroli)  +cgnsfoam-1732.ebuild,
-  -cgnsfoam-2009.08.03.ebuild:
-  Version bump
-
-  03 Aug 2009; Oliver Borm (boroli)  ChangeLog:
-  Initial import to science overlay
-

diff --git a/sci-libs/cgnsfoam/cgnsfoam-1732.ebuild 
b/sci-libs/cgnsfoam/cgnsfoam-1732.ebuild
deleted file mode 100644
index f9f825c..000
--- a/sci-libs/cgnsfoam/cgnsfoam-1732.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-inherit eutils multilib
-
-DESCRIPTION="cgnsfoam is a conversion tool from cgns to openfoam format"
-HOMEPAGE="http://openfoam-extend.sourceforge.net/";
-SRC_URI="http://ppa.launchpad.net/cae-team/ppa/ubuntu/pool/main/c/${PN}/${PN}_${PV}.orig.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-OF_PV="1.7"
-
-DEPEND="
-   sci-libs/cgnslib
-   sci-libs/libcgnsoo
-   sci-libs/openfoam:${OF_PV}"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-compile.patch
-}
-
-src_compile() {
-   source /usr/$(get_libdir)/OpenFOAM/OpenFOAM-${OF_PV}/etc/bashrc
-   export FOAM_USER_APPBIN=${S}/bin/
-   sh Allwmake
-}
-
-src_install() {
-   into "/usr/$(get_libdir)/OpenFOAM/OpenFOAM-${OF_PV}/applications"
-   dobin bin/*
-}

diff --git a/sci-libs/cgnsfoam/files/cgnsfoam-compile.patch 
b/sci-libs/cgnsfoam/files/cgnsfoam-compile.patch
deleted file mode 100644
index 57d6289..000
--- a/sci-libs/cgnsfoam/files/cgnsfoam-compile.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff -urN cgnsfoam.orig/utilities/mesh/conversion/cgnsToFoam/Make/options 
cgnsfoam/utilities/mesh/conversion/cgnsToFoam/Make/options
 cgnsfoam.orig/utilities/mesh/conversion/cgnsToFoam/Make/options
2009-02-19 13:18:42.0 +0100
-+++ cgnsfoam/utilities/mesh/conversion/cgnsToFoam/Make/options 2009-02-19 
16:13:36.0 +0100
-@@ -17,8 +17,11 @@
- // Eventually, those packages will get integrated to the main OpenFOAM version
- // In the meantime, we hardcode those values, using relative paths to $PWD.
- 
--LIBCGNSOOHOME=$(PWD)/../../../../../src/libcgnsoo_3.0/platforms/$(WM_OPTIONS)
--CGNSLIBHOME=$(PWD)/../../../../../src/cgnslib_2.5/platforms/$(WM_OPTIONS)
-+//LIBCGNSOOHOME=$(PWD)/../../../../../src/libcgnsoo_3.0/platforms/$(WM_OPTIONS)
-+//CGNSLIBHOME=$(PWD)/../../../../../src/cgnslib_2.5/platforms/$(WM_OPTIONS)
-+
-+LIBCGNSOOHOME=/usr
-+CGNSLIBHOME=/usr
- 
- LINKEXE+=-Wl,-rpath=$(LIBCGNSOOHOME)/lib
- 
-@@ -32,6 +35,6 @@
- EXE_LIBS = \
- -L$(WM_PROJECT_USER_DIR)/lib/$(WM_OPTIONS) -lOpenFOAM -lfiniteVolume\
- -L$(LIBCGNSOOHOME)/lib -lcgnsoo3 \
---L$(CGNSLIBHOME)/lib -lcgns_2.5 \
-+-L$(CGNSLIBHOME)/lib -lcgns \
- -lmeshTools \
- -ldynamicMesh
-diff -urN 
cgnsfoam.orig/utilities/postProcessing/dataConversion/foamToCGNS/Make/options 
cgnsfoam/utilities/postProcessing/dataConversion/foamToCGNS/Make/options
 
cgnsfoam.orig/utilities/postProcessing/dataConversion/foamToCGNS/Make/options   
   2009-02-19 13:18:42.0 +0100
-+++ cgnsfoam/utilities/postProcessing/dataConversion/foamToCGNS/Make/options   
2009-02-19 16:13:33.0 +0100
-@@ -6,8 +6,11 @@
- // Eventually, those packages will get integrated to the main OpenFOAM version
- // In the meantime, we hardcode those values, using relative paths to $PWD.
- 
--LIBCGNSOOHOME=$(PWD)/../../../../../src/libcgnsoo_3.0/platforms/$(WM_OPTIONS)
--CGNSLIBHOME=$(PWD)/../../../../../src/cgnslib_2.5/platforms/$(WM_OPTIONS)
-+// 
LIBCGNSOOHOME=$(PWD)/../../../../../src/libcgnsoo_3.0/platforms/$(WM_OPTIONS)
-+// CGNSLIBHOME=$(PWD)/../../../../../src/cgnslib_2.5/platforms/$(WM_OPTIONS)
-+
-+LIBCGNSOOHOME=/usr
-+CGNSLIBHOME=/usr
- 
- LINKEXE+=-Wl,-rpath=$(LIBCGNSOOHOME)/lib
- 
-@@ -25,7 +28,7 @@
- EXE_LIBS = \
- -lOpenFOAM \
- -L$(LIBCGNSOOHOME)/lib -lc

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

2014-09-12 Thread Christoph Junghans
commit: 35e2ff91e5c92e1e638df8e4e91e6ffc5d030bfd
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 12 17:22:09 2014 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 12 17:22:09 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=35e2ff91

fixed deps

Package-Manager: portage-2.2.8-r1

---
 sci-chemistry/trajng/ChangeLog   | 5 -
 sci-chemistry/trajng/trajng-0.6.1.ebuild | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sci-chemistry/trajng/ChangeLog b/sci-chemistry/trajng/ChangeLog
index bc2deaf..ef68cde 100644
--- a/sci-chemistry/trajng/ChangeLog
+++ b/sci-chemistry/trajng/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for sci-chemistry/trajng
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  12 Sep 2014; Christoph Junghans  trajng-0.6.1.ebuild:
+  fixed deps
+
   09 Oct 2012; Alexey Shvetsov  trajng-0.6.1.ebuild:
   [sci-chemistry/trajng] Fix ebuild
 

diff --git a/sci-chemistry/trajng/trajng-0.6.1.ebuild 
b/sci-chemistry/trajng/trajng-0.6.1.ebuild
index e4ac026..f95d0fb 100644
--- a/sci-chemistry/trajng/trajng-0.6.1.ebuild
+++ b/sci-chemistry/trajng/trajng-0.6.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 DESCRIPTION="TrajNG - Trajectory compression library"
 
HOMEPAGE="http://www.uppmax.uu.se/Members/daniels/trajng-trajectory-compression-library";
@@ -14,7 +14,7 @@ KEYWORDS="~amd64 ~amd64-linux ~x86-linux"
 IUSE="fortran mpi"
 
 DEPEND="
-   sci-chemistry/xdrfile
+   sci-libs/xdrfile
fortran? ( virtual/fortran )
mpi? ( virtual/mpi )
 "



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

2014-09-12 Thread Christoph Junghans
commit: 8cf080a70fe63bfb0b9cf43db154e2693ef30bcb
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 12 16:45:47 2014 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 12 16:45:47 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8cf080a7

drop ~x86 as deps are missing

Package-Manager: portage-2.2.8-r1

---
 sci-biology/ngs_backbone/ChangeLog| 4 +++-
 sci-biology/ngs_backbone/ngs_backbone-.ebuild | 3 +--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sci-biology/ngs_backbone/ChangeLog 
b/sci-biology/ngs_backbone/ChangeLog
index a1e165c..231e153 100644
--- a/sci-biology/ngs_backbone/ChangeLog
+++ b/sci-biology/ngs_backbone/ChangeLog
@@ -2,10 +2,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  12 Sep 2014; Christoph Junghans  ngs_backbone-.ebuild:
+  drop ~x86 as deps are missing
+
 *ngs_backbone- (24 Mar 2014)
 
   24 Mar 2014; Martin Mokrejs 
   +ngs_backbone-.ebuild, +metadata.xml:
   Initial ebuild, external optional but highly recommended dependency on
   blast2GO aka b2g4pipe is not resolved
-

diff --git a/sci-biology/ngs_backbone/ngs_backbone-.ebuild 
b/sci-biology/ngs_backbone/ngs_backbone-.ebuild
index 8c2bf6f..7defc73 100644
--- a/sci-biology/ngs_backbone/ngs_backbone-.ebuild
+++ b/sci-biology/ngs_backbone/ngs_backbone-.ebuild
@@ -17,7 +17,7 @@ if [ "$PV" == "" ]; then
KEYWORDS=""
 else
SRC_URI="http://bioinf.comav.upv.es/_downloads/"${P}".tar.gz";
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64"
 fi
 
 LICENSE="GPL-3"
@@ -148,7 +148,6 @@ RDEPEND="${DEPEND}
 #/usr/lib64/python2.7/site-packages/ext/bin/linux/64bit/trimpoly
 #/usr/lib64/python2.7/site-packages/ext/bin/linux/64bit/water
 
-
 pkg_postinst(){
einfo "It is highly recommended to install blast2GO. Either the 
commercial version with GUI"
einfo "   or a non-GUI version called b2g4pipe. Either way, refer to 
http://www.blast2go.org";



[gentoo-commits] gentoo-x86 commit in dev-perl/Data-Visitor: ChangeLog Data-Visitor-0.280.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:21:08

  Modified: ChangeLog
  Removed:  Data-Visitor-0.280.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.14 dev-perl/Data-Visitor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Data-Visitor/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   26 Aug 2014 18:44:52 -  1.13
+++ ChangeLog   12 Sep 2014 17:21:07 -  1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Data-Visitor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Data-Visitor/ChangeLog,v 1.13 
2014/08/26 18:44:52 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Data-Visitor/ChangeLog,v 1.14 
2014/09/12 17:21:07 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -Data-Visitor-0.280.0.ebuild:
+  Drop old.
 
 *Data-Visitor-0.300.0-r1 (26 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/Tie-Cycle: ChangeLog Tie-Cycle-1.170.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:06:55

  Modified: ChangeLog
  Removed:  Tie-Cycle-1.170.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.4  dev-perl/Tie-Cycle/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Tie-Cycle/ChangeLog?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Tie-Cycle/ChangeLog?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Tie-Cycle/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Tie-Cycle/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   26 Aug 2014 14:55:11 -  1.3
+++ ChangeLog   12 Sep 2014 17:06:55 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Tie-Cycle
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tie-Cycle/ChangeLog,v 1.3 
2014/08/26 14:55:11 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tie-Cycle/ChangeLog,v 1.4 
2014/09/12 17:06:55 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -Tie-Cycle-1.170.0.ebuild:
+  Drop old.
 
 *Tie-Cycle-1.190.0-r1 (26 Aug 2014)
 






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

2014-09-12 Thread Davide Pesavento
commit: fdd80ab3dab285e19174788cf9aa630e38374131
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Sep 12 17:04:55 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Sep 12 17:04:55 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=fdd80ab3

[dev-qt/qtwayland] Delete ebuild referring to non-existent branch.

Package-Manager: portage-2.2.12

---
 dev-qt/qtwayland/qtwayland-5.3..ebuild | 42 --
 1 file changed, 42 deletions(-)

diff --git a/dev-qt/qtwayland/qtwayland-5.3..ebuild 
b/dev-qt/qtwayland/qtwayland-5.3..ebuild
deleted file mode 100644
index 3aa78ca..000
--- a/dev-qt/qtwayland/qtwayland-5.3..ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit qt5-build
-
-DESCRIPTION="Wayland platform plugin for Qt"
-HOMEPAGE="http://qt-project.org/wiki/QtWayland";
-
-if [[ ${QT5_BUILD_TYPE} == live ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64 ~x86"
-fi
-
-IUSE="egl qml wayland-compositor xcomposite"
-
-DEPEND="
-   >=dev-libs/wayland-1.3.0
-   >=dev-qt/qtcore-${PV}:5[debug=]
-   >=dev-qt/qtgui-${PV}:5[debug=,egl=,opengl]
-   media-libs/mesa[egl?]
-   >=x11-libs/libxkbcommon-0.2.0
-   qml? ( >=dev-qt/qtdeclarative-${PV}:5[debug=] )
-   xcomposite? (
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   if use wayland-compositor; then
-   echo "CONFIG += wayland-compositor" >> 
"${QT5_BUILD_DIR}"/.qmake.cache
-   fi
-
-   qt_use_compile_test xcomposite
-
-   qt5-build_src_configure
-}



[gentoo-commits] gentoo-x86 commit in dev-perl/Alien-wxWidgets: ChangeLog Alien-wxWidgets-0.620.0.ebuild Alien-wxWidgets-0.610.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 17:02:21

  Modified: ChangeLog
  Removed:  Alien-wxWidgets-0.620.0.ebuild
Alien-wxWidgets-0.610.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.59 dev-perl/Alien-wxWidgets/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Alien-wxWidgets/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   25 Aug 2014 02:20:49 -  1.58
+++ ChangeLog   12 Sep 2014 17:02:21 -  1.59
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Alien-wxWidgets
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Alien-wxWidgets/ChangeLog,v 1.58 
2014/08/25 02:20:49 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Alien-wxWidgets/ChangeLog,v 1.59 
2014/09/12 17:02:21 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada 
+  -Alien-wxWidgets-0.610.0.ebuild, -Alien-wxWidgets-0.620.0.ebuild:
+  Drop old.
 
 *Alien-wxWidgets-0.640.0-r1 (25 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/MailTools: ChangeLog MailTools-2.110.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 16:59:56

  Modified: ChangeLog
  Removed:  MailTools-2.110.0.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.112dev-perl/MailTools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MailTools/ChangeLog?rev=1.112&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MailTools/ChangeLog?rev=1.112&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MailTools/ChangeLog?r1=1.111&r2=1.112

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/MailTools/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog   21 Aug 2014 15:47:47 -  1.111
+++ ChangeLog   12 Sep 2014 16:59:56 -  1.112
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/MailTools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/MailTools/ChangeLog,v 1.111 
2014/08/21 15:47:47 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/MailTools/ChangeLog,v 1.112 
2014/09/12 16:59:56 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -MailTools-2.110.0.ebuild:
+  Drop old.
 
 *MailTools-2.120.0-r1 (21 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in virtual/python-pathlib: python-pathlib-1.0.ebuild ChangeLog

2014-09-12 Thread JosA MarAa Alonso (nimiux)
nimiux  14/09/12 16:57:15

  Modified: python-pathlib-1.0.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #518212
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.4  virtual/python-pathlib/python-pathlib-1.0.ebuild

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

Index: python-pathlib-1.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- python-pathlib-1.0.ebuild   14 Aug 2014 16:23:24 -  1.3
+++ python-pathlib-1.0.ebuild   12 Sep 2014 16:57:14 -  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/python-pathlib/python-pathlib-1.0.ebuild,v 1.3 
2014/08/14 16:23:24 phajdan.jr Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/virtual/python-pathlib/python-pathlib-1.0.ebuild,v 1.4 
2014/09/12 16:57:14 nimiux Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
@@ -12,7 +12,7 @@
 
 LICENSE=""
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



1.4  virtual/python-pathlib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/virtual/python-pathlib/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   14 Aug 2014 16:23:24 -  1.3
+++ ChangeLog   12 Sep 2014 16:57:14 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for virtual/python-pathlib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/virtual/python-pathlib/ChangeLog,v 1.3 
2014/08/14 16:23:24 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/virtual/python-pathlib/ChangeLog,v 1.4 
2014/09/12 16:57:14 nimiux Exp $
+
+  12 Sep 2014; Chema Alonso  python-pathlib-1.0.ebuild:
+  Stable for amd64 wrt bug #518212
 
   14 Aug 2014; Pawel Hajdan jr 
   python-pathlib-1.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/pathlib: ChangeLog pathlib-1.0.ebuild

2014-09-12 Thread JosA MarAa Alonso (nimiux)
nimiux  14/09/12 16:56:51

  Modified: ChangeLog pathlib-1.0.ebuild
  Log:
  Stable for amd64 wrt bug #518212
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.4  dev-python/pathlib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pathlib/ChangeLog?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pathlib/ChangeLog?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pathlib/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pathlib/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   5 Sep 2014 20:04:05 -   1.3
+++ ChangeLog   12 Sep 2014 16:56:51 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pathlib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pathlib/ChangeLog,v 1.3 
2014/09/05 20:04:05 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pathlib/ChangeLog,v 1.4 
2014/09/12 16:56:51 nimiux Exp $
+
+  12 Sep 2014; Chema Alonso  pathlib-1.0.ebuild:
+  Stable for amd64 wrt bug #518212
 
 *pathlib-1.0.1 (05 Sep 2014)
 



1.3  dev-python/pathlib/pathlib-1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pathlib/pathlib-1.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pathlib/pathlib-1.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pathlib/pathlib-1.0.ebuild?r1=1.2&r2=1.3

Index: pathlib-1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pathlib/pathlib-1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pathlib-1.0.ebuild  14 Aug 2014 16:24:01 -  1.2
+++ pathlib-1.0.ebuild  12 Sep 2014 16:56:51 -  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/dev-python/pathlib/pathlib-1.0.ebuild,v 1.2 
2014/08/14 16:24:01 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pathlib/pathlib-1.0.ebuild,v 1.3 
2014/09/12 16:56:51 nimiux Exp $
 
 EAPI=5
 
@@ -14,5 +14,5 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""






[gentoo-commits] gentoo-x86 commit in games-arcade/gnujump: ChangeLog gnujump-1.0.8.ebuild

2014-09-12 Thread JosA MarAa Alonso (nimiux)
nimiux  14/09/12 16:22:38

  Modified: ChangeLog gnujump-1.0.8.ebuild
  Log:
  Stable for amd64 wrt bug #517840
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.8  games-arcade/gnujump/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/gnujump/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/gnujump/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/gnujump/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/gnujump/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   14 Aug 2014 04:19:15 -  1.7
+++ ChangeLog   12 Sep 2014 16:22:38 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for games-arcade/gnujump
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/ChangeLog,v 1.7 
2014/08/14 04:19:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/ChangeLog,v 1.8 
2014/09/12 16:22:38 nimiux Exp $
+
+  12 Sep 2014; Chema Alonso  gnujump-1.0.8.ebuild:
+  Stable for amd64 wrt bug #517840
 
   14 Aug 2014; Michael Sterrett  gnujump-1.0.8.ebuild:
   EAPI=5; fix underlinking (bug #496924)



1.3  games-arcade/gnujump/gnujump-1.0.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild?r1=1.2&r2=1.3

Index: gnujump-1.0.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnujump-1.0.8.ebuild14 Aug 2014 04:19:15 -  1.2
+++ gnujump-1.0.8.ebuild12 Sep 2014 16:22:38 -  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/games-arcade/gnujump/gnujump-1.0.8.ebuild,v 
1.2 2014/08/14 04:19:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild,v 
1.3 2014/09/12 16:22:38 nimiux Exp $
 
 EAPI=5
 inherit eutils flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 
 DEPEND="media-libs/libsdl[sound,video]






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

2014-09-12 Thread Michael Palimaka
commit: 0404319fd3e214d2a9bd27c0d35a06ceddb7b9b8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 16:16:55 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 16:16:55 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0404319f

[eclass] Raise deps.

---
 eclass/kde5-functions.eclass | 2 +-
 eclass/kde5.eclass   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 8b3f59d..7b355b1 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -120,7 +120,7 @@ add_frameworks_dep() {
if [[ ${CATEGORY} = kde-frameworks ]]; then
version=${PV}
elif [[ -z "${version}" ]] ; then
-   version=5.1.0
+   version=5.2.0
fi
 
_add_kdecategory_dep kde-frameworks "${1}" "${2}" "${version}"

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 37450d9..41b0b7b 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -111,7 +111,7 @@ fi
 case ${KDE_AUTODEPS} in
false)  ;;
*)
-   DEPEND+=" >=dev-libs/extra-cmake-modules-1.1.0"
+   DEPEND+=" >=dev-libs/extra-cmake-modules-1.2.0"
RDEPEND+=" >=kde-frameworks/kf-env-2"
COMMONDEPEND+=" >=dev-qt/qtcore-${QT_MINIMAL}:5"
;;



[gentoo-commits] gentoo-x86 commit in net-libs/libnids: libnids-1.24-r6.ebuild ChangeLog

2014-09-12 Thread JosA MarAa Alonso (nimiux)
nimiux  14/09/12 16:07:42

  Modified: libnids-1.24-r6.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #517420
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.2  net-libs/libnids/libnids-1.24-r6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnids/libnids-1.24-r6.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnids/libnids-1.24-r6.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnids/libnids-1.24-r6.ebuild?r1=1.1&r2=1.2

Index: libnids-1.24-r6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.24-r6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libnids-1.24-r6.ebuild  24 Aug 2014 08:07:02 -  1.1
+++ libnids-1.24-r6.ebuild  12 Sep 2014 16:07:42 -  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/net-libs/libnids/libnids-1.24-r6.ebuild,v 
1.1 2014/08/24 08:07:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.24-r6.ebuild,v 
1.2 2014/09/12 16:07:42 nimiux Exp $
 
 EAPI=5
 inherit eutils flag-o-matic toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="1.2"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="+glib +libnet static-libs"
 
 RDEPEND="



1.69 net-libs/libnids/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnids/ChangeLog?rev=1.69&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnids/ChangeLog?rev=1.69&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnids/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   24 Aug 2014 08:07:02 -  1.68
+++ ChangeLog   12 Sep 2014 16:07:42 -  1.69
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libnids
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.68 
2014/08/24 08:07:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.69 
2014/09/12 16:07:42 nimiux Exp $
+
+  12 Sep 2014; Chema Alonso  libnids-1.24-r6.ebuild:
+  Stable for amd64 wrt bug #517420
 
 *libnids-1.24-r6 (24 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in www-apps/cvsweb: cvsweb-3.0.6-r1.ebuild ChangeLog

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 15:57:24

  Modified: cvsweb-3.0.6-r1.ebuild ChangeLog
  Log:
  sparc/x86 stable wrt bug #521824
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  www-apps/cvsweb/cvsweb-3.0.6-r1.ebuild

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

Index: cvsweb-3.0.6-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-apps/cvsweb/cvsweb-3.0.6-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cvsweb-3.0.6-r1.ebuild  11 Sep 2014 08:26:50 -  1.1
+++ cvsweb-3.0.6-r1.ebuild  12 Sep 2014 15:57:24 -  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/www-apps/cvsweb/cvsweb-3.0.6-r1.ebuild,v 
1.1 2014/09/11 08:26:50 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/cvsweb/cvsweb-3.0.6-r1.ebuild,v 
1.2 2014/09/12 15:57:24 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 
SRC_URI="ftp://ftp.freebsd.org/pub/FreeBSD/ports/local-distfiles/scop/${P}.tar.gz";
 
 LICENSE="BSD"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc sparc x86"
 IUSE=""
 
 RDEPEND=">=dev-lang/perl-5.8



1.4  www-apps/cvsweb/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cvsweb/ChangeLog?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cvsweb/ChangeLog?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cvsweb/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-apps/cvsweb/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   11 Sep 2014 08:26:50 -  1.3
+++ ChangeLog   12 Sep 2014 15:57:24 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/cvsweb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/cvsweb/ChangeLog,v 1.3 2014/09/11 
08:26:50 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/cvsweb/ChangeLog,v 1.4 2014/09/12 
15:57:24 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  cvsweb-3.0.6-r1.ebuild:
+  sparc/x86 stable wrt bug #521824
 
 *cvsweb-3.0.6-r1 (11 Sep 2014)
 






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

2014-09-12 Thread Christoph Junghans
commit: 6532fa2dbeee197e8139b1cc985cae4e90d5fc07
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Sep 12 15:55:38 2014 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Sep 12 15:55:38 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6532fa2d

travis.yml: make 'repoman full' verbose for output

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

diff --git a/.travis.yml b/.travis.yml
index ce116ca..ec1e792 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,4 +16,4 @@ before_script:
 - cd travis-overlay
 - sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' 
./../portage-2.2.10/bin/repoman
 script: 
-- "./../portage-2.2.10/bin/repoman full -d"
+- "./../portage-2.2.10/bin/repoman full -d -v"



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kdoctools/, kde-frameworks/plasma/, kde-frameworks/kidletime/, ...

2014-09-12 Thread Michael Palimaka
commit: 3aacdfbb71bb06aa3922497267efe966e187f85e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 15:53:27 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 15:53:27 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=3aacdfbb

[kde-frameworks] Remove 5.1.0

---
 kde-frameworks/attica/attica-5.1.0.ebuild  | 18 -
 .../frameworkintegration-5.1.0.ebuild  | 47 -
 .../kactivities/kactivities-5.1.0.ebuild   | 31 -
 kde-frameworks/kapidox/kapidox-5.1.0.ebuild| 27 
 kde-frameworks/karchive/karchive-5.1.0.ebuild  | 28 
 kde-frameworks/kauth/kauth-5.1.0.ebuild| 33 --
 kde-frameworks/kbookmarks/kbookmarks-5.1.0.ebuild  | 30 -
 kde-frameworks/kcmutils/kcmutils-5.1.0.ebuild  | 30 -
 kde-frameworks/kcodecs/kcodecs-5.1.0.ebuild| 14 
 .../kcompletion/kcompletion-5.1.0.ebuild   | 22 ---
 kde-frameworks/kconfig/kconfig-5.1.0.ebuild| 24 ---
 .../kconfigwidgets/kconfigwidgets-5.1.0.ebuild | 29 -
 .../kcoreaddons/kcoreaddons-5.1.0.ebuild   | 39 ---
 kde-frameworks/kcrash/kcrash-5.1.0.ebuild  | 39 ---
 .../kdbusaddons/kdbusaddons-5.1.0.ebuild   | 29 -
 .../kdeclarative/kdeclarative-5.1.0.ebuild | 28 
 kde-frameworks/kded/kded-5.1.0.ebuild  | 28 
 .../kdelibs4support/kdelibs4support-5.1.0.ebuild   | 76 --
 .../kdesignerplugin/kdesignerplugin-5.1.0.ebuild   | 54 ---
 kde-frameworks/kdesu/kdesu-5.1.0.ebuild| 35 --
 kde-frameworks/kdewebkit/kdewebkit-5.1.0.ebuild| 31 -
 kde-frameworks/kdnssd/kdnssd-5.1.0.ebuild  | 32 -
 kde-frameworks/kdoctools/kdoctools-5.1.0.ebuild| 21 --
 kde-frameworks/kemoticons/kemoticons-5.1.0.ebuild  | 27 
 .../kglobalaccel/kglobalaccel-5.1.0.ebuild | 34 --
 kde-frameworks/kguiaddons/kguiaddons-5.1.0.ebuild  | 23 ---
 kde-frameworks/khtml/khtml-5.1.0.ebuild| 66 ---
 kde-frameworks/ki18n/ki18n-5.1.0.ebuild| 21 --
 .../kiconthemes/kiconthemes-5.1.0.ebuild   | 27 
 kde-frameworks/kidletime/kidletime-5.1.0.ebuild| 25 ---
 .../kimageformats/kimageformats-5.1.0.ebuild   | 36 --
 kde-frameworks/kinit/kinit-5.1.0.ebuild| 38 ---
 kde-frameworks/kio/kio-5.1.0.ebuild| 74 -
 .../kitemmodels/kitemmodels-5.1.0.ebuild   | 16 -
 kde-frameworks/kitemviews/kitemviews-5.1.0.ebuild  | 21 --
 .../kjobwidgets/kjobwidgets-5.1.0.ebuild   | 36 --
 kde-frameworks/kjs/kjs-5.1.0.ebuild| 22 ---
 kde-frameworks/kjsembed/kjsembed-5.1.0.ebuild  | 26 
 .../kmediaplayer/kmediaplayer-5.1.0.ebuild | 22 ---
 kde-frameworks/knewstuff/knewstuff-5.1.0.ebuild| 32 -
 .../knotifications/knotifications-5.1.0.ebuild | 45 -
 .../knotifyconfig/knotifyconfig-5.1.0.ebuild   | 26 
 kde-frameworks/kparts/kparts-5.1.0.ebuild  | 31 -
 kde-frameworks/kplotting/kplotting-5.1.0.ebuild| 20 --
 kde-frameworks/kpty/kpty-5.1.0.ebuild  | 19 --
 kde-frameworks/kross/kross-5.1.0.ebuild| 33 --
 kde-frameworks/krunner/krunner-5.1.0.ebuild| 29 -
 kde-frameworks/kservice/kservice-5.1.0.ebuild  | 29 -
 .../ktexteditor/ktexteditor-5.1.0.ebuild   | 42 
 .../ktextwidgets/ktextwidgets-5.1.0.ebuild | 30 -
 .../kunitconversion/kunitconversion-5.1.0.ebuild   | 19 --
 kde-frameworks/kwallet/kwallet-5.1.0.ebuild| 29 -
 .../kwidgetsaddons/kwidgetsaddons-5.1.0.ebuild | 21 --
 .../kwindowsystem/kwindowsystem-5.1.0.ebuild   | 39 ---
 kde-frameworks/kxmlgui/kxmlgui-5.1.0.ebuild| 42 
 kde-frameworks/plasma/plasma-5.1.0.ebuild  | 67 ---
 kde-frameworks/solid/solid-5.1.0.ebuild| 32 -
 kde-frameworks/sonnet/sonnet-5.1.0.ebuild  | 31 -
 .../threadweaver/threadweaver-5.1.0.ebuild | 21 --
 59 files changed, 1896 deletions(-)

diff --git a/kde-frameworks/attica/attica-5.1.0.ebuild 
b/kde-frameworks/attica/attica-5.1.0.ebuild
deleted file mode 100644
index 08845e8..000
--- a/kde-frameworks/attica/attica-5.1.0.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-KDE_NLS="false"
-inherit kde5
-
-DESCRIPTION="Framework providing access to Open Collaboration Services"
-LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtnetwork:5
-"
-DEPEND="${RDEPEND}"

diff --git 
a/kde-frameworks/fram

[gentoo-commits] gentoo-x86 commit in dev-perl/Mac-Pasteboard: Mac-Pasteboard-0.3.0.ebuild ChangeLog

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 15:31:53

  Modified: Mac-Pasteboard-0.3.0.ebuild ChangeLog
  Log:
  Bump to EAPI=5
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild?r1=1.2&r2=1.3

Index: Mac-Pasteboard-0.3.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Mac-Pasteboard-0.3.0.ebuild 25 Dec 2011 12:15:12 -  1.2
+++ Mac-Pasteboard-0.3.0.ebuild 12 Sep 2014 15:31:53 -  1.3
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild,v 
1.2 2011/12/25 12:15:12 grobian Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Mac-Pasteboard/Mac-Pasteboard-0.3.0.ebuild,v 
1.3 2014/09/12 15:31:53 zlogene Exp $
 
-EAPI=4
+EAPI=5
 
 MODULE_AUTHOR=WYANT
 MODULE_VERSION=0.003



1.9  dev-perl/Mac-Pasteboard/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mac-Pasteboard/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   24 Jun 2012 12:58:21 -  1.8
+++ ChangeLog   12 Sep 2014 15:31:53 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Mac-Pasteboard
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mac-Pasteboard/ChangeLog,v 1.8 
2012/06/24 12:58:21 tove Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mac-Pasteboard/ChangeLog,v 1.9 
2014/09/12 15:31:53 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  Mac-Pasteboard-0.3.0.ebuild:
+  Bump to EAPI=5
 
   24 Jun 2012; Torsten Veller  metadata.xml:
   Update CPAN upstream info






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

2014-09-12 Thread Michael Palimaka
commit: ea20055a4d5bb1466c4fa2c4e2d6b5fd60afc4a0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Sep 12 15:33:38 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Sep 12 15:35:07 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ea20055a

[kde-frameworks/kdelibs4support] Remove workaround.

It's fixed in ECM: ad1406644fb51ee0097095915ffab099718268e0 and/or
f8609e8b64fd9170aa1444ad4e2f6d6d759e9050.

Package-Manager: portage-2.2.10

---
 kde-frameworks/kdelibs4support/kdelibs4support-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild 
b/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild
index cc3969f..c9a405a 100644
--- a/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild
+++ b/kde-frameworks/kdelibs4support/kdelibs4support-.ebuild
@@ -69,7 +69,6 @@ DEPEND="${COMMON_DEPEND}
 
 src_configure() {
local mycmakeargs=(
-   -DKDE_INSTALL_USE_QT_SYS_PATHS=OFF
$(cmake-utils_use_find_package X X11)
)
 



[gentoo-commits] gentoo-x86 commit in dev-perl/Text-vFile-asData: ChangeLog Text-vFile-asData-0.70.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 15:35:01

  Modified: ChangeLog
  Removed:  Text-vFile-asData-0.70.0.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.11 dev-perl/Text-vFile-asData/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-vFile-asData/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-vFile-asData/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Text-vFile-asData/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Text-vFile-asData/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   28 Jan 2013 19:14:42 -  1.10
+++ ChangeLog   12 Sep 2014 15:35:01 -  1.11
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Text-vFile-asData
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-vFile-asData/ChangeLog,v 1.10 
2013/01/28 19:14:42 tove Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-vFile-asData/ChangeLog,v 1.11 
2014/09/12 15:35:01 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada 
+  -Text-vFile-asData-0.70.0.ebuild:
+  Drop old
 
 *Text-vFile-asData-0.80.0 (28 Jan 2013)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/Net-SMTP-TLS: ChangeLog Net-SMTP-TLS-0.120.0.ebuild

2014-09-12 Thread Mikle Kolyada (zlogene)
zlogene 14/09/12 15:33:45

  Modified: ChangeLog
  Removed:  Net-SMTP-TLS-0.120.0.ebuild
  Log:
  Drop old
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.8  dev-perl/Net-SMTP-TLS/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Net-SMTP-TLS/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Net-SMTP-TLS/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Net-SMTP-TLS/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Net-SMTP-TLS/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   26 Aug 2014 17:47:43 -  1.7
+++ ChangeLog   12 Sep 2014 15:33:44 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Net-SMTP-TLS
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-SMTP-TLS/ChangeLog,v 1.7 
2014/08/26 17:47:43 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-SMTP-TLS/ChangeLog,v 1.8 
2014/09/12 15:33:44 zlogene Exp $
+
+  12 Sep 2014; Mikle Kolyada  -Net-SMTP-TLS-0.120.0.ebuild:
+  Drop old
 
 *Net-SMTP-TLS-0.120.0-r2 (26 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in app-text/libwps: libwps-0.3.0.ebuild ChangeLog

2014-09-12 Thread Johannes Huber (johu)
johu14/09/12 15:27:44

  Modified: libwps-0.3.0.ebuild ChangeLog
  Log:
  Drop alpha, bug #522340.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
F3CFD2BD)

Revision  ChangesPath
1.2  app-text/libwps/libwps-0.3.0.ebuild

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

Index: libwps-0.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libwps-0.3.0.ebuild 7 Sep 2014 12:20:32 -   1.1
+++ libwps-0.3.0.ebuild 12 Sep 2014 15:27: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/app-text/libwps/libwps-0.3.0.ebuild,v 1.1 
2014/09/07 12:20:32 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.3.0.ebuild,v 1.2 
2014/09/12 15:27:44 johu Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc debug static-libs"
 
 RDEPEND="



1.54 app-text/libwps/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwps/ChangeLog?rev=1.54&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwps/ChangeLog?rev=1.54&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libwps/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/libwps/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog   7 Sep 2014 12:20:32 -   1.53
+++ ChangeLog   12 Sep 2014 15:27:44 -  1.54
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/libwps
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/ChangeLog,v 1.53 2014/09/07 
12:20:32 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/ChangeLog,v 1.54 2014/09/12 
15:27:44 johu Exp $
+
+  12 Sep 2014; Johannes Huber  libwps-0.3.0.ebuild:
+  Drop alpha, bug #522340.
 
 *libwps-0.3.0 (07 Sep 2014)
 






[gentoo-commits] proj/kde:master commit in: dev-libs/shared-desktop-ontologies/

2014-09-12 Thread Johannes Huber
commit: cb772ebcca0794106690ab83fe1b7e1ef98f626f
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 15:19:22 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 15:19:22 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cb772ebc

[dev-libs/shared-desktop-ontologies] Remove, dead upstream

Last commit in 2013, which is included in released version, packaged in tree.
Belongs to deprecated semantic-desktop stack.

Package-Manager: portage-2.2.12

---
 dev-libs/shared-desktop-ontologies/metadata.xml|  5 -
 .../shared-desktop-ontologies-.ebuild  | 25 --
 2 files changed, 30 deletions(-)

diff --git a/dev-libs/shared-desktop-ontologies/metadata.xml 
b/dev-libs/shared-desktop-ontologies/metadata.xml
deleted file mode 100644
index a23f444..000
--- a/dev-libs/shared-desktop-ontologies/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   kde
-

diff --git 
a/dev-libs/shared-desktop-ontologies/shared-desktop-ontologies-.ebuild 
b/dev-libs/shared-desktop-ontologies/shared-desktop-ontologies-.ebuild
deleted file mode 100644
index 346a029..000
--- a/dev-libs/shared-desktop-ontologies/shared-desktop-ontologies-.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-if [[ ${PV} == * ]]; then
-   SCM_ECLASS="git-r3"
-fi
-EGIT_REPO_URI=( "git://git.code.sf.net/p/oscaf/shared-desktop-ontologies" )
-inherit cmake-utils ${SCM_ECLASS}
-unset SCM_ECLASS
-
-DESCRIPTION="Shared OSCAF desktop ontologies"
-HOMEPAGE="http://sourceforge.net/projects/oscaf";
-if [[ ${PV} != * ]]; then
-   SRC_URI="mirror://sourceforge/oscaf/${PN}/${P}.tar.bz2"
-   KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
-fi
-
-LICENSE="|| ( BSD CC-BY-SA-3.0 )"
-SLOT="0"
-IUSE=""
-
-DOCS=(AUTHORS ChangeLog README)



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

2014-09-12 Thread Johannes Huber
commit: 7526ce839ba733b965e1033cb9f37361bf551abb
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Sep 12 14:35:35 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Sep 12 14:35:35 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7526ce83

Update .travis.yml

Use latest portage version.

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

diff --git a/.travis.yml b/.travis.yml
index 1bf4c6e..af8b5f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,7 +5,7 @@ language: python
 python:
 - "3.3"
 env:
-- PORTAGE_VER="2.2.11"
+- PORTAGE_VER="2.2.12"
 before_script:
 - mkdir travis-overlay
 - mv !(travis-overlay) travis-overlay/



  1   2   >