[gentoo-commits] repo/gentoo:master commit in: net-p2p/gtk-gnutella/

2015-09-13 Thread Hans de Graaff
commit: 4bc953df41bbaf3933e18e9e274d002260c8001a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 13 08:28:58 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 13 08:29:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc953df

net-p2p/gtk-gnutella: version bump

Package-Manager: portage-2.2.20.1

 net-p2p/gtk-gnutella/Manifest  |  1 +
 net-p2p/gtk-gnutella/gtk-gnutella-1.1.4.ebuild | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/net-p2p/gtk-gnutella/Manifest b/net-p2p/gtk-gnutella/Manifest
index ece2724..65dac58 100644
--- a/net-p2p/gtk-gnutella/Manifest
+++ b/net-p2p/gtk-gnutella/Manifest
@@ -1,2 +1,3 @@
 DIST gtk-gnutella-1.1.1.tar.bz2 35342037 SHA256 
6e077204ddc23d0b8a044c3d7f12f40e8876b523f12a90c00b6725170611b501 SHA512 
c8226f74bbbc901a608aa59544ba5d7f924f5bcef0e98ba16145c4ae07a93dc710376201cf46bedaddcefb4438e18c259ce06be076a5f365a80b445cf788ec02
 WHIRLPOOL 
19e41cea5dfbfc27d21c7a5ed7ea69a14ef4fb4c0285eedd218d2506a6a133bb9f81462e4396bc936528618216d419f1ac38e53ff887c9e640cd51264727d824
 DIST gtk-gnutella-1.1.3.tar.bz2 19504243 SHA256 
2659ddb846f60d13789674e926a71bbb4a8b9d3ca98c6b034a95eaa073531405 SHA512 
df143b6e89b0a4c6e8ddbba24ddcab3603f04e7df1fab7d389241a112c6cd3297e4837dfc0d225289997b99867a5466a5b8697c68ef2bdc5817261fbc103d505
 WHIRLPOOL 
fe1a1375e75204bdf92c9690f1885211dc456c2cc466f4d7e47c865fc0e1c77ce07d27b58ff2e53c4c28214d055878c7d805f0b79043748e1448c6b8ac398c82
+DIST gtk-gnutella-1.1.4.tar.bz2 19546318 SHA256 
6ae259ff9d5f20a2d10dba66ed6cbe5b56552307a6e8bc36df053b70aff4c956 SHA512 
e09fde0e1f8a701e099f91768e032d022f6e9d41cdb4cc7833f1e7ba0e2795bc102c6b835960eb69e577ffc1426c42f6e1682ebadb8c5a643a796f88ff204ac6
 WHIRLPOOL 
a9e63865896444c2ba22e9cf4302f5da5f6bdcec257cc87c618c3c3514cbf924e0eb6df7909b21ad5798650a577adf38cb37806810fd3f6a7f67be5f7a7cc8f1

diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.4.ebuild 
b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.4.ebuild
new file mode 100644
index 000..154b509
--- /dev/null
+++ b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.4.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+IUSE="nls dbus ssl +gtk"
+
+DESCRIPTION="A GTK+ Gnutella client"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+HOMEPAGE="http://gtk-gnutella.sourceforge.net/;
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+RDEPEND="
+   dev-libs/glib:2
+   sys-libs/zlib
+   gtk? ( >=x11-libs/gtk+-2.2.1:2 )
+   dbus? ( >=sys-apps/dbus-0.35.2 )
+   ssl? ( >=net-libs/gnutls-2.2.5 )
+   nls? ( >=sys-devel/gettext-0.11.5 )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   strip-linguas -i po
+
+   echo "# Gentoo-selected LINGUAS" > po/LINGUAS
+   for ling in ${LINGUAS}; do
+   echo $ling >> po/LINGUAS
+   done
+}
+
+src_configure() {
+   # There is no option to turn off optimization through the build.sh
+   # script.
+   sed -i -e "s/Configure -Oder/Configure -Oder -Doptimize=none/" build.sh 
|| die
+
+   # The build script does not support the equivalent --enable
+   # options so we must construct the configuration by hand.
+
+   local myconf
+
+   if ! use nls; then
+   myconf="${myconf} --disable-nls"
+   fi
+
+   if ! use dbus; then
+   myconf="${myconf} --disable-dbus"
+   fi
+
+   if ! use ssl; then
+   myconf="${myconf} --disable-gnutls"
+   fi
+
+   if use gtk; then
+   myconf="${myconf} --gtk2"
+   else
+   myconf="${myconf} --topless"
+   fi
+
+   ./build.sh \
+   --configure-only \
+   --prefix="/usr" \
+   --cc=$(tc-getCC) \
+   ${myconf}
+}
+
+src_compile() {
+   # Build system is not parallel-safe, bug 500760
+   emake -j1
+}
+
+src_install() {
+   dodir /usr/bin
+   emake INSTALL_PREFIX="${D}" install || die "Install failed"
+   dodoc AUTHORS ChangeLog README TODO
+
+   # Touch the symbols file into the future to avoid warnings from
+   # gtk-gnutella later on, since we will most likely strip the binary.
+   touch --date="next minute" "${D}/usr/lib/gtk-gnutella/gtk-gnutella.nm" 
|| die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmlpq/

2015-09-13 Thread Justin Lecher
commit: 40873dc4b92baa01e5749cde1d85c032c4c187cd
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Sep 13 08:24:41 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Sep 13 08:27:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40873dc4

x11-plugins/wmlpq: Drop version using /usr/local

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

 x11-plugins/wmlpq/metadata.xml  |  2 +-
 x11-plugins/wmlpq/wmlpq-0.2.1-r2.ebuild | 44 -
 x11-plugins/wmlpq/wmlpq-0.2.1-r3.ebuild | 10 +++-
 3 files changed, 5 insertions(+), 51 deletions(-)

diff --git a/x11-plugins/wmlpq/metadata.xml b/x11-plugins/wmlpq/metadata.xml
index b1a9efc..a03f5d8 100644
--- a/x11-plugins/wmlpq/metadata.xml
+++ b/x11-plugins/wmlpq/metadata.xml
@@ -1,5 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-desktop-dock
+   desktop-dock
 

diff --git a/x11-plugins/wmlpq/wmlpq-0.2.1-r2.ebuild 
b/x11-plugins/wmlpq/wmlpq-0.2.1-r2.ebuild
deleted file mode 100644
index 83515e2..000
--- a/x11-plugins/wmlpq/wmlpq-0.2.1-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils flag-o-matic toolchain-funcs
-
-IUSE=""
-
-DESCRIPTION="Windowmaker dockapp which monitors up to 5 printqueues"
-SRC_URI="http://www.ur.uklinux.net/wmlpq/dl/wmlpq_0.2.1.tar.gz;
-HOMEPAGE="http://www.ur.uklinux.net/wmlpq/;
-
-DEPEND="##' -i *.c || die
 }
 
-src_compile()
-{
+src_compile() {
emake CC=$(tc-getCC) LDFLAGS="${LDFLAGS}"
 }
 
-src_install()
-{
+src_install() {
dodir /usr/bin
emake DESTDIR="${D}"/usr/bin install
 



[gentoo-commits] proj/ruby-scripts:master commit in: patchsets/patches-2.0.0_p647/

2015-09-13 Thread Hans de Graaff
commit: a9bb1b910f39d7fcf75a65eb0d08e350d01d460f
Author: Hans de Graaff  degraaff  org>
AuthorDate: Sun Sep 13 06:19:22 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 13 06:19:22 2015 +
URL:https://gitweb.gentoo.org/proj/ruby-scripts.git/commit/?id=a9bb1b91

Add patchset for ruby 2.0.0_p647

 patchsets/patches-2.0.0_p647/004_gfbsd7.patch  | 37 +
 .../patches-2.0.0_p647/005_no-undefined-ext.patch  | 11 
 patchsets/patches-2.0.0_p647/009_no-gems.patch | 63 ++
 patchsets/patches-2.0.0_p647/010_uclibc.patch  | 45 
 .../patches-2.0.0_p647/012_no_forced_sse2.patch| 27 ++
 5 files changed, 183 insertions(+)

diff --git a/patchsets/patches-2.0.0_p647/004_gfbsd7.patch 
b/patchsets/patches-2.0.0_p647/004_gfbsd7.patch
new file mode 100644
index 000..450d714
--- /dev/null
+++ b/patchsets/patches-2.0.0_p647/004_gfbsd7.patch
@@ -0,0 +1,37 @@
+--- configure.in.orig  2013-05-05 19:36:02.800254192 +0200
 configure.in   2013-05-05 19:37:56.573346196 +0200
+@@ -2156,7 +2156,7 @@
+ fi
+ 
+ AS_CASE(["$target_os"],
+-[linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu | nacl], [
++[linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu | nacl | freebsd* | 
dragonfly*], [
+ if test "$rb_cv_binary_elf" = no; then
+   with_dln_a_out=yes
+ else
+@@ -2249,7 +2249,7 @@
+   [bsdi3*], [ AS_CASE(["$CC"],
+   [*shlicc*], [   : ${LDSHARED='$(CC) -r'}
+   rb_cv_dlopen=yes])],
+-  [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu], [
++  [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu | 
freebsd7*], [
+   : ${LDSHARED='$(CC) -shared'}
+   if test "$rb_cv_binary_elf" = yes; then
+   LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
+@@ -2262,7 +2262,6 @@
+   [freebsd*|dragonfly*], [
+   : ${LDSHARED='$(CC) -shared'}
+   if test "$rb_cv_binary_elf" = yes; then
+-  LDFLAGS="$LDFLAGS -rdynamic"
+   DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$@'
+   else
+ test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes 
|| LDSHARED='$(LD) -Bshareable'
+@@ -2638,7 +2637,7 @@
+ [sunos4*], [
+   LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) 
lib$(RUBY_SO_NAME).so'
+   ],
+-[linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu], [
++[linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu | freebsd7*], [
+   LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR)'" 
$LDFLAGS_OPTDIR"
+   LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) 
lib$(RUBY_SO_NAME).so'
+   if test "$load_relative" = yes; then

diff --git a/patchsets/patches-2.0.0_p647/005_no-undefined-ext.patch 
b/patchsets/patches-2.0.0_p647/005_no-undefined-ext.patch
new file mode 100644
index 000..f279932
--- /dev/null
+++ b/patchsets/patches-2.0.0_p647/005_no-undefined-ext.patch
@@ -0,0 +1,11 @@
+--- ruby-1.9.3-preview1.orig/configure.in
 ruby-1.9.3-preview1/configure.in
+@@ -2038,7 +2038,7 @@ if test "$with_dln_a_out" != yes; then
+   [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu], [
+   : ${LDSHARED='$(CC) -shared'}
+   if test "$rb_cv_binary_elf" = yes; then
+-  LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
++  LDFLAGS="$LDFLAGS -Wl,-export-dynamic 
-Wl,--no-undefined"
+   fi
+   rb_cv_dlopen=yes],
+   [interix*], [   : ${LDSHARED='$(CC) -shared'}

diff --git a/patchsets/patches-2.0.0_p647/009_no-gems.patch 
b/patchsets/patches-2.0.0_p647/009_no-gems.patch
new file mode 100644
index 000..a9271af
--- /dev/null
+++ b/patchsets/patches-2.0.0_p647/009_no-gems.patch
@@ -0,0 +1,63 @@
+--- tool/rbinstall.rb.orig 2013-05-05 19:40:15.417797767 +0200
 tool/rbinstall.rb  2013-05-05 19:41:08.064452389 +0200
+@@ -685,59 +685,7 @@
+ # :startdoc:
+ 
+ install?(:ext, :comm, :gem) do
+-  $:.unshift(File.join(srcdir, "lib"))
+-  require("rubygems.rb")
+-  gem_dir = Gem.default_dir
+-  # Gem.ensure_gem_subdirectories makes subdirectories group-writable.
+-  directories = Gem::REPOSITORY_SUBDIRECTORIES
+-  prepare "default gems", gem_dir, directories
+-
+-  spec_dir = File.join(gem_dir, directories.grep(/^spec/)[0])
+-  default_spec_dir = "#{spec_dir}/default"
+-  makedirs(default_spec_dir)
+-
+-  gems = {}
+-  File.foreach(File.join(srcdir, "defs/default_gems")) do |line|
+-line.chomp!
+-line.sub!(/\s*#.*/, '')
+-next if line.empty?
+-words = []
+-line.scan(/\G\s*([^\[\]\s]+|\[([^\[\]]*)\])/) do
+-  words << ($2 ? $2.split : $1)
+-end
+-name, base_dir, src, execs = *words
+-next unless name and base_dir and src
+-
+-   

[gentoo-commits] proj/ruby-scripts:master commit in: patchsets/patches-2.0.0_p647-r1/

2015-09-13 Thread Hans de Graaff
commit: ebf06041d9f19a9e921e03cd02cc8ae5a36eb830
Author: Hans de Graaff  degraaff  org>
AuthorDate: Sun Sep 13 06:52:15 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 13 06:52:15 2015 +
URL:https://gitweb.gentoo.org/proj/ruby-scripts.git/commit/?id=ebf06041

Add patches for x32 support backported from ruby 2.1

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

 patchsets/patches-2.0.0_p647-r1/004_gfbsd7.patch   | 37 +
 .../005_no-undefined-ext.patch | 11 
 patchsets/patches-2.0.0_p647-r1/009_no-gems.patch  | 63 ++
 patchsets/patches-2.0.0_p647-r1/010_uclibc.patch   | 45 
 .../patches-2.0.0_p647-r1/012_no_forced_sse2.patch | 27 ++
 .../013_x32_asm_volatile.patch | 16 ++
 .../patches-2.0.0_p647-r1/014_x32_asm_ilp32.patch  | 13 +
 7 files changed, 212 insertions(+)

diff --git a/patchsets/patches-2.0.0_p647-r1/004_gfbsd7.patch 
b/patchsets/patches-2.0.0_p647-r1/004_gfbsd7.patch
new file mode 100644
index 000..450d714
--- /dev/null
+++ b/patchsets/patches-2.0.0_p647-r1/004_gfbsd7.patch
@@ -0,0 +1,37 @@
+--- configure.in.orig  2013-05-05 19:36:02.800254192 +0200
 configure.in   2013-05-05 19:37:56.573346196 +0200
+@@ -2156,7 +2156,7 @@
+ fi
+ 
+ AS_CASE(["$target_os"],
+-[linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu | nacl], [
++[linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu | nacl | freebsd* | 
dragonfly*], [
+ if test "$rb_cv_binary_elf" = no; then
+   with_dln_a_out=yes
+ else
+@@ -2249,7 +2249,7 @@
+   [bsdi3*], [ AS_CASE(["$CC"],
+   [*shlicc*], [   : ${LDSHARED='$(CC) -r'}
+   rb_cv_dlopen=yes])],
+-  [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu], [
++  [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu | 
freebsd7*], [
+   : ${LDSHARED='$(CC) -shared'}
+   if test "$rb_cv_binary_elf" = yes; then
+   LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
+@@ -2262,7 +2262,6 @@
+   [freebsd*|dragonfly*], [
+   : ${LDSHARED='$(CC) -shared'}
+   if test "$rb_cv_binary_elf" = yes; then
+-  LDFLAGS="$LDFLAGS -rdynamic"
+   DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$@'
+   else
+ test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes 
|| LDSHARED='$(LD) -Bshareable'
+@@ -2638,7 +2637,7 @@
+ [sunos4*], [
+   LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) 
lib$(RUBY_SO_NAME).so'
+   ],
+-[linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu], [
++[linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu | freebsd7*], [
+   LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR)'" 
$LDFLAGS_OPTDIR"
+   LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) 
lib$(RUBY_SO_NAME).so'
+   if test "$load_relative" = yes; then

diff --git a/patchsets/patches-2.0.0_p647-r1/005_no-undefined-ext.patch 
b/patchsets/patches-2.0.0_p647-r1/005_no-undefined-ext.patch
new file mode 100644
index 000..f279932
--- /dev/null
+++ b/patchsets/patches-2.0.0_p647-r1/005_no-undefined-ext.patch
@@ -0,0 +1,11 @@
+--- ruby-1.9.3-preview1.orig/configure.in
 ruby-1.9.3-preview1/configure.in
+@@ -2038,7 +2038,7 @@ if test "$with_dln_a_out" != yes; then
+   [linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu], [
+   : ${LDSHARED='$(CC) -shared'}
+   if test "$rb_cv_binary_elf" = yes; then
+-  LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
++  LDFLAGS="$LDFLAGS -Wl,-export-dynamic 
-Wl,--no-undefined"
+   fi
+   rb_cv_dlopen=yes],
+   [interix*], [   : ${LDSHARED='$(CC) -shared'}

diff --git a/patchsets/patches-2.0.0_p647-r1/009_no-gems.patch 
b/patchsets/patches-2.0.0_p647-r1/009_no-gems.patch
new file mode 100644
index 000..a9271af
--- /dev/null
+++ b/patchsets/patches-2.0.0_p647-r1/009_no-gems.patch
@@ -0,0 +1,63 @@
+--- tool/rbinstall.rb.orig 2013-05-05 19:40:15.417797767 +0200
 tool/rbinstall.rb  2013-05-05 19:41:08.064452389 +0200
+@@ -685,59 +685,7 @@
+ # :startdoc:
+ 
+ install?(:ext, :comm, :gem) do
+-  $:.unshift(File.join(srcdir, "lib"))
+-  require("rubygems.rb")
+-  gem_dir = Gem.default_dir
+-  # Gem.ensure_gem_subdirectories makes subdirectories group-writable.
+-  directories = Gem::REPOSITORY_SUBDIRECTORIES
+-  prepare "default gems", gem_dir, directories
+-
+-  spec_dir = File.join(gem_dir, directories.grep(/^spec/)[0])
+-  default_spec_dir = "#{spec_dir}/default"
+-  makedirs(default_spec_dir)
+-
+-  gems = {}
+-  File.foreach(File.join(srcdir, "defs/default_gems")) do |line|
+-line.chomp!
+-line.sub!(/\s*#.*/, '')
+-next if 

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

2015-09-13 Thread Hans de Graaff
commit: 0e10be80df07d13da5d9861e5ca92a69c6150a0e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 13 06:56:07 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 13 06:56:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e10be80

dev-lang/ruby: fix x32 support, bug 480238

Fix x32 support by backporting upstream's ruby 2.1 fixes.
Thanks for Bertrand Jacquin for providing and testing the
patches.

Fixes bug 480238

Package-Manager: portage-2.2.20.1

 dev-lang/ruby/Manifest  |   1 +
 dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild | 230 
 2 files changed, 231 insertions(+)

diff --git a/dev-lang/ruby/Manifest b/dev-lang/ruby/Manifest
index 7b76b8c..d9c7471 100644
--- a/dev-lang/ruby/Manifest
+++ b/dev-lang/ruby/Manifest
@@ -7,6 +7,7 @@ DIST ruby-2.2.2.tar.xz 10463044 SHA256 
f033b5d08ab57083e48c1d81bcd7399967578c370
 DIST ruby-2.2.3.tar.xz 10453204 SHA256 
c6ec90e9ed018e6d9a578fc93755d8565839908d5796809e1aecd1798c7ea8a7 SHA512 
e3cee8d59f4f3bfc84cf9bbbc6f74272470e12913d299fd1d41fc166dee21921eed1789591f50c3f3b6e5fd38fd1b99855c16aff28bdc4ae8fcc680c71bd
 WHIRLPOOL 
3fae4fc3112f24004f0f043d29b2e624e559fa3d53e6b0479af03df910d210aaeb8274c294dfe1ef0602f63790b4cdc31147d5fd92707e38ea29f01fd07e8839
 DIST ruby-patches-1.9.3_p551-r1.tar.bz2 3685 SHA256 
362d94b77c3408d200c42855868ebb5ddbee287d66bbed8e269255f9cb63418a SHA512 
646a1979c1b879ef46cb195204bdcea83215f6407331f92d8caed910e03d1f426bfb203629f4bea307740742757877edae22bf9978b55cbda03921a0c25b8409
 WHIRLPOOL 
3001b1c6189a882a45125d04b6264e22e0bf2b773c249bf00c2cfc98dec3392ae422913d278aae289767db0aaf8782e1a7dd44e94965aa02893833d5737ad494
 DIST ruby-patches-2.0.0_p645.tar.bz2 2947 SHA256 
dc173fe94af215fd2c1823f46140e4f11892dec59ce55b10ffad26b622bb6e4e SHA512 
423a4fddfc8d7fd4f5b041989da343bc96ce0c3f22a448cab8cec47d4c458f4deeb83b167a0a3ae71d3be57df9b41151d1cafadd191bd3d3e9b08b32732e36cd
 WHIRLPOOL 
9c728e95cf01abdb48afc2ff008dc73d341096b253c664297b6780b32821c1ec406c388ce5860b5dd2ce2de862fb80b2ae45d03750045aaf13c371743f97c92e
+DIST ruby-patches-2.0.0_p647-r1.tar.bz2 3341 SHA256 
7d82403fed6216baed59ac1fbba888e2b9a4a9cb742ffd01531753bae07ab6b8 SHA512 
40d07275a391df3e0a7a0c2705913c8120a548e223032dc39993f8f873c8d0639646cf728dc95f1400352a13766623ac6d69a1b1ff03183df6fabf32946dd7a6
 WHIRLPOOL 
ed7ea6b1c1fd3570ea85b885f7455d8273cff2a9db2540c9e89faca867bd5eed2b4de52c7d21a96bb33ae0beedce113c68bb6c8cee4688650ff5169bd9c265fd
 DIST ruby-patches-2.0.0_p647.tar.bz2 2947 SHA256 
dc173fe94af215fd2c1823f46140e4f11892dec59ce55b10ffad26b622bb6e4e SHA512 
423a4fddfc8d7fd4f5b041989da343bc96ce0c3f22a448cab8cec47d4c458f4deeb83b167a0a3ae71d3be57df9b41151d1cafadd191bd3d3e9b08b32732e36cd
 WHIRLPOOL 
9c728e95cf01abdb48afc2ff008dc73d341096b253c664297b6780b32821c1ec406c388ce5860b5dd2ce2de862fb80b2ae45d03750045aaf13c371743f97c92e
 DIST ruby-patches-2.1.6-r1.tar.bz2 2348 SHA256 
2c158373217a719f2961c1f2cf2f3494eb43c413dc41ba7f9c1d88c60baca7f7 SHA512 
01367d463a3aa72261742ae468d96ca1fb06a2d6b2a7a0cc416e449a7ae602d4478fb2394390636725424f252fa95c5db7d2c8116dc0b1e4477d8d641961980f
 WHIRLPOOL 
b39e8b9bdd8d05958b3b4c5884bfdd65c99b9aee2470a48ca748cbf336948bf0bb9f834ce3fec5e9365abaf385de760012f67dec6db257d7cbeff04ce0c5c7fb
 DIST ruby-patches-2.1.7.tar.bz2 1931 SHA256 
7e02c1b6a6352693bfd5828c9d1a7633a52baa57d8770df182ed0d8b450a3341 SHA512 
85928207db4f76e58925e50d39d73db2d521674385ce3232828377e7d7bb4252aafb9f93d6045d4c159bf094b472af61ef9307203db313bf28918fe35e0f3a21
 WHIRLPOOL 
17a698b0a09be15f444ea34b33e9aa1d029fbd572c565072a92480bf7b6b21f1b6b88b0da3183a486bae30e7e65f3172cd72b7336be1dc5974b62bd8e2b9ef7a

diff --git a/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild 
b/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild
new file mode 100644
index 000..db41ee1
--- /dev/null
+++ b/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild
@@ -0,0 +1,230 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+#PATCHSET=1
+
+inherit autotools eutils flag-o-matic multilib versionator
+
+RUBYPL=$(get_version_component_range 4)
+
+MY_P="${PN}-$(get_version_component_range 1-3)-${RUBYPL:-0}"
+S=${WORKDIR}/${MY_P}
+
+SLOT=$(get_version_component_range 1-2)
+MY_SUFFIX=$(delete_version_separator 1 ${SLOT})
+RUBYVERSION=2.0.0
+
+if [[ -n ${PATCHSET} ]]; then
+   if [[ ${PVR} == ${PV} ]]; then
+   PATCHSET="${PV}-r0.${PATCHSET}"
+   else
+   PATCHSET="${PVR}.${PATCHSET}"
+   fi
+else
+   PATCHSET="${PVR}"
+fi
+
+DESCRIPTION="An object-oriented scripting language"
+HOMEPAGE="http://www.ruby-lang.org/;
+SRC_URI="mirror://ruby/2.0/${MY_P}.tar.xz
+
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
+
+LICENSE="|| ( Ruby-BSD BSD-2 )"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="berkdb debug doc examples gdbm ipv6 +rdoc 

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

2015-09-13 Thread Justin Lecher
commit: 4d5c38ccfb21de66efb5987e5337cbbba5662bc9
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Sep 13 08:51:41 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Sep 13 08:52:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d5c38cc

dev-python/tlslite: Version Bump

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

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

 dev-python/tlslite/Manifest|  1 +
 dev-python/tlslite/tlslite-0.4.3-r1.ebuild | 14 +-
 ...lslite-0.4.3-r1.ebuild => tlslite-0.4.8.ebuild} | 32 +-
 3 files changed, 27 insertions(+), 20 deletions(-)

diff --git a/dev-python/tlslite/Manifest b/dev-python/tlslite/Manifest
index 7b6d1a6..c2db3df 100644
--- a/dev-python/tlslite/Manifest
+++ b/dev-python/tlslite/Manifest
@@ -1 +1,2 @@
 DIST tlslite-0.4.3.tar.gz 562090 SHA256 
6a67d8a0bec66183719c19c91f383bc145055aae4498af2e91fe9d79f813 SHA512 
d1f451ebc2f7bd4d5436f1ca8ecfdbaa403f3dbbae9f9ac3900131e5d168e3267e22fcf23d85f87457f06468997cb01a51683d028a67fde58820b15f97689a0c
 WHIRLPOOL 
555f2659f0bb5080519edd5f4325953e13109367ef21e1595816ab4f3956233bb541940f65f2cfa95c041b7f2cc080b8c4ee10719be79edfa11076a2c834fff6
+DIST tlslite-0.4.8.tar.gz 563048 SHA256 
d9b447048a322c70df800f540ab577c93ecf20de52c0a02c8621176e4733bdbb SHA512 
bdb42d005b7444667badc6febd38f5b74878c09218b418844c255920f0e6272f55f62b4ea21953953935f73e02657fce9874b44f73499267cf713ddbcd3d6a44
 WHIRLPOOL 
0804742e528e6ce9d67afed78fe42c4f0a42cdfc221bf36d37e4f4f5fce828323da10f7bec3e68b2fdcf4d13d2fa100364e83e61fbcfc5cf86d3aeb1f51d75df

diff --git a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
index 56c231a..a23e463 100644
--- a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
@@ -4,13 +4,13 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 pypy )
+PYTHON_COMPAT=( python2_7 )
 
-inherit distutils-r1
+inherit distutils-r1 eutils
 
 DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 
1.0/1.1"
-HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite;
-SRC_URI="https://github.com/trevp/tlslite/downloads/${P}.tar.gz;
+HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite 
https://github.com/trevp/tlslite;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD public-domain"
 SLOT="0"
@@ -19,12 +19,12 @@ KEYWORDS="amd64 x86"
 IUSE="doc gmp"
 RESTRICT="test"
 
-DEPEND=">=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
+DEPEND="
+   >=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
|| (
dev-python/m2crypto[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
-   )
-   gmp? ( dev-python/gmpy[${PYTHON_USEDEP}] )"
+   )"
 RDEPEND="${DEPEND}"
 
 # Tests still hang

diff --git a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.8.ebuild
similarity index 55%
copy from dev-python/tlslite/tlslite-0.4.3-r1.ebuild
copy to dev-python/tlslite/tlslite-0.4.8.ebuild
index 56c231a..ec5c394 100644
--- a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.8.ebuild
@@ -4,36 +4,42 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 pypy )
+PYTHON_COMPAT=( python2_7 )
 
-inherit distutils-r1
+inherit distutils-r1 eutils
 
 DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 
1.0/1.1"
-HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite;
-SRC_URI="https://github.com/trevp/tlslite/downloads/${P}.tar.gz;
+HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite 
https://github.com/trevp/tlslite;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD public-domain"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 #Refrain for now setting IUSE test and deps of test given test restricted.
-IUSE="doc gmp"
-RESTRICT="test"
+IUSE="doc"
 
-DEPEND=">=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
+DEPEND="
+   >=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
|| (
dev-python/m2crypto[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
-   )
-   gmp? ( dev-python/gmpy[${PYTHON_USEDEP}] )"
+   )"
 RDEPEND="${DEPEND}"
 
+RESTRICT="test"
+
 # Tests still hang
 python_test() {
-   "${S}"/tests/tlstest.py client localhost:4443 .
-   "${S}"/tests/tlstest.py server localhost:4442 .
+   cd tests || die
+   "${PYTHON}" "${S}"/tests/tlstest.py client localhost:4443 . || die
+   "${PYTHON}" "${S}"/tests/tlstest.py server localhost:4442 . || die
 }
 
 python_install_all(){
+   use doc && HTML_DOCS=( docs/. )
distutils-r1_python_install_all
-   use doc && dohtml -r docs/
+}
+
+pkg_postinst() {
+   optfeature "GMP support" dev-python/gmpy
 }



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

2015-09-13 Thread Maxim Koltsov
commit: c2c60298d67f519edf5ffdec63c541986b3fd626
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Sep 13 12:51:15 2015 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Sun Sep 13 12:51:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c60298

media-video/mpv: remove old versions

Package-Manager: portage-2.2.20.1

 media-video/mpv/Manifest|   3 -
 media-video/mpv/mpv-0.3.10.ebuild   | 257 
 media-video/mpv/mpv-0.8.3-r1.ebuild | 254 ---
 3 files changed, 514 deletions(-)

diff --git a/media-video/mpv/Manifest b/media-video/mpv/Manifest
index dbd5baa..ea1202f 100644
--- a/media-video/mpv/Manifest
+++ b/media-video/mpv/Manifest
@@ -1,6 +1,3 @@
-DIST mpv-0.3.10.tar.gz 2520710 SHA256 
ec1d9751f9c43f66e13a988c94748ee2e1d8188498001f905213c9ccdf573fce SHA512 
fdf84439747e24b4278f09427fc22d6497d2105cf94cd3c45dfb134af917f81c4748d618e962fb13a9db2b7a260a88a409590d10aae71ac987831bc3d293196e
 WHIRLPOOL 
d9a4eb6f01ee965b915e9064d75f710dd922a0db1e8a6b9655c844548bbde37c1cca1efd495c5d0f160b4b3823947c13e08e4634c6907fbd44abe758d0a6c552
-DIST mpv-0.8.3.tar.gz 2664730 SHA256 
091038c802866848e3647f2a50215fa64ead0dc36f9114457db8b353528689cf SHA512 
6b0e1f86032f4f594cee7af7ee7bd577821e948ace442987747a089d32374495abb5cf6bb88c4a1a63db8a36bb4182b30a728f976224263b6a9b4d51e62b1a40
 WHIRLPOOL 
e6de6ff24a0e07cc1dc08f0de585aeb8ef44d1d01d729e088f7d9402b82b5e5318b958083781168ae3e7cc67fce13125d41d79fac997bff5d5888268a52480ba
 DIST mpv-0.9.2.tar.gz 2701306 SHA256 
c0148f55dbd17705f49bb496d0ce374419de62e1b17195d91409d7727cbd4751 SHA512 
4f652a8e78d65b0ef44a06287b05250dfdfbce4cf5a6e21d3b446eedec268d83cf98afcc687272e2da2cfac9e9f69a303847dffdfd45cecdd4273b943ce50967
 WHIRLPOOL 
1512bacc2ce50e875770c76106a1bb2bc1d0cc5f6e2bdce91ff8c5cfc8bf13ffb48519858a5fa2a7d57880820dc12e5eb20f34ab71eca5d76ec303618da8f3fe
 DIST mpv-0.9.2_p20150824.tar.xz 1867384 SHA256 
67fa5ce11740b83ceef8bc435d5ef17803f1ec328dd2fee93b67e46ccc195209 SHA512 
1ae0fd4faa180472c023c0ba77a28f2d1319f597763d5249259d55a04387b5f6384e2c5a8ff78bb514dfda86c30ceb474c35e54468a29ad3fc6327c4baaf75cc
 WHIRLPOOL 
cb61758234f9186880def4dcb7cb7e54d03abd6734484b5691926e2514cae1bebef6f9a53465e2aa2710e4ad5dbe1875369d483489a5cb853c3fa756ff7e968a
-DIST waf-1.7.15 90909 SHA256 
e5ae7028f9b2d8ce1acb9fe1092e8010a90ba764d3ac065ea4e846743290b1d6 SHA512 
5d6f75a7a81d369512c6bf70ae14c5275cfdc2b273a5801d7ee928a829ca472aac5ee9f9f2542af6369f34c1648dd12e42112efc29d602527b9ba58a311b4c17
 WHIRLPOOL 
84048737d1ba746454212e13696ba34d9fc722c74823f719503e29123e33869a49742fba02e24212e3f67e045c5499cf1893bbd191bf8df1dd5cae05a517a17c
 DIST waf-1.8.4 96179 SHA256 
f02035fa5d8814f33f19b2b20d43822ddef6bb39b955ca196c2a247a1f9ffaa8 SHA512 
3a132d8b1cba0af0e3df046c0204c5df706fae4e0fac41cf74b53f6cdea6210ed798671c7a3cb3fee70573aacab16d4c0cc699cc4b7aa74c8a416346c5513f4c
 WHIRLPOOL 
fe8d7f42e5118a1f9490a0c9add1355c969185376b57d0bab024068dd6e7364632d862bf9432e1209165c5313ae843479ef334f4bd6285db05dfebff9a1b640e

diff --git a/media-video/mpv/mpv-0.3.10.ebuild 
b/media-video/mpv/mpv-0.3.10.ebuild
deleted file mode 100644
index 7c1cdd5..000
--- a/media-video/mpv/mpv-0.3.10.ebuild
+++ /dev/null
@@ -1,257 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-EGIT_REPO_URI="https://github.com/mpv-player/mpv.git;
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit eutils python-any-r1 waf-utils pax-utils fdo-mime gnome2-utils
-[[ ${PV} == ** ]] && inherit git-r3
-
-WAF_V="1.7.15"
-
-DESCRIPTION="Video player based on MPlayer/mplayer2"
-HOMEPAGE="http://mpv.io/;
-SRC_URI="https://waf.googlecode.com/files/waf-${WAF_V};
-[[ ${PV} == ** ]] || \
-SRC_URI+=" https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-[[ ${PV} == ** ]] || \
-KEYWORDS="alpha amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux"
-IUSE="+alsa bluray bs2b +cdio -doc-pdf dvb +dvd dvdnav +enca encode +iconv 
jack -joystick
-jpeg ladspa lcms +libass libcaca libguess lirc lua luajit +mpg123 -openal 
+opengl
-oss portaudio +postproc pulseaudio pvr +quvi -radio samba sdl selinux +shm v4l 
vaapi vcd vdpau
-vf-dlopen wayland +X xinerama +xscreensaver +xv"
-
-REQUIRED_USE="
-   dvdnav? ( dvd )
-   enca? ( iconv )
-   lcms? ( opengl )
-   libguess? ( iconv )
-   luajit? ( lua )
-   opengl? ( || ( wayland X ) )
-   pvr? ( v4l )
-   radio? ( v4l || ( alsa oss ) )
-   vaapi? ( X )
-   vdpau? ( X )
-   wayland? ( opengl )
-   xinerama? ( X )
-   xscreensaver? ( X )
-   xv? ( X )
-"
-
-RDEPEND+="
-   || (
-   >=media-video/libav-9.10:=[encode?,threads,vaapi?,vdpau?]
-   >=media-video/ffmpeg-1.2.4:0=[encode?,threads,vaapi?,vdpau?]
-   )
-   sys-libs/ncurses
-   sys-libs/zlib
-   X? (
-  

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

2015-09-13 Thread Maxim Koltsov
commit: f7d593cbf46edd8644b1245d92fc6a8300691239
Author: Kagami Hiiragi  genshiken  org>
AuthorDate: Sun Sep 13 09:18:22 2015 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Sun Sep 13 09:21:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7d593cb

media-video/mpv: Remove bs2b flag

Due to removal in upstream:
https://github.com/mpv-player/mpv/commit/d04d2380e35ba016e3816ab5d7c282997df74168

 media-video/mpv/mpv-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/media-video/mpv/mpv-.ebuild b/media-video/mpv/mpv-.ebuild
index 4f4bb60..41e8bae 100644
--- a/media-video/mpv/mpv-.ebuild
+++ b/media-video/mpv/mpv-.ebuild
@@ -26,7 +26,7 @@ fi
 # See Copyright in source tarball and bug #506946. Waf is BSD, libmpv is ISC.
 LICENSE="GPL-2+ BSD ISC"
 SLOT="0"
-IUSE="+alsa bluray bs2b cdio +cli doc-pdf drm dvb +dvd egl +enca encode +iconv
+IUSE="+alsa bluray cdio +cli doc-pdf drm dvb +dvd egl +enca encode +iconv
 jack jpeg ladspa lcms +libass libav libcaca libguess libmpv lua luajit openal
 +opengl oss pulseaudio pvr raspberry-pi rubberband samba sdl selinux v4l vaapi
 vdpau vf-dlopen wayland +X xinerama +xscreensaver xv"
@@ -69,7 +69,6 @@ RDEPEND="
)
alsa? ( >=media-libs/alsa-lib-1.0.18 )
bluray? ( >=media-libs/libbluray-0.3.0 )
-   bs2b? ( media-libs/libbs2b )
cdio? (
dev-libs/libcdio
dev-libs/libcdio-paranoia
@@ -187,7 +186,6 @@ src_configure() {
$(use_enable enca)
$(use_enable ladspa)
$(use_enable rubberband)
-   $(use_enable bs2b libbs2b)
$(use_enable lcms lcms2)
--disable-vapoursynth   # vapoursynth is not packaged
--disable-vapoursynth-lazy



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

2015-09-13 Thread Maxim Koltsov
commit: 76dd009ade0cef35d4846c2065f1982cb29b3a5b
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Sep 13 12:54:36 2015 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Sun Sep 13 12:54:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76dd009a

media-video/mpv: drop unused USE descriptions

Package-Manager: portage-2.2.20.1

 media-video/mpv/metadata.xml | 6 --
 1 file changed, 6 deletions(-)

diff --git a/media-video/mpv/metadata.xml b/media-video/mpv/metadata.xml
index 4a59541..036d2ac 100644
--- a/media-video/mpv/metadata.xml
+++ b/media-video/mpv/metadata.xml
@@ -20,7 +20,6 @@
Enable CDDA support via 
dev-libs/libcdio-paranoia
Build documentation in pdf format
Enable Kernel Mode Setting / Direct Rendering 
Manager based video output
-   Enable support for DVD navigation using 
media-libs/libdvdnav
Enable EGL backend for X11 OpenGL video output 
(experimental)
Enable support for charset discovery and 
conversion using app-i18n/enca
Enable support for saving screenshots to JPEG 
format
@@ -28,15 +27,10 @@
Build mpv shared library
Enable Lua scripting, OSC (On Screen 
Controller) GUI and net-misc/youtube-dl hook-script
Use dev-lang/luajit instead of 
dev-lang/lua
-   Enable support for mp3 decoding via 
media-sound/mpg123 instead of relying on ffmpeg support
-   Enable image post-processing via 
libpostproc
Enable Video4Linux2 MPEG PVR
Enable support for the Raspberry 
Pi
Enable high quality pitch correction 
via media-libs/rubberband
-   Enable support for streaming sites using 
media-libs/libquvi
-   Enable V4L2 radio interface and 
support
Enable media-libs/libsdl2 based 
video and audio outputs
-   Enable support for shm
Install additional video filters for 
using with -vf dlopen





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

2015-09-13 Thread Maxim Koltsov
commit: 25f38849bb4b441372373a6c0cd167159a442a76
Author: Kagami Hiiragi  genshiken  org>
AuthorDate: Sun Sep 13 09:19:12 2015 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Sun Sep 13 09:21:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f38849

media-video/mpv: Remove ladspa flag

Due to removal in upstream:
https://github.com/mpv-player/mpv/commit/091bfa3abf2f28b37fa12cca6b4c248c31d27965

 media-video/mpv/mpv-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/media-video/mpv/mpv-.ebuild b/media-video/mpv/mpv-.ebuild
index 41e8bae..df81879 100644
--- a/media-video/mpv/mpv-.ebuild
+++ b/media-video/mpv/mpv-.ebuild
@@ -27,7 +27,7 @@ fi
 LICENSE="GPL-2+ BSD ISC"
 SLOT="0"
 IUSE="+alsa bluray cdio +cli doc-pdf drm dvb +dvd egl +enca encode +iconv
-jack jpeg ladspa lcms +libass libav libcaca libguess libmpv lua luajit openal
+jack jpeg lcms +libass libav libcaca libguess libmpv lua luajit openal
 +opengl oss pulseaudio pvr raspberry-pi rubberband samba sdl selinux v4l vaapi
 vdpau vf-dlopen wayland +X xinerama +xscreensaver xv"
 
@@ -83,7 +83,6 @@ RDEPEND="
iconv? ( virtual/libiconv )
jack? ( media-sound/jack-audio-connection-kit )
jpeg? ( virtual/jpeg:0 )
-   ladspa? ( media-libs/ladspa-sdk )
libass? (
>=media-libs/libass-0.12.1:=[enca?,fontconfig]
virtual/ttf-fonts
@@ -184,7 +183,6 @@ src_configure() {
$(use_enable dvd dvdnav)
$(use_enable cdio cdda)
$(use_enable enca)
-   $(use_enable ladspa)
$(use_enable rubberband)
$(use_enable lcms lcms2)
--disable-vapoursynth   # vapoursynth is not packaged



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

2015-09-13 Thread Maxim Koltsov
commit: f3b3227fb90be7bb92e8f3adf61ff1e91ae9af55
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Sep 13 12:47:25 2015 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Sun Sep 13 12:47:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3b3227f

media-video/mpv: merge pull request 88

Some obsolete USE flags remoced.
See https://github.com/gentoo/gentoo/pull/88

 media-video/mpv/mpv-.ebuild | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)



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

2015-09-13 Thread Florian Schmaus
commit: 8956cb499c565d1123ee5fc66a37dafcff168eea
Author: Florian Schmaus  geekplace  eu>
AuthorDate: Thu Sep 10 19:11:03 2015 +
Commit: Florian Schmaus  freakempire  de>
CommitDate: Thu Sep 10 19:11:03 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=8956cb49

Add dev-java/gradle-bin-2.6

 dev-java/gradle-bin/Manifest  |  1 +
 dev-java/gradle-bin/gradle-bin-2.6.ebuild | 73 +++
 2 files changed, 74 insertions(+)

diff --git a/dev-java/gradle-bin/Manifest b/dev-java/gradle-bin/Manifest
index 8f39700..b341eec 100644
--- a/dev-java/gradle-bin/Manifest
+++ b/dev-java/gradle-bin/Manifest
@@ -3,3 +3,4 @@ DIST gradle-1.12-all.zip 57658365 SHA256 
cf111fcb34804940404e79eaf307876acb84340
 DIST gradle-2.2.1-all.zip 58602849 SHA256 
1d7c28b3731906fd1b2955946c1d052303881585fc14baedd675e4cf2bc1ecab SHA512 
16775f13a4bc2e9bec32b2838434dace7f04fb49461d65a8e44a4142c9742930a91f07bf1db498d3f68bfaa1be49387f36039354280edb7cd9d6783e43fc
 WHIRLPOOL 
6f8b99e08054f7c1d2ee24fb2bf84d099dcdf9e61dc6b92a03dc2e0d6747dec81f09769d50d893eee5c4026f2e46d1fecd11a3813b8f7fb9db8c9b3a46926477
 DIST gradle-2.3-all.zip 60081333 SHA256 
515962aeec8c3e67b97f0c13c4575beeed1b5da16181d8b9054416339edc8c2d SHA512 
316a8bcfdab50bba0f0d19d42fff8100cca8bfbaca919255da5beb3ae7f082bf40d021e1c668075260d74116058acee8f52911b0dce036800701824ecbc26343
 WHIRLPOOL 
4a8fe3a6fffb26cb13f9ff4e70f99e9d13f0a9bec5a3267f310d5987ff93a1df8c446816a463654e84f5b179ad72bdab01404087ddcac212576268b7adfada5b
 DIST gradle-2.4-all.zip 65433094 SHA256 
371cb9fbebbe9880d147f59bab36d61eee122854ef8c9ee1ecf12b82368bcf10 SHA512 
a09b94f3453043ee3d73fbf9e029df8f82f94f27071338a1557e9504a0cf69ddd0f58821a021e23d798d66872c54c52c9e850bdfb559c674b9d418de78de60d5
 WHIRLPOOL 
816e04e67c55c36f1224534a40f5398f7aa32abe8f40d336d5596b260d784de0fa86e8684e7cae3b1c00a0d3067d61294aca44e23bef50ddd7627e41
+DIST gradle-2.6-all.zip 65594074 SHA256 
5489234fc9c9733fc4115055618763ccb4d916d667980e6ab4fa57fc81197d16 SHA512 
29ec0ba12d5ac0658e7925ad760b25462384d7bfcb249638b42a0ff608b88aa9d7ec04c5e590d4c368c7ed8529b6d6a07dde552c2ae6dda7e33578a16cd4d41b
 WHIRLPOOL 
d7f8cdfef17960426685aff149c26151c25d82973b91f3d26ace39f21d030e09460fad3f77fd41c4932c3c5cdce8f9e78e38a30e6b365255c28d4dfb913d9564

diff --git a/dev-java/gradle-bin/gradle-bin-2.6.ebuild 
b/dev-java/gradle-bin/gradle-bin-2.6.ebuild
new file mode 100644
index 000..7b262af
--- /dev/null
+++ b/dev-java/gradle-bin/gradle-bin-2.6.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit java-pkg-2
+
+MY_PN=${PN%%-bin}
+MY_P="${MY_PN}-${PV/_rc/-rc-}"
+
+DESCRIPTION="A project automation and build tool similar to Apache Ant and 
Apache Maven with a Groovy based DSL"
+SRC_URI="http://services.gradle.org/distributions/${MY_P}-all.zip;
+HOMEPAGE="http://www.gradle.org/;
+LICENSE="Apache-2.0"
+SLOT="${PV}"
+KEYWORDS="~x86 ~amd64"
+
+DEPEND="app-arch/zip
+   app-eselect/eselect-gradle"
+RDEPEND=">=virtual/jdk-1.5"
+
+IUSE="source doc examples"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+   local gradle_dir="${EROOT}usr/share/${PN}-${SLOT}"
+
+   dodoc changelog.txt getting-started.html
+
+   insinto "${gradle_dir}"
+
+   # source
+   if use source ; then
+   java-pkg_dosrc src/*
+   fi
+
+   # docs
+   if use doc ; then
+   java-pkg_dojavadoc docs
+   fi
+
+   # examples
+   if use examples ; then
+   java-pkg_doexamples samples
+   fi
+
+   # jars in lib/
+   # Note that we can't strip the version from the gradle jars,
+   # because then gradle won't find them.
+   cd lib || die "lib/ not found"
+   for jar in *.jar; do
+   java-pkg_newjar ${jar} ${jar}
+   done
+
+   # plugins in lib/plugins
+   cd plugins
+   java-pkg_jarinto ${JAVA_PKG_JARDEST}/plugins
+   for jar in *.jar; do
+   java-pkg_newjar ${jar} ${jar}
+   done
+
+   java-pkg_dolauncher "${P}" --main org.gradle.launcher.GradleMain 
--java_args "-Dgradle.home=${gradle_dir}/lib \${GRADLE_OPTS}"
+}
+
+pkg_postinst() {
+   eselect gradle update ifunset
+}
+
+pkg_postrm() {
+   eselect gradle update ifunset
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/istack-commons-buildtools/files/, dev-java/istack-commons-buildtools/

2015-09-13 Thread Patrice Clement
commit: 682607f0879d54872ba11a352346a97665f68a4f
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 15:50:34 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 15:56:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=682607f0

dev-java/istack-commons-buildtools: Remove broken and old ebuild. Fixes bug 
276171.

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

 dev-java/istack-commons-buildtools/Manifest|  1 -
 .../files/istack-commons-20090620-less-maven.patch | 25 -
 .../istack-commons-buildtools-2.22.ebuild  | 28 --
 .../istack-commons-buildtools-20090620.ebuild  | 59 --
 4 files changed, 113 deletions(-)

diff --git a/dev-java/istack-commons-buildtools/Manifest 
b/dev-java/istack-commons-buildtools/Manifest
index f500114..c8e6dcf 100644
--- a/dev-java/istack-commons-buildtools/Manifest
+++ b/dev-java/istack-commons-buildtools/Manifest
@@ -1,2 +1 @@
-DIST istack-commons-20090620-src.tar.bz2 30194 SHA256 
0719fbc462f98bfb66e9606fad11845797a2ba7dd54ad780e07e16c63f3ea899 SHA512 
8a037852a19dd8ecf66fd6b6ca1454503e9f3d36ee716d774a1eb70245a60cf21c7e14ae97d811953d68475c4ea9bef7b9470d0ab82363481dc0f71c2865d2d4
 WHIRLPOOL 
68f8427892ff95390bf418c874dccd84aefe5c04f26e40b42f1f3e6fbe85a81f695365c1ff3b34eab0a4ebf42476301434555ed43d556f39f597bcd4c6861630
 DIST istack-commons-buildtools-2.22-sources.jar 12689 SHA256 
bec644682b4188813c91cc08a1b55761dfec22d6a11be531aeb9acafd896531e SHA512 
6cafd354c51fe1b42bb8a6cf52ddf9f6dd97cfdd16182ed5d1a2db6440d18ab84af4d9136df09aa4703694bad546967d25e828c0e1b21fb802c66630da3f4fe4
 WHIRLPOOL 
6e74271502e59bf1bd64dc6b0af9ee583f79698e5b59f367f9c58af3d3e7560ab4a34b891957bc631b39fbb8d150965ff2c97697ca28b84f5399e97aec873712

diff --git 
a/dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch
 
b/dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch
deleted file mode 100644
index 5213c41..000
--- 
a/dev-java/istack-commons-buildtools/files/istack-commons-20090620-less-maven.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-The shipped build.xml is completely bogus in trying to bring in maven.
-We just bring in ant-core, codemodel and istack-commons-runtime-1.1 ourselves,
-and it compiles perfectly.
-
-Signed-off-by: Robin H. Johnson 
-
-diff -Nuar istack-commons-20090620.orig/buildtools/build.xml 
istack-commons-20090620/buildtools/build.xml
 istack-commons-20090620.orig/buildtools/build.xml  2009-03-30 
19:28:53.0 -0700
-+++ istack-commons-20090620/buildtools/build.xml   2009-06-20 
22:15:09.194598087 -0700
-@@ -1,6 +1,8 @@
- 
- 
-+  
- 
-+  
- 
- 

diff --git 
a/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22.ebuild 
b/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22.ebuild
deleted file mode 100644
index 755afec..000
--- a/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit java-pkg-2 java-pkg-simple
-
-MY_PN=${PN%%-*}
-
-DESCRIPTION="IStack Commons - Buildtools jar"
-HOMEPAGE="https://istack-commons.java.net;
-SRC_URI="https://maven.java.net/content/repositories/releases/com/sun/${MY_PN}/${PN}/${PV}/${P}-sources.jar;
-
-LICENSE="CDDL"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="dev-java/ant-core:0
-   dev-java/codemodel:2"
-RDEPEND=">=virtual/jre-1.6
-   ${CDEPEND}"
-DEPEND=">=virtual/jdk-1.6
-   app-arch/unzip
-   ${CDEPEND}"
-
-JAVA_GENTOO_CLASSPATH="ant-core,codemodel-2"

diff --git 
a/dev-java/istack-commons-buildtools/istack-commons-buildtools-20090620.ebuild 
b/dev-java/istack-commons-buildtools/istack-commons-buildtools-20090620.ebuild
deleted file mode 100644
index fe8e61e..000
--- 
a/dev-java/istack-commons-buildtools/istack-commons-buildtools-20090620.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-JAVA_PKG_IUSE="source"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="istack-commons - buildtools"
-HOMEPAGE="https://istack-commons.dev.java.net/;
-PROJ_PN="istack-commons"
-PROJ_P="${PROJ_PN}-${PV}"
-SUB_PN="buildtools"
-SRC_FILE="${PROJ_P}-src.tar.bz2"
-SRC_URI="mirror://gentoo/${SRC_FILE}"
-
-LICENSE="CDDL"
-SLOT="1.1"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.5"
-RDEPEND=">=virtual/jre-1.5"
-
-S="${WORKDIR}/${PROJ_P}"
-
-# Helper to generate the tarball :-)
-# ( PN=istack-commons-runtime ; PV=20090620 ; P="${PN}-${PV}" ; . ${P}.ebuild  
; src_tarball )
-src_tarball() {
-   CVSROOT=':pserver:gu...@cvs.dev.java.net:/cvs'
-   PROJ_PN='istack-commons'
-   cvs -d "${CVSROOT}" \
-   export -D $PV -d 

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

2015-09-13 Thread Patrice Clement
commit: 6e1060a2029a727673ac905b98d8d208e1d4d44a
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 15:48:32 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 15:56:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1060a2

dev-java/istack-commons-buildtools: Add doc+source flags to 
{JAVA_PKG_USE,IUSE}. Sort dependencies in DEPEND.

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

 .../istack-commons-buildtools-2.22-r1.ebuild   | 30 ++
 1 file changed, 30 insertions(+)

diff --git 
a/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild 
b/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild
new file mode 100644
index 000..c776c19
--- /dev/null
+++ 
b/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit java-pkg-2 java-pkg-simple
+
+JAVA_PKG_IUSE="doc source"
+
+MY_PN=${PN%%-*}
+
+DESCRIPTION="IStack Commons - Buildtools jar"
+HOMEPAGE="https://istack-commons.java.net;
+SRC_URI="https://maven.java.net/content/repositories/releases/com/sun/${MY_PN}/${PN}/${PV}/${P}-sources.jar;
+
+LICENSE="CDDL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc source"
+
+CDEPEND="dev-java/ant-core:0
+   dev-java/codemodel:2"
+RDEPEND=">=virtual/jre-1.6
+   ${CDEPEND}"
+DEPEND=">=virtual/jdk-1.6
+   app-arch/zip
+   ${CDEPEND}"
+
+JAVA_GENTOO_CLASSPATH="ant-core,codemodel-2"



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

2015-09-13 Thread Patrice Clement
commit: 61f22f48eb59d7b34a45d18c67e20c831fd6457a
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 15:55:24 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 15:56:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61f22f48

dev-java/istack-commons-buildtools: Stable for amd64+x86.

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

 .../istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild 
b/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild
index c776c19..05e62d5 100644
--- 
a/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild
+++ 
b/dev-java/istack-commons-buildtools/istack-commons-buildtools-2.22-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://maven.java.net/content/repositories/releases/com/sun/${MY_PN}/$
 
 LICENSE="CDDL"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="doc source"
 
 CDEPEND="dev-java/ant-core:0



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/wxmaxima/

2015-09-13 Thread Andrey Grozin
commit: a005b117c4fc49c16cd6daded0ab78ffbec9309a
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sun Sep 13 12:15:38 2015 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sun Sep 13 12:15:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a005b117

sci-mathematics/wxmaxima: cleaning 15.08.1

Package-Manager: portage-2.2.20.1

 sci-mathematics/wxmaxima/Manifest|  2 -
 sci-mathematics/wxmaxima/wxmaxima-15.08.1.ebuild | 77 
 2 files changed, 79 deletions(-)

diff --git a/sci-mathematics/wxmaxima/Manifest 
b/sci-mathematics/wxmaxima/Manifest
index 3b20c8d..58e93ac 100644
--- a/sci-mathematics/wxmaxima/Manifest
+++ b/sci-mathematics/wxmaxima/Manifest
@@ -1,5 +1,3 @@
 DIST wxMaxima-13.04.2.tar.gz 1652680 SHA256 
29352db75dd3ff27393ab0971543fd0b3c3a9c330c2c8d07ebfd373741ded4eb SHA512 
36d035282aca8d40d9f5950c21e8e3abe8d3a76ffbb91f6436a3588e252ca2455c4c1c4e5eed4111888f917406ac758f551198ca97acb67bcc6655e579db20aa
 WHIRLPOOL 
7579a5d7b72e0c10f9162b92da03b2f4f51052cf8800fc0c01312718cfc31c0d8ff608aff6f873e07b46247a2c2ad7dc666e0e469dda1f1a8e8af52629a6e69d
 DIST wxmaxima-15.04.0.tar.gz 4990313 SHA256 
c178067a2f75d91dd378f88b4d0f87af6b2705ca32bea509d63e7347b2a1d21e SHA512 
1a899259698da38f97a1859ba0526406cbc654a130dc1d18e01cf248ac4d7292c82cb00dd92ce2fac2c3cfc002788fdef0a6a4f95eca54b9096efc73c6aa45b7
 WHIRLPOOL 
225456c073b1aa87d2e599b9c63244ff7c97378fb6b5a60fcb8730655d193a0f032b27a1264e12eefb4abf08389f2337a11c380b6d89af2de9a4fb6e14f614dc
-DIST wxmaxima-15.08.1-missing.tar.bz2 14699 SHA256 
62a84bf32e61d39f66787a7fb2cdbf67f322ddee2d7734c23650739476e97b17 SHA512 
de64163643652a288fd6f65076df94074a28895a13ae8766a1913e12833d3dbb1ae4bbdbcd6a69221e5bde7000b93e3a86a223b1320d25581d32c61ea6ab3b98
 WHIRLPOOL 
e96dac6ffd227597721a7e8fa200d99422e722ec5d3c1733c29904fdf1f6e2bae2ba1a2c8e98e217e7a089c5857c1ccf5d10950bd98cdbde0dfb19039a60262d
-DIST wxmaxima-15.08.1.tar.gz 5577228 SHA256 
82ad5314a88e53ff41dc431afb44ef1a47738686786e8cc8b4c48e0c147f4ffd SHA512 
4ab7a8e992904e18e571b716d35f0d5286363b287853e3ebacc64e63df901fe192abdef16db8dc8defabb26a25f8f8956a7bad466862ee0d19d8846d4e3fec94
 WHIRLPOOL 
492c6ccf79640c9bfdb8d7aad283f5e0941bba8b38d037285712603112026e0feaf8873025657486df44ff718e559d9e690076e78f86e560f5d6b73ecd096ad9
 DIST wxmaxima-15.08.2.tar.gz 5592673 SHA256 
7ad3f018e42d15d06bee5af10053edb72e441c1d1feee318dc6eb927db6a26c5 SHA512 
a537c49477f54df4fd9e4e42a5e0d0d740f1ede817d807a98b7cec877a3ad77b2be0a61ae487a7fa5beb193b112eca163b8873292ecab5acf118d58a91e91af6
 WHIRLPOOL 
a4df36704bbd33f841ddf3b9651662a092708850cdc637e6f6bfabc195c1e7e34dd66e14d92ee1cba69f3810bc74a4295837709d38bf6d6ce83b81d7776a3b9a

diff --git a/sci-mathematics/wxmaxima/wxmaxima-15.08.1.ebuild 
b/sci-mathematics/wxmaxima/wxmaxima-15.08.1.ebuild
deleted file mode 100644
index cdbdbcd..000
--- a/sci-mathematics/wxmaxima/wxmaxima-15.08.1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-WX_GTK_VER="3.0"
-
-inherit eutils gnome2-utils wxwidgets fdo-mime
-
-DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit"
-HOMEPAGE="http://andrejv.github.io/wxmaxima/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-   https://dev.gentoo.org/~grozin/${P}-missing.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="
-   dev-libs/libxml2:2
-   x11-libs/wxGTK:${WX_GTK_VER}"
-RDEPEND="${DEPEND}
-   media-fonts/jsmath
-   sci-visualization/gnuplot[wxwidgets]
-   sci-mathematics/maxima"
-
-src_prepare() {
-   local i
-
-   # consistent package names
-   sed -e "s:\${datadir}/wxMaxima:\${datadir}/${PN}:g" \
-   -i Makefile.in data/Makefile.in test/Makefile.in || die "sed 
failed"
-
-   sed -e 's:share/wxMaxima:share/wxmaxima:g' \
-   -i src/wxMaxima.cpp src/wxMaximaFrame.cpp src/Dirstructure.cpp 
src/Dirstructure.h \
-   || die "sed failed"
-
-   # correct gettext behavior
-   if [[ -n "${LINGUAS+x}" ]] ; then
-   for i in $(cd "${S}"/locales ; echo *.mo) ; do
-   if ! has ${i%.mo} ${LINGUAS} ; then
-   sed -i \
-   -e "/^WXMAXIMA_LINGUAS/s# ${i%.mo}##" \
-   -e "/^WXWIN_LINGUAS/s# ${i%.mo}##" \
-   locales/Makefile.in || die
-   fi
-   done
-   fi
-}
-
-src_configure() {
-   econf \
-   --enable-printing \
-   --with-wx-config=${WX_CONFIG}
-}
-
-src_install () {
-   default
-   doicon -s 128 data/wxmaxima.png
-   make_desktop_entry wxmaxima wxMaxima wxmaxima
-   dosym /usr/share/${PN}/README /usr/share/doc/${PF}/README
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   

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

2015-09-13 Thread Manuel Rüger
commit: 99b68d860ed4354012948eee5e3143a6ad3c007c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 14:40:08 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 14:40:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b68d86

net-libs/libasr: Version bump

Gentoo-Bug: #559604

Package-Manager: portage-2.2.20.1

 net-libs/libasr/Manifest|  1 +
 net-libs/libasr/libasr-1.0.2.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/net-libs/libasr/Manifest b/net-libs/libasr/Manifest
index ac5b2eb..919f350 100644
--- a/net-libs/libasr/Manifest
+++ b/net-libs/libasr/Manifest
@@ -1,2 +1,3 @@
 DIST libasr-1.0.1.tar.gz 403110 SHA256 
262471e312d623e4951a133ed4c16a74d57f0a02554ca4ed7b4b575456620182 SHA512 
94afed300327622e597d3678525b0d30a0a4a812966040a92a7b7b73beebb2209c7e6931cea07841aba745e14cda6df0dea9a7e098a94121768850e1d0e8d5ef
 WHIRLPOOL 
7b946c6ab05b59417a58910a08436cfa7dfb2e85cf86151c58dfe3c8c15fd0e2f21f6f7915796d1246f54a43586a11818fb8842ce1278f18396d673f30c05477
+DIST libasr-1.0.2.tar.gz 406428 SHA256 
a6f5d1c6306938156da3427525572b9b16c1e6be6c69845d390bb63f41a58b34 SHA512 
a4825a30130f70a452044c484871ac37459e1c1e6659c4c38dead7d3abbdaecb3517b7accb46586537975fee033857566fd279ecf97ae87dc80bb6bcdd467d3e
 WHIRLPOOL 
ae830fa1430f71d352b1a90cc465e9fbaff8d188dc7ac1c730267e8a940385531868e4d25a6c4cdcee5ebf6e9a2e91100771c845f3eb645b7c95487bfdf64027
 DIST libasr-201505061057.tar.gz 405953 SHA256 
50ad9ed14ab0eb2abd27cfd45047f49b5470ec48717e2d024b017fa43c69f69d SHA512 
f3a5630fea9493c1638de7508cbf4c8d99db8bc5873dd874e48e05378ca551e6982590fb3ede6ea73ed5384eaf8968ebee0919a7c9ea463384d3f94f5c880f16
 WHIRLPOOL 
0de07edea847340cf5d67799b4a2e96cf407f9310d0c36d3a125a787eaf38bf0a57b7fa412143f8c3e2dc476148c07f58bd47897bc20ee99f36cfc17ca8d0a97

diff --git a/net-libs/libasr/libasr-1.0.2.ebuild 
b/net-libs/libasr/libasr-1.0.2.ebuild
new file mode 100644
index 000..51ebba7
--- /dev/null
+++ b/net-libs/libasr/libasr-1.0.2.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Async Resolver Library from OpenBSD/OpenSMTPD"
+HOMEPAGE="https://github.com/OpenSMTPD/libasr;
+SRC_URI="https://www.opensmtpd.org/archives/${P}.tar.gz;
+
+LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"



[gentoo-commits] dev/eva:master commit in: www-apps/grafana/, www-apps/grafana/files/

2015-09-13 Thread Gilles Dartiguelongue
commit: 58b8e465054c33ae930cd4facee5d995d65e8414
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Sep 13 14:34:09 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Sep 13 14:34:09 2015 +
URL:https://gitweb.gentoo.org/dev/eva.git/commit/?id=58b8e465

www-apps/grafana: initial ebuild

 www-apps/grafana/Manifest |  11 ++
 www-apps/grafana/files/grafana.confd  |   7 ++
 www-apps/grafana/files/grafana.ini| 198 ++
 www-apps/grafana/files/grafana.initd  |  37 +++
 www-apps/grafana/grafana-2.1.2.ebuild |  81 ++
 www-apps/grafana/metadata.xml |  11 ++
 6 files changed, 345 insertions(+)

diff --git a/www-apps/grafana/Manifest b/www-apps/grafana/Manifest
new file mode 100644
index 000..d43862f
--- /dev/null
+++ b/www-apps/grafana/Manifest
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA512
+
+DIST grafana-2.1.2.tar.gz 19705127 SHA256 
01a53f05b40ed1a3982456117731c393a1dab062cf668d84e6d8db2dd8133bd3 SHA512 
945d0014f7770af56c5c7f6afc14c0332db74261d5b0b3af824bcf32fe719642b403d6693194de645b3059ecf1e0757b16cc15a2745ea2c5e8d74e72a3f58d29
 WHIRLPOOL 
37cffba5a2a73b18037b801e3c2289752e6a4d084d0a8b38e844367f4e05309ab6e903f77005b063c8b7bc8a0f7667edbc00946eb65695d0ee9580041092d7d6
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iEYEAREKAAYFAlX1iWIACgkQ1fmVwcYIWAb/7QCeIJ+27tq3jZw8KGhKmi3jepga
+RmwAnR7GYyIsTXvMPnrtDLzkGSmYQOUC
+=M45/
+-END PGP SIGNATURE-

diff --git a/www-apps/grafana/files/grafana.confd 
b/www-apps/grafana/files/grafana.confd
new file mode 100644
index 000..207ef76
--- /dev/null
+++ b/www-apps/grafana/files/grafana.confd
@@ -0,0 +1,7 @@
+# Config file for /etc/init.d/grafana
+
+# The user to run your application as.
+GRAFANA_USER=grafana
+
+# The group to run your application as.
+GRAFANA_GROUP=grafana

diff --git a/www-apps/grafana/files/grafana.ini 
b/www-apps/grafana/files/grafana.ini
new file mode 100644
index 000..6aaa69f
--- /dev/null
+++ b/www-apps/grafana/files/grafana.ini
@@ -0,0 +1,198 @@
+# Grafana Configuration Example #
+#
+# Everything has defaults so you only need to uncomment things you want to
+# change
+
+; app_mode = production
+
+ Paths 
+[paths]
+# Path to where grafana can store temp files, sessions, and the sqlite3 db (if 
that is useD)
+#
+;data = /var/lib/grafana
+#
+# Directory where grafana can store logs
+#
+;logs = /var/log/grafana
+
+ Server 

+[server]
+# Protocol (http or https)
+;protocol = http
+
+# The ip address to bind to, empty will bind to all interfaces
+;http_addr =
+
+# The http port  to use
+;http_port = 3000
+
+# The public facing domain name used to access grafana from a browser
+;domain = localhost
+
+# The full public facing url
+;root_url = %(protocol)s://%(domain)s:%(http_port)s/
+
+# Log web requests
+;router_logging = false
+
+# the path relative working path
+;static_root_path = public
+
+# enable gzip
+;enable_gzip = false
+
+# https certs & key file
+;cert_file =
+;cert_key =
+
+ Database 

+[database]
+# Either "mysql", "postgres" or "sqlite3", it's your choice
+;type = sqlite3
+;host = 127.0.0.1:3306
+;name = grafana
+;user = root
+;password =
+
+# For "postgres" only, either "disable", "require" or "verify-full"
+;ssl_mode = disable
+
+# For "sqlite3" only, path relative to data_path setting
+;path = grafana.db
+
+ Session 

+[session]
+# Either "memory", "file", "redis", "mysql", default is "memory"
+;provider = file
+
+# Provider config options
+# memory: not have any config yet
+# file: session dir path, is relative to grafana data_path
+# redis: config like redis server addr, poolSize, password, e.g. 
`127.0.0.1:6379,100,grafana`
+# mysql: go-sql-driver/mysql dsn config string, e.g. 
`user:password@tcp(127.0.0.1)/database_name`
+;provider_config = sessions
+
+# Session cookie name
+;cookie_name = grafana_sess
+
+# If you use session in https only, default is false
+;cookie_secure = false
+
+# Session life time, default is 86400
+;session_life_time = 86400
+
+ Analytics 

+[analytics]
+# Server reporting, sends usage counters to stats.grafana.org every 24 hours.
+# No ip addresses are being tracked, only simple counters to track
+# running instances, dashboard and error counts. It is very helpful to us.
+# Change this option to false to disable reporting.
+;reporting_enabled = true
+
+# Google Analytics universal tracking code, only enabled if you specify an id 
here
+;google_analytics_ua_id =
+
+ Security 

+[security]
+# 

[gentoo-commits] dev/eva:master commit in: dev-go/go-sqlite3/

2015-09-13 Thread Gilles Dartiguelongue
commit: 4c2e7f059d87aa71c12e10bb9390c5f62e08835c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Sep 13 14:32:07 2015 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Sep 13 14:32:07 2015 +
URL:https://gitweb.gentoo.org/dev/eva.git/commit/?id=4c2e7f05

dev-go/go-sqlite3: initial ebuild

required by grafana

 dev-go/go-sqlite3/Manifest| 11 ++
 dev-go/go-sqlite3/go-sqlite3-1.1.0.ebuild | 36 +++
 dev-go/go-sqlite3/metadata.xml| 11 ++
 3 files changed, 58 insertions(+)

diff --git a/dev-go/go-sqlite3/Manifest b/dev-go/go-sqlite3/Manifest
new file mode 100644
index 000..1f49350
--- /dev/null
+++ b/dev-go/go-sqlite3/Manifest
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA512
+
+DIST go-sqlite3-1.1.0.tar.gz 1501603 SHA256 
ec10e01a91cff2a5102e8ee234cfaedca69207318ee828ab3e16db7004829054 SHA512 
3e16379ea466ba7b871dc03a688a73305024fe0fec9922b7b658a2d7448bd22b8d9f0f346fbd18781294ee235b9a4f195792e64abd0739a069ec6b5a1a4b00a5
 WHIRLPOOL 
08032309ecd8567c7ba2cd9892a436376426a362c0b05ab75a89358a4a161da89caedd67c0735bc010ec13191add75cbcb5b648d20c999bd9925ec653d33c5c1
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iEYEAREKAAYFAlX1iOcACgkQ1fmVwcYIWAbDLwCg1/xzystB/wrpFvFj+I325xYY
+td8AmwS8RHzYzHFp26IRRHs0Ku5NLgD0
+=RwCM
+-END PGP SIGNATURE-

diff --git a/dev-go/go-sqlite3/go-sqlite3-1.1.0.ebuild 
b/dev-go/go-sqlite3/go-sqlite3-1.1.0.ebuild
new file mode 100644
index 000..150ef96
--- /dev/null
+++ b/dev-go/go-sqlite3/go-sqlite3-1.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+EGO_PN="github.com/mattn/go-sqlite3"
+
+inherit golang-build
+
+DESCRIPTION="sqlite3 driver for go that using database/sql"
+HOMEPAGE="https://github.com/mattn/go-sqlite3;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="icu"
+
+RDEPEND=""
+DEPEND="
+   dev-db/sqlite:3[icu?]
+"
+
+src_prepare() {
+   mkdir -p "${WORKDIR}"/${PN}/src/${EGO_PN%/*} || die
+   mv "${S}" "${WORKDIR}"/${PN}/src/${EGO_PN} || die
+   mv "${WORKDIR}"/${PN} "${S}" || die
+}
+
+src_compile() {
+   local myconf=( libsqlite3 linux )
+   if use icu ; then
+   myconf+=( icu )
+   fi
+   golang-build_src_compile --tags "${myconf[$@]}"
+}

diff --git a/dev-go/go-sqlite3/metadata.xml b/dev-go/go-sqlite3/metadata.xml
new file mode 100644
index 000..7b0400e
--- /dev/null
+++ b/dev-go/go-sqlite3/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   e...@gentoo.org
+   Gilles Dartiguelongue
+
+
+   mattn/go-sqlite3
+
+



[gentoo-commits] proj/grs:tinhat-xfce4 commit in: scripts/

2015-09-13 Thread Anthony G. Basile
commit: 3a6ef90269f4e2238b19a449abf262dd469c6125
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 13 15:26:03 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 13 15:26:03 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=3a6ef902

scripts/{busybox-config,initramfs-init}: initial commits

 scripts/busybox-config | 1035 
 scripts/initramfs-init |   44 ++
 2 files changed, 1079 insertions(+)

diff --git a/scripts/busybox-config b/scripts/busybox-config
new file mode 100644
index 000..9c024fd
--- /dev/null
+++ b/scripts/busybox-config
@@ -0,0 +1,1035 @@
+#
+# Automatically generated make config: don't edit
+# Busybox version: 1.23.1
+# Sun Sep 13 11:24:25 2015
+#
+CONFIG_HAVE_DOT_CONFIG=y
+
+#
+# Busybox Settings
+#
+
+#
+# General Configuration
+#
+# CONFIG_DESKTOP is not set
+# CONFIG_EXTRA_COMPAT is not set
+# CONFIG_INCLUDE_SUSv2 is not set
+# CONFIG_USE_PORTABLE_CODE is not set
+CONFIG_PLATFORM_LINUX=y
+CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
+# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
+# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
+CONFIG_SHOW_USAGE=y
+# CONFIG_FEATURE_VERBOSE_USAGE is not set
+CONFIG_FEATURE_COMPRESS_USAGE=y
+CONFIG_FEATURE_INSTALLER=y
+# CONFIG_INSTALL_NO_USR is not set
+# CONFIG_LOCALE_SUPPORT is not set
+# CONFIG_UNICODE_SUPPORT is not set
+# CONFIG_UNICODE_USING_LOCALE is not set
+# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set
+CONFIG_SUBST_WCHAR=0
+CONFIG_LAST_SUPPORTED_WCHAR=0
+# CONFIG_UNICODE_COMBINING_WCHARS is not set
+# CONFIG_UNICODE_WIDE_WCHARS is not set
+# CONFIG_UNICODE_BIDI_SUPPORT is not set
+# CONFIG_UNICODE_NEUTRAL_TABLE is not set
+# CONFIG_UNICODE_PRESERVE_BROKEN is not set
+# CONFIG_PAM is not set
+# CONFIG_FEATURE_USE_SENDFILE is not set
+# CONFIG_LONG_OPTS is not set
+CONFIG_FEATURE_DEVPTS=y
+# CONFIG_FEATURE_CLEAN_UP is not set
+# CONFIG_FEATURE_UTMP is not set
+# CONFIG_FEATURE_WTMP is not set
+# CONFIG_FEATURE_PIDFILE is not set
+CONFIG_PID_FILE_PATH=""
+# CONFIG_FEATURE_SUID is not set
+# CONFIG_FEATURE_SUID_CONFIG is not set
+# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set
+# CONFIG_SELINUX is not set
+# CONFIG_FEATURE_PREFER_APPLETS is not set
+CONFIG_BUSYBOX_EXEC_PATH="/bin/busybox"
+# CONFIG_FEATURE_SYSLOG is not set
+# CONFIG_FEATURE_HAVE_RPC is not set
+
+#
+# Build Options
+#
+CONFIG_STATIC=y
+# CONFIG_PIE is not set
+# CONFIG_NOMMU is not set
+# CONFIG_BUILD_LIBBUSYBOX is not set
+# CONFIG_FEATURE_INDIVIDUAL is not set
+# CONFIG_FEATURE_SHARED_BUSYBOX is not set
+CONFIG_LFS=y
+CONFIG_CROSS_COMPILER_PREFIX=""
+CONFIG_SYSROOT=""
+CONFIG_EXTRA_CFLAGS=""
+CONFIG_EXTRA_LDFLAGS=""
+CONFIG_EXTRA_LDLIBS=""
+
+#
+# Debugging Options
+#
+# CONFIG_DEBUG is not set
+# CONFIG_DEBUG_PESSIMIZE is not set
+# CONFIG_UNIT_TEST is not set
+# CONFIG_WERROR is not set
+CONFIG_NO_DEBUG_LIB=y
+# CONFIG_DMALLOC is not set
+# CONFIG_EFENCE is not set
+
+#
+# Installation Options ("make install" behavior)
+#
+CONFIG_INSTALL_APPLET_SYMLINKS=y
+# CONFIG_INSTALL_APPLET_HARDLINKS is not set
+# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
+# CONFIG_INSTALL_APPLET_DONT is not set
+# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set
+# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set
+# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set
+CONFIG_PREFIX="./_install"
+
+#
+# Busybox Library Tuning
+#
+# CONFIG_FEATURE_SYSTEMD is not set
+# CONFIG_FEATURE_RTMINMAX is not set
+CONFIG_PASSWORD_MINLEN=6
+CONFIG_MD5_SMALL=0
+CONFIG_SHA3_SMALL=0
+CONFIG_FEATURE_FAST_TOP=y
+# CONFIG_FEATURE_ETC_NETWORKS is not set
+# CONFIG_FEATURE_USE_TERMIOS is not set
+# CONFIG_FEATURE_EDITING is not set
+CONFIG_FEATURE_EDITING_MAX_LEN=0
+# CONFIG_FEATURE_EDITING_VI is not set
+CONFIG_FEATURE_EDITING_HISTORY=0
+# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set
+# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set
+# CONFIG_FEATURE_REVERSE_SEARCH is not set
+# CONFIG_FEATURE_TAB_COMPLETION is not set
+# CONFIG_FEATURE_USERNAME_COMPLETION is not set
+# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set
+# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set
+CONFIG_FEATURE_NON_POSIX_CP=y
+# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set
+CONFIG_FEATURE_COPYBUF_KB=4
+# CONFIG_FEATURE_SKIP_ROOTFS is not set
+# CONFIG_MONOTONIC_SYSCALL is not set
+# CONFIG_IOCTL_HEX2STR_ERROR is not set
+# CONFIG_FEATURE_HWIB is not set
+
+#
+# Applets
+#
+
+#
+# Archival Utilities
+#
+# CONFIG_FEATURE_SEAMLESS_XZ is not set
+# CONFIG_FEATURE_SEAMLESS_LZMA is not set
+# CONFIG_FEATURE_SEAMLESS_BZ2 is not set
+# CONFIG_FEATURE_SEAMLESS_GZ is not set
+# CONFIG_FEATURE_SEAMLESS_Z is not set
+# CONFIG_AR is not set
+# CONFIG_FEATURE_AR_LONG_FILENAMES is not set
+# CONFIG_FEATURE_AR_CREATE is not set
+# CONFIG_UNCOMPRESS is not set
+# CONFIG_GUNZIP is not set
+# CONFIG_BUNZIP2 is not set
+# CONFIG_UNLZMA is not set
+# CONFIG_FEATURE_LZMA_FAST is not set
+# CONFIG_LZMA is not set
+# CONFIG_UNXZ is not set
+# CONFIG_XZ is not set
+# 

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

2015-09-13 Thread Jason Zaman
commit: 740132c8fbeef56f61ac5fbd958431bb6a3e917c
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Sep 13 12:28:49 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Sep 13 12:30:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740132c8

xfce-extra/xfce4-mixer: Add missing dep on gettext

Gentoo-Bug: https://bugs.gentoo.org/554270

Package-Manager: portage-2.2.20.1

 xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild 
b/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild
index 956dba9..bba025c 100644
--- a/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild
+++ b/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild
@@ -29,6 +29,7 @@ RDEPEND="${COMMON_DEPEND}
!alsa? ( !oss? ( media-plugins/gst-plugins-meta:0.10 ) )"
 DEPEND="${COMMON_DEPEND}
dev-util/intltool
+   sys-devel/gettext
virtual/pkgconfig"
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-host/

2015-09-13 Thread Manuel Rüger
commit: 64886df3cb33409abcb175306faf9f0fe8639ef9
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 14:44:12 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 14:44:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64886df3

app-crypt/libu2f-host: Version bump

Gentoo-Bugs: #559036

Package-Manager: portage-2.2.20.1

 app-crypt/libu2f-host/Manifest |  1 +
 app-crypt/libu2f-host/libu2f-host-1.0.0.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/app-crypt/libu2f-host/Manifest b/app-crypt/libu2f-host/Manifest
index 7ac29be..dd95ae6 100644
--- a/app-crypt/libu2f-host/Manifest
+++ b/app-crypt/libu2f-host/Manifest
@@ -1,2 +1,3 @@
 DIST libu2f-host-0.0.2.tar.xz 444176 SHA256 
c9e5478f5d139c30603afe65ea7ef52b0b18c93df60103b1dafeb7f3d17acbd8 SHA512 
1b10a5c8d3d071b0d5576a2247b2cc40327fe6fe7370a7680cede7ebda72bd7f0edfa1661b78074a85654a5d979f757c64c090360c69feddb9c3212dc0438deb
 WHIRLPOOL 
f8cc5d7524c8ed7943945af44e5b93b43463118b06b186460090df3c69871319e0a347c94a28467b782eb09e2653ef72ab98478d8acf720b86b807223b1ee0b1
 DIST libu2f-host-0.0.4.tar.xz 446604 SHA256 
852231611bd5c526406b984ae3c92ce3423ffc7a0ef01f6a060a43b64725ead6 SHA512 
09406f45bea4cbca2fd26a4ad546b2233f56e1df098976cbd24dcab08e27bf9131fdc52557b4c701b8ce27b0ece7b405e8cda889591a5e3dc9420611336d1060
 WHIRLPOOL 
84ac2c5e4170ff45ecb9595c73dabd6a34f79bdcf4ef9bf3ceb32c481febe0537e3ab129fcd7a63c73389b3dbc0742834574b739ed36c419b6bc84b5c01a4d5b
+DIST libu2f-host-1.0.0.tar.xz 454376 SHA256 
18c56b9b5cfea2566925bba45b25a4e20b3ef8696905d8f2a06116316e164374 SHA512 
ef953ffd8179e5ed4bcd1e02ccc82e671a7979b03a61ac73098be6509ab9d6badd6bb4e3e805de4ddbddbae3e8be71b091344f4230657464f6ba4ac3af171387
 WHIRLPOOL 
cc76b778bcf20ef696900dd0ea65c0925052360a22e505a34ecb8738289d7bbaa88b31f2b25b91b6a1a22a240d01784bc6ef1cb9774c818fa0570328e9f13183

diff --git a/app-crypt/libu2f-host/libu2f-host-1.0.0.ebuild 
b/app-crypt/libu2f-host/libu2f-host-1.0.0.ebuild
new file mode 100644
index 000..f1d8211
--- /dev/null
+++ b/app-crypt/libu2f-host/libu2f-host-1.0.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools-utils linux-info udev
+
+DESCRIPTION="Yubico Universal 2nd Factor (U2F) Host C Library"
+HOMEPAGE="https://developers.yubico.com/libu2f-host/;
+SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz;
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="kernel_linux static-libs systemd"
+
+RDEPEND="
+   dev-libs/hidapi
+   dev-libs/json-c"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${RDEPEND}
+   systemd? ( sys-apps/systemd[acl] )"
+
+CONFIG_CHECK="~HIDRAW"
+
+src_prepare() {
+   autotools-utils_src_prepare
+
+   sed -e 's:TAG+="uaccess":MODE="0664", GROUP="plugdev":g' \
+   70-u2f.rules > 70-u2f-udev.rules || die
+}
+
+src_configure() {
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install
+
+   if use kernel_linux; then
+   if use systemd; then
+   udev_dorules 70-u2f.rules
+   else
+   udev_newrules 70-u2f-udev.rules 70-u2f.rules
+   fi
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kwalletd/

2015-09-13 Thread Michael Palimaka
commit: d17dee7010b9474e30c3b307ed7539f89001c295
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Sep 13 13:12:15 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 15:12:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d17dee70

kde-apps/kwalletd: Add missing DEPEND on dev-libs/libgcrypt

Package-Manager: portage-2.2.20.1

 kde-apps/kwalletd/kwalletd-15.08.0.ebuild   | 1 +
 kde-apps/kwalletd/kwalletd-4.14.3-r1.ebuild | 1 +
 kde-apps/kwalletd/kwalletd-4.14.3-r2.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/kde-apps/kwalletd/kwalletd-15.08.0.ebuild 
b/kde-apps/kwalletd/kwalletd-15.08.0.ebuild
index 16bd01c..1e6eabc 100644
--- a/kde-apps/kwalletd/kwalletd-15.08.0.ebuild
+++ b/kde-apps/kwalletd/kwalletd-15.08.0.ebuild
@@ -12,6 +12,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="debug gpg"
 
 DEPEND="
+   dev-libs/libgcrypt:0=
gpg? (
app-crypt/gpgme
|| ( $(add_kdeapps_dep gpgmepp) $(add_kdebase_dep kdepimlibs) )

diff --git a/kde-apps/kwalletd/kwalletd-4.14.3-r1.ebuild 
b/kde-apps/kwalletd/kwalletd-4.14.3-r1.ebuild
index 48e52a3..d7a1aee 100644
--- a/kde-apps/kwalletd/kwalletd-4.14.3-r1.ebuild
+++ b/kde-apps/kwalletd/kwalletd-4.14.3-r1.ebuild
@@ -12,6 +12,7 @@ KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
 IUSE="debug gpg"
 
 DEPEND="
+   dev-libs/libgcrypt:0=
gpg? (
app-crypt/gpgme
$(add_kdebase_dep kdepimlibs)

diff --git a/kde-apps/kwalletd/kwalletd-4.14.3-r2.ebuild 
b/kde-apps/kwalletd/kwalletd-4.14.3-r2.ebuild
index 5c6537d..c041e63 100644
--- a/kde-apps/kwalletd/kwalletd-4.14.3-r2.ebuild
+++ b/kde-apps/kwalletd/kwalletd-4.14.3-r2.ebuild
@@ -12,6 +12,7 @@ KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
 IUSE="debug gpg"
 
 DEPEND="
+   dev-libs/libgcrypt:0=
gpg? (
app-crypt/gpgme
$(add_kdebase_dep kdepimlibs)



[gentoo-commits] repo/gentoo:master commit in: media-tv/mythtv/

2015-09-13 Thread Doug Goldstein
commit: 6532b43e7a05adb24f55ae7dfea3eeed069b5c84
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sun Sep 13 15:11:06 2015 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Sun Sep 13 15:11:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6532b43e

media-tv/mythtv: fix python-single-r1 initialization

Don't conditionally call python-single-r1_pkg_setup as pointed out by
Anders Hellgren  gentoo.org>.

Gentoo-Bug: 560136

Package-Manager: portage-2.2.20.1
Signed-off-by: Doug Goldstein  gentoo.org>

 media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild 
b/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild
index 9a16f80..62926a8 100644
--- a/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild
+++ b/media-tv/mythtv/mythtv-0.27.5_p20150904.ebuild
@@ -140,7 +140,7 @@ S="${WORKDIR}/${MY_P}/mythtv"
 MYTHTV_GROUPS="video,audio,tty,uucp"
 
 pkg_setup() {
-   use python && python-single-r1_pkg_setup
+   python-single-r1_pkg_setup
enewuser mythtv -1 /bin/bash /home/mythtv ${MYTHTV_GROUPS}
usermod -a -G ${MYTHTV_GROUPS} mythtv
 }



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

2015-09-13 Thread Patrice Clement
commit: 64fb015e7aacb7ad51826c83eda7649fe5133c83
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:08:25 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:25:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64fb015e

dev-java/tclib: Package removal. Fixes bug 232666.

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

 dev-java/tclib/Manifest |  1 -
 dev-java/tclib/metadata.xml |  6 --
 dev-java/tclib/tclib-1.1.ebuild | 38 --
 3 files changed, 45 deletions(-)

diff --git a/dev-java/tclib/Manifest b/dev-java/tclib/Manifest
deleted file mode 100644
index 9096dd9..000
--- a/dev-java/tclib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tclib-1.1-source.jar 580130 SHA256 
741deb4f4a86fe3523502038785f264740cb68bd8242f260bd03fd2274dcbe29 SHA512 
69ef6b669986f638308d33ecd8c54393496c0b0019a175820e6dcf36a6479f8daad99aa4bc9613ee07da5f109620cc5ec5a9abd944dfd68aac60b47aeb585135
 WHIRLPOOL 
b7fa545ffb9e52826692671eb5690ac1a61c601c9f0544c8f6842c7404a5ade5ef9f92edae3ec1b55dae04b2b9fba194f0371fe16eb9e3ec8a071e451b784ac2

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

diff --git a/dev-java/tclib/tclib-1.1.ebuild b/dev-java/tclib/tclib-1.1.ebuild
deleted file mode 100644
index 54197de..000
--- a/dev-java/tclib/tclib-1.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Type-Specific Collections Library"
-HOMEPAGE="http://www.sosnoski.com/opensrc/tclib/;
-SRC_URI="mirror://gentoo/${P}-source.jar"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.4"
-DEPEND=">=virtual/jdk-1.4
-   app-arch/unzip"
-
-S="${WORKDIR}"
-
-java_prepare() {
-   find -name '*.jar' -print -delete
-   find -name '*.class' -print -delete
-}
-
-EANT_BUILD_XML="build/build.xml"
-EANT_BUILD_TARGET="package"
-
-src_install() {
-   java-pkg_dojar lib/tclib.jar
-   use source && java-pkg_dosrc build/src
-   use doc && java-pkg_dojavadoc build/docs
-}



[gentoo-commits] repo/gentoo:master commit in: app-misc/jdictionary/

2015-09-13 Thread Patrice Clement
commit: 6ab5fac0c36b50fbbcd04bf8ca09500a0d6bd513
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:06:11 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:25:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab5fac0

app-misc/jdictionary: Package removal. Fixes bug 177032.

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

 app-misc/jdictionary/Manifest  |  1 -
 app-misc/jdictionary/jdictionary-1.8-r2.ebuild | 40 ---
 app-misc/jdictionary/jdictionary-1.8-r3.ebuild | 44 --
 app-misc/jdictionary/metadata.xml  |  8 -
 4 files changed, 93 deletions(-)

diff --git a/app-misc/jdictionary/Manifest b/app-misc/jdictionary/Manifest
deleted file mode 100644
index c5bc092..000
--- a/app-misc/jdictionary/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST jdictionary-1_8.zip 467815 SHA256 
0243ca1031e6bbdb3f12c10b7f2d267ce9a213e934af775aeb008e2e2a6db826 SHA512 
87b46dbc1f8408a83bc8ec41aa842c6cb82519eb40cb09478f28dd7f18478e7e35214c66503b84facca94ddc208136a7747c9f0b5c5981d511ba90660aef7af2
 WHIRLPOOL 
48fa27857f0e1e9f480f523165d686da3861d1e614c0dd0016e0c3f2517e2d1586ad04fed94f1af96ff54b476e6350efae03a566a4089a27d49a6f8a8a663007

diff --git a/app-misc/jdictionary/jdictionary-1.8-r2.ebuild 
b/app-misc/jdictionary/jdictionary-1.8-r2.ebuild
deleted file mode 100644
index 11166a4..000
--- a/app-misc/jdictionary/jdictionary-1.8-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit java-pkg-2 eutils
-
-DESCRIPTION="A online Java-based dictionary"
-HOMEPAGE="http://jdictionary.sourceforge.net/;
-SRC_URI="mirror://sourceforge/jdictionary/jdictionary-${PV/./_}.zip"
-
-IUSE=""
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ppc x86"
-
-RDEPEND=">=virtual/jre-1.3"
-DEPEND=">=virtual/jdk-1.3
-   app-arch/unzip"
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   mkdir compiled
-
-   jar xf ${PN}.jar || die "failed to unpack jar"
-   cp -r resources compiled
-}
-
-src_compile() {
-   ejavac -classpath . $(find . -name \*.java) -d compiled || die "failed 
to build"
-   jar cf ${PN}.jar -C compiled . || die "failed to make jar"
-}
-
-src_install() {
-   java-pkg_dojar ${PN}.jar
-
-   java-pkg_dolauncher ${PN} --main info.jdictionary.JDictionary
-   make_desktop_entry ${PN} JDictionary
-}

diff --git a/app-misc/jdictionary/jdictionary-1.8-r3.ebuild 
b/app-misc/jdictionary/jdictionary-1.8-r3.ebuild
deleted file mode 100644
index 3008a31..000
--- a/app-misc/jdictionary/jdictionary-1.8-r3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit java-pkg-2 eutils
-
-DESCRIPTION="A online Java-based dictionary"
-HOMEPAGE="http://jdictionary.sourceforge.net/;
-SRC_URI="mirror://sourceforge/jdictionary/jdictionary-${PV/./_}.zip"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-RDEPEND="
-   >=virtual/jre-1.5"
-DEPEND="
-   >=virtual/jdk-1.5
-   app-arch/unzip"
-
-S="${WORKDIR}/${PN}"
-
-java_prepare() {
-   mkdir compiled || die
-   unpack ./${PN}.jar || die
-   cp -r resources compiled || die
-
-   find \( -name '*.jar' -o -name '*.class' \) -exec rm {} + || die
-}
-
-src_compile() {
-   ejavac -classpath . -encoding ISO-8859-1 $(find . -name \*.java) -d 
compiled || die
-   jar cf ${PN}.jar -C compiled . || die
-}
-
-src_install() {
-   java-pkg_dojar ${PN}.jar
-
-   java-pkg_dolauncher ${PN} --main info.jdictionary.JDictionary
-   make_desktop_entry ${PN} JDictionary
-}

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



[gentoo-commits] repo/gentoo:master commit in: app-text/jing/files/, app-text/jing/

2015-09-13 Thread Patrice Clement
commit: f16b41184a85260eb58558bd9ecdfbb9e812fa4f
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:05:05 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:25:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16b4118

app-text/jing: Package removal. Fixes bug 557210.

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

 app-text/jing/Manifest |  1 -
 app-text/jing/files/build-patch.diff   | 23 ---
 app-text/jing/files/build-r1.xml   | 34 ---
 app-text/jing/files/jing-20030619-xerces.patch | 33 --
 app-text/jing/jing-2009-r1.ebuild  | 83 --
 app-text/jing/jing-2009-r2.ebuild  | 83 --
 app-text/jing/metadata.xml |  5 --
 7 files changed, 262 deletions(-)

diff --git a/app-text/jing/Manifest b/app-text/jing/Manifest
deleted file mode 100644
index ff25e5a..000
--- a/app-text/jing/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST jing-2009.zip 3207457 SHA256 
57690280aa6b5521b570aaa5fe77e1b48d84b2a1b0a24da62f9b982c4416908c SHA512 
d30e5569157cfb78d711a91d5a032a8c3ed3cba5579d15cc17fe963a591b4b5f1b6ae7c7c0b8042461ff5d04572dfd6eb355537767bf3b554baa67cfe35a2813
 WHIRLPOOL 
83242897d32ac7f617c24f99107abc239770706d742d58a576c2d15e7dc7e61474cc5b95eae8d96547755a8c5abc16f8b8bec9904bf7b30c4dcc8bdb9f66a5a7

diff --git a/app-text/jing/files/build-patch.diff 
b/app-text/jing/files/build-patch.diff
deleted file mode 100644
index f60d9af..000
--- a/app-text/jing/files/build-patch.diff
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -uprN 
src.orig/com/thaiopensource/validate/schematron/SaxonSchemaReaderFactory.java 
src/com/thaiopensource/validate/schematron/SaxonSchemaReaderFactory.java
 
src.orig/com/thaiopensource/validate/schematron/SaxonSchemaReaderFactory.java   
   2004-11-07 02:12:02.231733296 +0100
-+++ src/com/thaiopensource/validate/schematron/SaxonSchemaReaderFactory.java   
2004-11-07 02:11:40.888977888 +0100
-@@ -1,6 +1,6 @@
- package com.thaiopensource.validate.schematron;
- 
--import com.icl.saxon.TransformerFactoryImpl;
-+import net.sf.saxon.TransformerFactoryImpl;
- 
- import javax.xml.transform.TransformerFactory;
- 
-diff -uprN 
src.orig/com/thaiopensource/validate/schematron/SchemaReaderImpl.java 
src/com/thaiopensource/validate/schematron/SchemaReaderImpl.java
 src.orig/com/thaiopensource/validate/schematron/SchemaReaderImpl.java  
2004-11-07 02:12:02.230733448 +0100
-+++ src/com/thaiopensource/validate/schematron/SchemaReaderImpl.java   
2004-11-07 02:11:40.886978192 +0100
-@@ -85,7 +85,7 @@ class SchemaReaderImpl implements Schema
-   private void initTransformerFactory(TransformerFactory factory) {
- String name = factory.getClass().getName();
- try {
--  if (name.equals("com.icl.saxon.TransformerFactoryImpl"))
-+  if (name.equals("net.sf.saxon.TransformerFactoryImpl"))
- factory.setAttribute("http://icl.com/saxon/feature/linenumbering;,
-  Boolean.TRUE);
-   else if 
(name.equals("org.apache.xalan.processor.TransformerFactoryImpl")) {

diff --git a/app-text/jing/files/build-r1.xml b/app-text/jing/files/build-r1.xml
deleted file mode 100644
index 8de4f9a..000
--- a/app-text/jing/files/build-r1.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-
-   
-   
-   
-   
-   
-

diff --git a/app-text/jing/files/jing-20030619-xerces.patch 
b/app-text/jing/files/jing-20030619-xerces.patch
deleted file mode 100644
index 5873822..000
--- a/app-text/jing/files/jing-20030619-xerces.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Only in jing-20030619: META-INF
-diff -ru jing-20030619-orig/src/com/thaiopensource/relaxng/util/JingTask.java 
jing-20030619/src/com/thaiopensource/relaxng/util/JingTask.java
 jing-20030619-orig/src/com/thaiopensource/relaxng/util/JingTask.java   
2003-05-30 20:54:52.0 -0400
-+++ jing-20030619/src/com/thaiopensource/relaxng/util/JingTask.java
2006-01-22 00:14:34.0 -0500
-@@ -178,4 +178,11 @@
- filesets.addElement(set);
-   }
- 
-+  public String getXMLVersion() {
-+throw new UnsupportedOperationException();
-+  }
-+
-+  public int getCharacterOffset() {
-+throw new UnsupportedOperationException();
-+  }
- }
-diff -ru 
jing-20030619-orig/src/com/thaiopensource/validate/xerces/ValidatorImpl.java 
jing-20030619/src/com/thaiopensource/validate/xerces/ValidatorImpl.java
 
jing-20030619-orig/src/com/thaiopensource/validate/xerces/ValidatorImpl.java
   2003-06-19 13:57:22.0 -0400

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

2015-09-13 Thread Patrice Clement
commit: a1a07fbd117cc1cdc4c5d27d7161ed19ceae8ebc
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:09:29 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:25:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a07fbd

dev-java/httpunit: Package removal. Fixes bug 557920.

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

 dev-java/httpunit/Manifest   |  1 -
 dev-java/httpunit/files/rhino-fix-1.6.2.diff | 25 -
 dev-java/httpunit/httpunit-1.7.ebuild| 56 
 dev-java/httpunit/metadata.xml   | 15 
 4 files changed, 97 deletions(-)

diff --git a/dev-java/httpunit/Manifest b/dev-java/httpunit/Manifest
deleted file mode 100644
index 98af4a5..000
--- a/dev-java/httpunit/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST httpunit-1.7.zip 4181983 SHA256 
ee178a368f0db6979dfdca24c655f73726c3729fb76dafb064a8fdf8b057f625 SHA512 
1d109b8ef65fb80d7904c2786db31916b2ef26c5b92730ce41b90c441d3e8d46a4a8a84a5e82237b52412c6bc29fc6eff18297d2f961616bd8429bf5d579567e
 WHIRLPOOL 
2c397d2a9788812ee413ae682393be9103535942e695a2103ff404fe1a2ec539ed8b22201cdc2c10b011db729f821d91fe100d700b3657600c284d484070b5ce

diff --git a/dev-java/httpunit/files/rhino-fix-1.6.2.diff 
b/dev-java/httpunit/files/rhino-fix-1.6.2.diff
deleted file mode 100644
index c439d71..000
--- a/dev-java/httpunit/files/rhino-fix-1.6.2.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -Nur httpunit-1.6.2/src/com/meterware/httpunit/javascript/JavaScript.java 
httpunit-1.6.2_fixed/src/com/meterware/httpunit/javascript/JavaScript.java
 httpunit-1.6.2/src/com/meterware/httpunit/javascript/JavaScript.java   
2006-03-26 22:16:46.0 +0300
-+++ httpunit-1.6.2_fixed/src/com/meterware/httpunit/javascript/JavaScript.java 
2007-10-14 20:34:03.0 +0300
-@@ -838,8 +838,6 @@
- static ElementArray newElementArray( Scriptable parent ) {
- try {
- return (ElementArray) Context.getCurrentContext().newObject( 
parent, "ElementArray" );
--} catch (PropertyException e) {
--throw new RhinoException( e );
- } catch (NotAFunctionException e) {
- throw new RhinoException( e );
- } catch (JavaScriptException e) {
-@@ -1144,10 +1142,10 @@
- 
- class RhinoException extends RuntimeException {
- 
--private Exception _cause;
-+private Throwable _cause;
- 
- 
--public RhinoException( Exception cause ) {
-+public RhinoException( Throwable cause ) {
- _cause = cause;
- }
- 

diff --git a/dev-java/httpunit/httpunit-1.7.ebuild 
b/dev-java/httpunit/httpunit-1.7.ebuild
deleted file mode 100644
index 653407b..000
--- a/dev-java/httpunit/httpunit-1.7.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="HttpUnit emulates the relevant portions of browser behavior"
-HOMEPAGE="http://httpunit.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-CDEPEND="
-   >=dev-java/junit-3.8:0
-   dev-java/rhino:1.6
-   dev-java/jtidy:0
-   java-virtuals/servlet-api:2.3
-   dev-java/xerces:2"
-
-RDEPEND=">=virtual/jre-1.5
-   ${CDEPEND}"
-
-DEPEND=">=virtual/jdk-1.5
-   ${CDEPEND}"
-
-java_prepare() {
-   find . -name "*.jar" | xargs rm -v
-
-   epatch "${FILESDIR}/rhino-fix-1.6.2.diff"
-
-   cd jars || die
-   java-pkg_jar-from junit,rhino-1.6,xerces-2,jtidy,servlet-api-2.3
-}
-
-src_compile() {
-   java-pkg_filter-compiler jikes
-
-   eant clean jar $(use_doc javadocs)
-}
-
-src_install() {
-   java-pkg_dojar "lib/${PN}.jar"
-
-   dodoc doc/*.txt
-
-   if use doc; then
-   dohtml -r doc/manual doc/tutorial
-   java-pkg_dojavadoc doc/api
-   fi
-}

diff --git a/dev-java/httpunit/metadata.xml b/dev-java/httpunit/metadata.xml
deleted file mode 100644
index 4c66010..000
--- a/dev-java/httpunit/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-   HttpUnit emulates the relevant portions of browser behavior,
-   including form submission, JavaScript, basic http 
authentication,
-   cookies and automatic page redirection, and allows Java test 
code
-   to examine returned pages either as text, an XML DOM, or 
containers
-   of forms, tables, and links.
-   
-   
-   httpunit
-   
-



[gentoo-commits] repo/gentoo:master commit in: dev-java/base64/, dev-java/java-xmlbuilder/

2015-09-13 Thread Patrice Clement
commit: b387cc897775d697bf3aa3d42ce67d5aa3c93d89
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:10:11 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:25:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b387cc89

dev-java/{base64,java-xmlbuilder}: Packages removal. Fixes bug 557866.

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

 dev-java/base64/Manifest   |  1 -
 dev-java/base64/base64-2.3.7.ebuild| 49 --
 dev-java/base64/metadata.xml   |  8 
 dev-java/java-xmlbuilder/Manifest  |  1 -
 .../java-xmlbuilder/java-xmlbuilder-0.6-r1.ebuild  | 37 
 dev-java/java-xmlbuilder/metadata.xml  |  8 
 6 files changed, 104 deletions(-)

diff --git a/dev-java/base64/Manifest b/dev-java/base64/Manifest
deleted file mode 100644
index 68a4249..000
--- a/dev-java/base64/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST base64-2.3.7.zip 50473 SHA256 
28003fa44f7fc96f247a0da6e7cb451cce0423456ef8652c6f52a91df0e39edb SHA512 
11411f7a75ecb67d54cf1f2de253fcb18437205d4e3b6a1ddd7ad84564f4a0881f14200c7c700521b232b857ff13ea4a192cbbc226c278fe8c88ff8d4b07
 WHIRLPOOL 
0338691bb35e09fa04254366898740bac58b2d827a5860d18ee685111b81dc897c4424b0ecd1b6e1dd655cebad6cf0f448cbee302309e033b768354acc46aa15

diff --git a/dev-java/base64/base64-2.3.7.ebuild 
b/dev-java/base64/base64-2.3.7.ebuild
deleted file mode 100644
index e47c1b1..000
--- a/dev-java/base64/base64-2.3.7.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 versionator
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="A Base64 encoder written in java"
-HOMEPAGE="http://iharder.sourceforge.net/current/java/base64/;
-SRC_URI="mirror://sourceforge/iharder/${PN}/${MY_PV}/${PN^}-v${PV}.zip -> 
${P}.zip"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.5"
-DEPEND=">=virtual/jdk-1.5"
-
-S="${WORKDIR}/${PN^}-v${PV}"
-JAVA_SRC_DIR="${S}"
-
-src_prepare() {
-   rm -r "${S}"/api || die
-   mkdir -p "${S}/net/iharder" || die
-   cp "${S}"/*.java "${S}/net/iharder" || die
-   sed -i '1i package net.iharder;' "${S}"/net/iharder/*.java || die
-}
-
-src_compile() {
-   local build_dir="${S}/build"
-   mkdir ${build_dir} || die
-   ejavac -nowarn -d ${build_dir} $(find -name "*.java")
-   javadoc -d api -quiet *.java || die "javadoc failed"
-}
-
-src_install() {
-   jar cf "${PN}.jar" -C "${S}/build" . || die "jar failed"
-   java-pkg_dojar "${PN}.jar"
-
-   use doc && java-pkg_dohtml -r api/
-   use source && java-pkg_dosrc *.java
-}

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

diff --git a/dev-java/java-xmlbuilder/Manifest 
b/dev-java/java-xmlbuilder/Manifest
deleted file mode 100644
index 73b6871..000
--- a/dev-java/java-xmlbuilder/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST java-xmlbuilder-0.6.tar.bz2 14612 SHA256 
938ed969c80399a2c75e81a0283b9fc9d752d983362a265d389e1b46cb972633 SHA512 
b73e0a326563af2aaa6f9cc0600d64b9ba6969430e27ad0dfff1b20b253e46d2888e5654c301c0b3b5b70c5766a2fbd94776df1ccb37d9d1e90bc76f190c5a92
 WHIRLPOOL 
bb24b128bacd34113b6129ccb23e51bae757b6fee2070638ea3d889cfdfe3404340dd5b4f6f430afdbd7d3a832cfdbbf7a661c729177f9504556cd2b21069be9

diff --git a/dev-java/java-xmlbuilder/java-xmlbuilder-0.6-r1.ebuild 
b/dev-java/java-xmlbuilder/java-xmlbuilder-0.6-r1.ebuild
deleted file mode 100644
index dd6b6f9..000
--- a/dev-java/java-xmlbuilder/java-xmlbuilder-0.6-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="A utility that allows simple XML documents to be constructed 
using Java"
-HOMEPAGE="https://github.com/jmurty/java-xmlbuilder;
-SRC_URI="https://dev.gentoo.org/~ercpe/distfiles/${CATEGORY}/${PN}/${P}.tar.bz2;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="dev-java/base64:0"
-RDEPEND=">=virtual/jre-1.5
-   ${CDEPEND}"
-DEPEND=">=virtual/jdk-1.5
-   ${CDEPEND}
-   test? ( dev-java/junit:0 )
-"
-
-S="${WORKDIR}/${P}"
-JAVA_SRC_DIR="src/main/java"
-JAVA_GENTOO_CLASSPATH="base64"
-
-src_test() {
-   mkdir target/tests || die
-   testcp="$(java-pkg_getjars 
${JAVA_GENTOO_CLASSPATH},junit):target/tests:${S}/${PN}.jar"
-   ejavac -cp "${testcp}" -d target/tests 

[gentoo-commits] repo/gentoo:master commit in: dev-java/xdoclet/, dev-java/mockobjects/, dev-java/xdoclet/files/, ...

2015-09-13 Thread Patrice Clement
commit: 51e1b394cdea39a3f6cd40d3ee772c204e56cab0
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:11:12 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:26:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51e1b394

dev-java/{mockobjects,xdoclet}: Packages removal. Fixes bug 190307.

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

 dev-java/mockobjects/Manifest  |   1 -
 .../files/mockobjects-0.09-gentoo.patch| 110 -
 .../files/mockobjects-0.09-java15.patch|  11 -
 .../mockobjects/files/mockobjects-0.09-junit.patch |  11 -
 dev-java/mockobjects/metadata.xml  |  36 ---
 dev-java/mockobjects/mockobjects-0.09-r4.ebuild|  66 -
 dev-java/xdoclet/Manifest  |   1 -
 .../xdoclet/files/xdoclet-1.2.2-buildfile.patch|  48 
 .../xdoclet/files/xdoclet-1.2.2-interface.patch| 271 -
 .../xdoclet/files/xdoclet-1.2.3-buildfile.patch|  48 
 .../xdoclet/files/xdoclet-1.2.3-interface.patch| 271 -
 .../xdoclet/files/xdoclet-modules_common_ent.patch |   9 -
 dev-java/xdoclet/metadata.xml  |  17 --
 dev-java/xdoclet/xdoclet-1.2.3.ebuild  |  67 -
 14 files changed, 967 deletions(-)

diff --git a/dev-java/mockobjects/Manifest b/dev-java/mockobjects/Manifest
deleted file mode 100644
index 9b4ad07..000
--- a/dev-java/mockobjects/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mockobjects-java-0.09-gentoo.tar.bz2 98965 SHA256 
e869b4cb103e07d041f06f5fa5dfaa5e6eaad2d709ab2cf5446c9fff3b4f5d16 SHA512 
212616dc1ebe6a1e21cea932d1eb9b7fd7d391f45f70f7d532a2a65cb71d3dcc69c6eb11d01875a6dfda4874a319cae1b45bb53e6291811a1f11c5a7dee02523
 WHIRLPOOL 
11d56f40b21de1609a3dd668b279a23e01e53c26b2b29bca36acf0e21b78f2a279adda20bd74fbc4381ffdd6707985974ca3a33794976ca7a9c009233fcd20c3

diff --git a/dev-java/mockobjects/files/mockobjects-0.09-gentoo.patch 
b/dev-java/mockobjects/files/mockobjects-0.09-gentoo.patch
deleted file mode 100644
index 22ac56c..000
--- a/dev-java/mockobjects/files/mockobjects-0.09-gentoo.patch
+++ /dev/null
@@ -1,110 +0,0 @@
 build.xml.orig 2007-01-07 15:54:42.0 +0100
-+++ build.xml  2007-01-07 16:40:45.0 +0100
-@@ -70,7 +70,8 @@
- 
- 
- 
--
- 
-+  -->
- 
- 
- 
-@@ -118,7 +120,6 @@
-srcdir="${src.core.dir}">
-   
- 
--
-   
- 
- 
-@@ -134,7 +135,6 @@
-   
-   
- 
--
- 
-   
- 
-@@ -158,7 +158,6 @@
- 
-   
- 
--
- 
- 
-   
-@@ -179,7 +178,6 @@
- 
- 
- 
--
-   
- 
-   
-@@ -222,7 +220,6 @@
- 
- 
-   
--  
-   
-   
- 
-@@ -234,7 +231,7 @@
-   
- 
-   
-+  depends="compile-j2ee, jar-core, jar-jdk, jar-j2ee"/>
- 
-   
- 
-   
- 
-@@ -322,7 +319,6 @@
- 
-   
- 
--
-   
-   
- 
-@@ -401,8 +397,8 @@
-

- -->
-   
-+  depends="clean, jar, javadoc, dist"
-+  description="do it all (clean, jar, javadoc, dist)">
-   
- 
-   
-@@ -423,5 +419,12 @@
- 
-   
- 
-+   
-+   
-+ 
-+
-+ 
-+
-+
- 
- 

diff --git a/dev-java/mockobjects/files/mockobjects-0.09-java15.patch 
b/dev-java/mockobjects/files/mockobjects-0.09-java15.patch
deleted file mode 100644
index 6fc419a..000
--- a/dev-java/mockobjects/files/mockobjects-0.09-java15.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 src/jdk/common/alt/java/io/FileImpl.java   2006-01-15 13:49:06.0 
+0100
-+++ src/jdk/common/alt/java/io/FileImpl.java   2006-01-15 13:47:59.0 
+0100
-@@ -171,7 +171,7 @@
- }
- 
- public int compareTo(Object o) {
--return file.compareTo(o);
-+return file.compareTo((java.io.File) o);
- }
- 
- public java.io.File getRealFile() {

diff --git a/dev-java/mockobjects/files/mockobjects-0.09-junit.patch 
b/dev-java/mockobjects/files/mockobjects-0.09-junit.patch
deleted file mode 100644
index fe80135..000
--- a/dev-java/mockobjects/files/mockobjects-0.09-junit.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 src/core/com/mockobjects/util/AssertMo.java2003-05-18 
22:59:40.0 +0200
-+++ src/core/com/mockobjects/util/AssertMo.java2007-01-07 
14:46:34.0 +0100
-@@ -77,7 +77,7 @@
- assertTrue("Should not have verified", threwException);
- }
- 
--static protected void failNotEquals(
-+static public void failNotEquals(
- String message,
- Object expected,
- Object actual) {

diff --git a/dev-java/mockobjects/metadata.xml 
b/dev-java/mockobjects/metadata.xml
deleted file mode 100644
index 4cc3c69..000
--- a/dev-java/mockobjects/metadata.xml
+++ /dev/null
@@ 

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

2015-09-13 Thread Patrice Clement
commit: b5d960323cad56ee2ff7347794514ba78b46eee5
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 16:25:29 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 16:26:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d96032

package.mask: Clean up old entries.

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 35a002e..eb7c790 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -103,58 +103,18 @@ x11-base/nouveau-drm
 # Masked for removal in 30 days.
 dev-ruby/ruby-goocanvas
 
-# Patrice Clement  (19 Aug 2015)
-# Upstream dead: no releases since 2010.
-# Technology has moved on and there are far better alternatives
-# (easymock, mockito and jmock).
-# Masked for removal in 30 days. See bug #190307.
-dev-java/mockobjects
-
-# Patrice Clement  (19 Aug 2015)
-# Upstream dead too: no releases since 2005.
-# Masked for removal in 30 days. See bug #190307.
-dev-java/xdoclet
-
 # Johannes Huber  (18 Aug 2015)
 # Masked for removal in 30 days. Does not compile with
 # dev-python/PyQt4-4.11.4, which blocks stabilization.
 # Dead upstream. Last commit 6 years ago. See bug #558020.
 net-misc/guidedog
 
-# Patrice Clement  (16 Aug 2015)
-# Dependency of dev-java/base64. This project isn't getting a lot of traction
-# and we already have a ton of Java serialiser APIs in the tree.
-# Masked for removal. See bug #557866.
-dev-java/java-xmlbuilder
-
-# Patrice Clement  (16 Aug 2015)
-# Last release was in 2008. Does not compile with recent JDKs (>= 1.8).
-# Masked for removal. See bug #557920.
-dev-java/httpunit
-
-# Patrice Clement  (16 Aug 2015)
-# Project discontinued: part of the java.util namespace as of Java 8.
-# See https://docs.oracle.com/javase/8/docs/api/java/util/Base64.html.
-# Masked for removal. See bug #557866.
-dev-java/base64
-
 # Brian Evans  (16 Aug 2015)
 # Mask new PEAR installer as it is likely to break
 # many old scripts
 >=dev-php/pear-1.10.0_alpha1
 >=dev-php/PEAR-PEAR-1.10.0_alpha1
 
-# Patrice Clement  (14 Aug 2015)
-# Unreachable HOMEPAGE (dead). Very very very old package: 
-# last release came out in 2001.
-# Masked for removal in 30 days. See bug #232666.
-dev-java/tclib
-
-# Patrice Clement  (14 Aug 2015)
-# Last release is over 13 years old (!).
-# Masked for removal in 30 days. See bug #177032.
-app-text/jdictionary
-
 # Johannes Huber  (13 Aug 2015)
 # Nepomuk removal. Announced via portage news item on 2015/08/11.
 # Removal in 30 days. Please switch to the default semantic desktop
@@ -176,11 +136,6 @@ kde-misc/nepomukshell
 kde-misc/pgame
 media-video/bangarang
 
-# Patrice Clement  (11 Aug 2015)
-# Old and doesn't compile with recent JDKs (>= 1.8).
-# Masked for removal in 30 days. See bug #557210.
-app-text/jing
-
 # Johannes Huber  (10 Aug 2015)
 # Masked for removal in 30 days. Not needed anymore for
 # KDE Old PIM 4.4.2015.06.



[gentoo-commits] repo/gentoo:master commit in: app-office/geierlein/, app-office/geierlein/files/

2015-09-13 Thread Hanno Boeck
commit: e739a04b10e62a3e05a35878d6161eb0c2198621
Author: Hanno Böck  gentoo  org>
AuthorDate: Sun Sep 13 11:02:22 2015 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sun Sep 13 11:02:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e739a04b

app-office/geierlein: bump to 0.7.8, fix #560094

Package-Manager: portage-2.2.20.1

 app-office/geierlein/Manifest  |  1 +
 .../files/geierlein-work-with-firefox-bin.diff | 12 
 app-office/geierlein/geierlein-0.7.8.ebuild| 36 ++
 3 files changed, 49 insertions(+)

diff --git a/app-office/geierlein/Manifest b/app-office/geierlein/Manifest
index 2110c6b..0e33726 100644
--- a/app-office/geierlein/Manifest
+++ b/app-office/geierlein/Manifest
@@ -2,3 +2,4 @@ DIST geierlein-0.6.1.tar.gz 994969 SHA256 
f7f66b3c4fba41b071cc5c7339ec76854d12e5
 DIST geierlein-0.6.2.tar.gz 994962 SHA256 
1a247c95122758f86fdebd5b3f55bcdd9c6c04cdf58d33eb874c9cc4cc7dc731 SHA512 
3eacf273d85fb23bd763cea9db0e09fecbf410b6e75eec30fd0a44df68a43d478e1555b6f64468b4a3acf26bc6cb5a9c67f7a39ed30ef3a42255ff740a883c5c
 WHIRLPOOL 
acb5375d03547be8a49e58f71011c485c88cc65b640a16d630a5fc773056744b53ff38766dddc91d2bc86f198c85f647a3b39b7adcbc05dfe2edb84d8760f21c
 DIST geierlein-0.7.1.tar.gz 999105 SHA256 
63bfba1cea558797c300a1e96122fb56a9ae6a83be02e82681ddfcdbb37515ce SHA512 
6cb6f8b45406e51c8fdf407cc0b70dae19327556daff3db2ac34908775ebed51434dd5878254495f150bf0487eda65647aa79f7e03fb073b8c2486b8bfa691fc
 WHIRLPOOL 
00100fd7732ca3500b00aa428979ce36c06ae992b4e4917c8b72d07cd051ef75fc8c0047acd3fc0e2f2dd3f503162e4be83b5173e238745f53cc25cb129daec3
 DIST geierlein-0.7.3.tar.gz 999078 SHA256 
81c3e7f5d37fe275260e6a00123c335ffb2deb056c657c5c5e9b7e78724a457c SHA512 
b21d2e66ff5a7474be3c05aa7cb25be7c4dc3cb3c1728c54b64942827a822aeacea0b1fe3b04e403504bb01e7fd7fbf9e6cdc4d7bd522d1000915dc6a27114f8
 WHIRLPOOL 
52a5ae2dfb33f66e588b152928c68e4bf49d2afb22af89742e786f29fed2a0939c3422f2c71baa87de1025465bb294b3720f4065703bd2e8f2c036f04761adc3
+DIST geierlein-0.7.8.tar.gz 999082 SHA256 
7060242b791966cd222d7b704beb2c78a40e2b2cab068c8a5174a0dc2c0edfe8 SHA512 
8be34d6bed34af4dc9d1182916b1ce763c66a5426a271cc06655dee80f782c22edceded2202131cabf8752b46b68d6effe81f1fcb4f1e60a88814d6d4680e0c2
 WHIRLPOOL 
908b6b4af239eeeb8616f626a69e373de85cd955f2247d6d7cf4db34b8cc491e063c011f3bfe6c3d067a858a404e52648b136b695514343a47b67773b6635ee5

diff --git a/app-office/geierlein/files/geierlein-work-with-firefox-bin.diff 
b/app-office/geierlein/files/geierlein-work-with-firefox-bin.diff
new file mode 100644
index 000..4fbd894
--- /dev/null
+++ b/app-office/geierlein/files/geierlein-work-with-firefox-bin.diff
@@ -0,0 +1,12 @@
+diff -Naur geierlein-0.7.3/bin/xgeierlein.in 
geierlein-0.7.3-1/bin/xgeierlein.in
+--- geierlein-0.7.3/bin/xgeierlein.in  2015-02-12 12:38:29.0 +0100
 geierlein-0.7.3-1/bin/xgeierlein.in2015-05-09 10:19:28.780700796 
+0200
+@@ -19,7 +19,7 @@
+   exit 0
+ fi
+ 
+-for search in firefox iceweasel xulrunner; do
++for search in firefox firefox-bin iceweasel xulrunner; do
+   if [ "$XULRUNNER" = "" ]; then
+ XULRUNNER="$(which $search)"
+   fi

diff --git a/app-office/geierlein/geierlein-0.7.8.ebuild 
b/app-office/geierlein/geierlein-0.7.8.ebuild
new file mode 100644
index 000..e114d50
--- /dev/null
+++ b/app-office/geierlein/geierlein-0.7.8.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="Submit tax forms (Umsatzsteuervoranmeldung) to the german digital 
tax project ELSTER"
+HOMEPAGE="http://stesie.github.com/geierlein/;
+SRC_URI="https://github.com/stesie/geierlein/archive/V${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+RDEPEND="|| ( www-client/firefox www-client/firefox-bin )"
+DEPEND=""
+
+# needs nodejs and a couple of modules we don't have packaged
+RESTRICT="test"
+
+src_prepare() {
+   epatch "${FILESDIR}"/geierlein-work-with-firefox-bin.diff
+}
+
+src_compile() {
+   emake prefix=/usr
+}
+
+src_install() {
+   emake \
+   DESTDIR="${D}" \
+   prefix=/usr \
+   install || die
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-settings/files/, xfce-base/xfce4-settings/

2015-09-13 Thread Jason Zaman
commit: 096e2a949ecadd5a4fdf3731249431c57414fbcb
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Sep 13 11:53:59 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Sep 13 11:54:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=096e2a94

xfce-base/xfce4-settings: fix HDMI power cycling bug

Thanks to Micke Eriksson for testing

Gentoo-Bug: https://bugs.gentoo.org/553896

Package-Manager: portage-2.2.20.1

 .../xfce4-settings-4.12.0-HDMI-power-cycling.patch | 15 ++
 .../xfce4-settings/xfce4-settings-4.12.0-r1.ebuild | 55 ++
 2 files changed, 70 insertions(+)

diff --git 
a/xfce-base/xfce4-settings/files/xfce4-settings-4.12.0-HDMI-power-cycling.patch 
b/xfce-base/xfce4-settings/files/xfce4-settings-4.12.0-HDMI-power-cycling.patch
new file mode 100644
index 000..895dd58
--- /dev/null
+++ 
b/xfce-base/xfce4-settings/files/xfce4-settings-4.12.0-HDMI-power-cycling.patch
@@ -0,0 +1,15 @@
+From https://bugzilla.xfce.org/show_bug.cgi?id=11107#c3
+
+diff --git a/xfsettingsd/displays.c b/xfsettingsd/displays.c
+index 3497804..449500b 100644
+--- a/xfsettingsd/displays.c
 b/xfsettingsd/displays.c
+@@ -368,7 +368,7 @@ xfce_displays_helper_reload (XfceDisplaysHelper *helper)
+ xfsettings_dbg (XFSD_DEBUG_DISPLAYS, "Refreshing RandR cache.");
+ 
+ /* Free the caches */
+-g_ptr_array_unref (helper->outputs);
++g_ptr_array_free (helper->outputs, TRUE);
+ g_ptr_array_unref (helper->crtcs);
+ 
+ gdk_error_trap_push ();

diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r1.ebuild 
b/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r1.ebuild
new file mode 100644
index 000..562a627
--- /dev/null
+++ b/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit xfconf
+
+DESCRIPTION="Configuration system for the Xfce desktop environment"
+HOMEPAGE="http://www.xfce.org/projects/;
+SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
+IUSE="debug libcanberra libinput libnotify upower +xklavier"
+
+RDEPEND=">=dev-libs/dbus-glib-0.100
+   >=dev-libs/glib-2.24
+   media-libs/fontconfig
+   >=x11-libs/gtk+-2.20:2
+   x11-libs/libX11
+   >=x11-libs/libXcursor-1.1
+   >=x11-libs/libXi-1.3
+   >=x11-libs/libXrandr-1.2
+   >=xfce-base/garcon-0.2
+   >=xfce-base/exo-0.8
+   >=xfce-base/libxfce4ui-4.11
+   >=xfce-base/libxfce4util-4.11
+   >=xfce-base/xfconf-4.10
+   libcanberra? ( >=media-libs/libcanberra-0.25[sound] )
+   libinput? ( x11-drivers/xf86-input-libinput )
+   libnotify? ( >=x11-libs/libnotify-0.7 )
+   upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )
+   xklavier? ( >=x11-libs/libxklavier-5 )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   sys-devel/gettext
+   >=x11-proto/inputproto-1.4
+   x11-proto/xproto"
+
+pkg_setup() {
+   XFCONF=(
+   $(use_enable upower upower-glib)
+   $(use_enable libinput xorg-libinput)
+   $(use_enable libnotify)
+   $(use_enable xklavier libxklavier)
+   $(use_enable libcanberra sound-settings)
+   $(xfconf_use_debug)
+   )
+
+   DOCS=( AUTHORS ChangeLog NEWS TODO )
+
+   PATCHES=( "${FILESDIR}/${P}-HDMI-power-cycling.patch" )
+}



[gentoo-commits] sites/www:master commit in: inside-gentoo/developers/

2015-09-13 Thread Alex Legler
commit: 13472d29d92a3bc8c561ac28d5958c81567d8c35
Author: Alex Legler  a3li  li>
AuthorDate: Sun Sep 13 11:38:50 2015 +
Commit: Alex Legler  gentoo  org>
CommitDate: Sun Sep 13 11:38:50 2015 +
URL:https://gitweb.gentoo.org/sites/www.git/commit/?id=13472d29

Add jump labels for herd names

 inside-gentoo/developers/herds.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inside-gentoo/developers/herds.html 
b/inside-gentoo/developers/herds.html
index 2537126..84f30e0 100644
--- a/inside-gentoo/developers/herds.html
+++ b/inside-gentoo/developers/herds.html
@@ -18,7 +18,7 @@ layout: page-nav3
 
 
 {% for entry in site.data.herds %}
-{{ entry[0] | xml_escape }}
+{{ entry[0] | xml_escape }}
 
 
   



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/wxmaxima/

2015-09-13 Thread Andrey Grozin
commit: b83109ad0a10cd6f28c31d6cfe5ab220acbeb5a7
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sun Sep 13 12:12:43 2015 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sun Sep 13 12:12:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b83109ad

sci-mathematics/wxmaxima: bump to 15.08.2

Package-Manager: portage-2.2.20.1

 sci-mathematics/wxmaxima/Manifest|  1 +
 sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild | 76 
 2 files changed, 77 insertions(+)

diff --git a/sci-mathematics/wxmaxima/Manifest 
b/sci-mathematics/wxmaxima/Manifest
index de7dad8..3b20c8d 100644
--- a/sci-mathematics/wxmaxima/Manifest
+++ b/sci-mathematics/wxmaxima/Manifest
@@ -2,3 +2,4 @@ DIST wxMaxima-13.04.2.tar.gz 1652680 SHA256 
29352db75dd3ff27393ab0971543fd0b3c3a
 DIST wxmaxima-15.04.0.tar.gz 4990313 SHA256 
c178067a2f75d91dd378f88b4d0f87af6b2705ca32bea509d63e7347b2a1d21e SHA512 
1a899259698da38f97a1859ba0526406cbc654a130dc1d18e01cf248ac4d7292c82cb00dd92ce2fac2c3cfc002788fdef0a6a4f95eca54b9096efc73c6aa45b7
 WHIRLPOOL 
225456c073b1aa87d2e599b9c63244ff7c97378fb6b5a60fcb8730655d193a0f032b27a1264e12eefb4abf08389f2337a11c380b6d89af2de9a4fb6e14f614dc
 DIST wxmaxima-15.08.1-missing.tar.bz2 14699 SHA256 
62a84bf32e61d39f66787a7fb2cdbf67f322ddee2d7734c23650739476e97b17 SHA512 
de64163643652a288fd6f65076df94074a28895a13ae8766a1913e12833d3dbb1ae4bbdbcd6a69221e5bde7000b93e3a86a223b1320d25581d32c61ea6ab3b98
 WHIRLPOOL 
e96dac6ffd227597721a7e8fa200d99422e722ec5d3c1733c29904fdf1f6e2bae2ba1a2c8e98e217e7a089c5857c1ccf5d10950bd98cdbde0dfb19039a60262d
 DIST wxmaxima-15.08.1.tar.gz 5577228 SHA256 
82ad5314a88e53ff41dc431afb44ef1a47738686786e8cc8b4c48e0c147f4ffd SHA512 
4ab7a8e992904e18e571b716d35f0d5286363b287853e3ebacc64e63df901fe192abdef16db8dc8defabb26a25f8f8956a7bad466862ee0d19d8846d4e3fec94
 WHIRLPOOL 
492c6ccf79640c9bfdb8d7aad283f5e0941bba8b38d037285712603112026e0feaf8873025657486df44ff718e559d9e690076e78f86e560f5d6b73ecd096ad9
+DIST wxmaxima-15.08.2.tar.gz 5592673 SHA256 
7ad3f018e42d15d06bee5af10053edb72e441c1d1feee318dc6eb927db6a26c5 SHA512 
a537c49477f54df4fd9e4e42a5e0d0d740f1ede817d807a98b7cec877a3ad77b2be0a61ae487a7fa5beb193b112eca163b8873292ecab5acf118d58a91e91af6
 WHIRLPOOL 
a4df36704bbd33f841ddf3b9651662a092708850cdc637e6f6bfabc195c1e7e34dd66e14d92ee1cba69f3810bc74a4295837709d38bf6d6ce83b81d7776a3b9a

diff --git a/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild 
b/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild
new file mode 100644
index 000..912f067
--- /dev/null
+++ b/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+WX_GTK_VER="3.0"
+
+inherit eutils gnome2-utils wxwidgets fdo-mime
+
+DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit"
+HOMEPAGE="http://andrejv.github.io/wxmaxima/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+DEPEND="
+   dev-libs/libxml2:2
+   x11-libs/wxGTK:${WX_GTK_VER}"
+RDEPEND="${DEPEND}
+   media-fonts/jsmath
+   sci-visualization/gnuplot[wxwidgets]
+   sci-mathematics/maxima"
+
+src_prepare() {
+   local i
+
+   # consistent package names
+   sed -e "s:\${datadir}/wxMaxima:\${datadir}/${PN}:g" \
+   -i Makefile.in data/Makefile.in test/Makefile.in || die "sed 
failed"
+
+   sed -e 's:share/wxMaxima:share/wxmaxima:g' \
+   -i src/wxMaxima.cpp src/wxMaximaFrame.cpp src/Dirstructure.cpp 
src/Dirstructure.h \
+   || die "sed failed"
+
+   # correct gettext behavior
+   if [[ -n "${LINGUAS+x}" ]] ; then
+   for i in $(cd "${S}"/locales ; echo *.mo) ; do
+   if ! has ${i%.mo} ${LINGUAS} ; then
+   sed -i \
+   -e "/^WXMAXIMA_LINGUAS/s# ${i%.mo}##" \
+   -e "/^WXWIN_LINGUAS/s# ${i%.mo}##" \
+   locales/Makefile.in || die
+   fi
+   done
+   fi
+}
+
+src_configure() {
+   econf \
+   --enable-printing \
+   --with-wx-config=${WX_CONFIG}
+}
+
+src_install () {
+   default
+   doicon -s 128 data/wxmaxima.png
+   make_desktop_entry wxmaxima wxMaxima wxmaxima
+   dosym /usr/share/${PN}/README /usr/share/doc/${PF}/README
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/tiff/

2015-09-13 Thread Lars Wendler
commit: 5068cb6648ce309724531f4371459530509a4f0c
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Sep 13 12:39:53 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Sep 13 12:40:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5068cb66

media-libs/tiff: Bump to version 4.0.6

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

 media-libs/tiff/Manifest  |  1 +
 media-libs/tiff/tiff-4.0.6.ebuild | 72 +++
 2 files changed, 73 insertions(+)

diff --git a/media-libs/tiff/Manifest b/media-libs/tiff/Manifest
index 4d623e7..8a55e11 100644
--- a/media-libs/tiff/Manifest
+++ b/media-libs/tiff/Manifest
@@ -1,3 +1,4 @@
 DIST tiff-3.9.7.tar.gz 1468097 SHA256 
f5d64dd4ce61c55f5e9f6dc3920fbe5a41e02c2e607da7117a35eb5c320cef6a SHA512 
ca89584a9ffa33b4986e4bc2165043cec239896f1f0ab73db00818d0442b570efaa6345b2ed422e884202324d359713df849bf14782bb0cf3b959655febddd77
 WHIRLPOOL 
c06b35da66c365c1fe7f0e6e06a400e139d3e2b5b280aa764015c2f0383a6191ffb3d335cdf2211b687bbb0caacf641be409148986a9813dfde5822a650a9b1c
 DIST tiff-4.0.3.tar.gz 2051630 SHA256 
ea1aebe282319537fb2d4d7805f478dd4e0e05c33d0928baba76a7c963684872 SHA512 
d80e18b00e9e696a30b954c0d92e5f2f773fd9a7a0a944cf6cabb69c1798e671506580daa1cd2ebf493ae922000170c2491dfc6d4c0a9cd0b865684070595a73
 WHIRLPOOL 
762ace7c66dec7a6f350bc8c000a9e1f4b775e7b148b1d923eb3f7c015f47bda65a54bc0b5974ce665c7d836ec0b275c9307d1f18f3b6bee8b0949a6cceb319e
 DIST tiff-4.0.5.tar.gz 2135410 SHA256 
e25eaa83ed7fab43ddd278b9b14d91a406a4b674cedc776adb95535f897f309c SHA512 
f3c4329653d5014e70624cbff7fcdc00e6c93a68fd9628b536e14937a44e99957282523cc3211ca6bc88cb35a127355ee923eba4c06bb7f88756145fdbd9f7fc
 WHIRLPOOL 
869ece7aeac795111027e0c9bc0eb10aa9233304c159cc5ce47ac18abc57cf77f8a03ff5164ad0b35afa22fd636074f185e2e97019b40b3e257f8111707d166e
+DIST tiff-4.0.6.tar.gz 2192991 SHA256 
4d57a50907b510e3049a4bba0d7888930fdfc16ce49f1bf693e5b6247370d68c SHA512 
2c8dbb9f82a7722bfe8cb6fcfcf67472beb692f1b7dafaf322759e7016dad1bc58457c0f03db50aa5bd088fef2b37358fcbc1524e20e9e14a9620373fdf8
 WHIRLPOOL 
809e61a22f7d6dfdf81917a084678ec39ed3cff4e03184d61c67501946d3fab0645cb3fe800d9249771879ee91245085e123349f68340bb63bd18024db8e03a6

diff --git a/media-libs/tiff/tiff-4.0.6.ebuild 
b/media-libs/tiff/tiff-4.0.6.ebuild
new file mode 100644
index 000..af78142
--- /dev/null
+++ b/media-libs/tiff/tiff-4.0.6.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils libtool multilib-minimal
+
+DESCRIPTION="Tag Image File Format (TIFF) library"
+HOMEPAGE="http://www.remotesensing.org/libtiff/;
+SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz
+   ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz;
+
+LICENSE="libtiff"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="+cxx jbig jpeg lzma static-libs test zlib"
+
+RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
+   jbig? ( >=media-libs/jbigkit-2.1:=[${MULTILIB_USEDEP}] )
+   lzma? ( >=app-arch/xz-utils-5.0.5-r1:=[${MULTILIB_USEDEP}] )
+   zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-baselibs-20130224-r9
+   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
+   )"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE="test? ( jpeg )" #483132
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/tiffconf.h
+)
+
+src_prepare() {
+   elibtoolize
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable static-libs static) \
+   $(use_enable zlib) \
+   $(use_enable jpeg) \
+   $(use_enable jbig) \
+   $(use_enable lzma) \
+   $(use_enable cxx) \
+   --without-x \
+   --with-docdir="${EPREFIX}"/usr/share/doc/${PF}
+
+   # remove useless subdirs
+   if ! multilib_is_native_abi ; then
+   sed -i \
+   -e 's/ tools//' \
+   -e 's/ contrib//' \
+   -e 's/ man//' \
+   -e 's/ html//' \
+   Makefile || die
+   fi
+}
+
+multilib_src_test() {
+   if ! multilib_is_native_abi ; then
+   cd tools
+   emake
+   cd "${BUILD_DIR}"
+   fi
+   emake check
+}
+
+multilib_src_install_all() {
+   prune_libtool_files --all
+   rm -f 
"${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION}
+}



[gentoo-commits] data/gentoo-news:master commit in: 2013-06-01-mysql-pbxt-dropped/

2015-09-13 Thread Julian Ospald
commit: a0af9089c9a3f9f0789e67e3e028cda04e198a05
Author: Julian Ospald  gentoo  org>
AuthorDate: Sun Sep 13 10:45:15 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Sun Sep 13 10:45:15 2015 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=a0af9089

Fix PMS/GLEP-42 compliance of 2013-06-01-mysql-pbxt-dropped

USE dependencies have been added in EAPI-2, but no particular EAPI must
be assumed for news items of the News-Item-Format 1.0.

See https://wiki.gentoo.org/wiki/GLEP:42#News_Item_Headers

Gentoo-Bug: 546122

 .../2013-06-01-mysql-pbxt-dropped.en.txt | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt 
b/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt
index 5102000..3cd4964 100644
--- a/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt
+++ b/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt
@@ -4,12 +4,12 @@ Content-Type: text/plain
 Posted: 2013-06-01
 Revision: 3
 News-Item-Format: 1.0
-Display-If-Installed: dev-db/mysql[pbxt,-minimal]
-Display-If-Installed: dev-db/mysql-cluster[pbxt,-minimal]
-Display-If-Installed: dev-db/mariadb[pbxt,-minimal]
-Display-If-Installed: dev-db/mariadb-galera[pbxt,-minimal]
-Display-If-Installed: dev-db/percona-server[pbxt,-minimal]
-Display-If-Installed: dev-db/google-mysql[pbxt,-minimal]
+Display-If-Installed: dev-db/mysql
+Display-If-Installed: dev-db/mysql-cluster
+Display-If-Installed: dev-db/mariadb
+Display-If-Installed: dev-db/mariadb-galera
+Display-If-Installed: dev-db/percona-server
+Display-If-Installed: dev-db/google-mysql
 
 The PBXT/PrimeBase engine is unsupported upstream in MySQL & MariaDB for some
 time now [1]. It is no longer built in the upstream MariaDB 5.5 binaries[2][3]



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/chicken/, dev-scheme/chicken/files/

2015-09-13 Thread Ian Delaney
commit: 2ba4fbcaa5f7a7983ab7d4fd3d13eb53c8d45d7a
Author: Ian Delaney  gentoo  org>
AuthorDate: Sun Sep 13 16:23:34 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Sep 13 16:23:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ba4fbca

dev-scheme/chicken: bump to 4.10.0

ebuild and patch submitted by maintainer in sec bug #467966

Package-Manager: portage-2.2.20.1

 dev-scheme/chicken/Manifest|  1 +
 dev-scheme/chicken/chicken-4.10.0.ebuild   | 76 ++
 .../chicken/files/4.10.0-parallel-build.patch  | 60 +
 3 files changed, 137 insertions(+)

diff --git a/dev-scheme/chicken/Manifest b/dev-scheme/chicken/Manifest
index 03cf703..caced7f 100644
--- a/dev-scheme/chicken/Manifest
+++ b/dev-scheme/chicken/Manifest
@@ -1,2 +1,3 @@
+DIST chicken-4.10.0.tar.gz 4020442 SHA256 
0e07f5abcd11961986950dbeaa5a40db415f8a1b65daff9c300e9b05b334899b SHA512 
ff3405652e232ba7b06a8d4fc092772259f0917b1cdd119c0cf38f27ba95fca99d2c053c0f08317014fd7085e8cf89f68b56f22cb82c2988914b972ce59e3e29
 WHIRLPOOL 
a413fe53c1e630d88b37bc59e8035219811f71a2a7a89c3ca6fc034f645e0029bb3162a3ae152ce11895c941322de86dd15447da7946f8e53967a58e5e031c47
 DIST chicken-4.8.0.3-cve-updates.tar.bz2 218025 SHA256 
3e4de410766b09706be156d8460a39a8382365470f46f2da545a577a4f986502 SHA512 
2ad05fbc414fe536d94a63e4d57c98c3bb19267f99e636c2039cd2c3984778fb7f7a0765c64ed6dbe4c438c14bdc94d1f83a626191e0cb817eeca5ea1e480132
 WHIRLPOOL 
b0c7a0280ff08e1ca66a8155e3917f6b12c4e9d9b94f2b354046d3d4cbc598d5edb43c4a210d30fda59c9a4654e95adfe7b21a0aa84ab795e46b37128235ec1e
 DIST chicken-4.8.0.3.tar.gz 3959422 SHA256 
6a1414e6f35586e47d7f4470eaf1779a4f73dec664b14bebf8763dd804b399c3 SHA512 
8a716953fe7eeaea9039e90c5a2abad7fbe341a580176abe870c7b78bfdd11f1291d90bb9df43334b7f7ea484695ba59eba3558b9e360e5e9bd21fa106679197
 WHIRLPOOL 
f55ca79a7df54dce9612b444a5a6a767b9b18cb9ba48a91bb5abab799d260e6c8aef83dade54d38013f41cc4d4b8bbdcda77513d75c91ab038289c6eabcca2fb

diff --git a/dev-scheme/chicken/chicken-4.10.0.ebuild 
b/dev-scheme/chicken/chicken-4.10.0.ebuild
new file mode 100644
index 000..8b1e807
--- /dev/null
+++ b/dev-scheme/chicken/chicken-4.10.0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils multilib versionator
+
+MY_PV=$(get_version_component_range 1-3)
+DESCRIPTION="Chicken is a Scheme interpreter and native Scheme to C compiler"
+HOMEPAGE="http://www.call-cc.org/;
+SRC_URI="http://code.call-cc.org/releases/${MY_PV}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
+IUSE="emacs parallel-build doc"
+
+DEPEND="sys-apps/texinfo
+   emacs? ( virtual/emacs )"
+RDEPEND="emacs? ( virtual/emacs app-emacs/scheme-complete )"
+
+src_prepare() {
+   if use "parallel-build"
+   then
+   epatch "${FILESDIR}"/${PV}-parallel-build.patch
+   fi
+
+   #Because chicken's Upstream is in the habit of using variables that
+   #portage also uses :( eg. $ARCH and $A
+   sed 's,A\(\s?=\|)\),chicken&,' -i Makefile.cross-linux-mingw \
+   defaults.make rules.make \
+   || die "sed failed"
+
+   sed "s,ARCH,zARCH," -i Makefile.bsd Makefile.cross-linux-mingw \
+   Makefile.cygwin Makefile.haiku Makefile.linux Makefile.macosx \
+   Makefile.mingw Makefile.mingw-msys Makefile.solaris \
+   defaults.make rules.make \
+   || die "sed failed"
+
+   sed "s,\$(PREFIX)/lib,\$(PREFIX)/$(get_libdir)," -i defaults.make || 
die "sed failed"
+   sed "s,\$(DATADIR)/doc,\$(SHAREDIR)/doc/${P}," -i defaults.make || die 
"sed failed"
+}
+
+src_compile() {
+   if use "parallel-build"
+   then
+   OPTIONS="PLATFORM=linux PREFIX=/usr"
+   else
+   OPTIONS="-j1 PLATFORM=linux PREFIX=/usr"
+   fi
+
+   emake ${OPTIONS} C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" \
+   LINKER_OPTIONS="${LDFLAGS}" \
+   HOSTSYSTEM="${CBUILD}"
+}
+
+# chicken's testsuite is not runnable before install
+# upstream has been notified of the issue
+RESTRICT=test
+
+src_install() {
+   # still can't run make in parallel for the install target
+   emake -j1 ${OPTIONS} DESTDIR="${D}" HOSTSYSTEM="${CBUILD}" \
+   LINKER_OPTIONS="${LDFLAGS}" \
+   install
+
+   rm "${D}"/usr/share/doc/${P}/LICENSE || die
+   dodoc NEWS
+
+   # remove HTML documentation if the user doesn't USE=doc
+   if ! use "doc"
+   then
+   rm -rf "${D}"/usr/share/doc/${P}/manual || die
+   fi
+}

diff --git a/dev-scheme/chicken/files/4.10.0-parallel-build.patch 
b/dev-scheme/chicken/files/4.10.0-parallel-build.patch
new file mode 100644
index 000..89e2570
--- /dev/null
+++ b/dev-scheme/chicken/files/4.10.0-parallel-build.patch
@@ -0,0 +1,60 @@

[gentoo-commits] repo/gentoo:master commit in: x11-terms/pangoterm/

2015-09-13 Thread Ole Reifschneider
commit: 9f86f0b380fba4089bbadcefc4b101c61d690432
Author: Ole Reifschneider  gentoo  org>
AuthorDate: Sun Sep 13 16:14:07 2015 +
Commit: Ole Reifschneider  gentoo  org>
CommitDate: Sun Sep 13 16:14:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f86f0b3

x11-terms/pangoterm: Update version and relax libvterm dep

Package-Manager: portage-2.2.20.1

 x11-terms/pangoterm/Manifest   |  1 +
 .../pangoterm/pangoterm-0.0_pre20150913.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/x11-terms/pangoterm/Manifest b/x11-terms/pangoterm/Manifest
index 31275df..fe07f84 100644
--- a/x11-terms/pangoterm/Manifest
+++ b/x11-terms/pangoterm/Manifest
@@ -1 +1,2 @@
 DIST pangoterm-0.0_pre20150323.tar.gz 22053 SHA256 
8df2bebdd70a77698803d3dd12472b313e29aa5e6387a7b926e0988e0689cf00 SHA512 
c8614d51459c68bb03a95e1a59a31d5c199c94001995f880f23a369b9aa6ee72a6769790a8c4592d8829eb52ea246ef051fd36fd729f35c4a80931fd9e42b916
 WHIRLPOOL 
30adcf8098f3ef03c57f47e7f01ae996572058fc8318e4e31ac2d88ab2d8054c9d5e279bc5721a98bb66a5620356f7dde1aaf7d1a0eeca14c53069eef1126140
+DIST pangoterm-0.0_pre20150913.tar.gz 22074 SHA256 
9fcd572f0e5fb3ac7b1fe3119e724373ed0250518efd47601f902acd1335 SHA512 
2efed960bde9378ea25d96e41460245925952d50f60a4f0580ffc71519acb278101cd16c3aedaa8037c2734f09d14a0590731a1a42fe2f357ef9222a8e0bd260
 WHIRLPOOL 
f07e8f407a62fa3e55f312b89937d5b5d6adfd2a4ccdee8e21b0c1d301bdc6b9684bec03f6cc6b2cc222b6e154408116fbd92596bd44a97f42564871a07215e2

diff --git a/x11-terms/pangoterm/pangoterm-0.0_pre20150913.ebuild 
b/x11-terms/pangoterm/pangoterm-0.0_pre20150913.ebuild
new file mode 100644
index 000..d2ef7aa
--- /dev/null
+++ b/x11-terms/pangoterm/pangoterm-0.0_pre20150913.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="A GTK/Pango-based terminal that uses libvterm to provide terminal 
emulation"
+HOMEPAGE="http://www.leonerd.org.uk/code/pangoterm/;
+SRC_URI="https://dev.gentoo.org/~tranquility/distfiles/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="dev-libs/libvterm-neovim"
+RDEPEND="${DEPEND}
+   dev-libs/glib:2
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:2
+   x11-libs/pango
+"
+
+S=${WORKDIR}/pangoterm-0
+
+src_install() {
+   emake PREFIX="/usr" DESTDIR="${D}" install
+}



[gentoo-commits] proj/grs:tinhat-xfce4 commit in: scripts/

2015-09-13 Thread Anthony G. Basile
commit: a7f60d3e2fdf3ea70f8ff42deb3de3b41d90e716
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 13 17:00:34 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 13 17:00:34 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=a7f60d3e

scripts/menu.lst: initial commit.

 scripts/menu.lst | 4 
 1 file changed, 4 insertions(+)

diff --git a/scripts/menu.lst b/scripts/menu.lst
new file mode 100644
index 000..a56f083
--- /dev/null
+++ b/scripts/menu.lst
@@ -0,0 +1,4 @@
+timeout 5
+title TinHat
+kernel /boot/kernel
+initrd /boot/initramfs



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

2015-09-13 Thread Alex Brandt
commit: 78553677e8195e4ea7affb9fd03e6f5d3b7fbb46
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Sep 13 17:14:11 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Sep 13 17:15:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78553677

dev-python/docker-py: remove version 1.3.0

Package-Manager: portage-2.2.20.1

 dev-python/docker-py/Manifest   |  1 -
 dev-python/docker-py/docker-py-1.3.0.ebuild | 31 -
 2 files changed, 32 deletions(-)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index b465ace..4441af5 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -1,5 +1,4 @@
 DIST docker-py-1.1.0-r1.tar.gz 60926 SHA256 
c3373d120a83a80468c5340e2e36b20e6350a255309e50c56a57de4b5cad9d97 SHA512 
14a9eacbee5e31c0dc9677c9250f27aa098f59634d6c07851e7d5d14e8ce9329e9a1519c70b2b4cd3f8532a06a022cd6d2ce4c0f7767ce6303aa38c972e25783
 WHIRLPOOL 
12c74f2c171f272c633f68be42c1a5061ace8ddf0522a0e7f9640673f332e78348d21c3bfe67c695a062d28c7b1049bdbfd2ecf4897ac00e28ce972630fcbd42
 DIST docker-py-1.2.2.tar.gz 69685 SHA256 
85284a5b1a965e01a5d0a91f9f639ad5069143a276c123198fdafc3659280b38 SHA512 
bf00b19e0ab56e5c0e8459234d09722ca504ecd933bfba61cb4ab4805410f53f6ad6083f2e964ef5a6eded2ea05aa01a89c27621064386bae145c7258ed996ad
 WHIRLPOOL 
bd7ff4579f924e02d18581b1aca00790dcb84afda03e4cde70b349bfdb4ad43aa2e06da2bcbe780f6074d98f9af9b14fb9d2ab4da9265e56b73288902c9ede7a
-DIST docker-py-1.3.0.tar.gz 70751 SHA256 
ca898e2d742788b634ef5e449a74aa291c52bd5cf6eec8f03d30c616e235eb67 SHA512 
d278d91bab3ea056463c83fdf9c19ea7201e459c350e433c8ab14063354540ac483f97d42f27286d6b84ce0c91089c23ad2de6c96549acb388e08732487e8d4d
 WHIRLPOOL 
35e3c67a6019c710c876b0ca9afe4c681ccc7fcde3412075c671c6366c3a49ed783ca40a1e6f06afa18444961a85d94b9f726323a8ba0829b20625cc1a207df8
 DIST docker-py-1.3.1.tar.gz 71456 SHA256 
4a980c55f22b97573b68f720ebc0b6f2a01cd9ec454d305bd13d2b83109a0bfa SHA512 
f027a44cd15aa0a9d47a748c6f593e940ee4b6db0d8a933591e148bc9b0e6801c9ece3f81fc3a21eba762eff838ef40bf04fda299f28ba508e029b67658ee228
 WHIRLPOOL 
57d7429d58610bbef4473d5aabfe7f1771b2e3d4f083d44d6aba8f144bf44afeff9a0bcf458754f2787b54e1a1e07fddb9e66a42c16a6b1f20a8e1f9be3aa558
 DIST docker-py-1.4.0.tar.gz 75336 SHA256 
81e2a7cd59b25c3df63ec47458c8a019ed7e11355ea0cfeec1f38df8c93f3179 SHA512 
c4ea0a4a43063c90aa212952b3aeaa1a7c574dfcf7e8223c3fdb24216d0939c80258fe4ad2b6bba24d9d5fcde27332106860baf463482119b382670ed57c0da2
 WHIRLPOOL 
f085dc4c59ce5b4b8c22695c90e054f3875dfa7553a600e025f089b3f5da34f91b5de3fb4106e737150b3e558319a5ae4bd1a6448f4bcafc9f9d45fa1a826d3a

diff --git a/dev-python/docker-py/docker-py-1.3.0.ebuild 
b/dev-python/docker-py/docker-py-1.3.0.ebuild
deleted file mode 100644
index 03c6f38..000
--- a/dev-python/docker-py/docker-py-1.3.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Python client for Docker"
-HOMEPAGE="https://github.com/docker/docker-py;
-SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] )
-"
-RDEPEND="
-   >=dev-python/requests-2.5.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
-   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-"
-
-python_test() {
-   "${PYTHON}" tests/test.py || die "tests failed under ${EPYTHON}"
-}



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

2015-09-13 Thread Alex Brandt
commit: 24c458bb8090815601eca4f9c93b5ac899fbab3f
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Sep 13 17:09:29 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Sep 13 17:15:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c458bb

dev-python/docker-py: add version 1.4.0

Package-Manager: portage-2.2.20.1

 dev-python/docker-py/Manifest   |  1 +
 dev-python/docker-py/docker-py-1.4.0.ebuild | 48 +
 2 files changed, 49 insertions(+)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index b3f18c8..ed61a58 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -3,3 +3,4 @@ DIST docker-py-1.2.2.tar.gz 69685 SHA256 
85284a5b1a965e01a5d0a91f9f639ad5069143a
 DIST docker-py-1.2.3.tar.gz 69198 SHA256 
66cba7beff9fca916d4c3f20220fa27ee8dcc639fe968f59e91201a7d0db6b22 SHA512 
524d355e70dbf3666f61f0c8c42466d8d1a2e573fc1f347ff234f3a18803fed8d1296ccc106a78b48899d0282743b8bca08f6d36caec350ca374e8ebc7a4e55a
 WHIRLPOOL 
e77b8ad37f5c82738903353b578db8ee9d050c647af866cac9e4155646531b47a9e3d85ef6c42d64da2b1162616e49d06a5c16f33e19d56926e45546934be9a2
 DIST docker-py-1.3.0.tar.gz 70751 SHA256 
ca898e2d742788b634ef5e449a74aa291c52bd5cf6eec8f03d30c616e235eb67 SHA512 
d278d91bab3ea056463c83fdf9c19ea7201e459c350e433c8ab14063354540ac483f97d42f27286d6b84ce0c91089c23ad2de6c96549acb388e08732487e8d4d
 WHIRLPOOL 
35e3c67a6019c710c876b0ca9afe4c681ccc7fcde3412075c671c6366c3a49ed783ca40a1e6f06afa18444961a85d94b9f726323a8ba0829b20625cc1a207df8
 DIST docker-py-1.3.1.tar.gz 71456 SHA256 
4a980c55f22b97573b68f720ebc0b6f2a01cd9ec454d305bd13d2b83109a0bfa SHA512 
f027a44cd15aa0a9d47a748c6f593e940ee4b6db0d8a933591e148bc9b0e6801c9ece3f81fc3a21eba762eff838ef40bf04fda299f28ba508e029b67658ee228
 WHIRLPOOL 
57d7429d58610bbef4473d5aabfe7f1771b2e3d4f083d44d6aba8f144bf44afeff9a0bcf458754f2787b54e1a1e07fddb9e66a42c16a6b1f20a8e1f9be3aa558
+DIST docker-py-1.4.0.tar.gz 75336 SHA256 
81e2a7cd59b25c3df63ec47458c8a019ed7e11355ea0cfeec1f38df8c93f3179 SHA512 
c4ea0a4a43063c90aa212952b3aeaa1a7c574dfcf7e8223c3fdb24216d0939c80258fe4ad2b6bba24d9d5fcde27332106860baf463482119b382670ed57c0da2
 WHIRLPOOL 
f085dc4c59ce5b4b8c22695c90e054f3875dfa7553a600e025f089b3f5da34f91b5de3fb4106e737150b3e558319a5ae4bd1a6448f4bcafc9f9d45fa1a826d3a

diff --git a/dev-python/docker-py/docker-py-1.4.0.ebuild 
b/dev-python/docker-py/docker-py-1.4.0.ebuild
new file mode 100644
index 000..5bb69bb
--- /dev/null
+++ b/dev-python/docker-py/docker-py-1.4.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Python client for Docker"
+HOMEPAGE="https://github.com/docker/docker-py;
+SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( >=dev-python/mkdocs-0.14.0[${PYTHON_USEDEP}] )
+   test? (
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   >=dev-python/pytest-2.7.2[${PYTHON_USEDEP}]
+   >=dev-python/pytest-cov-2.1.0[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="
+   >=dev-python/requests-2.5.2[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+   if use doc; then
+   mkdocs build || die "docs failed to build"
+   fi
+}
+
+python_test() {
+   py.test tests/test.py tests/utils_test.py || die "tests failed under 
${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( site/. )
+
+   distutils-r1_python_install_all
+}



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

2015-09-13 Thread Michael Palimaka
commit: 11adc6ddd1710dac131a4536cea4fadcf95a08a4
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Sep 13 14:02:30 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 17:26:44 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=11adc6dd

kde-apps/poxml: ANTLR hasn't been used for years so remove that stuff

Upstream-commit: ee58ebd8b238715bb5c2d7ef2666ddd97c964c9f
Upstream-commit: f178471f05ecacf90a6e31ead295ab2eafcaff95

Package-Manager: portage-2.2.20.1

 kde-apps/poxml/poxml-15.08.1.ebuild   | 46 ++-
 kde-apps/poxml/poxml-15.08.49..ebuild | 46 ++-
 kde-apps/poxml/poxml-.ebuild  | 46 ++-
 3 files changed, 6 insertions(+), 132 deletions(-)

diff --git a/kde-apps/poxml/poxml-15.08.1.ebuild 
b/kde-apps/poxml/poxml-15.08.1.ebuild
index 69ae2fe..fb0ab9a 100644
--- a/kde-apps/poxml/poxml-15.08.1.ebuild
+++ b/kde-apps/poxml/poxml-15.08.1.ebuild
@@ -4,50 +4,8 @@
 
 EAPI=5
 
-JAVA_PKG_OPT_USE=extras
-inherit java-pkg-opt-2 java-ant-2 kde4-base
+inherit kde4-base
 
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug extras"
-
-DEPEND="
-   extras? (
-   >=virtual/jdk-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-RDEPEND="
-   extras? (
-   >=virtual/jre-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-
-# java deps on anltr cant be properly explained to cmake deps
-# needs to be run in one thread
-MAKEOPTS+=" -j1"
-
-pkg_setup() {
-   kde4-base_pkg_setup
-   java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-   kde4-base_src_prepare
-   java-pkg-opt-2_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_with extras Antlr2)
-   )
-
-   kde4-base_src_configure
-   java-ant-2_src_configure
-}
-
-pkg_preinst() {
-   kde4-base_pkg_preinst
-   java-pkg-2_pkg_preinst
-}
+IUSE="debug"

diff --git a/kde-apps/poxml/poxml-15.08.49..ebuild 
b/kde-apps/poxml/poxml-15.08.49..ebuild
index edd2bb9..4f8bbd7 100644
--- a/kde-apps/poxml/poxml-15.08.49..ebuild
+++ b/kde-apps/poxml/poxml-15.08.49..ebuild
@@ -4,50 +4,8 @@
 
 EAPI=5
 
-JAVA_PKG_OPT_USE=extras
-inherit java-pkg-opt-2 java-ant-2 kde4-base
+inherit kde4-base
 
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS=""
-IUSE="debug extras"
-
-DEPEND="
-   extras? (
-   >=virtual/jdk-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-RDEPEND="
-   extras? (
-   >=virtual/jre-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-
-# java deps on anltr cant be properly explained to cmake deps
-# needs to be run in one thread
-MAKEOPTS+=" -j1"
-
-pkg_setup() {
-   kde4-base_pkg_setup
-   java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-   kde4-base_src_prepare
-   java-pkg-opt-2_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_with extras Antlr2)
-   )
-
-   kde4-base_src_configure
-   java-ant-2_src_configure
-}
-
-pkg_preinst() {
-   kde4-base_pkg_preinst
-   java-pkg-2_pkg_preinst
-}
+IUSE="debug"

diff --git a/kde-apps/poxml/poxml-.ebuild b/kde-apps/poxml/poxml-.ebuild
index edd2bb9..4f8bbd7 100644
--- a/kde-apps/poxml/poxml-.ebuild
+++ b/kde-apps/poxml/poxml-.ebuild
@@ -4,50 +4,8 @@
 
 EAPI=5
 
-JAVA_PKG_OPT_USE=extras
-inherit java-pkg-opt-2 java-ant-2 kde4-base
+inherit kde4-base
 
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS=""
-IUSE="debug extras"
-
-DEPEND="
-   extras? (
-   >=virtual/jdk-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-RDEPEND="
-   extras? (
-   >=virtual/jre-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-
-# java deps on anltr cant be properly explained to cmake deps
-# needs to be run in one thread
-MAKEOPTS+=" -j1"
-
-pkg_setup() {
-   kde4-base_pkg_setup
-   java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-   kde4-base_src_prepare
-   java-pkg-opt-2_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_with extras Antlr2)
-   )
-
-   kde4-base_src_configure
-   java-ant-2_src_configure
-}
-
-pkg_preinst() {
-   kde4-base_pkg_preinst
-   java-pkg-2_pkg_preinst
-}
+IUSE="debug"



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

2015-09-13 Thread Mike Gilbert
commit: 0e8dfd6e336aee6cadd08f7ee472feb485549883
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Sep 13 17:32:17 2015 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 13 17:33:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8dfd6e

sys-apps/systemd: Allow tests to access kdbus

Package-Manager: portage-2.2.20

 sys-apps/systemd/systemd-226.ebuild  | 4 
 sys-apps/systemd/systemd-.ebuild | 4 
 2 files changed, 8 insertions(+)

diff --git a/sys-apps/systemd/systemd-226.ebuild 
b/sys-apps/systemd/systemd-226.ebuild
index f84a4d7..6068bc6 100644
--- a/sys-apps/systemd/systemd-226.ebuild
+++ b/sys-apps/systemd/systemd-226.ebuild
@@ -259,6 +259,10 @@ multilib_src_compile() {
 multilib_src_test() {
multilib_is_native_abi || continue
 
+   # Needed for bus-related tests
+   local -x SANDBOX_WRITE=${SANDBOX_WRITE}
+   addwrite /sys/fs/kdbus
+
default
 }
 

diff --git a/sys-apps/systemd/systemd-.ebuild 
b/sys-apps/systemd/systemd-.ebuild
index f84a4d7..6068bc6 100644
--- a/sys-apps/systemd/systemd-.ebuild
+++ b/sys-apps/systemd/systemd-.ebuild
@@ -259,6 +259,10 @@ multilib_src_compile() {
 multilib_src_test() {
multilib_is_native_abi || continue
 
+   # Needed for bus-related tests
+   local -x SANDBOX_WRITE=${SANDBOX_WRITE}
+   addwrite /sys/fs/kdbus
+
default
 }
 



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

2015-09-13 Thread Michael Palimaka
commit: 02d0a92542d82c006d1633d7a8d124ea17b4fb64
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Sep 13 17:44:31 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 17:44:31 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=02d0a925

kde-apps/poxml: master is now KF5-based.

Package-Manager: portage-2.2.20.1

 kde-apps/poxml/poxml-.ebuild | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/kde-apps/poxml/poxml-.ebuild b/kde-apps/poxml/poxml-.ebuild
index be9c590..e0f056b 100644
--- a/kde-apps/poxml/poxml-.ebuild
+++ b/kde-apps/poxml/poxml-.ebuild
@@ -4,11 +4,16 @@
 
 EAPI=5
 
-inherit kde4-base
+KDE_HANDBOOK="true"
+KDE_PUNT_BOGUS_DEPS="true"
+inherit kde5
 
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS=""
-IUSE="debug"
+IUSE=""
 
-DEPEND="sys-devel/gettext"
+DEPEND="
+   dev-qt/qtxml:5
+   sys-devel/gettext
+"
 RDEPEND="${DEPEND}"



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

2015-09-13 Thread Michael Palimaka
commit: 200835c0977f40e34bdc195c8f2d0d1ff39b88f1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Sep 13 17:40:32 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 17:40:32 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=200835c0

kde-apps/poxml: add missing dependency.

Package-Manager: portage-2.2.20.1

 kde-apps/poxml/poxml-15.08.1.ebuild   | 3 +++
 kde-apps/poxml/poxml-15.08.49..ebuild | 3 +++
 kde-apps/poxml/poxml-.ebuild  | 3 +++
 3 files changed, 9 insertions(+)

diff --git a/kde-apps/poxml/poxml-15.08.1.ebuild 
b/kde-apps/poxml/poxml-15.08.1.ebuild
index fb0ab9a..cf54ee8 100644
--- a/kde-apps/poxml/poxml-15.08.1.ebuild
+++ b/kde-apps/poxml/poxml-15.08.1.ebuild
@@ -9,3 +9,6 @@ inherit kde4-base
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS="~amd64 ~x86"
 IUSE="debug"
+
+DEPEND="sys-devel/gettext"
+RDEPEND="${DEPEND}"

diff --git a/kde-apps/poxml/poxml-15.08.49..ebuild 
b/kde-apps/poxml/poxml-15.08.49..ebuild
index 4f8bbd7..be9c590 100644
--- a/kde-apps/poxml/poxml-15.08.49..ebuild
+++ b/kde-apps/poxml/poxml-15.08.49..ebuild
@@ -9,3 +9,6 @@ inherit kde4-base
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS=""
 IUSE="debug"
+
+DEPEND="sys-devel/gettext"
+RDEPEND="${DEPEND}"

diff --git a/kde-apps/poxml/poxml-.ebuild b/kde-apps/poxml/poxml-.ebuild
index 4f8bbd7..be9c590 100644
--- a/kde-apps/poxml/poxml-.ebuild
+++ b/kde-apps/poxml/poxml-.ebuild
@@ -9,3 +9,6 @@ inherit kde4-base
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS=""
 IUSE="debug"
+
+DEPEND="sys-devel/gettext"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/kde-l10n-scripts/

2015-09-13 Thread Michael Palimaka
commit: f8fc0c5f8c6e9c3dafee66d67a58d0e9fdc1c89e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Sep 13 18:02:37 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 18:18:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8fc0c5f

app-i18n/kde-l10n-scripts: remove kde-apps/poxml USE dependency.

Package-Manager: portage-2.2.20.1

 app-i18n/kde-l10n-scripts/kde-l10n-scripts-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/kde-l10n-scripts/kde-l10n-scripts-.ebuild 
b/app-i18n/kde-l10n-scripts/kde-l10n-scripts-.ebuild
index e3fc376..53a775e 100644
--- a/app-i18n/kde-l10n-scripts/kde-l10n-scripts-.ebuild
+++ b/app-i18n/kde-l10n-scripts/kde-l10n-scripts-.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
app-i18n/pology
app-shells/bash:*
dev-vcs/subversion
-   kde-apps/poxml[extras]
+   kde-apps/poxml
 "
 DEPEND="${RDEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: kde-apps/poxml/

2015-09-13 Thread Michael Palimaka
commit: 559f47a34bf6ffc888e4a62b3bda598f606280d6
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Sep 13 18:07:56 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 18:18:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=559f47a3

kde-apps/poxml: remove extras USE flag.

ANTLR hasn't been used for years so remove that stuff

Package-Manager: portage-2.2.20.1

 kde-apps/poxml/metadata.xml|  3 ---
 kde-apps/poxml/poxml-4.14.3.ebuild | 48 --
 2 files changed, 4 insertions(+), 47 deletions(-)

diff --git a/kde-apps/poxml/metadata.xml b/kde-apps/poxml/metadata.xml
index 5941d59..a23f444 100644
--- a/kde-apps/poxml/metadata.xml
+++ b/kde-apps/poxml/metadata.xml
@@ -2,7 +2,4 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
kde
-   
-   Build po2xml and swappo tools
-   
 

diff --git a/kde-apps/poxml/poxml-4.14.3.ebuild 
b/kde-apps/poxml/poxml-4.14.3.ebuild
index 50af4e7..2bab180 100644
--- a/kde-apps/poxml/poxml-4.14.3.ebuild
+++ b/kde-apps/poxml/poxml-4.14.3.ebuild
@@ -4,51 +4,11 @@
 
 EAPI=5
 
-JAVA_PKG_OPT_USE=extras
-inherit java-pkg-opt-2 java-ant-2 kde4-base
+inherit kde4-base
 
 DESCRIPTION="KDE utility to translate DocBook XML files using gettext po files"
 KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
-IUSE="debug extras"
+IUSE="debug"
 
-DEPEND="
-   extras? (
-   >=virtual/jdk-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-"
-RDEPEND="
-   extras? (
-   >=virtual/jre-1.5
-   >=dev-java/antlr-2.7.7:0[cxx,java,script]
-   )
-   !<=kde-base/kdesdk-misc-4.10.50:4
-"
-
-# java deps on anltr cant be properly explained to cmake deps
-# needs to be run in one thread
-MAKEOPTS+=" -j1"
-
-pkg_setup() {
-   kde4-base_pkg_setup
-   java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-   kde4-base_src_prepare
-   java-pkg-opt-2_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_with extras Antlr2)
-   )
-
-   kde4-base_src_configure
-   java-ant-2_src_configure
-}
-
-pkg_preinst() {
-   kde4-base_pkg_preinst
-   java-pkg-2_pkg_preinst
-}
+DEPEND="sys-devel/gettext"
+RDEPEND="${DEPEND}"



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

2015-09-13 Thread Michael Palimaka
commit: d89e43a89e9ed88aaae5fbe051e8a4febf45150c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Sep 13 18:05:00 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 18:18:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d89e43a8

media-sound/kwave: remove kde-apps/poxml USE dependency.

Package-Manager: portage-2.2.20.1

 media-sound/kwave/kwave-0.8.10.ebuild | 2 +-
 media-sound/kwave/kwave-0.8.12.ebuild | 2 +-
 media-sound/kwave/kwave-0.8.99.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-sound/kwave/kwave-0.8.10.ebuild 
b/media-sound/kwave/kwave-0.8.10.ebuild
index 310d3b3..9a00ffa 100644
--- a/media-sound/kwave/kwave-0.8.10.ebuild
+++ b/media-sound/kwave/kwave-0.8.10.ebuild
@@ -41,7 +41,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
-   $(add_kdeapps_dep poxml extras)
+   $(add_kdeapps_dep poxml)
|| ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
 "
 

diff --git a/media-sound/kwave/kwave-0.8.12.ebuild 
b/media-sound/kwave/kwave-0.8.12.ebuild
index 4646915..c5c0edf 100644
--- a/media-sound/kwave/kwave-0.8.12.ebuild
+++ b/media-sound/kwave/kwave-0.8.12.ebuild
@@ -41,7 +41,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
-   $(add_kdeapps_dep poxml extras)
+   $(add_kdeapps_dep poxml)
|| ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
 "
 

diff --git a/media-sound/kwave/kwave-0.8.99.ebuild 
b/media-sound/kwave/kwave-0.8.99.ebuild
index 1cc4b40..3d41ad9 100644
--- a/media-sound/kwave/kwave-0.8.99.ebuild
+++ b/media-sound/kwave/kwave-0.8.99.ebuild
@@ -41,7 +41,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
-   $(add_kdeapps_dep poxml extras)
+   $(add_kdeapps_dep poxml)
|| ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
 "
 



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

2015-09-13 Thread Manuel Rüger
commit: e4b566bc118e2fc56fb0774a7c3e043706ef2363
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:45:47 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:45:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b566bc

x11-misc/xdesktopwaves: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild | 39 -
 1 file changed, 39 deletions(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild
deleted file mode 100644
index 20b4aa9..000
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="A cellular automata setting the background of your X Windows 
desktop under water"
-HOMEPAGE="http://xdesktopwaves.sourceforge.net/;
-LICENSE="GPL-2"
-RDEPEND="x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xextproto"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-src_compile() {
-   emake || die "failed building program"
-   cd xdwapi
-   emake || die "failed building demo"
-}
-
-src_install() {
-   dobin xdesktopwaves xdwapi/xdwapidemo
-   doman xdesktopwaves.1
-   insinto /usr/share/pixmaps
-   doins xdesktopwaves.xpm
-   make_desktop_entry xdesktopwaves
-   dodoc README
-}
-
-pkg_preinst() {
-   elog "To see what xdesktopwaves is able to do, start it by running"
-   elog "'xdesktopwaves' and then run 'xdwapidemo'. You should see the"
-   elog "supported effects on your desktop"
-}



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

2015-09-13 Thread Manuel Rüger
commit: e826118cc130de2a7e56d75431823f6d1ca2f17e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:45:10 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:45:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e826118c

x11-misc/xcb: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/xcb/xcb-2.4.ebuild | 49 -
 1 file changed, 49 deletions(-)

diff --git a/x11-misc/xcb/xcb-2.4.ebuild b/x11-misc/xcb/xcb-2.4.ebuild
deleted file mode 100644
index f3fdf2a..000
--- a/x11-misc/xcb/xcb-2.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-inherit toolchain-funcs
-
-DESCRIPTION="Marc Lehmann's improved X Cut Buffers"
-HOMEPAGE="http://oldhome.schmorp.de/marc/xcb.html;
-SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ~ppc x86"
-IUSE="motif"
-
-RDEPEND="x11-libs/libX11
-   x11-libs/libXt
-   x11-libs/libXaw
-   x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   motif? ( >=x11-libs/motif-2.3:0 )"
-
-src_compile() {
-   local gui libs
-
-   if use motif; then
-   gui="-DMOTIF"
-   libs="-lXm -lXt -lX11"
-   else
-   gui="-DATHENA"
-   libs="-lXaw -lXt -lXext -lX11"
-   fi
-
-   tc-export CC
-   emake -f Makefile.std xcb Xcb.ad \
-   CFLAGS="${CFLAGS} ${gui}" \
-   GUI="${gui}" \
-   LIBS="${libs}" \
-   || die "emake failed"
-}
-
-src_install() {
-   dobin xcb || die "dobin failed"
-   newman xcb.man xcb.1
-   insinto /usr/share/X11/app-defaults
-   newins Xcb.ad Xcb || die "newins failed"
-}



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

2015-09-13 Thread Mike Pagano
commit: 97e2c13d783b8049a762e3be293a0f5d26ee148a
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Sep 13 18:49:15 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Sep 13 18:52:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e2c13d

sys-kernel/vanilla-sources: Version bumps. Remove old.

Package-Manager: portage-2.2.20.1

 sys-kernel/vanilla-sources/Manifest | 6 +++---
 ...{vanilla-sources-4.1.6.ebuild => vanilla-sources-3.10.88.ebuild} | 0
 ...anilla-sources-3.14.51.ebuild => vanilla-sources-3.14.52.ebuild} | 0
 ...{vanilla-sources-3.10.87.ebuild => vanilla-sources-4.1.7.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 4de6a34..dbe0cbc 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -18,10 +18,10 @@ DIST linux-3.2.tar.xz 65065516 SHA256 
dd96ed02b53fb5d57762e4b1f573460909de472ca5
 DIST linux-3.4.tar.xz 66748028 SHA256 
ff3dee6a855873d12487a6f4070ec2f7996d073019171361c955639664baa0c6 SHA512 
1c49b336750c9c2b49d21e54126f22a800367296be0d57e6df28b1532cbeba7fc3bdf4cfe27d9810576e76c2db2e9c2493f0804451c915137cb78d7aa61f236c
 WHIRLPOOL 
a36e62fe197ba7c08d498a79034da58091a94348f69542241067c9ebef683f86371b2c0a3b3fb6c4611e2fb885d9b74eee5c1f46a493c72dfb76c5665f0b8a6a
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.2.tar.xz 85507784 SHA256 
cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb SHA512 
a87bbce3c0c6d810a41bbba1c0dcaae80dc38dded9f8571e97fa4ee5a468d655daf52d260911412f7c7da3171a5114e89d63da14b1753b9a3eb2cc38fd89b9ee
 WHIRLPOOL 
2058e664ee287cc03119ff3dd0155b7018b9c789a13a1012f190e516172f845dcb2d977c8e6a6951e9bd720e5e8cdfa3b888cce392c9b02780520e77475870d0
-DIST patch-3.10.87.xz 1165676 SHA256 
50d0f4d247bf619b65b1c0d65944bcd3b7c2f1e0942c82fe3db0726aed9d9093 SHA512 
8a407660d3f9420d6b4af5f66e73bced5a274f9ec61cb39cb19704d1fa1cdde208bdb8cf735710ba8869f2da515a433e4bbefeb2752b2e0fece097a0bd09a2a8
 WHIRLPOOL 
f07b77270e7edbad4d650ab77a175f3f0e83bf675a55b34c89aa1391f04b9cf9e777cc89517d8e09e6fc1aacefb43e6eab982f5310e79fc0509d1b92ba939ed4
+DIST patch-3.10.88.xz 1167300 SHA256 
b6f8b8a3fa05c3170eb073a70cc04b23fa8cd5789814be0b53bc673d2afaaac7 SHA512 
7e75216781f666bf2aedf28651b1845ff52cb2b38c29adbae3001785fee9e6ca15436c21fdad746f7e99036b18b431ae3381bad51b1ce1dc0b9c2987a162f4d5
 WHIRLPOOL 
53063e29d4d147838e7842306d388c25d2ecde70616ea90a63b8efb833d77158760c4ca396e9befe950f756ceef43974b570f394940b28dc6d081e075e11f33e
 DIST patch-3.12.47.xz 1334016 SHA256 
d90488af2c30345b795e765760f48150b02be5e2ff41ea510a948bfa5967d57a SHA512 
896c8cad4714adcc0d799425ad18d7db618801437c87f620eff46469e34d5035ee86e21595280ff7e4c9eac4942951d4ef1ce7946801001f6d2942be41baf777
 WHIRLPOOL 
be511042ae4d570110b085f5de0f5fa046704e288a6838d649f5ac9246374dac0f3bc20a7e7e8b3bd59476f73f424e76b4a1a91b90c2e1bc2b3a0bfe786f2b3b
-DIST patch-3.14.51.xz 975192 SHA256 
8c6a569868a0df5f895ed4095f4ccf406655358871b51d8d3955fe04a46c80a5 SHA512 
bf4a20698634c69c1fe16c7a6344a48aaa31e44ec9092f4a92cff93a8e36ec789b4e5f2f34d51e4724158afc35ab8eaa6ddb43737766baeca5d400e6d8b6c974
 WHIRLPOOL 
afd5f92512e1a903046ecf874c4f60bf294b5ca164fff1ad6f18f7ef52db7dadbf24cb5f2f2f538e8dd295d23864798e00ac72b52f5e37d1b653fff221610e35
+DIST patch-3.14.52.xz 978804 SHA256 
b1615f874759d48b9ed227cdc5405e6ed0d58f4284624642302d6d9af50a9492 SHA512 
3a0cfd9a0a9fd5f531682def1e43fe5a6e987f8742beb8256f521dce82e62d44d90a1ebab6547a7571f2829e96176806a51a66aa033d326736b88ee89eca6477
 WHIRLPOOL 
eea4b8a487c62d7abb9678ef0d6f446490b99c1d5f956b7c1a0984af8f00bc72a38caefd42c1f023abe1a888c5eada03f720a6d73e35ae7d0350c829f3fe69b1
 DIST patch-3.18.21.xz 605060 SHA256 
fef6b8507c4a88b5b579016773faf1f4b1c78b2cc627e31101f244eeb1cf1895 SHA512 
b82d6f79d59c9d949a149a351ba2c77d334df83d66491a7776d909badff800ed2431ec6216adc7df3c2315886088a659450bc8e1a8d141d2e173a8a4e2492c8d
 WHIRLPOOL 
1ca1e8b9c31ec273e6b8465eba857a537ec0f0c3c8246a232449632fc819a8e19c3d991cf3c96b093be683c4784abdf9a02cef24e35b064fbe18518e84134bf7
 DIST patch-3.2.71.xz 1456808 SHA256 
24160af70c29320d74429717d5dfa3cd3547586f558890533a28dc19bc7caa0c SHA512 
e953df5d59270abeb4c72fc3a2a660cade1a8b5768d5dd00c11f5b3580c65e8c8ccfb814b5bf591900c35e72c1b3aee91819d1c9ddf9aab0dce44b45750f9578
 WHIRLPOOL 
8377da2ff6427888db1eb670f677f6bc71f4db46244ced8a2f849b0250cd9deb8d183556987c892f88011b7c5645838048c11e214c7e2026e7f12efad31ad8b4
 DIST patch-3.4.108.xz 1249808 SHA256 
7909601dd0cab76e933c86fc76bdd64520ff34abb126059f9c02fb4cf2050372 SHA512 

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

2015-09-13 Thread Mike Pagano
commit: 6ba47110ac92f1821fddfba4b980a9054bc20632
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Sep 13 16:48:30 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Sep 13 18:51:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ba47110

sys-kernel/git-sources: Version bump.

Package-Manager: portage-2.2.20.1

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

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 56abda9..a29126a 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -1,4 +1,5 @@
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
+DIST linux-4.2.tar.xz 85507784 SHA256 
cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb SHA512 
a87bbce3c0c6d810a41bbba1c0dcaae80dc38dded9f8571e97fa4ee5a468d655daf52d260911412f7c7da3171a5114e89d63da14b1753b9a3eb2cc38fd89b9ee
 WHIRLPOOL 
2058e664ee287cc03119ff3dd0155b7018b9c789a13a1012f190e516172f845dcb2d977c8e6a6951e9bd720e5e8cdfa3b888cce392c9b02780520e77475870d0
 DIST patch-4.2-rc2.xz 7413044 SHA256 
57be3181b43f2440fa223fc2651b933665b895b0ccaed65b43fed1fb1a7af7bc SHA512 
6d7e276c469b5c4e7e4116879ca2fcbad53a00cb94416d1b1ec0f90e76b418cce71cf574db56ab4d787a367c457c5bc4cc3c41d5bdf6d822cf5ae18fcd6adab1
 WHIRLPOOL 
e7f13df6879c65f72950a355593e5cfe3a3b12dd8ae7a5d8366c16b2d5b158f7747b1cff5b6212bd6a8d3df5657f0059c72e66c8d800d7e7a981c4ca7bc7cfbf
 DIST patch-4.2-rc3.xz 7487512 SHA256 
b9915aba62e3efd7500887c38c4fd69faccb9b64a0d5d3d128618b923846f08e SHA512 
ef721717d028ddd0522b07920c130838da8de665adf0e2f4a55b663a671b4bfdaa4d22e36718e024cdee57b8b672ef75b7896a6d7c3a974a31e99c4ada64e594
 WHIRLPOOL 
d268ff86a69a4f1da5e2b3f42437cfc66c72e5b197641a3a9687c70b98ea9a035fddcaa759823eb8c286a4f8dd06a357959c91857eb22325b97fbfdf58ba97dc
 DIST patch-4.2-rc4.xz 7529356 SHA256 
91ec7a4096cf6496b5ad5de01a06b6b14ffab616d4271b1301357927d06f9857 SHA512 
6bad8b6349368c87d5c378df514fa4438c2691907a82f3fda770b85b1f2c6e5cf26e85718876ad56c2b69e1ebc9559bd80fb90875b4af4fe3382bf67500266a1
 WHIRLPOOL 
94094fb4ea61df0865c0eb5fd37092834c92acdffb72cf97143295ab9343e4f2eebeead92fbac00b0d6b2d31c90e951fc592987a902f97a52a8a959cfadcad9c
@@ -6,3 +7,4 @@ DIST patch-4.2-rc5.xz 7595648 SHA256 
796a276b00301d74982bd519c959c845ed29a7c8594
 DIST patch-4.2-rc6.xz 7618668 SHA256 
afd787da706ce3d20c6587ca8ac498b1e708da87c0b3d1b7f711d107773e377e SHA512 
8d88ee65c210a1ec0a05c97b261c26d80b8899cf60e8904bc38d109b22ab52df212a0faf14e340afa57e1b7f1d9d4375e9e0ecefc5c78c0ee98013455f8b6fc1
 WHIRLPOOL 
7eb8eabfc78a3deec20e34f50216161649dd0b5dcb7c113b8a000d19afedfa3eedb6c9da07b4372db55adf43bfdfe50637ec4720e8588c4cd5b7bb69b8387156
 DIST patch-4.2-rc7.xz 7644136 SHA256 
97baaace5e3abc9195449e9da00072269a58e7484d4ea23632ca26502483b316 SHA512 
5a224e00a88b9a4c5cc8a8eca685e5d8b900d87700acf3b742f0057d1551edc819fb9f085ca5241350586d1d6c5e6a40594c4a4620cf7b9429bf83609c132c7e
 WHIRLPOOL 
7c54deb83dd0e2bf9e9e5389d75fa28c96cf50187e62eccf2aecf85713bccf221c1200044829bb8dd13af020b3a94ed4eea47394c076987b42ce8237fc783fc3
 DIST patch-4.2-rc8.xz 7652216 SHA256 
d2bd54fa107cbe7af4832e50a12ca9ee2e6834fa273c5d1811b1cff7d9fb4fc8 SHA512 
cdb523f7ca74750a240df54ea195140dd42829569d8266c4be6044032a894da277a6df203016032a7828ce2cc3f74e30b0da3da96536b7594904c5999de4e026
 WHIRLPOOL 
49ec8b2496da9871072c6a838dafee7018780eb8ca16d8480a39d22fbb1a62bef822a1c51c48c24d8b92b46ecd66f3c3aeb2c37a74b2fe736f1a29b0b4ff12d0
+DIST patch-4.3-rc1.xz 6171956 SHA256 
5248a8e4fcf347cd918622b8f17057b50a8c367758fd4aed9b9e9dff0ad6a8d0 SHA512 
d5ca7d7aff66305c4ad0b478b670a6c8bc880dfa9ca5e40b2df98eb814c529e18b0b130fe8100747588a02326fbd31d1b3a1b205616368a473e5ce11ee965114
 WHIRLPOOL 
9529ff348dc69bf224fc38b69dc8edb56ea982443382aadb98f753d16a8b819af04705b94f4a64b219d1584d4800df3b64f0d795842adb35ea01b4547dabc4db

diff --git a/sys-kernel/git-sources/git-sources-4.3_rc1.ebuild 
b/sys-kernel/git-sources/git-sources-4.3_rc1.ebuild
new file mode 100644
index 000..13457db
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-4.3_rc1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="yes"
+K_BASE_VER="4.2"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+

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

2015-09-13 Thread Manuel Rüger
commit: 26b0d171c31015dc53127bbf7d37e2240d4481c7
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:51:05 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:51:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26b0d171

x11-misc/lndir: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/lndir/Manifest   |  1 -
 x11-misc/lndir/lndir-1.0.2.ebuild | 16 
 2 files changed, 17 deletions(-)

diff --git a/x11-misc/lndir/Manifest b/x11-misc/lndir/Manifest
index fbd8388..651e40a 100644
--- a/x11-misc/lndir/Manifest
+++ b/x11-misc/lndir/Manifest
@@ -1,2 +1 @@
-DIST lndir-1.0.2.tar.bz2 105950 SHA256 
e5130133e2c6e07c63e5f20199fc6581295c24706e9078f4285378eec14728b5
 DIST lndir-1.0.3.tar.bz2 114392 SHA256 
49f4fab0de8d418db4ce80dad34e9b879a4199f3e554253a8e1ab68f7c7cb65d

diff --git a/x11-misc/lndir/lndir-1.0.2.ebuild 
b/x11-misc/lndir/lndir-1.0.2.ebuild
deleted file mode 100644
index b9eb7d4..000
--- a/x11-misc/lndir/lndir-1.0.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=3
-
-XORG_STATIC=no
-inherit xorg-2
-
-DESCRIPTION="create a shadow directory of symbolic links to another directory 
tree"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   x11-proto/xproto"



[gentoo-commits] repo/proj/prefix:master commit in: sys-devel/libtool/files/2.4/, sys-devel/libtool/files/, sys-devel/libtool/

2015-09-13 Thread Fabian Groffen
commit: dd092aef747a0c0083d0d4500285a2c54d8597fe
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Sep 13 19:08:58 2015 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Sep 13 19:08:58 2015 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=dd092aef

sys-devel/libtool: sync 2.4.6-r1, minimally tested

Package-Manager: portage-2.2.20-prefix

 sys-devel/libtool/Manifest |   1 +
 .../libtool-2.4.6-darwin-use-linux-version.patch   |  13 +++
 .../libtool/files/2.4/libtool-2.4.6-mint.patch |  49 ++
 .../libtool-2.4.3-use-linux-version-in-fbsd.patch  |  38 
 .../libtool/files/libtool-2.4.6-fuse-ld.patch  |  53 +++
 sys-devel/libtool/libtool-2.4.2-r1.ebuild  |   2 +-
 sys-devel/libtool/libtool-2.4.6-r1.ebuild  | 102 +
 7 files changed, 257 insertions(+), 1 deletion(-)

diff --git a/sys-devel/libtool/Manifest b/sys-devel/libtool/Manifest
index 3ee4a98..40ba8bf 100644
--- a/sys-devel/libtool/Manifest
+++ b/sys-devel/libtool/Manifest
@@ -1,3 +1,4 @@
 DIST libtool-1.5.26.tar.gz 2961939 SHA256 
1c35ae34fe85aa167bd7ab4bc9f477fe019138e1af62678d952fc43c0b7e2f09 SHA512 
fcd39856c8cd457c97f176d5f6ce97fd93108808ce24315d179a7c9ca85bb90e799afaa83bc283ec627d73cfe0e0710d36a1ee8f39c9963cf2e806e64a0e0bcf
 WHIRLPOOL 
0a56e666ee7ec79b74b500e761ebddc94fb3d322b1c29c3f9929071f71a339b3082faa486b75c7cfcf72182976a8d6152585ca92c08735a512c07eff80a24ec4
 DIST libtool-2.4.2.tar.xz 868760 SHA256 
1d7b6862c1ed162e327f083a6f78f40eae29218f0db8c38393d61dab764c4407 SHA512 
34f2d4a32beb4d85cfefd9c2c4ff33b0117e9e89c6599c303a7b850c43be5ed090b2f530388b8c8154e8f3f693abd2079180dca9afc948feb800b2e009bed169
 WHIRLPOOL 
300697c30b6cf693463338ee3bfe10b9ccce2c496b319862182124828caf7b667a7e9cf21f287572ec1fed8abe529a14d171da2983369522faf3eed5513a1af5
+DIST libtool-2.4.6.tar.xz 973080 SHA256 
7c87a8c2c8c0fc9cd5019e402bed4292462d00a718a7cd5f11218153bf28b26f SHA512 
a6eef35f3cbccf2c9e2667f44a476ebc80ab888725eb768e91a3a6c33b8c931afc46eb23efaee76c8696d3e4eed74ab1c71157bcb924f38ee912c8a90a6521a4
 WHIRLPOOL 
f6e1ea25cc8dd853f0de53c045bcd1166cfede9cb0e890079c2c05e6cbdb5e705e137f83ba32f7e16691b9c9108e9cfb2d14ed030cea07b6eacbe3f1ae18a73b
 DIST libtool-2.4.tar.xz 852248 SHA256 
afcce660d3dc54c63a0a5ba3cf05272239dc3c54bbeba20f6bad250f9dc007ae SHA512 
6b706656cbe8a18d9b377b913d7430984abe4bcff1db1bfba3e32e7eff38eca433cd95a507f8aafd96daf28e6426eed14c98fcdb79bae63d56c93503d107b4df
 WHIRLPOOL 
1330996e0a30dcb187eedc88a4548fab11f0585e4a30774572e65b9fde02502fc0c032c3c342ccb0bcf2fd4b895f1ea2c17c81c1f5f4c2f7b5a1b8dfe6a52ef8

diff --git 
a/sys-devel/libtool/files/2.4/libtool-2.4.6-darwin-use-linux-version.patch 
b/sys-devel/libtool/files/2.4/libtool-2.4.6-darwin-use-linux-version.patch
new file mode 100644
index 000..b440981
--- /dev/null
+++ b/sys-devel/libtool/files/2.4/libtool-2.4.6-darwin-use-linux-version.patch
@@ -0,0 +1,13 @@
+* revert old 1.5 behaviour
+
+--- libtool-2.4.6/m4/libtool.m4
 libtool-2.4.6/m4/libtool.m4
+@@ -2272,7 +2272,7 @@
+   version_type=darwin
+   need_lib_prefix=no
+   need_version=no
+-  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'
++  library_names_spec='$libname$release$versuffix$shared_ext 
$libname$release$major$shared_ext $libname$shared_ext'
+   soname_spec='$libname$release$major$shared_ext'
+   shlibpath_overrides_runpath=yes
+   shlibpath_var=DYLD_LIBRARY_PATH

diff --git a/sys-devel/libtool/files/2.4/libtool-2.4.6-mint.patch 
b/sys-devel/libtool/files/2.4/libtool-2.4.6-mint.patch
new file mode 100644
index 000..341a0f0
--- /dev/null
+++ b/sys-devel/libtool/files/2.4/libtool-2.4.6-mint.patch
@@ -0,0 +1,49 @@
+Patch by Alan Hourihane
+
+http://bugs.gentoo.org/show_bug.cgi?id=266984
+
+diff -ur libtool-2.2.6/configure libtool-2.2.6-mint/configure
+--- libtool-2.2.6/configure2008-09-07 17:52:50.0 +
 libtool-2.2.6/configure2009-04-21 08:49:27.0 +
+@@ -4986,6 +4986,11 @@
+ lt_cv_sys_max_cmd_len=8192;
+ ;;
+ 
++  mint*)
++# On MiNT this can take a long time and run out of memory.
++lt_cv_sys_max_cmd_len=8192;
++;;
++
+   amigaos*)
+ # On AmigaOS with pdksh, this test takes hours, literally.
+ # So we just punt and use a minimum line length of 8192.
+diff -ur libtool-2.2.6/libltdl/configure libtool-2.2.6-mint/libltdl/configure
+--- libtool-2.2.6/libltdl/configure2008-09-07 17:53:05.0 +
 libtool-2.2.6/libltdl/configure2009-04-21 08:50:08.0 +
+@@ -4422,6 +4422,11 @@
+ lt_cv_sys_max_cmd_len=8192;
+ ;;
+ 
++  mint*)
++# On MiNT this can take a long time and run out of memory.
++lt_cv_sys_max_cmd_len=8192;
++;;
++
+   amigaos*)
+ # On AmigaOS with pdksh, this test takes hours, literally.
+ # So we just punt and use a minimum line length of 8192.
+diff -ur libtool-2.2.6/libltdl/m4/libtool.m4 
libtool-2.2.6-mint/libltdl/m4/libtool.m4
+--- 

[gentoo-commits] repo/proj/prefix:master commit in: sys-libs/ncurses/

2015-09-13 Thread Fabian Groffen
commit: 5118f7f864b9c5b279d9029f6ed06eceacf0e88e
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Sep 13 19:31:55 2015 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Sep 13 19:31:55 2015 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5118f7f8

sys-libs/ncurses: sync, add bridge versions, and straight copy of 6.0

Package-Manager: portage-2.2.20-prefix

 sys-libs/ncurses/Manifest  |   2 +-
 sys-libs/ncurses/ncurses-5.7-r7.ebuild | 254 --
 sys-libs/ncurses/ncurses-5.9-r02.1.ebuild  | 253 --
 sys-libs/ncurses/ncurses-5.9-r1.ebuild | 249 --
 ...urses-5.9-r3.ebuild => ncurses-5.9-r101.ebuild} |  22 +-
 sys-libs/ncurses/ncurses-5.9-r99.ebuild|  21 ++
 sys-libs/ncurses/ncurses-6.0-r1.ebuild | 283 +
 7 files changed, 320 insertions(+), 764 deletions(-)

diff --git a/sys-libs/ncurses/Manifest b/sys-libs/ncurses/Manifest
index 25ae7b1..577e8b0 100644
--- a/sys-libs/ncurses/Manifest
+++ b/sys-libs/ncurses/Manifest
@@ -1,3 +1,3 @@
 DIST host-libtool-0.1.0.tar.gz 388867 SHA256 
a32c9046e7f63b84ea41228ed54b17b98789ce129f7d02c215840dbecb15c8f5 SHA512 
d8764d7814abf06556fb6eb19c12c2de1d1dc9f2f325deae55606ddfcf88963d65713d6fbd1fae0ab1a0668d90f84204e1cdcbd557944660ab01ecfe3a824ca5
 WHIRLPOOL 
5b002500155ad6d2400ba65950827db76f1c91ccc09f11fc726f71c23452d364d32229a6a92334ef3a77e72c53c353dee53b56601691868a3ab26adc0983c36b
-DIST ncurses-5.7.tar.gz 2445052 SHA256 
0a9bdea5c7de8ded5c9327ed642915f2cc380753f12d4ad120ef7da3ea3498f4 SHA512 
9fda7283cd50ab9d8b9181935be7c31c4ae4c974f2eee186a5dbe8c3ce5522e5c200f06af48aa22b44cdab16a22795cfc8dc36a4258e6d826b454216dfcea3c6
 WHIRLPOOL 
696258b29783b078bd83631fef90388fe2bcd92ed94ace55cfae44cfa08afbf4fb29c3902d17216f3f059ee78cb61f69eed64b05a2ddd85cecade7af6af3
 DIST ncurses-5.9.tar.gz 2826473 SHA256 
9046298fb440324c9d4135ecea7879ffed8546dd1b58e59430ea07a4633f563b SHA512 
d7c5e54b6d4d8b9211f0006ca8786f7609d180cc1aaebf4f25e7e35e12959779cf66447359a602daed625621ca32b0d910d67aef3eb8b6fdc3c373819a88faa1
 WHIRLPOOL 
069e98c6392ce9aca960c72a20f1a502387d33a4b237aaeaa95548024ce4d47b129eafbe0288d21c590e725fe71aaca21cacb300f11a660b7234cb39a777672a
+DIST ncurses-6.0.tar.gz 3131891 SHA256 
f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260 SHA512 
9ec194f4783dae6de8c529cac31b5cfbfcfea212c5d47b1f87cd49df013e38f8580a9e7aa1384918df0921b4ba999d5e73eb6d6362cce2d7287e64308b673963
 WHIRLPOOL 
25bef32a63113f07259e81e2cd34b7065e32b471d190c79d56df6e7187fa0d76ae4585ecb2a5d36b3a3dc4facecc9c928503aa97195344a8594ad031bae41949

diff --git a/sys-libs/ncurses/ncurses-5.7-r7.ebuild 
b/sys-libs/ncurses/ncurses-5.7-r7.ebuild
deleted file mode 100644
index 7cbe877..000
--- a/sys-libs/ncurses/ncurses-5.7-r7.ebuild
+++ /dev/null
@@ -1,254 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ncurses-5.7-r7.ebuild,v 
1.10 2012/06/24 00:24:08 vapier Exp $
-
-EAPI="1"
-AUTOTOOLS_AUTO_DEPEND="no"
-inherit eutils flag-o-matic toolchain-funcs multilib autotools
-
-MY_PV=${PV:0:3}
-PV_SNAP=${PV:4}
-MY_P=${PN}-${MY_PV}
-DESCRIPTION="console display library"
-HOMEPAGE="http://www.gnu.org/software/ncurses/ http://dickey.his.com/ncurses/;
-SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="5"
-KEYWORDS="~ppc-aix ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="ada +cxx debug doc gpm minimal profile static-libs trace unicode"
-
-DEPEND="gpm? ( sys-libs/gpm )
-   kernel_AIX? ( ${AUTOTOOLS_DEPEND} )
-   kernel_HPUX? ( ${AUTOTOOLS_DEPEND} )"
-#  berkdb? ( sys-libs/db )"
-RDEPEND="!http://lists.gnu.org/archive/html/bug-libtool/2008-03/msg00124.html
-   # Use libtool on hpux too to get some soname.
-   [[ ${CHOST} == *'-aix'* || ${CHOST} == *'-hpux'* ]]
-}
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   [[ -n ${PV_SNAP} ]] && epatch "${WORKDIR}"/${MY_P}-${PV_SNAP}-patch.sh
-   epatch "${FILESDIR}"/${PN}-5.6-gfbsd.patch
-   epatch "${FILESDIR}"/${PN}-5.7-emacs.patch #270527
-   epatch "${FILESDIR}"/${PN}-5.7-nongnu.patch
-   epatch "${FILESDIR}"/${PN}-5.7-tic-cross-detection.patch #21
-   epatch "${FILESDIR}"/${PN}-5.7-rxvt-unicode-9.09.patch #192083
-   epatch "${FILESDIR}"/${P}-hashdb-open.patch #245370
-   sed -i '/with_no_leaks=yes/s:=.*:=$enableval:' configure #305889
-
-   epatch "${FILESDIR}"/${PN}-5.7-mint.patch
-   epatch "${FILESDIR}"/${PN}-5.7-mint-terminfo.patch
-   epatch "${FILESDIR}"/${PN}-5.5-aix-shared.patch
-   epatch "${FILESDIR}"/${PN}-5.6-interix.patch
-   epatch "${FILESDIR}"/${PN}-5.6-netbsd.patch
-#  epatch 

[gentoo-commits] proj/g-sorcery:dev commit in: /

2015-09-13 Thread Jauhien Piatlicki
commit: 703318df48fc70bfb232033753fe02b73dfd67c9
Author: Jauhien Piatlicki  gentoo  org>
AuthorDate: Sun Sep 13 19:36:14 2015 +
Commit: Jauhien Piatlicki  gentoo  org>
CommitDate: Sun Sep 13 19:36:14 2015 +
URL:https://gitweb.gentoo.org/proj/g-sorcery.git/commit/?id=703318df

[README] add link to trello board

 README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.md b/README.md
index 9bdd5b7..c2eb5ad 100644
--- a/README.md
+++ b/README.md
@@ -26,3 +26,5 @@ This project is aimed to create a framework for 
ebuild-generators for
 3rd party software providers.
 
 If you want to develop a new backend see [developer's 
instructions](https://github.com/jauhien/g-sorcery/blob/master/docs/developer_instructions.rst).
+
+[TODO 
list](https://trello.com/b/8WdY2ZIs/framework-for-automated-ebuild-generators).



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/gsmc/

2015-09-13 Thread Manuel Rüger
commit: 69e43749de509a307fe84572bde0914ad521dcac
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 20:40:10 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 20:40:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69e43749

sci-electronics/gsmc: Remove old

Package-Manager: portage-2.2.20.1

 sci-electronics/gsmc/gsmc-1.1-r1.ebuild | 35 -
 1 file changed, 35 deletions(-)

diff --git a/sci-electronics/gsmc/gsmc-1.1-r1.ebuild 
b/sci-electronics/gsmc/gsmc-1.1-r1.ebuild
deleted file mode 100644
index f47795f..000
--- a/sci-electronics/gsmc/gsmc-1.1-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit autotools eutils
-
-DESCRIPTION="A GTK program for doing Smith Chart calculations"
-HOMEPAGE="http://www.qsl.net/ik5nax/;
-SRC_URI="http://www.qsl.net/ik5nax/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="
-   dev-libs/glib:2
-   x11-libs/gtk+:2"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${CDEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-autotools.patch"
-   eautoreconf
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die
-   dodoc AUTHORS NEWS README TODO || die
-   insinto /usr/share/${PN}
-   doins example* || die
-}



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

2015-09-13 Thread Alex Brandt
commit: a5c91e1728e5ccdd17dac20f09329e7d3bfbdbe8
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Sep 13 16:59:54 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Sep 13 17:08:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5c91e17

dev-python/boto3: add version 1.1.3

Package-Manager: portage-2.2.20.1

 dev-python/boto3/Manifest   |  1 +
 dev-python/boto3/boto3-1.1.3.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 146b92c..7017499 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,2 +1,3 @@
 DIST boto3-1.1.1.tar.gz 137778 SHA256 
02a99f270f58386dad6e260692b52f7038d52a9a84df29878528a573afecd88a SHA512 
34019c8a3744775a952ae151b56747fc011fd4f28853e3d206f95bb8dd03746ad3d4086cd187d332930d543ca757d81bb732ccfd7cfd818aa8e75d73b1880be5
 WHIRLPOOL 
0032f5751df61bd71d60ea87ece0ce1be873a6fcd561d7600fcf62f1dd7b701963629368b46010b7a90719395adc652ca5059646af42510d72c05b7e3c5cf49e
 DIST boto3-1.1.2.tar.gz 141981 SHA256 
6249add14f96b5e4cda0ac03798ab29f505c001332d2fb31ccb276e0ddcc5a15 SHA512 
89b0abdab69dcd0c8ed612ecd70e5bdb88cc5242a3846fbdc5f708118d3f0db8c7eb5683422030eb630427dba53a5ea1780f5abbab58a021bf0bcacdeca07aef
 WHIRLPOOL 
c7c27d8c3c99ea992b2235beb60221c2899ea94557115b76366ce5922cef3606d9a2f907b0fdcce18e2eee1b19675849a354b50d429aa83ec1c364bf91a7ca5d
+DIST boto3-1.1.3.tar.gz 145381 SHA256 
c158da65712807de421b66d3b81b1da6a449bc631045b2312855086991e7318e SHA512 
a049b8d73f45cf552705764c3ae4a3e8ec19920983bd5587a0563501868920d5237f4e37081ab09a0cda1f48725c6117cd0367633ec027180152bcaa3364383d
 WHIRLPOOL 
0c9f92f16cb5a0210d331ca5bf7199e0c0a0d8051fbe41922f9dee45221a4697816b7d42e323916cf806973abf455c7b6f866a6931cdbfe9d61151cb4eb192c0

diff --git a/dev-python/boto3/boto3-1.1.3.ebuild 
b/dev-python/boto3/boto3-1.1.3.ebuild
new file mode 100644
index 000..f67bcad
--- /dev/null
+++ b/dev-python/boto3/boto3-1.1.3.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3;
+SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+CDEPEND="
+   >=dev-python/botocore-1.2.0[${PYTHON_USEDEP}]
+   =dev-python/jmespath-0.6.2[${PYTHON_USEDEP}]
+   

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

2015-09-13 Thread Alex Brandt
commit: 4f238500a611a719d0b049c09e7bfb278f976e0f
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Sep 13 17:01:53 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Sep 13 17:08:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f238500

dev-python/botocore: add version 1.2.1

Package-Manager: portage-2.2.20.1

 dev-python/botocore/Manifest  |  1 +
 dev-python/botocore/botocore-1.2.1.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 368525e..2d3239d 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,3 +1,4 @@
 DIST 1.1.11.tar.gz 1975224 SHA256 
b4e6edc12177dd4f720259aa7027bab00fb9db2029e40e77e67c552ef9f41132 SHA512 
b0b10299d93314de582cfd21511987fe210df1618c49f6c706c4341a3a635a85cd48d8848a69f83391a227ab5dc3881509a02b4cc47b1e27d18cf353d4de850b
 WHIRLPOOL 
21e662fe7f713a98e5e16225e3860585f0abb8e4a47b5f0ae52262a929a32ce563e1108c80602c9c2136180957c1b8bb4b89d8b9fc84415c155212d326f08b90
 DIST botocore-1.1.8.tar.gz 1969137 SHA256 
338fed0119d819a60b2b7cf1a1a38f93603c5f012a2a483b713425816a43a57c SHA512 
24c17057ce600873fb37ecd6712defe8339a36cc11cb77afd2417b68bef63e46ebb22dbe320e5c4bb7f948aee6fb3fc90336c021c6adf2d7902cab8ce6d214f2
 WHIRLPOOL 
54872902565ad7af5932517a554a4577445aa2539c1668f5d672f7e60b84efae6ad0af68e98d9cc3ed2fb4204936c6881bf17cda0ef821a2ee6e8f60b1cf6b20
 DIST botocore-1.2.0.tar.gz 1993122 SHA256 
59f2b9109d2cef499679b1676622e653b6a74be8ce20f84104fe631eb5434972 SHA512 
8a336c4895e61246f36fdacb7a90c192a6db8b543331b25a6abc153b4b7fd3dd1f06a7c2f64451a12d900ebebb0ae86d1fe0b8011e22a7b09fd6143a6b8a7072
 WHIRLPOOL 
3bc375a0949ff7a4cb5e97b766681c8a71f65183c36afd9900275ac54ea0bebea94bb655bf8020752ed1f9e85c9cca775fc3f531133ffb7ce535a5bfe1daf246
+DIST botocore-1.2.1.tar.gz 2002263 SHA256 
3e3f75a52355d0d6feda98d2dd3345605227104174b45bc028507f055a90dd28 SHA512 
fcdc2d655e717599a39d40775e276c51367c057f5558b2daffc376d6283faf617d85efe5f8258186dacf0e062f9d22eff3ba7b74c595833a93b8b638cf0d2f31
 WHIRLPOOL 
e8d53c3585c2a764b52dbef9d0d2309e039de25c3ba286703fc3785f69af99bd54e149075fe0a9faadb81fa875df19b3dd6c4ffc9559c6c525f5429371dd6517

diff --git a/dev-python/botocore/botocore-1.2.1.ebuild 
b/dev-python/botocore/botocore-1.2.1.ebuild
new file mode 100644
index 000..5908e96
--- /dev/null
+++ b/dev-python/botocore/botocore-1.2.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Low-level, data-driven core of boto 3."
+HOMEPAGE="https://github.com/boto/botocore;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+CDEPEND="
+   >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
+   ~dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
+   

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

2015-09-13 Thread Alex Brandt
commit: 5a44c7c9a037a232669037ece0c5751ee7001910
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Sep 13 17:06:54 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Sep 13 17:08:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a44c7c9

dev-python/botocore: remove version 1.1.8

Package-Manager: portage-2.2.20.1

 dev-python/botocore/Manifest  |  1 -
 dev-python/botocore/botocore-1.1.8.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 2d3239d..ebe71fd 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,3 @@
 DIST 1.1.11.tar.gz 1975224 SHA256 
b4e6edc12177dd4f720259aa7027bab00fb9db2029e40e77e67c552ef9f41132 SHA512 
b0b10299d93314de582cfd21511987fe210df1618c49f6c706c4341a3a635a85cd48d8848a69f83391a227ab5dc3881509a02b4cc47b1e27d18cf353d4de850b
 WHIRLPOOL 
21e662fe7f713a98e5e16225e3860585f0abb8e4a47b5f0ae52262a929a32ce563e1108c80602c9c2136180957c1b8bb4b89d8b9fc84415c155212d326f08b90
-DIST botocore-1.1.8.tar.gz 1969137 SHA256 
338fed0119d819a60b2b7cf1a1a38f93603c5f012a2a483b713425816a43a57c SHA512 
24c17057ce600873fb37ecd6712defe8339a36cc11cb77afd2417b68bef63e46ebb22dbe320e5c4bb7f948aee6fb3fc90336c021c6adf2d7902cab8ce6d214f2
 WHIRLPOOL 
54872902565ad7af5932517a554a4577445aa2539c1668f5d672f7e60b84efae6ad0af68e98d9cc3ed2fb4204936c6881bf17cda0ef821a2ee6e8f60b1cf6b20
 DIST botocore-1.2.0.tar.gz 1993122 SHA256 
59f2b9109d2cef499679b1676622e653b6a74be8ce20f84104fe631eb5434972 SHA512 
8a336c4895e61246f36fdacb7a90c192a6db8b543331b25a6abc153b4b7fd3dd1f06a7c2f64451a12d900ebebb0ae86d1fe0b8011e22a7b09fd6143a6b8a7072
 WHIRLPOOL 
3bc375a0949ff7a4cb5e97b766681c8a71f65183c36afd9900275ac54ea0bebea94bb655bf8020752ed1f9e85c9cca775fc3f531133ffb7ce535a5bfe1daf246
 DIST botocore-1.2.1.tar.gz 2002263 SHA256 
3e3f75a52355d0d6feda98d2dd3345605227104174b45bc028507f055a90dd28 SHA512 
fcdc2d655e717599a39d40775e276c51367c057f5558b2daffc376d6283faf617d85efe5f8258186dacf0e062f9d22eff3ba7b74c595833a93b8b638cf0d2f31
 WHIRLPOOL 
e8d53c3585c2a764b52dbef9d0d2309e039de25c3ba286703fc3785f69af99bd54e149075fe0a9faadb81fa875df19b3dd6c4ffc9559c6c525f5429371dd6517

diff --git a/dev-python/botocore/botocore-1.1.8.ebuild 
b/dev-python/botocore/botocore-1.1.8.ebuild
deleted file mode 100644
index a9e0585..000
--- a/dev-python/botocore/botocore-1.1.8.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Low-level, data-driven core of boto 3."
-HOMEPAGE="https://github.com/boto/botocore;
-SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="
-   >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
-   ~dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
-   

[gentoo-commits] proj/grss:master commit in: grs/

2015-09-13 Thread Anthony G. Basile
commit: 363fc06845b0666dda39b48c205aa382168acd7a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 13 17:35:51 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 13 17:35:51 2015 +
URL:https://gitweb.gentoo.org/proj/grss.git/commit/?id=363fc068

grs/ISOIt.py: add in build for initramfs and iso.

 grs/ISOIt.py | 104 +++
 1 file changed, 83 insertions(+), 21 deletions(-)

diff --git a/grs/ISOIt.py b/grs/ISOIt.py
index 9b3a920..2a0be81 100644
--- a/grs/ISOIt.py
+++ b/grs/ISOIt.py
@@ -39,31 +39,93 @@ class ISOIt(HashIt):
 self.digest_name = '%s.DIGESTS' % self.medium_name
 
 
+def initramfs(self, isoboot_dir):
+""" TODO """
+# Paths to where we'll build busybox and the initramfs.
+busybox_root = os.path.join(self.workdir, 'busybox')
+busybox_path = os.path.join(busybox_root, 'bin/busybox')
+savedconfig_path = os.path.join(busybox_root, 
'etc/portage/savedconfig/sys-apps/busybox')
+busybox_config   = os.path.join(self.libdir, 'scripts/busybox-config')
+
+# Remove any old busybox build directory and prepare new one.
+shutil.rmtree(busybox_root, ignore_errors=True)
+os.makedirs(savedconfig_dir, mode=0o755, exist_ok=True)
+shutil.copyfile(busybox_config, savedconfig_path)
+
+# Emerge busybox.
+cmd = 'emerge --nodeps -1 busybox'
+emerge_env = { 'USE' : '-* savedconfig', 'ROOT' : busybox_root }
+Execute(cmd, timeout=600, extra_env=emerge_env, logfile=self.logfile)
+
+# Remove any old initramfs root and prepare a new one.
+initramfs_root = os.path.join(self.workdir, 'initramfs')
+shutil.rmtree(initramfs_root, ignore_errors=True)
+root_paths = ['bin', 'dev', 'etc', 'mnt/cdrom', 'mnt/squashfs', 
'mnt/tmpfs',
+'proc', 'sbin', 'sys', 'tmp', 'usr/bin', 'usr/sbin', 'var', 
'var/run']
+for p in root_paths:
+d = os.path.join(initramfs_root, p)
+os.makdirs(d, mode=0o755, exist_ok=True)
+
+# Copy the static busybox to the initramfs root.
+# TODO: we are assuming a static busybox, so we should check.
+shutil.copyfile(busybox_path, os.join.path(initramfs_root, 
'bin/busybox'))
+cmd = 'chroot %s /bin/busybox --install -s' % initramfs_root
+Execute(cmd, timeout=60, logfile=self.logfile)
+initscript_path = os.path.join(self.libdir, 'scripts/initramfs-init')
+shutil.copy(initscript_path, initramfs_root)
+
+# TODO: we are assuming a static kernel and so not copying in
+# any modules.  This is where we should copy in modules.
+
+# cpio-gzip the initramfs root to the iso boot dir
+initramfs_path = os.path.join(isoboot_dir, 'initramfs')
+cwd = os.getcwd()
+os.chdir(initramfs_root)
+cmd = 'find . | cpio -H newc -o | gzip -9 > %s' % initramfs_path
+Execute(cmd, timeout=600, logfile=self.logfile)
+os.chdir(cwd)
+
+
 def isoit(self, alt_name = None):
 # Create the ISO with the default name unless an alt_name is given.
 if alt_name:
 self.medium_name = '%s-%s%s%s.iso' % (alt_name, self.year, 
self.month, self.day)
 self.digest_name = '%s.DIGESTS' % self.medium_name
-iso_path = os.path.join(self.workdir, 'iso')
-grub_path = os.path.join(iso_path, 'boot/grub')
-os.makedirs(grub_path, mode=0o755, exist_ok=False)
-#
+iso_dir = os.path.join(self.workdir, 'iso')
+isoboot_dir = os.path.join(iso_dir, 'boot')
+isogrub_dir = os.path.join(isoboot_dir, 'grub')
+os.makedirs(isogrub_dir, mode=0o755, exist_ok=False)
+
 # 1. build initramfs image and copy it in
-#locate a build script for the initramfs in self.libdir/scripts
-#locate a busybox config script in self.libdir/scripts
-#locate an init scripts in self.libdir/scripts
-#copy in any kernel modules(?)
-#find . | cpio -H newc -o | gzip -9 > iso/boot/initramfs.igz
-#
-# 2. make the squashfs image and copy it into the iso/boot
-squashfs_path = os.path.join(iso_path, 'rootfs')
+self.initramfs(isoboot_dir)
+
+# 2. Move the kernel image into the iso/boot directory.
+# TODO: we are assuming a static kernel
+kernelimage_dir  = os.path.join(self.portage_configroot, 'boot')
+kernelimage_path = os.path.join(kernelimage_dir, 'kernel')
+shutil.copy(kernelimage_path, isoboot_dir)
+shutil.rmtree(kernelimage_dir, ignore_errors=True)
+
+# 3. make the squashfs image and copy it into the iso/boot
+squashfs_path = os.path.join(iso_dir, 'rootfs')
 cmd = 'mksquashfs %s %s -xattrs -comp xz' % (self.portage_configroot, 
squashfs_path)
-Execute(cmd, timeout=None, logfile=self.logfile)
-#
-

[gentoo-commits] repo/gentoo:master commit in: x11-wm/page/files/, x11-wm/page/

2015-09-13 Thread Patrice Clement
commit: 8e15302d0e7fe3ae6566cb35b712ea8aa83de194
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 17:34:53 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 17:35:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e15302d

x11-wm/page: Version bump.

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

 x11-wm/page/Manifest |  2 +-
 x11-wm/page/files/page-1.9.5-page.hxx.patch  | 10 --
 x11-wm/page/{page-1.9.5.ebuild => page-1.9.6.ebuild} |  6 --
 3 files changed, 1 insertion(+), 17 deletions(-)

diff --git a/x11-wm/page/Manifest b/x11-wm/page/Manifest
index b41851d..83edb1c 100644
--- a/x11-wm/page/Manifest
+++ b/x11-wm/page/Manifest
@@ -1 +1 @@
-DIST page-1.9.5.tar.gz 984393 SHA256 
af2a30fc66c4db07e498c47365b9742353e20d5027f493303df2490feb015a4c SHA512 
d2ebdec1bb258999e5f0c34a2ca4b6899ad2dcc865f3f4af51543e977f01cef44b24f88756daf111d0465c00f401f7e7a5f73dd881e44d01083e0c36cc5eae64
 WHIRLPOOL 
274198540a7e7bb0f7a452af0e7869266245948907b45a7b136abbe041bf6b7164da7d5905460d25facf5ffd934afb20b450363b8c972f7c8fcf61274e1f87a5
+DIST page-1.9.6.tar.gz 984557 SHA256 
67ce57c7dcd3098a96911fa0150985887082747d8580ebdcf662ad0551b22dd6 SHA512 
83662e5d3df13ecb1b110323775cfb82008279714e7a0cecccb3703f88ed28f4efa4141dbec69ea173dad19d4a1572a754f23101798657b74208935c4286
 WHIRLPOOL 
48962cd710b1133bfee0c78fd23dc528a2225aa3cf1b40d82691384800ff3a49557a934f2f4b0533c977df502c5dcea0ee1c0db318e9e8553eebf39df412fa4d

diff --git a/x11-wm/page/files/page-1.9.5-page.hxx.patch 
b/x11-wm/page/files/page-1.9.5-page.hxx.patch
deleted file mode 100644
index 1540edc..000
--- a/x11-wm/page/files/page-1.9.5-page.hxx.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 src/page.hxx.orig  2015-09-12 16:17:47.278955852 +0200
-+++ src/page.hxx   2015-09-12 16:17:53.706972174 +0200
-@@ -15,6 +15,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "config.hxx"
- 

diff --git a/x11-wm/page/page-1.9.5.ebuild b/x11-wm/page/page-1.9.6.ebuild
similarity index 88%
rename from x11-wm/page/page-1.9.5.ebuild
rename to x11-wm/page/page-1.9.6.ebuild
index 24a7100..a327826 100644
--- a/x11-wm/page/page-1.9.5.ebuild
+++ b/x11-wm/page/page-1.9.6.ebuild
@@ -33,9 +33,3 @@ DEPEND="x11-proto/xcb-proto
x11-libs/cairo
x11-libs/pango
dev-libs/glib"
-
-PATCHES=("${FILESDIR}"/"${P}-${PN}.hxx.patch")
-
-src_prepare() {
-   epatch "${PATCHES[@]}"
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/redshift/files/, x11-misc/redshift/

2015-09-13 Thread Manuel Rüger
commit: 4bdfaeea151f6e7c4e16f4c148bcb26aae11fe15
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:54:16 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:55:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bdfaeea

x11-misc/redshift: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/redshift/Manifest |  2 -
 x11-misc/redshift/files/1.6-bonoboiidfix.patch | 43 
 .../files/redshift-1.7-make-conditionals.patch | 72 ---
 x11-misc/redshift/files/redshift-1.9-toggle.patch  | 37 --
 x11-misc/redshift/redshift-1.7-r1.ebuild   | 77 -
 x11-misc/redshift/redshift-1.7.ebuild  | 74 
 x11-misc/redshift/redshift-1.9.1-r1.ebuild | 79 -
 x11-misc/redshift/redshift-1.9.1-r2.ebuild | 80 --
 x11-misc/redshift/redshift-1.9.1.ebuild| 76 
 9 files changed, 540 deletions(-)

diff --git a/x11-misc/redshift/Manifest b/x11-misc/redshift/Manifest
index bc88f98..f4580aa 100644
--- a/x11-misc/redshift/Manifest
+++ b/x11-misc/redshift/Manifest
@@ -1,3 +1 @@
 DIST redshift-1.10.tar.gz 519595 SHA256 
f7a1ca1eccf662995737e14f894c2b15193923fbbe378d151e346a8013644f16 SHA512 
0fd3867d883268279b6297a0eec1bcdc20022a893b935fd4767fbfc0797ad044777af4cf1efcfec7a1f362306ae88869f73b20c91b29844e9e201881c5b56260
 WHIRLPOOL 
3aa705a5afedb4ebb7fcab98afec0d69ea5c8c7cd280eee72fc2aff260df85d00b0af722ce6fc1e3e04d000e30d37eb2ddca8b82d6a25e9d587f4e0d98bfc626
-DIST redshift-1.7.tar.bz2 269820 SHA256 
9bfa3c3d4a9ce6ea06a5e6235ab4e8215a456c08d6e7451c0389456a37d010c8 SHA512 
522b29c2a96d56d8497f93b8a72f295a3a4bbbaef32c514b6975da9a6d046bc0c97318458e8dad000ae18bef98a8fae0d1c2249f3be6860985a4e5ae0b1bb559
 WHIRLPOOL 
78c1e4a121b93889f6ebbfe86962c5b830a4b7169d0a8c33883e00405dfc5d51409a59b788618a8be740720c50ef17a230fbcf408d5ece858b73286eec336c27
-DIST redshift-1.9.1.tar.gz 163257 SHA256 
31636a76c3544cd1efd3cd43f443d97b63f9d27c4bcc90619897cf489ea74766 SHA512 
7d0d037a6415efd5b82e4d617fdc826bb67259358bb4c00153a121712ae3ea260e975860bb02b8cdc789d9593fd420fae6cf5319cf0bad29202ba2ff83f9efff
 WHIRLPOOL 
926123312d64e3f974e253b7226fade48233fdccd6ba6494dac00ef0b26ceaf021be8f35c446851bd59e20e66ea1fcc65c2aa087f193d3960328540b31def2ea

diff --git a/x11-misc/redshift/files/1.6-bonoboiidfix.patch 
b/x11-misc/redshift/files/1.6-bonoboiidfix.patch
deleted file mode 100644
index b4f6c4d..000
--- a/x11-misc/redshift/files/1.6-bonoboiidfix.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-Description: Handle newer versions of gnome-panel gconf schema.
- In newer versions of gnome-panel (>2.30), the gconf identifier 
- name for bonobo_iid was renamed to applet_iid, this caused 
- redshift to be unable to locate the Clock Applet.  This patch 
- attempts to use the legacy behaviour, and on failure to 
- retrieve the value uses the newer identifer.
-Author: Miloš Komarčević 
-Bug: https://launchpad.net/bugs/706353
-Bug-Ubuntu: https://launchpad.net/bugs/706353
-Bug-Fedora: https://bugzilla.redhat.com/661145
-Bug-Gentoo: https://bugs.gentoo.org/365481
- 
 a/src/location-gnome-clock.c
-+++ b/src/location-gnome-clock.c
-@@ -104,11 +104,28 @@
-   char *bonobo_iid = gconf_client_get_string(client, key,
-  );
- 
-+  /* Try both gnome-panel 2.30.x and earlier bonobo_iid 
key and
-+ newer applet_iid. */
-   if (!error && bonobo_iid != NULL &&
-   !strcmp(bonobo_iid, "OAFIID:GNOME_ClockApplet")) {
-   clock_applet_count += 1;
-   current_city = find_current_city(client, id);
-   }
-+  else {
-+  g_free(key);
-+  key = g_strdup_printf("/apps/panel/applets/%s"
-+  "/applet_iid", id);
-+  char *applet_iid = 
gconf_client_get_string(client, key,
-+  
);
-+
-+  if (!error && applet_iid != NULL &&
-+  !strcmp(applet_iid, 
"ClockAppletFactory::ClockApplet")) {
-+  clock_applet_count += 1;
-+  current_city = 
find_current_city(client, id);
-+  }
-+
-+  g_free(applet_iid);
-+  }
- 
-   g_free(bonobo_iid);
-   g_free(key);

diff --git a/x11-misc/redshift/files/redshift-1.7-make-conditionals.patch 
b/x11-misc/redshift/files/redshift-1.7-make-conditionals.patch
deleted file mode 100644
index 

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

2015-09-13 Thread Manuel Rüger
commit: 0cd7831806de7c73d371b6650adafdd06616d3c1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:55:25 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:55:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd78318

x11-misc/lineak-defaultplugin: Remove old

Package-Manager: portage-2.2.20.1

 .../lineak-defaultplugin-0.9.0.ebuild  | 41 --
 1 file changed, 41 deletions(-)

diff --git a/x11-misc/lineak-defaultplugin/lineak-defaultplugin-0.9.0.ebuild 
b/x11-misc/lineak-defaultplugin/lineak-defaultplugin-0.9.0.ebuild
deleted file mode 100644
index 5c7893d..000
--- a/x11-misc/lineak-defaultplugin/lineak-defaultplugin-0.9.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils multilib
-
-MY_P=${P/.0/}
-
-DESCRIPTION="Mute/unmute and other macros for LINEAK"
-HOMEPAGE="http://lineak.sourceforge.net;
-SRC_URI="mirror://sourceforge/lineak/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="debug"
-
-DEPEND="=x11-misc/lineakd-${PV}*
-   x11-proto/inputproto"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}"/${P}-gcc43.patch
-}
-
-src_compile() {
-   econf USER_LDFLAGS="${LDFLAGS}" $(use_enable debug)
-   emake || die "emake failed."
-}
-
-src_install() {
-   sed -i -e 's:$(DESTDIR)${DESTDIR}:$(DESTDIR):' default_plugin/Makefile
-
-   emake DESTDIR="${D}" \
-   PLUGINDIR=/usr/$(get_libdir)/lineakd/plugins \
-   install || die "emake install failed."
-   dodoc AUTHORS README
-}



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

2015-09-13 Thread Manuel Rüger
commit: 29a1e04967ce617c07436176b92875992b703f34
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 19:01:13 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 19:01:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a1e049

x11-misc/evolvotron: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/evolvotron/Manifest|  1 -
 x11-misc/evolvotron/evolvotron-0.6.1.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/x11-misc/evolvotron/Manifest b/x11-misc/evolvotron/Manifest
index 525c85d..0aa40e9 100644
--- a/x11-misc/evolvotron/Manifest
+++ b/x11-misc/evolvotron/Manifest
@@ -1,3 +1,2 @@
-DIST evolvotron-0.6.1.tar.gz 156441 SHA256 
70bf4dc6de69f43385047d3dfb6058c6d5b26957313486bfc452721ff05be503
 DIST evolvotron-0.6.2.tar.gz 160255 SHA256 
9303726eb691dec92bd9fc0c144530c8facc7c71a8394e040e63896bbcfbe7d8 SHA512 
f20f7079846fcfaea7d75494087fb159d0ab64b22342d34caf2b468de0e3891be9265e6f5a957a915c9eda311f643a9959de526578299c74e7f128f24e1a0c64
 WHIRLPOOL 
f7d97dc0fd2ac819d4a0bf2e6b5f17695c9d4d6f09b4107278ebdf6845d2e57848d31ab30d03eda373741b1a242e0d5e27f13515167a77d49f3d83bedae30fa2
 DIST evolvotron-0.6.3.tar.gz 182357 SHA256 
d1735fe84d90be004888017068f49fa00c97378fd7cca11a90a4a889ef681393 SHA512 
4cb5e3bda340c3444c5d59aa0569010c1845104a67996a596840aec768964a96798dc61bab7c6a77de3a4586010d8d066941795145400ad9a3fd336269e681a9
 WHIRLPOOL 
34bb1e2aac934cb3c8079803eca3844750641d4b4dbcd4a01f18405f0ae861b77814087bb9b6d57fdad5998ac62b05e846483251df34d17c29f1df815a322909

diff --git a/x11-misc/evolvotron/evolvotron-0.6.1.ebuild 
b/x11-misc/evolvotron/evolvotron-0.6.1.ebuild
deleted file mode 100644
index f713773..000
--- a/x11-misc/evolvotron/evolvotron-0.6.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-PYTHON_DEPEND="2:2.6"
-inherit python qt4-r2
-
-DESCRIPTION="Generative art image evolver"
-HOMEPAGE="http://sourceforge.net/projects/evolvotron/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="dev-qt/qtgui:4"
-DEPEND="${RDEPEND}
-   dev-libs/boost"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
-   python_set_active_version 2
-}
-
-src_configure() {
-   eqmake4 main.pro
-}
-
-src_compile() {
-   ./text_to_markup.py -html < USAGE > evolvotron.html
-   ./text_to_markup.py -qml -s < USAGE > libevolvotron/usage_text.h
-   emake -j1 || die
-}
-
-src_install() {
-   for bin in ${PN}{,_mutate,_render}; do
-   dobin ${bin}/${bin} || die
-   done
-
-   doman man/man1/*
-   dodoc BUGS CHANGES README TODO USAGE
-   dohtml *.html
-}



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

2015-09-13 Thread Manuel Rüger
commit: 3d6be4072607b34851ebc33748e16debabd7759d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 19:16:51 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 19:16:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d6be407

x11-misc/qps: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/qps/Manifest |  1 -
 x11-misc/qps/qps-1.10.12.1.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/x11-misc/qps/Manifest b/x11-misc/qps/Manifest
index e8ec5fb..ab92a8e 100644
--- a/x11-misc/qps/Manifest
+++ b/x11-misc/qps/Manifest
@@ -1,2 +1 @@
-DIST qps-1.10.12.1.tar.bz2 223171 SHA256 
d392b84f0b1d4d838014ff3f9fcbcc8f046b8262edc19a1504808b0ecb9cf70d
 DIST qps-1.10.16.tar.bz2 218323 SHA256 
733b910fafbd07310fa4273e04aedbeaeaf3f8b9d0bbde3543e34bf83dcce39e

diff --git a/x11-misc/qps/qps-1.10.12.1.ebuild 
b/x11-misc/qps/qps-1.10.12.1.ebuild
deleted file mode 100644
index 483127b..000
--- a/x11-misc/qps/qps-1.10.12.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit qt4-r2
-
-DESCRIPTION="Visual process manager - Qt version of ps/top"
-HOMEPAGE="http://qps.kldp.net/projects/qps/;
-SRC_URI="http://kldp.net/frs/download.php/5394/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-DEPEND="dev-qt/qtcore:4
-   dev-qt/qtgui:4"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   sed -i -e '/strip/d' ${PN}.pro || die "sed failed"
-}
-
-src_install() {
-   dobin ${PN} || die "installing binary failed"
-   doman ${PN}.1 || die "installing man page failed"
-   dodoc CHANGES || die "installing documentation failed"
-
-   newicon icon/icon.xpm ${PN}.xpm || die "installing icon failed"
-   domenu ${PN}.desktop || die "installing desktop file failed"
-}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/librecad/

2015-09-13 Thread Anthony G. Basile
commit: 3997f2f30bee1019944f8e5f0fe37bcc2fc2e16b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 13 20:31:29 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 13 20:31:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3997f2f3

media-gfx/librecad: fix manifest

Package-Manager: portage-2.2.20.1

 media-gfx/librecad/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/librecad/Manifest b/media-gfx/librecad/Manifest
index 56e5c32..e00e88f 100644
--- a/media-gfx/librecad/Manifest
+++ b/media-gfx/librecad/Manifest
@@ -2,4 +2,4 @@ DIST librecad-2.0.3.zip 16590256 SHA256 
4221348541c46c6e9698c1fa3471a14a81376e02
 DIST librecad-2.0.5.zip 16743868 SHA256 
00fba891ccf90328f122c081e9a55f5cf6a908932b92b4414f4ee3b186b48f87 SHA512 
afacc5dd833d8a9daba0e9a93f9578f066ada6dff3de4676d8604bbfbce6fba5615c75f498b9ee242b3a7bfcb2746b97a3fbd6b97526990b4ad39757344e3cc5
 WHIRLPOOL 
5b79ebecec469083a5b13b3e71b76fd116baf935d09c04e979efd583ec58fd17a3bef9e707b3603bba3256527a845f9be4a10271daeaec3fee09ce7fe82fca36
 DIST librecad-2.0.6.zip 17401781 SHA256 
09a58f9a4b578eb7381f299414344f82c6e320156c20b3ff1e9e1ae5f2770a30 SHA512 
0f8452674659adc943d87aa3d70763682b3e5e7c82530afee98d50dfa4977e8f2e0efcd224087eed68a51727a234d58b8740b00ed0941b6af78dc2938ed15241
 WHIRLPOOL 
6bb40ae33f28b5ad6adfc91334741d3fe50c6a7f42b0e253554bfacd8f4e7152a495b9e62b8760f28de8c69c77aed73750e094db96d2757fad7cd58ed3200897
 DIST librecad-2.0.7.zip 17457197 SHA256 
36d2fa1c60324bb743f0ddde0b9da1dc6b57a370422de714adef27a0cd32d9d2 SHA512 
afbe094dd565e2b058c5b1c28e88b76b883d1b9f20f60047e5a7771ec5d353e6a3e73abee8e4d7ac5f916ead7fb15719cf7bab034d670f7d7f54ca394d314803
 WHIRLPOOL 
5d196be5e54e4ceb7f2650015f35bf6ba77440b7a81d51f68a9a15408d399779f5c61289a5adaacbf1538735f7f0761152371291bab8bc8c8fb8109c3e1ddfc3
-DIST librecad-2.0.8.zip 178976 SHA256 
fb285c97f8d13cec6630fa36828c4064a5bf49d5fc8fb8a86efa2369825a5b56 SHA512 
42713ad616fdd1cec701c8f35015126795476de491e88bf2dda14f8a1038c112cf0db80fbfcc72285f796c5c530db763df995eed5a650836ca521f820031f703
 WHIRLPOOL 
aaa5669a2711ce2078f46ca5ab3c4edae5ae726c640829b761b269b41891f40d5fd003a21fe1e93463df5cf9405c34c5c3e8a302e16ac3e3068d3066f737662a
+DIST librecad-2.0.8.zip 23469997 SHA256 
3f3affbff85fd16746a0e551777c4f234d2b03384d04edf9483d36db1c7144a3 SHA512 
d0dd1fdcaafbb7b83a8d0791e132633e9a72648d7d8d7ffdfc02bb092348472a05917df7ea1f2096404afabc92d586b75f6cafa3bc54da535bcaf005c96ed8a7
 WHIRLPOOL 
14ae2c433345b5081c92426913744d57f2fa4a97621fb55143995365381d5fbed6c8ad6a1f3a6d215dc4791e3493259b3e09801bfb288a85de7db87f010aae49



[gentoo-commits] data/gentoo-news:master commit in: 2013-06-01-mysql-pbxt-dropped/

2015-09-13 Thread Julian Ospald
commit: 38ccd065d0724e30607345213bfe344f28d609cf
Author: Julian Ospald  gentoo  org>
AuthorDate: Sun Sep 13 18:38:13 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Sun Sep 13 18:38:13 2015 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=38ccd065

2013-06-01-mysql-pbxt-dropped: increase Revision and sign

 .../2013-06-01-mysql-pbxt-dropped.en.txt  |  2 +-
 .../2013-06-01-mysql-pbxt-dropped.en.txt.asc  | 19 +++
 2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt 
b/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt
index 3cd4964..1f7293a 100644
--- a/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt
+++ b/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt
@@ -2,7 +2,7 @@ Title: PBXT now unsupported in MySQL/MariaDB
 Author: Robin H. Johnson 
 Content-Type: text/plain
 Posted: 2013-06-01
-Revision: 3
+Revision: 4
 News-Item-Format: 1.0
 Display-If-Installed: dev-db/mysql
 Display-If-Installed: dev-db/mysql-cluster

diff --git 
a/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt.asc 
b/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt.asc
new file mode 100644
index 000..f8335a3
--- /dev/null
+++ b/2013-06-01-mysql-pbxt-dropped/2013-06-01-mysql-pbxt-dropped.en.txt.asc
@@ -0,0 +1,19 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0
+
+iQJ8BAABCgBmBQJV9cJNXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
+ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzMDlCNDQ4NjEyNDI4NjA5REVEMDI3MzIy
+MjBDRDFDNUJERUVEMDIwAAoJECIM0cW97tAgz6IQAPV2aSEUcOFY1OhfMJ+pTr+J
+Q88MZAiPafCX2yXhCZb08MwQ+DtVaDE9xfNUoSbXFUmxUP5snCd61eMvY0ptHS+E
+T5/GinrmtAe9wqzaWfVlWEMW4gzVmBjfqpfIKVgex/PkXZbXtZug4P8XOcXNVavD
+3di7WBa/Vaqcrmz9yGOAt5mojUufTz0gARo4rgu+sMJUNYBO+JeGxjcXSqy0dMas
+y5QT2PSLnr2Sx1vU3lTctcbiN/PN9PPeEBpKeTh40dOgXrCvhnGNSKh4noREC/tR
+Gvp8OeXFbiA635o5SbFtdijD9nRK8clsj8zuNYfPvWQ9u+5qGXME8yYAOgefqO8B
+6lipVkbxDuX3FfO280CZMgsxOQ0N+FRWXD8LZcf4trvWdCfnwSvcIuoSwKXobWND
+cg03wjJA8HFXbjqkoqIbZWf7Uxp/RRv4xhaNdL1oYTTwSLiWyJjXUje80ymLFzbD
+d9TFhAib6IAPi9u+JQphE4fh/JSwM7hGqWTyDTwrKxDVDXWo3CLZ/GsgGtdTdEcA
+j3mxgUhpihlxkZ7hYQQCvdwlr61zj0F8wGVvLAXzdELzwQFzrsx+JkGmSF6h7PhR
+EZgaWZcKfQTSnBT5rDlul+no2wnLwxWGcRKwrtDeMlJ3xRcrgo/ojhSL4XwVz7Hc
+mtAeEFd1VzjjA/q8H5Tm
+=EMHo
+-END PGP SIGNATURE-



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

2015-09-13 Thread Manuel Rüger
commit: 3716fdb64f6349613a360508ed0e995ca6d04b58
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:49:36 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:49:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3716fdb6

x11-misc/xdotool: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/xdotool/Manifest   |  1 -
 x11-misc/xdotool/xdotool-2.20101012.3049.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/x11-misc/xdotool/Manifest b/x11-misc/xdotool/Manifest
index d1951fd..d90ca0e 100644
--- a/x11-misc/xdotool/Manifest
+++ b/x11-misc/xdotool/Manifest
@@ -1,2 +1 @@
-DIST xdotool-2.20101012.3049.tar.gz 99573 SHA256 
9a9a03701018be6ca82f60c636f37d1749bfb24a5ce6a1f6910fccb67f58b32a
 DIST xdotool-2.20110530.1.tar.gz 107204 SHA256 
e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67 SHA512 
0b2f71203c41e320aac152e1376b30bb9f5ea2067572299ad4c32f49b2505566275f0b377b4f443c3520751d71a9b270325cd676e63ee2a153de3213e128f2cb
 WHIRLPOOL 
c4bb185e59237917ddeb86d433ca1fbbea1ace2e1cc46c7d949cef748a7765b01300fdd3826537135798a646d4672a1607b6cc60acc7539e46994d974a5e1dad

diff --git a/x11-misc/xdotool/xdotool-2.20101012.3049.ebuild 
b/x11-misc/xdotool/xdotool-2.20101012.3049.ebuild
deleted file mode 100644
index fd16023..000
--- a/x11-misc/xdotool/xdotool-2.20101012.3049.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-inherit eutils toolchain-funcs flag-o-matic multilib
-
-DESCRIPTION="Simulate keyboard input and mouse activity, move and resize 
windows"
-HOMEPAGE="http://www.semicomplete.com/projects/xdotool/;
-SRC_URI="https://semicomplete.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="examples"
-
-DEPEND="x11-libs/libXtst
-   x11-libs/libX11"
-RDEPEND="${DEPEND}"
-
-# The test wants to manualy start Xvfb, wont use VirtualX and it tries
-# to run a full gnome-session. For such a tiny application i consider
-# it overkill to rewrite the test scripts to not use it's own X server
-# and add a full blown gnome just to run the tests.
-RESTRICT="test"
-
-src_prepare() {
-   sed -e "s/installheader post-install$/installheader/" \
-   -i Makefile || die "sed failed"
-}
-
-src_compile() {
-   tc-export CC LD
-   default
-}
-
-src_install() {
-   emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" 
INSTALLLIB="${D}usr/$(get_libdir)" install || die
-
-   dodoc CHANGELIST README
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins examples/*
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/tiff/

2015-09-13 Thread Lars Wendler
commit: 0ed3109e8c6238711627a547bac30237016130d8
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Sep 13 19:51:37 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Sep 13 19:51:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed3109e

media-libs/tiff: Minor ebuild improvement.

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

 media-libs/tiff/tiff-4.0.6.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/media-libs/tiff/tiff-4.0.6.ebuild 
b/media-libs/tiff/tiff-4.0.6.ebuild
index af78142..1b26bd4 100644
--- a/media-libs/tiff/tiff-4.0.6.ebuild
+++ b/media-libs/tiff/tiff-4.0.6.ebuild
@@ -59,9 +59,7 @@ multilib_src_configure() {
 
 multilib_src_test() {
if ! multilib_is_native_abi ; then
-   cd tools
-   emake
-   cd "${BUILD_DIR}"
+   emake -C tools
fi
emake check
 }



[gentoo-commits] proj/kde:master commit in: kde-apps/kdepimlibs/, kde-apps/kdepimlibs/files/

2015-09-13 Thread Michael Palimaka
commit: bb093e3f89752911fd56abe94a75b125c5fa897f
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Sep 13 14:50:26 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 20:21:54 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bb093e3f

kde-apps/kdepimlibs: Backport GID merge fix for IMAP

Upstream fix is in >=15.08.2
See also: https://bugs.kde.org/show_bug.cgi?id=338658#c39

Package-Manager: portage-2.2.20.1

 .../files/kdepimlibs-15.08.0-GID-merge.patch   | 210 +
 .../files/kdepimlibs-15.08.0-RID-fallback.patch|  31 +++
 ...15.08.0.ebuild => kdepimlibs-15.08.0-r1.ebuild} |   4 +
 kde-apps/kdepimlibs/kdepimlibs-15.08.1.ebuild  |   4 +
 4 files changed, 249 insertions(+)

diff --git a/kde-apps/kdepimlibs/files/kdepimlibs-15.08.0-GID-merge.patch 
b/kde-apps/kdepimlibs/files/kdepimlibs-15.08.0-GID-merge.patch
new file mode 100644
index 000..c29aa9b
--- /dev/null
+++ b/kde-apps/kdepimlibs/files/kdepimlibs-15.08.0-GID-merge.patch
@@ -0,0 +1,210 @@
+From: Dan Vrátil 
+Date: Mon, 07 Sep 2015 13:50:50 +
+Subject: ItemSync: use RID merge by default, allow optional switch to GID merge
+X-Git-Url: 
http://quickgit.kde.org/?p=kdepimlibs.git=commitdiff=43d5659a88a6ebb3423c6228986f0bd1e1f496f7
+---
+ItemSync: use RID merge by default, allow optional switch to GID merge
+
+GID is not guaranteed to be actually unique and is not in our control, which 
means
+that we can easilly run to the multiple merge candidates problem, which breaks
+ItemSync. This patch switching ItemSync to use RID, which (although not 
enforced) is
+basically guaranteed to be unique per Collection, thus the multiple merge 
candidates
+error should not happen anymore.
+
+Some resources however mandate GID-based merging (when RID is not stable), so 
we have
+a new API that allows resources to switch the merging mode of ItemSync 
optionally.
+
+(cherry picked from commit 442961918d8f3d9ff94fd4593c9b09d1e89d6bc0)
+---
+
+
+--- a/akonadi/autotests/itemsynctest.cpp
 b/akonadi/autotests/itemsynctest.cpp
+@@ -451,14 +451,18 @@
+ AKVERIFYEXEC(syncer);
+ 
+ Item::List resultItems = fetchItems(col);
+-QCOMPARE(resultItems.count(), 2);
+-
+-ItemFetchJob *fetchJob = new ItemFetchJob(modifiedItem);
++QCOMPARE(resultItems.count(), 3);
++
++Item item;
++item.setGid(QStringLiteral("gid2"));
++ItemFetchJob *fetchJob = new ItemFetchJob(item);
+ fetchJob->fetchScope().fetchFullPayload();
+ AKVERIFYEXEC(fetchJob);
+-QCOMPARE(fetchJob->items().size(), 1);
++QCOMPARE(fetchJob->items().size(), 2);
+ QCOMPARE(fetchJob->items().first().payload(), 
QByteArray("payload2"));
+ QCOMPARE(fetchJob->items().first().remoteId(), 
QString::fromLatin1("rid3"));
++QCOMPARE(fetchJob->items().at(1).payload(), 
QByteArray("payload1"));
++QCOMPARE(fetchJob->items().at(1).remoteId(), QStringLiteral("rid2"));
+ }
+ 
+ /*
+
+--- a/akonadi/src/agentbase/resourcebase.cpp
 b/akonadi/src/agentbase/resourcebase.cpp
+@@ -76,6 +76,7 @@
+ , mItemSyncer(0)
+ , mItemSyncFetchScope(0)
+ , mItemTransactionMode(ItemSync::SingleTransaction)
++, mItemMergeMode(ItemSync::RIDMerge)
+ , mCollectionSyncer(0)
+ , mTagSyncer(0)
+ , mRelationSyncer(0)
+@@ -189,6 +190,7 @@
+ mItemSyncer = new ItemSync(q->currentCollection());
+ mItemSyncer->setTransactionMode(mItemTransactionMode);
+ mItemSyncer->setBatchSize(mItemSyncBatchSize);
++mItemSyncer->setMergeMode(mItemMergeMode);
+ if (mItemSyncFetchScope) {
+ mItemSyncer->setFetchScope(*mItemSyncFetchScope);
+ }
+@@ -456,6 +458,7 @@
+ ItemSync *mItemSyncer;
+ ItemFetchScope *mItemSyncFetchScope;
+ ItemSync::TransactionMode mItemTransactionMode;
++ItemSync::MergeMode mItemMergeMode;
+ CollectionSync *mCollectionSyncer;
+ TagSync *mTagSyncer;
+ RelationSync *mRelationSyncer;
+@@ -1379,6 +1382,12 @@
+ *(d->mItemSyncFetchScope) = fetchScope;
+ }
+ 
++void ResourceBase::setItemMergingMode(ItemSync::MergeMode mode)
++{
++Q_D(ResourceBase);
++d->mItemMergeMode = mode;
++}
++
+ void ResourceBase::setAutomaticProgressReporting(bool enabled)
+ {
+ Q_D(ResourceBase);
+
+--- a/akonadi/src/agentbase/resourcebase.h
 b/akonadi/src/agentbase/resourcebase.h
+@@ -545,6 +545,20 @@
+  * @since 4.6
+  */
+ void setItemTransactionMode(ItemSync::TransactionMode mode);
++
++/**
++ * Set merge mode for item sync'ing.
++ *
++ * Default merge mode is RIDMerge.
++ *
++ * @note This method must be called before first call to itemRetrieved(),
++ * itemsRetrieved() or itemsRetrievedIncremental().
++ *
++ * @param mode Item merging mode (see ItemCreateJob for details on item 
merging)
++ * @see 

[gentoo-commits] proj/kde:master commit in: kde-apps/kdepim-runtime/files/, kde-apps/kdepim-runtime/

2015-09-13 Thread Michael Palimaka
commit: b96e97c4cde08b064870110cb7b4edc314b05144
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Sep 13 14:45:03 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 20:22:16 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b96e97c4

kde-apps/kdepim-runtime: Backport GID merge fix for IMAP

Upstream fix is in >=15.08.2
See also: https://bugs.kde.org/show_bug.cgi?id=338658#c39

Package-Manager: portage-2.2.20.1

 .../kdepim-runtime-15.08.0-GID-based-merge.patch   | 140 +
 ...8.0.ebuild => kdepim-runtime-15.08.0-r1.ebuild} |   4 +-
 .../kdepim-runtime/kdepim-runtime-15.08.1.ebuild   |   2 +
 3 files changed, 145 insertions(+), 1 deletion(-)

diff --git 
a/kde-apps/kdepim-runtime/files/kdepim-runtime-15.08.0-GID-based-merge.patch 
b/kde-apps/kdepim-runtime/files/kdepim-runtime-15.08.0-GID-based-merge.patch
new file mode 100644
index 000..61aeaa0
--- /dev/null
+++ b/kde-apps/kdepim-runtime/files/kdepim-runtime-15.08.0-GID-based-merge.patch
@@ -0,0 +1,140 @@
+From: Dan Vrátil 
+Date: Mon, 07 Sep 2015 14:20:39 +
+Subject: IMAP: switch to GID-based merge when the Collection can contain 
something else than emails
+X-Git-Url: 
http://quickgit.kde.org/?p=kdepim-runtime.git=commitdiff=038c604aba0cac22275e03c3497672cd254c2568
+---
+IMAP: switch to GID-based merge when the Collection can contain something else 
than emails
+
+In order to fix the recurrent multiple-merge-candidates issue which was 
breaking
+ItemSync, ItemSync switched to RID-based merging, which is way more reliable.
+However in some cases the IMAP resource still wants to use GID-based merging,
+because RID might not be stable enough.
+
+(cherry picked from commit 93a2baac05a325b688aea2cc12d9714d6b186f69)
+---
+
+
+--- a/resources/imap/autotests/dummyresourcestate.cpp
 b/resources/imap/autotests/dummyresourcestate.cpp
+@@ -27,7 +27,8 @@
+ 
+ DummyResourceState::DummyResourceState()
+ : m_automaticExpunge(true), m_subscriptionEnabled(true),
+-  m_disconnectedMode(true), m_intervalCheckTime(-1)
++  m_disconnectedMode(true), m_intervalCheckTime(-1),
++  m_mergeMode(Akonadi::ItemSync::RIDMerge)
+ {
+ qRegisterMetaType();
+ qRegisterMetaType();
+@@ -428,6 +429,11 @@
+ return 10;
+ }
+ 
++void DummyResourceState::setItemMergingMode(Akonadi::ItemSync::MergeMode 
mergeMode)
++{
++m_mergeMode = mergeMode;
++}
++
+ MessageHelper::Ptr DummyResourceState::messageHelper() const
+ {
+ return MessageHelper::Ptr(new MessageHelper());
+--- a/resources/imap/autotests/dummyresourcestate.h
 b/resources/imap/autotests/dummyresourcestate.h
+@@ -143,6 +143,7 @@
+ virtual void showInformationDialog(const QString , const QString 
, const QString );
+ 
+ virtual int batchSize() const;
++virtual void setItemMergingMode(Akonadi::ItemSync::MergeMode mergeMode);
+ 
+ virtual MessageHelper::Ptr messageHelper() const;
+ 
+@@ -163,6 +164,8 @@
+ int m_intervalCheckTime;
+ QChar m_separator;
+ 
++Akonadi::ItemSync::MergeMode m_mergeMode;
++
+ Akonadi::Collection m_collection;
+ Akonadi::Item::List m_items;
+ 
+--- a/resources/imap/resourcestate.cpp
 b/resources/imap/resourcestate.cpp
+@@ -363,2 +363,7 @@
+ m_resource->relationsRetrieved(relations);
+ }
++ 
++void ResourceState::setItemMergingMode(Akonadi::ItemSync::MergeMode mode)
++{
++m_resource->setItemMergingMode(mode);
++}
+--- a/resources/imap/resourcestate.h
 b/resources/imap/resourcestate.h
+@@ -153,6 +153,8 @@
+ 
+ MessageHelper::Ptr messageHelper() const Q_DECL_OVERRIDE;
+ 
++  void setItemMergingMode(Akonadi::ItemSync::MergeMode mergeMode);
++
+ private:
+ ImapResourceBase *m_resource;
+ const TaskArguments m_arguments;
+--- a/resources/imap/resourcestateinterface.h
 b/resources/imap/resourcestateinterface.h
+@@ -26,6 +26,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ 
+@@ -125,6 +126,8 @@
+ 
+ virtual Akonadi::Relation::List addedRelations() const = 0;
+ virtual Akonadi::Relation::List removedRelations() const = 0;
++
++virtual void setItemMergingMode(Akonadi::ItemSync::MergeMode mergeMode) = 
0;
+ };
+ 
+ #endif
+--- a/resources/imap/resourcetask.cpp
 b/resources/imap/resourcetask.cpp
+@@ -592,2 +592,8 @@
+ return KIMAP::Acl::None;
+ }
++
++void ResourceTask::setItemMergingMode(Akonadi::ItemSync::MergeMode mode)
++{
++m_resource->setItemMergingMode(mode);
++}
++
+--- a/resources/imap/resourcetask.h
 b/resources/imap/resourcetask.h
+@@ -140,6 +140,7 @@
+ virtual bool serverSupportsCondstore() const;
+ 
+ int batchSize() const;
++void setItemMergingMode(Akonadi::ItemSync::MergeMode mode);
+ 
+ ResourceStateInterface::Ptr resourceState();
+ 
+--- a/resources/imap/retrieveitemstask.cpp
 b/resources/imap/retrieveitemstask.cpp
+@@ -89,6 +89,16 @@
+ m_session = session;
+ 
+ const Akonadi::Collection col = collection();

[gentoo-commits] repo/gentoo:master commit in: mail-filter/spamassassin-botnet/

2015-09-13 Thread Manuel Rüger
commit: bebbbccaeb475f02fd84839b7ebb76175c3bfa51
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:14:45 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:15:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bebbbcca

mail-filter/spamassassin-botnet: Homepage is not available anymore. Replacing 
with default

Gentoo-Bug: #351162

Package-Manager: portage-2.2.20.1

 mail-filter/spamassassin-botnet/spamassassin-botnet-0.8-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-filter/spamassassin-botnet/spamassassin-botnet-0.8-r1.ebuild 
b/mail-filter/spamassassin-botnet/spamassassin-botnet-0.8-r1.ebuild
index 6f90396..918c174 100644
--- a/mail-filter/spamassassin-botnet/spamassassin-botnet-0.8-r1.ebuild
+++ b/mail-filter/spamassassin-botnet/spamassassin-botnet-0.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -10,7 +10,7 @@ MY_PN="${PN/b/B}"
 MY_PN="${MY_PN/spamassassin-/}"
 MY_P="${MY_PN}-${PV}"
 DESCRIPTION="SpamAssassin plugin that attempts to detect messages sent by a 
botnet"
-HOMEPAGE="http://people.ucsc.edu/~jrudd/spamassassin/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI="http://people.ucsc.edu/~jrudd/spamassassin/${MY_P}.tar;
 
 LICENSE="GPL-2"



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

2015-09-13 Thread Manuel Rüger
commit: b6c40da9147af91f4a5afa9e3dfa597c04119f6a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:17:32 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:17:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c40da9

dev-libs/vdk: Update Homepage

Gentoo-Bug: #361719

Package-Manager: portage-2.2.20.1

 dev-libs/vdk/vdk-2.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vdk/vdk-2.5.1.ebuild b/dev-libs/vdk/vdk-2.5.1.ebuild
index 306008d..6a501a2 100644
--- a/dev-libs/vdk/vdk-2.5.1.ebuild
+++ b/dev-libs/vdk/vdk-2.5.1.ebuild
@@ -7,7 +7,7 @@ inherit eutils toolchain-funcs
 
 DESCRIPTION="A Visual Development Kit for RAD"
 SRC_URI="mirror://sourceforge/vdklib/${P}.tar.gz"
-HOMEPAGE="http://www.mariomotta.it/vdklib/;
+HOMEPAGE="http://sourceforge.net/projects/vdklib/;
 
 SLOT="0"
 LICENSE="GPL-2"



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

2015-09-13 Thread Manuel Rüger
commit: e845e905fa204eb6d40adfba00cf870454438981
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:58:14 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:58:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e845e905

x11-misc/tint2: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/tint2/tint2-0.11-r1.ebuild | 58 -
 1 file changed, 58 deletions(-)

diff --git a/x11-misc/tint2/tint2-0.11-r1.ebuild 
b/x11-misc/tint2/tint2-0.11-r1.ebuild
deleted file mode 100644
index 7428fc5..000
--- a/x11-misc/tint2/tint2-0.11-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-
-inherit cmake-utils eutils
-
-MY_P="${PN}-${PV/_/-}"
-
-DESCRIPTION="A lightweight panel/taskbar"
-HOMEPAGE="https://gitlab.com/o9000/tint2;
-SRC_URI="https://tint2.googlecode.com/files/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="battery examples tint2conf"
-
-COMMON_DEPEND="dev-libs/glib:2
-   x11-libs/cairo
-   x11-libs/pango[X]
-   x11-libs/libX11
-   x11-libs/libXinerama
-   x11-libs/libXdamage
-   x11-libs/libXcomposite
-   x11-libs/libXrender
-   x11-libs/libXrandr
-   media-libs/imlib2[X]"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   x11-proto/xineramaproto"
-RDEPEND="${COMMON_DEPEND}
-   tint2conf? ( x11-misc/tintwizard )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch "${FILESDIR}/battery_segfault.patch" # bug 343963
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_enable battery BATTERY)
-   $(cmake-utils_use_enable examples EXAMPLES)
-   $(cmake-utils_use_enable tint2conf TINT2CONF)
-
-   # bug 296890
-   "-DDOCDIR=/usr/share/doc/${PF}"
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   rm -f "${D}/usr/bin/tintwizard.py"
-}



[gentoo-commits] proj/kde:master commit in: kde-apps/kate/files/, kde-apps/kate/

2015-09-13 Thread Michael Palimaka
commit: 57c2a20a71386e86ad4e49d5540b7e99ab28dd8d
Author: Andrew Wilcox  Wilcox-Tech  com>
AuthorDate: Sun Sep 13 15:08:18 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Sep 13 18:57:14 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=57c2a20a

kde-apps/kate: Patch to properly initialise libgit2

If dev-libs/libgit2 is installed on a system where Kate is subsequently
built, it will attempt to use the library incorrectly and segfault.  Add
a patch to work around this bug (upstream #352627).

 .../files/kate-15.08.1-initialise-libgit2.patch| 57 ++
 kde-apps/kate/kate-15.08.1.ebuild  |  2 +
 2 files changed, 59 insertions(+)

diff --git a/kde-apps/kate/files/kate-15.08.1-initialise-libgit2.patch 
b/kde-apps/kate/files/kate-15.08.1-initialise-libgit2.patch
new file mode 100644
index 000..dec6ab9
--- /dev/null
+++ b/kde-apps/kate/files/kate-15.08.1-initialise-libgit2.patch
@@ -0,0 +1,57 @@
+From c6eee39e8c5185a0c330e3c70c7b1e109c69ac44 Mon Sep 17 00:00:00 2001
+From: Andrew Wilcox 
+Date: Sat, 12 Sep 2015 15:31:11 -0500
+Subject: [PATCH] Project plugin: Properly initialise libgit2
+
+Fixes bugs #346101, #346102, #345602
+---
+ addons/project/kateprojectworker.cpp | 6 ++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/addons/project/kateprojectworker.cpp 
b/addons/project/kateprojectworker.cpp
+index 847f2b2..5433ee8 100644
+--- a/addons/project/kateprojectworker.cpp
 b/addons/project/kateprojectworker.cpp
+@@ -276,12 +276,15 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
, bool recursive)
+ return 0;
+ };
+ 
++git_libgit2_init();
++
+ if (git_repository_open_ext(, dir.path().toUtf8().data(), 0, NULL)) {
+ return QStringList();
+ }
+ 
+ if ((working_dir = git_repository_workdir(repo)) == nullptr) {
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ 
+@@ -290,6 +293,7 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
, bool recursive)
+ 
+ if (git_revparse_single(_tree, repo, "HEAD^{tree}")) {
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ 
+@@ -299,6 +303,7 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
, bool recursive)
+ if (git_object_lookup_bypath(, root_tree, 
relpath.toUtf8().data(), GIT_OBJ_TREE)) {
+ git_object_free(root_tree);
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ }
+@@ -311,6 +316,7 @@ QStringList KateProjectWorker::filesFromGit(const QDir 
, bool recursive)
+ 
+ git_object_free(root_tree);
+ git_repository_free(repo);
++git_libgit2_shutdown();
+ return files;
+ }
+ 
+-- 
+2.5.2
+

diff --git a/kde-apps/kate/kate-15.08.1.ebuild 
b/kde-apps/kate/kate-15.08.1.ebuild
index 2b66932..e676619 100644
--- a/kde-apps/kate/kate-15.08.1.ebuild
+++ b/kde-apps/kate/kate-15.08.1.ebuild
@@ -54,6 +54,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=( ${FILESDIR}/${P}-initialise-libgit2.patch )
+
 src_prepare() {
kde5_src_prepare
 



[gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/

2015-09-13 Thread Robin H. Johnson
commit: 6c65d82b13791b4793418e3831ef26510cea
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Sep 13 17:13:26 2015 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Sep 13 17:14:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c65d82b

app-backup/duplicity: bump

Package-Manager: portage-2.2.20.1
Signed-off-by: Robin H. Johnson  gentoo.org>

 app-backup/duplicity/Manifest|  1 +
 app-backup/duplicity/duplicity-0.6.26.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/app-backup/duplicity/Manifest b/app-backup/duplicity/Manifest
index abd55be..3c06475 100644
--- a/app-backup/duplicity/Manifest
+++ b/app-backup/duplicity/Manifest
@@ -2,3 +2,4 @@ DIST duplicity-0.6.22.tar.gz 1257082 SHA256 
6f489b0445681f0697488f3d4097b4c56a7f
 DIST duplicity-0.6.23.tar.gz 1260261 SHA256 
7a17f1e10395dedcf3204bc53925bb9dcbbf2a7552c9b096ebe727eceb9c0c60 SHA512 
35c3facf9f44e117c74d880bef3f50c2f6a778fac31b38398934007befbe5dedb3f56ccdd592c231c0835baaba905ca942a889e0a1358c1b79570db08376385a
 WHIRLPOOL 
6edffb363c48a90a6c3dc9d7a8ccdb22a6390e422255deca7a84b5e87e13a865fa325313f50bea52cdea7b3ae6b880e939c6cd58d605d4cc5df0e7f191523145
 DIST duplicity-0.6.24.tar.gz 1268175 SHA256 
1d41d756638f55106f9501c3db94ccbc6568aa856ba531e07ed2cfb760b62450 SHA512 
5bb783ef6ddbfa6672279287b01f44e33256829971e7b8bbe26d648d2c78d438018bddd977281b8a1ff7e5c1505a3b60fe03ecb5ba8022a597f9f952b2815273
 WHIRLPOOL 
f42120cc403a987a9e5f747e1f7502059772f9c2fdb1afb92caa354676b7089736cd9524d08ef6677872a5019e17d2092513cc5544beed5fb0d80158742e1ebf
 DIST duplicity-0.6.25.tar.gz 1269583 SHA256 
ac44f44abc1c5fe775a49b77e722d238c0b3bbb105e083fd505e2dca8e2c1725 SHA512 
17304e38990e0a34aa4bae9f2d12a99ece031ac048667fba27afbcc32e1fb8455a2672426e49edb543bd7e345dc74f784f34c26ec2e1651eb10ba479868e04a0
 WHIRLPOOL 
8af905551078e30529dd31bd7de8f783ec0875c57e9f4d93388c5e407e9aecd19c0d151d3eb4d718cb5ea4dd649bb835611604f5ee5ad33f04355846a406d39d
+DIST duplicity-0.6.26.tar.gz 1270436 SHA256 
8bef8a5d805b79ae177e54d42152238bce1b2aaf9ad32e03a2c3a20cbd4e074a SHA512 
0cd02984eda99c81a30c9ac9926c41df0597f8f287a3e8ccd7d6fb9d420159028112be6b3fc8acf9b413940c07d0e754b2a509b6bca52965d2c333d4bcec8689
 WHIRLPOOL 
873b9fc9e035ed31cef996ace747c6a97b9434b50945578b019627c94e8eb7ba0861909e74b95db143ddb50dfdb23241a3ddfe712a97e0cd1f29c324c5d99c16

diff --git a/app-backup/duplicity/duplicity-0.6.26.ebuild 
b/app-backup/duplicity/duplicity-0.6.26.ebuild
new file mode 100644
index 000..b488fbc
--- /dev/null
+++ b/app-backup/duplicity/duplicity-0.6.26.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Secure backup system using gnupg to encrypt data"
+HOMEPAGE="http://www.nongnu.org/duplicity/;
+SRC_URI="https://code.launchpad.net/${PN}/0.6-series/${PV}/+download/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+IUSE="s3 test"
+
+CDEPEND="
+   net-libs/librsync
+   app-crypt/gnupg
+   dev-python/lockfile
+"
+DEPEND="${CDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/mock[${PYTHON_USEDEP}] )
+"
+RDEPEND="${CDEPEND}
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   s3? ( dev-python/boto[${PYTHON_USEDEP}] )
+"
+
+# workaround until failing test is fixed
+PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch )
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+
+   sed -i "s/'COPYING',//" setup.py || die "Couldn't remove unnecessary 
COPYING file."
+}
+
+python_test() {
+   esetup.py test
+}
+
+pkg_postinst() {
+   einfo "Duplicity has many optional dependencies to support various 
backends."
+   einfo "Currently it's up to you to install them as necessary."
+}



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

2015-09-13 Thread Alex Brandt
commit: e753aa3767077e7774ee39507799abafae74faba
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Sep 13 17:12:22 2015 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Sep 13 17:15:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e753aa37

dev-python/docker-py: remove version 1.2.3

Package-Manager: portage-2.2.20.1

 dev-python/docker-py/Manifest   |  1 -
 dev-python/docker-py/docker-py-1.2.3.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index ed61a58..b465ace 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -1,6 +1,5 @@
 DIST docker-py-1.1.0-r1.tar.gz 60926 SHA256 
c3373d120a83a80468c5340e2e36b20e6350a255309e50c56a57de4b5cad9d97 SHA512 
14a9eacbee5e31c0dc9677c9250f27aa098f59634d6c07851e7d5d14e8ce9329e9a1519c70b2b4cd3f8532a06a022cd6d2ce4c0f7767ce6303aa38c972e25783
 WHIRLPOOL 
12c74f2c171f272c633f68be42c1a5061ace8ddf0522a0e7f9640673f332e78348d21c3bfe67c695a062d28c7b1049bdbfd2ecf4897ac00e28ce972630fcbd42
 DIST docker-py-1.2.2.tar.gz 69685 SHA256 
85284a5b1a965e01a5d0a91f9f639ad5069143a276c123198fdafc3659280b38 SHA512 
bf00b19e0ab56e5c0e8459234d09722ca504ecd933bfba61cb4ab4805410f53f6ad6083f2e964ef5a6eded2ea05aa01a89c27621064386bae145c7258ed996ad
 WHIRLPOOL 
bd7ff4579f924e02d18581b1aca00790dcb84afda03e4cde70b349bfdb4ad43aa2e06da2bcbe780f6074d98f9af9b14fb9d2ab4da9265e56b73288902c9ede7a
-DIST docker-py-1.2.3.tar.gz 69198 SHA256 
66cba7beff9fca916d4c3f20220fa27ee8dcc639fe968f59e91201a7d0db6b22 SHA512 
524d355e70dbf3666f61f0c8c42466d8d1a2e573fc1f347ff234f3a18803fed8d1296ccc106a78b48899d0282743b8bca08f6d36caec350ca374e8ebc7a4e55a
 WHIRLPOOL 
e77b8ad37f5c82738903353b578db8ee9d050c647af866cac9e4155646531b47a9e3d85ef6c42d64da2b1162616e49d06a5c16f33e19d56926e45546934be9a2
 DIST docker-py-1.3.0.tar.gz 70751 SHA256 
ca898e2d742788b634ef5e449a74aa291c52bd5cf6eec8f03d30c616e235eb67 SHA512 
d278d91bab3ea056463c83fdf9c19ea7201e459c350e433c8ab14063354540ac483f97d42f27286d6b84ce0c91089c23ad2de6c96549acb388e08732487e8d4d
 WHIRLPOOL 
35e3c67a6019c710c876b0ca9afe4c681ccc7fcde3412075c671c6366c3a49ed783ca40a1e6f06afa18444961a85d94b9f726323a8ba0829b20625cc1a207df8
 DIST docker-py-1.3.1.tar.gz 71456 SHA256 
4a980c55f22b97573b68f720ebc0b6f2a01cd9ec454d305bd13d2b83109a0bfa SHA512 
f027a44cd15aa0a9d47a748c6f593e940ee4b6db0d8a933591e148bc9b0e6801c9ece3f81fc3a21eba762eff838ef40bf04fda299f28ba508e029b67658ee228
 WHIRLPOOL 
57d7429d58610bbef4473d5aabfe7f1771b2e3d4f083d44d6aba8f144bf44afeff9a0bcf458754f2787b54e1a1e07fddb9e66a42c16a6b1f20a8e1f9be3aa558
 DIST docker-py-1.4.0.tar.gz 75336 SHA256 
81e2a7cd59b25c3df63ec47458c8a019ed7e11355ea0cfeec1f38df8c93f3179 SHA512 
c4ea0a4a43063c90aa212952b3aeaa1a7c574dfcf7e8223c3fdb24216d0939c80258fe4ad2b6bba24d9d5fcde27332106860baf463482119b382670ed57c0da2
 WHIRLPOOL 
f085dc4c59ce5b4b8c22695c90e054f3875dfa7553a600e025f089b3f5da34f91b5de3fb4106e737150b3e558319a5ae4bd1a6448f4bcafc9f9d45fa1a826d3a

diff --git a/dev-python/docker-py/docker-py-1.2.3.ebuild 
b/dev-python/docker-py/docker-py-1.2.3.ebuild
deleted file mode 100644
index 49e4d1c..000
--- a/dev-python/docker-py/docker-py-1.2.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Python client for Docker"
-HOMEPAGE="https://github.com/docker/docker-py;
-SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( >=dev-python/mkdocs-0.9[${PYTHON_USEDEP}] )
-   test? ( >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] )
-"
-RDEPEND="
-   >=dev-python/requests-2.5.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}]' python2_7)
-"
-
-python_compile_all() {
-   if use doc; then
-   mkdocs build || die "docs failed to build"
-   fi
-}
-
-python_test() {
-   "${PYTHON}" tests/test.py || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( site/. )
-
-   distutils-r1_python_install_all
-}



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

2015-09-13 Thread Patrice Clement
commit: 5ae18e2488b0b3f43a984ad71e015e267b522bf4
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 17:16:26 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 17:16:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae18e24

app-shells/autojump: Correctly quote ${PN} variable.

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

 app-shells/autojump/autojump-22.2.4-r2.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-shells/autojump/autojump-22.2.4-r2.ebuild 
b/app-shells/autojump/autojump-22.2.4-r2.ebuild
index b485a21..f0fc9f7 100644
--- a/app-shells/autojump/autojump-22.2.4-r2.ebuild
+++ b/app-shells/autojump/autojump-22.2.4-r2.ebuild
@@ -36,21 +36,21 @@ src_install() {
dobin bin/autojump
 
insinto /etc/profile.d
-   doins bin/${PN}.sh
+   doins bin/"${PN}".sh
 
-   newbashcomp bin/${PN}.bash ${PN}
+   newbashcomp bin/"${PN}".bash "${PN}"
insinto /usr/share/"${PN}"/
-   doins bin/${PN}.zsh
+   doins bin/"${PN}.zsh"
insinto /usr/share/zsh/site-functions
doins bin/_j
 
python_foreach_impl python_domodule bin/autojump_argparse.py 
bin/autojump_data.py bin/autojump_utils.py
-   if use python ; then
+   if use python; then
python_foreach_impl python_domodule tools/autojump_ipython.py
einfo 'This tool provides "j" for ipython, please add'
einfo '"import autojump_ipython" to your ipy_user_conf.py.'
fi
 
-   doman docs/${PN}.1
+   doman docs/"${PN}.1"
dodoc README.md
 }



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

2015-09-13 Thread Patrice Clement
commit: dd4654603872adccc3417a3992e8ceb4f27e38d4
Author: Lukáš Poláček  ksp  sk>
AuthorDate: Sun Sep 13 07:11:29 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 08:07:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd465460

app-shells/autojump: remove 22.2.4-r1

 app-shells/autojump/autojump-22.2.4-r1.ebuild | 62 ---
 1 file changed, 62 deletions(-)

diff --git a/app-shells/autojump/autojump-22.2.4-r1.ebuild 
b/app-shells/autojump/autojump-22.2.4-r1.ebuild
deleted file mode 100644
index be4106d..000
--- a/app-shells/autojump/autojump-22.2.4-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit python-r1 python-utils-r1 vcs-snapshot
-
-DESCRIPTION="change directory command that learns"
-HOMEPAGE="https://github.com/joelthelion/autojump;
-SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc ~ppc64"
-IUSE="bash-completion python test zsh-completion"
-
-# Not all tests pass. Need investigation.
-RESTRICT="test"
-RDEPEND="bash-completion? ( >=app-shells/bash-4 )
-   python? ( ${PYTHON_DEPS} )
-   zsh-completion? ( app-shells/zsh app-shells/gentoo-zsh-completions )"
-DEPEND="test? ( dev-python/flake8 dev-python/tox )"
-
-src_prepare() {
-   sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
-   -i bin/autojump.sh || die
-}
-
-src_compile() {
-   true
-}
-
-src_install() {
-   dobin bin/autojump
-
-   insinto /etc/profile.d
-   doins bin/${PN}.sh
-
-   insinto /usr/local/share/"${PN}"/
-   if use bash-completion ; then
-   doins bin/${PN}.bash
-   fi
-
-   if use zsh-completion ; then
-   doins bin/${PN}.zsh
-   insinto /usr/share/zsh/site-functions
-   doins bin/_j
-   fi
-
-   if use python ; then
-   python_foreach_impl python_domodule tools/autojump_ipython.py 
bin/autojump_argparse.py bin/autojump_data.py bin/autojump_utils.py
-
-   einfo "This tool provides \"j\" for ipython, please add"
-   einfo "\"import autojump_ipython\" to your ipy_user_conf.py."
-   fi
-
-   doman docs/${PN}.1
-   dodoc README.md
-}



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

2015-09-13 Thread Patrice Clement
commit: 7bef869b2bc57852d353c263db48994e1587c442
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Sep 13 17:16:52 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 17:19:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bef869b

Merge remote-tracking branch 'github/pr/87'.

 app-shells/autojump/autojump-22.2.4-r1.ebuild  | 62 --
 ...ump-22.2.4.ebuild => autojump-22.2.4-r2.ebuild} | 42 ++-
 2 files changed, 17 insertions(+), 87 deletions(-)



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

2015-09-13 Thread Patrice Clement
commit: c6da3beb744f7e26de61385d46773d679cc7c5ec
Author: Lukáš Poláček  ksp  sk>
AuthorDate: Sun Sep 13 07:05:16 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 08:07:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6da3beb

app-shells/autojump: don't install into /usr/local

Suggested-by: Leho Kraav  kraav.com>

 app-shells/autojump/autojump-22.2.4-r2.ebuild | 55 +++
 1 file changed, 55 insertions(+)

diff --git a/app-shells/autojump/autojump-22.2.4-r2.ebuild 
b/app-shells/autojump/autojump-22.2.4-r2.ebuild
new file mode 100644
index 000..6ae3def
--- /dev/null
+++ b/app-shells/autojump/autojump-22.2.4-r2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit python-r1 vcs-snapshot
+
+DESCRIPTION="change directory command that learns"
+HOMEPAGE="https://github.com/joelthelion/autojump;
+SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~ppc ~ppc64"
+IUSE="python test"
+
+# Not all tests pass. Need investigation.
+RESTRICT="test"
+RDEPEND="python? ( ${PYTHON_DEPS} )"
+DEPEND="test? ( dev-python/flake8 dev-python/tox )"
+
+src_prepare() {
+   sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
+   -i bin/autojump.sh || die
+}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   dobin bin/autojump
+
+   insinto /etc/profile.d
+   doins bin/${PN}.sh
+
+   insinto /usr/share/"${PN}"/
+   doins bin/${PN}.bash
+   doins bin/${PN}.zsh
+   insinto /usr/share/zsh/site-functions
+   doins bin/_j
+
+   python_foreach_impl python_domodule bin/autojump_argparse.py 
bin/autojump_data.py bin/autojump_utils.py
+   if use python ; then
+   python_foreach_impl python_domodule tools/autojump_ipython.py
+   einfo 'This tool provides "j" for ipython, please add'
+   einfo '"import autojump_ipython" to your ipy_user_conf.py.'
+   fi
+
+   doman docs/${PN}.1
+   dodoc README.md
+}



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

2015-09-13 Thread Patrice Clement
commit: 3c5fbd4b17df82fd7ad99d88dbd0491dc9d463ca
Author: Lukáš Poláček  ksp  sk>
AuthorDate: Sun Sep 13 10:07:40 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 10:07:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c5fbd4b

app-shells/autojump: use newbashcomp

Also edit autojump.sh to use /usr/share instead of /usr/local/share

 app-shells/autojump/autojump-22.2.4-r2.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-shells/autojump/autojump-22.2.4-r2.ebuild 
b/app-shells/autojump/autojump-22.2.4-r2.ebuild
index 6ae3def..b485a21 100644
--- a/app-shells/autojump/autojump-22.2.4-r2.ebuild
+++ b/app-shells/autojump/autojump-22.2.4-r2.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
-inherit python-r1 vcs-snapshot
+inherit bash-completion-r1 python-r1 vcs-snapshot
 
 DESCRIPTION="change directory command that learns"
 HOMEPAGE="https://github.com/joelthelion/autojump;
@@ -24,6 +24,7 @@ DEPEND="test? ( dev-python/flake8 dev-python/tox )"
 
 src_prepare() {
sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
+   -e "s:/usr/local/share:/usr/share:" \
-i bin/autojump.sh || die
 }
 
@@ -37,8 +38,8 @@ src_install() {
insinto /etc/profile.d
doins bin/${PN}.sh
 
+   newbashcomp bin/${PN}.bash ${PN}
insinto /usr/share/"${PN}"/
-   doins bin/${PN}.bash
doins bin/${PN}.zsh
insinto /usr/share/zsh/site-functions
doins bin/_j



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

2015-09-13 Thread Patrice Clement
commit: 28c2d4a5b24c4fccb4e5acf58088d1a6887a62f5
Author: Lukáš Poláček  ksp  sk>
AuthorDate: Sun Sep 13 07:38:31 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Sep 13 08:07:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c2d4a5

app-shells/autojump: remove 22.2.4

 app-shells/autojump/autojump-22.2.4.ebuild | 64 --
 1 file changed, 64 deletions(-)

diff --git a/app-shells/autojump/autojump-22.2.4.ebuild 
b/app-shells/autojump/autojump-22.2.4.ebuild
deleted file mode 100644
index dc79dce..000
--- a/app-shells/autojump/autojump-22.2.4.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit python-r1 python-utils-r1 vcs-snapshot
-
-DESCRIPTION="change directory command that learns"
-HOMEPAGE="https://github.com/joelthelion/autojump;
-SRC_URI="https://github.com/joelthelion/${PN}/archive/release-v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc ~ppc64"
-IUSE="bash-completion python test zsh-completion"
-
-# Not all tests pass. Need investigation.
-RESTRICT="test"
-RDEPEND="bash-completion? ( >=app-shells/bash-4 )
-   python? ( ${PYTHON_DEPS} )
-   zsh-completion? ( app-shells/zsh app-shells/gentoo-zsh-completions )"
-DEPEND="test? (
-   dev-python/flake8
-   dev-python/tox
-   )"
-
-src_prepare() {
-   sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \
-   -i bin/autojump.sh || die
-}
-
-src_compile() {
-   true
-}
-
-src_install() {
-   dobin bin/autojump
-
-   insinto /etc/profile.d
-   doins bin/${PN}.sh
-
-   if use bash-completion ; then
-   doins bin/${PN}.bash
-   fi
-
-   if use zsh-completion ; then
-   doins bin/${PN}.zsh
-   insinto /usr/share/zsh/site-functions
-   doins bin/_j
-   fi
-
-   if use python ; then
-   python_foreach_impl python_domodule tools/autojump_ipython.py
-
-   einfo "This tool provides \"j\" for ipython, please add"
-   einfo "\"import autojump_ipython\" to your ipy_user_conf.py."
-   fi
-
-   doman docs/${PN}.1
-   dodoc README.md
-}



[gentoo-commits] repo/gentoo:master commit in: app-laptop/tpacpi-bat/

2015-09-13 Thread Christoph Junghans
commit: 66556e011379356d5760f615bfcf767e35be3a9c
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sat Sep 12 12:42:06 2015 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Sun Sep 13 18:12:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66556e01

app-laptop/tpacpi-bat: Version bump (close #86 gh)

Package-Manager: portage-2.2.20.1

 app-laptop/tpacpi-bat/Manifest  |  1 +
 app-laptop/tpacpi-bat/tpacpi-bat-3.0.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/app-laptop/tpacpi-bat/Manifest b/app-laptop/tpacpi-bat/Manifest
index 2f013be..ac2c290 100644
--- a/app-laptop/tpacpi-bat/Manifest
+++ b/app-laptop/tpacpi-bat/Manifest
@@ -1,2 +1,3 @@
 DIST tpacpi-bat-1.1.tar.gz 17781 SHA256 
99bfeae60c672d981ea70a98470b8c2a1a9da52da0fce7f669270f216d2230a3 SHA512 
7b8838e6db7f98cd5bb674a99dbb880ba6574529de68d97ce704bf225ba416183971aae3c2dd623bc8750767c54a2a52cd0b525bce70640ecf0b307fdba03821
 WHIRLPOOL 
3a057e57da77f997ed27f679c2503a139d760949027c02aa5dd5bef71579d525acc866655e0008b59ef6ae8b0c567f7de627838baac5c7ed2969523a7355a879
 DIST tpacpi-bat-2.1.tar.gz 17753 SHA256 
0a4b273215ef814a1932b0c8ff1571c6e45eecb3b28d8462deab460f0bcdc337 SHA512 
7ed4974d84c3f1ddc9fd5cd6d7f103a11e2f808a223692749e3ae0ec2e888b62083d577214e27634cd76e9b616a6b8d5cb5474ddb64f73972d08641051c5c6f8
 WHIRLPOOL 
303c28a287b657514e985227b8f4c9c3d044fdf46a7dca0e52ce3ab7b6852a65aa46a8805cf6a945b3936432d3c3e43855d0d88c7549b05e95d271e8c605b1b7
+DIST tpacpi-bat-3.0.tar.gz 18137 SHA256 
f9aa8be181df6a7d41eac6224abb6dadf1d147022449e9159c4aa09397b7a485 SHA512 
2beab3e5495f028b53d673a4243a2128f4ff85e19e18ac7d53663a1d62e20b271442d6c2c8f19cb41d618ddf7ebb4d9b8390f7f185f77bdca33c69bb19463128
 WHIRLPOOL 
9329ea83fdd0913cc47446895e6ab385f09ca42e7a19533b5c7fa44cb62bebd07ba24f89b0deacc89d6b3aff3ff826f2a53f8d2e918f137d0f6215aa6eaa9198

diff --git a/app-laptop/tpacpi-bat/tpacpi-bat-3.0.ebuild 
b/app-laptop/tpacpi-bat/tpacpi-bat-3.0.ebuild
new file mode 100644
index 000..06144e8
--- /dev/null
+++ b/app-laptop/tpacpi-bat/tpacpi-bat-3.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils systemd
+
+if [ "${PV}" = "" ]; then
+   inherit git-2
+   EGIT_REPO_URI="git://github.com/teleshoes/tpacpi-bat.git 
https://github.com/teleshoes/tpacpi-bat.git;
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/teleshoes/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+DESCRIPTION="Control battery thresholds of recent ThinkPads, which are not 
supported by tp_smapi"
+HOMEPAGE="https://github.com/teleshoes/tpacpi-bat;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+DEPEND=""
+RDEPEND="sys-power/acpi_call
+   dev-lang/perl"
+
+src_install() {
+   dodoc README battery_asl
+   dobin tpacpi-bat
+   newinitd "${FILESDIR}"/${PN}.initd.1 ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd.0 ${PN}
+   systemd_newunit tpacpi.service ${PN}.service
+}



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

2015-09-13 Thread Justin Lecher
commit: cdb5ecb7a8d9128bf108e8885f8f1c81968016ce
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Wed Sep  9 11:49:08 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Sep  9 11:49:08 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=cdb5ecb7

sci-libs/arrayfire: Version bump - Add 3.1.0 release

Package-Manager: portage-2.2.20.1

 sci-libs/arrayfire/ChangeLog  |   6 ++
 sci-libs/arrayfire/arrayfire-3.1.0.ebuild | 100 ++
 2 files changed, 106 insertions(+)

diff --git a/sci-libs/arrayfire/ChangeLog b/sci-libs/arrayfire/ChangeLog
index 3e36536..ad8c422 100644
--- a/sci-libs/arrayfire/ChangeLog
+++ b/sci-libs/arrayfire/ChangeLog
@@ -1,6 +1,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*arrayfire-3.1.0 (09 Sep 2015)
+
+  09 Sep 2015; Marius Brehler 
+  +arrayfire-3.1.0.ebuild:
+  sci-libs/arrayfire: Version bump - Add 3.1.0 release
+
 *arrayfire-3.0.2 (08 Sep 2015)
 
   08 Sep 2015; Marius Brehler 

diff --git a/sci-libs/arrayfire/arrayfire-3.1.0.ebuild 
b/sci-libs/arrayfire/arrayfire-3.1.0.ebuild
new file mode 100644
index 000..4703028
--- /dev/null
+++ b/sci-libs/arrayfire/arrayfire-3.1.0.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+GTEST_PV="1.7.0"
+
+DESCRIPTION="A general purpose GPU library."
+HOMEPAGE="http://www.arrayfire.com/;
+SRC_URI="http://arrayfire.com/arrayfire_source/${PN}-full-${PV}.tar.bz2 -> 
${P}.tar.bz2
+test? ( https://googletest.googlecode.com/files/gtest-${GTEST_PV}.zip )"
+KEYWORDS="~amd64"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="+examples +cpu cuda opencl test"
+
+RDEPEND="
+   >=sys-devel/gcc-4.7:*
+   media-libs/freeimage
+   cuda? (
+   >=dev-util/nvidia-cuda-toolkit-6.0
+   dev-libs/boost
+   )
+   cpu? (
+   virtual/blas
+   virtual/cblas
+   virtual/lapacke
+   sci-libs/fftw:3.0
+   )
+   opencl? (
+   virtual/blas
+   virtual/cblas
+   virtual/lapacke
+   dev-libs/boost
+   dev-libs/boost-compute
+   >=sci-libs/clblas-2.4
+   >=sci-libs/clfft-2.6.1
+   )"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-full-${PV}"
+BUILD_DIR="${S}/build"
+CMAKE_BUILD_TYPE=Release
+
+PATCHES=(
+   "${FILESDIR}/${PN}"--FindCBLAS.patch
+   "${FILESDIR}/${PN}"--Try-PkgConf-first-to-find-LAPACKE.patch
+)
+
+# We need write acccess /dev/nvidiactl, /dev/nvidia0 and /dev/nvidia-uvm and 
the portage
+# user is (usually) not in the video group
+RESTRICT="userpriv"
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   if [[ $(gcc-major-version) -lt 4 ]] || ( [[ 
$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 7 ]] ) ; then
+   die "Compilation with gcc older than 4.7 is not 
supported."
+   fi
+   fi
+}
+
+src_unpack() {
+   default
+
+   if use test; then
+   mkdir -p "${BUILD_DIR}"/third_party/src/ || die
+   mv "${WORKDIR}"/gtest-"${GTEST_PV}" 
"${BUILD_DIR}"/third_party/src/googletest || die
+   fi
+}
+
+src_configure() {
+   if use cuda; then
+   addwrite /dev/nvidiactl
+   addwrite /dev/nvidia0
+   addwrite /dev/nvidia-uvm
+   fi
+
+   local mycmakeargs=(
+  $(cmake-utils_use_build cpu CPU)
+  $(cmake-utils_use_build cuda CUDA)
+  $(cmake-utils_use_build opencl OPENCL)
+  $(cmake-utils_use_build examples EXAMPLES)
+  $(cmake-utils_use_build test TEST)
+  -DUSE_SYSTEM_BOOST_COMPUTE=ON
+  -DUSE_SYSTEM_CLBLAS=ON
+  -DUSE_SYSTEM_CLFFT=ON
+  -DBUILD_GRAPHICS=OFF
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   dobin "${BUILD_DIR}/bin2cpp"
+}



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

2015-09-13 Thread Justin Lecher
commit: 313b01351deeddc59f17cdfd2f95fd0572b99348
Author: mschubert  gmail  com>
AuthorDate: Sun Sep 13 14:27:10 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Sep 13 14:27:10 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=313b0135

sci-libs/rdkit: simplify USE checks

Package-Manager: portage-2.2.20-prefix

 sci-libs/rdkit/ChangeLog  |  4 
 sci-libs/rdkit/rdkit-2015.03.1.ebuild | 10 ++
 sci-libs/rdkit/rdkit-.ebuild  | 10 ++
 3 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/sci-libs/rdkit/ChangeLog b/sci-libs/rdkit/ChangeLog
index 2c1da33..e5b9ddb 100644
--- a/sci-libs/rdkit/ChangeLog
+++ b/sci-libs/rdkit/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  13 Sep 2015; Michael Schubert  rdkit-2015.03.1.ebuild,
+  rdkit-.ebuild:
+  sci-libs/rdkit: simplify USE checks
+
   13 Sep 2015; Marius Brehler  
rdkit-2015.03.1.ebuild,
   rdkit-.ebuild:
   sci-libs/rdkit: Fix cmake args

diff --git a/sci-libs/rdkit/rdkit-2015.03.1.ebuild 
b/sci-libs/rdkit/rdkit-2015.03.1.ebuild
index fed972a..68ee45f 100644
--- a/sci-libs/rdkit/rdkit-2015.03.1.ebuild
+++ b/sci-libs/rdkit/rdkit-2015.03.1.ebuild
@@ -33,15 +33,9 @@ src_configure() {
-DCMAKE_INSTALL_PREFIX:PATH="${EPREFIX}"/usr
-DRDK_INSTALL_INTREE=0
-DRDK_BUILD_CPP_TESTS=OFF
+   $(cmake-utils_use static-libs RDK_INSTALL_STATIC_LIBS)
+   $(cmake-utils_use python RDK_BUILD_PYTHON_WRAPPERS)
)
 
-   if ! use static-libs; then
-   mycmakeargs+=( -DRDK_INSTALL_STATIC_LIBS=OFF )
-   fi
-
-   if ! use python; then
-   mycmakeargs+=( -DRDK_BUILD_PYTHON_WRAPPERS=OFF )
-   fi
-
cmake-utils_src_configure
 }

diff --git a/sci-libs/rdkit/rdkit-.ebuild b/sci-libs/rdkit/rdkit-.ebuild
index d61982e..0b4f40a 100644
--- a/sci-libs/rdkit/rdkit-.ebuild
+++ b/sci-libs/rdkit/rdkit-.ebuild
@@ -32,15 +32,9 @@ src_configure() {
-DCMAKE_INSTALL_PREFIX:PATH="${EPREFIX}"/usr
-DRDK_INSTALL_INTREE=0
-DRDK_BUILD_CPP_TESTS=OFF
+   $(cmake-utils_use static-libs RDK_INSTALL_STATIC_LIBS)
+   $(cmake-utils_use python RDK_BUILD_PYTHON_WRAPPERS)
)
 
-   if ! use static-libs; then
-   mycmakeargs+=( -DRDK_INSTALL_STATIC_LIBS=OFF )
-   fi
-
-   if ! use python; then
-   mycmakeargs+=( -DRDK_BUILD_PYTHON_WRAPPERS=OFF )
-   fi
-
cmake-utils_src_configure
 }



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

2015-09-13 Thread Justin Lecher
commit: dbdead3cd3bf90ddada5b8e50d0b58596763d298
Author: layman  localhost>
AuthorDate: Sat Sep 12 22:49:54 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat Sep 12 22:57:31 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=dbdead3c

sci-libs/rdkit: initial commit

Package-Manager: portage-2.2.20-prefix

 sci-libs/rdkit/ChangeLog  | 10 
 sci-libs/rdkit/metadata.xml   | 12 +
 sci-libs/rdkit/rdkit-2015.03.1.ebuild | 47 +++
 sci-libs/rdkit/rdkit-.ebuild  | 46 ++
 4 files changed, 115 insertions(+)

diff --git a/sci-libs/rdkit/ChangeLog b/sci-libs/rdkit/ChangeLog
new file mode 100644
index 000..8a83ba7
--- /dev/null
+++ b/sci-libs/rdkit/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-libs/rdkit
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*rdkit-2015.03.1 (12 Sep 2015)
+*rdkit- (12 Sep 2015)
+
+  12 Sep 2015; Michael Schubert  +metadata.xml,
+  +rdkit-2015.03.1.ebuild, +rdkit-.ebuild:
+  sci-libs/rdkit: initial commit

diff --git a/sci-libs/rdkit/metadata.xml b/sci-libs/rdkit/metadata.xml
new file mode 100644
index 000..cfa0f50
--- /dev/null
+++ b/sci-libs/rdkit/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  sci-chemistry
+  
+mschu@gmail.com
+Michael Schubert
+  
+  
+rdkit/rdkit
+  
+

diff --git a/sci-libs/rdkit/rdkit-2015.03.1.ebuild 
b/sci-libs/rdkit/rdkit-2015.03.1.ebuild
new file mode 100644
index 000..e98b017
--- /dev/null
+++ b/sci-libs/rdkit/rdkit-2015.03.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit cmake-utils python-r1
+
+DESCRIPTION="Cheminformatics and machine-learning software written in C++ and 
Python"
+HOMEPAGE="http://www.rdkit.org/;
+SRC_URI="https://github.com/rdkit/rdkit/archive/Release_${PV//./_}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+python -static-libs"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="dev-libs/boost
+   python? (
+   dev-libs/boost[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   )
+   >=dev-db/sqlite-3"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"/rdkit-Release_${PV//./_}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX:PATH="${EPREFIX}"/usr
+   -DRDK_INSTALL_INTREE=0
+   -DRDK_BUILD_CPP_TESTS=OFF
+   )
+
+   if ! use static-libs; then
+   mycmakeargs+=( -DRDK_INSTALL_STATIC_LIBS=OFF )
+   fi
+
+   if ! use python; then
+   mycmakeargs+=( RDK_BUILD_PYTHON_WRAPPERS= )
+   fi
+
+   cmake-utils_src_configure
+}

diff --git a/sci-libs/rdkit/rdkit-.ebuild b/sci-libs/rdkit/rdkit-.ebuild
new file mode 100644
index 000..dfa196f
--- /dev/null
+++ b/sci-libs/rdkit/rdkit-.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit cmake-utils python-r1 git-r3
+
+DESCRIPTION="Cheminformatics and machine-learning software written in C++ and 
Python"
+HOMEPAGE="http://www.rdkit.org/;
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/rdkit/rdkit.git;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+python -static-libs"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="dev-libs/boost
+   python? (
+   dev-libs/boost[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   )
+   >=dev-db/sqlite-3"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX:PATH="${EPREFIX}"/usr
+   -DRDK_INSTALL_INTREE=0
+   -DRDK_BUILD_CPP_TESTS=OFF
+   )
+
+   if ! use static-libs; then
+   mycmakeargs+=( -DRDK_INSTALL_STATIC_LIBS=OFF )
+   fi
+
+   if ! use python; then
+   mycmakeargs+=( RDK_BUILD_PYTHON_WRAPPERS= )
+   fi
+
+   cmake-utils_src_configure
+}



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

2015-09-13 Thread Justin Lecher
commit: adb78a0f2f4e1fe4316fa9158ec76d5dd36f
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sat Sep 12 07:27:43 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat Sep 12 07:27:43 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=adb78a0f

sci-libs/clfft: Patch merged upstream

Package-Manager: portage-2.2.20.1

 sci-libs/clfft/ChangeLog   |  5 
 sci-libs/clfft/clfft-.ebuild   |  4 ---
 ...-Install-examples-to-share-clFFT-examples.patch | 29 --
 3 files changed, 5 insertions(+), 33 deletions(-)

diff --git a/sci-libs/clfft/ChangeLog b/sci-libs/clfft/ChangeLog
index 5ccf93b..7156dc3 100644
--- a/sci-libs/clfft/ChangeLog
+++ b/sci-libs/clfft/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  12 Sep 2015; Marius Brehler 
+  -files/clfft--Install-examples-to-share-clFFT-examples.patch,
+  clfft-.ebuild:
+  sci-libs/clfft: Patch merged upstream
+
 *clfft-2.6.1 (06 Sep 2015)
 
   06 Sep 2015; Marius Brehler  +clfft-2.6.1.ebuild,

diff --git a/sci-libs/clfft/clfft-.ebuild b/sci-libs/clfft/clfft-.ebuild
index 73577c7..da8499e 100644
--- a/sci-libs/clfft/clfft-.ebuild
+++ b/sci-libs/clfft/clfft-.ebuild
@@ -32,10 +32,6 @@ DEPEND="${RDEPEND}"
 # Therefore src_test() won't execute any test.
 RESTRICT="test"
 
-PATCHES=(
-   "${FILESDIR}/${P}"-Install-examples-to-share-clFFT-examples.patch
-)
-
 pkg_pretend() {
if [[ ${MERGE_TYPE} != binary ]]; then
if [[ $(gcc-major-version) -lt 4 ]] || ( [[ 
$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ]] ) ; then

diff --git 
a/sci-libs/clfft/files/clfft--Install-examples-to-share-clFFT-examples.patch
 
b/sci-libs/clfft/files/clfft--Install-examples-to-share-clFFT-examples.patch
deleted file mode 100644
index 01965d9..000
--- 
a/sci-libs/clfft/files/clfft--Install-examples-to-share-clFFT-examples.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Patch to fix location of examples:
-https://github.com/clMathLibraries/clFFT/pull/108
-
-From 8e34e31465231460d1bda73e34584bc7d4862be1 Mon Sep 17 00:00:00 2001
-From: Marius Brehler 
-Date: Sun, 6 Sep 2015 12:01:55 +0200
-Subject: [PATCH] Install examples to share/clFFT/examples
-

- src/examples/CMakeLists.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/examples/CMakeLists.txt b/src/examples/CMakeLists.txt
-index f93f0fb..0073a34 100644
 a/src/examples/CMakeLists.txt
-+++ b/src/examples/CMakeLists.txt
-@@ -47,7 +47,7 @@ FOREACH(FILE ${FILES})
- OUTPUT_NAME ${EXAMPLE}
- RUNTIME_OUTPUT_DIRECTORY ${DIR_NAME})
- 
--INSTALL(FILES ${FILE} DESTINATION "share/clFFT")
-+INSTALL(FILES ${FILE} DESTINATION "share/clFFT/examples")
- INSTALL(TARGETS ${EXAMPLE_NAME}
--RUNTIME DESTINATION "bin${SUFFIX_BIN}/examples")
-+RUNTIME DESTINATION "share/clFFT/examples")
- ENDFOREACH()
--- 
-2.4.6
-



[gentoo-commits] proj/sci:master commit in: dev-util/nvidia-cuda-gdk/

2015-09-13 Thread Justin Lecher
commit: 2b1f96cc071149b0fdc15bfed2d478d10f297fd9
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sat Sep 12 10:56:41 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat Sep 12 10:56:41 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2b1f96cc

dev-util/nvidia-cuda-gdk: Version bump

Package-Manager: portage-2.2.20.1

 dev-util/nvidia-cuda-gdk/ChangeLog |   6 +
 .../nvidia-cuda-gdk/nvidia-cuda-gdk-352.39.ebuild  | 187 +
 2 files changed, 193 insertions(+)

diff --git a/dev-util/nvidia-cuda-gdk/ChangeLog 
b/dev-util/nvidia-cuda-gdk/ChangeLog
index 8f96e13..822b304 100644
--- a/dev-util/nvidia-cuda-gdk/ChangeLog
+++ b/dev-util/nvidia-cuda-gdk/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*nvidia-cuda-gdk-352.39 (12 Sep 2015)
+
+  12 Sep 2015; Marius Brehler 
+  +nvidia-cuda-gdk-352.39.ebuild:
+  dev-util/nvidia-cuda-gdk: Version bump
+
 *nvidia-cuda-gdk-352.07 (21 Jul 2015)
 
   21 Jul 2015; Marius Brehler 

diff --git a/dev-util/nvidia-cuda-gdk/nvidia-cuda-gdk-352.39.ebuild 
b/dev-util/nvidia-cuda-gdk/nvidia-cuda-gdk-352.39.ebuild
new file mode 100644
index 000..b8db259
--- /dev/null
+++ b/dev-util/nvidia-cuda-gdk/nvidia-cuda-gdk-352.39.ebuild
@@ -0,0 +1,187 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils portability toolchain-funcs unpacker versionator
+
+MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
+
+HEALTMON_PV="352.38"
+NVVS_PV="352.38"
+
+DESCRIPTION="NVIDIA GPU Deployment Kit"
+HOMEPAGE="http://developer.nvidia.com/cuda;
+SRC_URI="http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_${MYD}_gdk_linux.run;
+
+LICENSE="NVIDIA-gdk"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+IUSE="+healthmon +nvml +doc examples +nvvs"
+
+RDEPEND="
+   >=dev-util/nvidia-cuda-toolkit-7.5
+   media-libs/freeglut
+   examples? ( >=x11-drivers/nvidia-drivers-352.39[uvm] )
+   "
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/payload"
+
+QA_PREBUILT="/opt/cuda/gdk/nvidia-healthmon/nvidia-healthmon
+   /opt/cuda/gdk/nvidia-healthmon/nvidia-healthmon-tests/gpu_rdma_bw
+   /opt/cuda/gdk/nvidia-healthmon/nvidia-healthmon-tests/ibv_rdma_bw
+   /opt/cuda/gdk/nvml/lib/libnvidia-ml.so.1
+   /opt/cuda/gdk/nvvs/plugins/libPcie.so.1
+   /opt/cuda/gdk/nvvs/plugins/libSmPerformance.so.1
+   /opt/cuda/gdk/nvvs/plugins/libPerformance.so
+   /opt/cuda/gdk/nvvs/plugins/libPower.so.1
+   /opt/cuda/gdk/nvvs/plugins/libMemory.so.1
+   /opt/cuda/gdk/nvvs/plugins/libPerformance.so.1
+   /opt/cuda/gdk/nvvs/plugins/libDeployment.so.1
+   /opt/cuda/gdk/nvvs/plugins/libSmPerformance.so
+   /opt/cuda/gdk/nvvs/plugins/libPower.so
+   /opt/cuda/gdk/nvvs/nvvs
+   "
+
+src_unpack() {
+   unpacker
+}
+
+src_compile() {
+   use examples || return
+   cd "${S}"/nvml/example || die
+   emake
+}
+
+src_install() {
+   local i j f t
+
+   if use doc; then
+   if use healthmon ; then
+   ebegin "Installing healthmon docs..."
+   doman 
nvidia-healthmon/docs/man/man8/nvidia-healthmon.8
+   cd 
"${S}/nvidia-healthmon/nvidia-healthmon-amd64-${HEALTMON_PV}" || die
+   treecopy \
+   $(find -type f \( -name README.txt 
-name COPYING.txt -o -name "*.pdf" \)) \
+   
"${ED}"/usr/share/doc/${PF}/nvidia-healthmon/
+   docompress -x \
+   $(find 
"${ED}"/usr/share/doc/${PF}/nvidia-healthmon/ -type f -name readme.txt | sed -e 
"s:${ED}::")
+   cd "${S}/" || die
+   eend
+   fi
+
+   if use nvml ; then
+   ebegin "Installing nvml docs..."
+   doman nvml/doc/man/man3/*.3
+   cd "${S}/nvml/" || die
+   treecopy \
+   $(find -type f \( -name README.txt 
-name COPYRIGHT.txt -o -name "*.pdf" \)) \
+   "${ED}"/usr/share/doc/${PF}/nvml/
+   docompress -x \
+   $(find 
"${ED}"/usr/share/doc/${PF}/nvml/ -type f -name readme.txt | sed -e "s:${ED}::")
+   cd "${S}/" || die
+   eend
+   fi
+
+   if use nvvs ; then
+   ebegin "Installing validation suite docs..."
+   dodoc 
"nvidia-validation-suite/nvidia-validation-suite-amd64-${NVVS_PV}/docs/NVIDIA_Validation_Suite_User_Guide.pdf"
+ 

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

2015-09-13 Thread Justin Lecher
commit: 17662d16785a434b0700527ff4c0549174530063
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sat Sep 12 07:41:40 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat Sep 12 07:41:40 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=17662d16

sci-libs/clfft: Add client and examples use flag

Package-Manager: portage-2.2.20.1

 sci-libs/clfft/ChangeLog  | 4 
 sci-libs/clfft/clfft-2.6.1.ebuild | 6 --
 sci-libs/clfft/clfft-.ebuild  | 6 --
 sci-libs/clfft/metadata.xml   | 5 +
 4 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/sci-libs/clfft/ChangeLog b/sci-libs/clfft/ChangeLog
index 7156dc3..56c9df8 100644
--- a/sci-libs/clfft/ChangeLog
+++ b/sci-libs/clfft/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  12 Sep 2015; Marius Brehler  clfft-2.6.1.ebuild,
+  clfft-.ebuild, metadata.xml:
+  sci-libs/clfft: Add client and examples use flag
+
   12 Sep 2015; Marius Brehler 
   -files/clfft--Install-examples-to-share-clFFT-examples.patch,
   clfft-.ebuild:

diff --git a/sci-libs/clfft/clfft-2.6.1.ebuild 
b/sci-libs/clfft/clfft-2.6.1.ebuild
index 4e459a6..0e70116 100644
--- a/sci-libs/clfft/clfft-2.6.1.ebuild
+++ b/sci-libs/clfft/clfft-2.6.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PN}-${PV}/src"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="test"
+IUSE="+client examples test"
 
 RDEPEND="
>=sys-devel/gcc-4.6:*
@@ -47,7 +47,9 @@ pkg_pretend() {
 
 src_configure() {
local mycmakeargs=(
-  $(cmake-utils_use_build test TEST)
+   $(cmake-utils_use_build client CLIENT)
+   $(cmake-utils_use_build examples EXAMPLES)
+   $(cmake-utils_use_build test TEST)
)
cmake-utils_src_configure
 }

diff --git a/sci-libs/clfft/clfft-.ebuild b/sci-libs/clfft/clfft-.ebuild
index da8499e..3edc6c9 100644
--- a/sci-libs/clfft/clfft-.ebuild
+++ b/sci-libs/clfft/clfft-.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${P}/src"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="test"
+IUSE="+client examples test"
 
 RDEPEND="
>=sys-devel/gcc-4.6:*
@@ -42,7 +42,9 @@ pkg_pretend() {
 
 src_configure() {
local mycmakeargs=(
-  $(cmake-utils_use_build test TEST)
+$(cmake-utils_use_build client CLIENT)
+$(cmake-utils_use_build examples EXAMPLES)
+$(cmake-utils_use_build test TEST)
)
cmake-utils_src_configure
 }

diff --git a/sci-libs/clfft/metadata.xml b/sci-libs/clfft/metadata.xml
index 910e992..aba91dc 100644
--- a/sci-libs/clfft/metadata.xml
+++ b/sci-libs/clfft/metadata.xml
@@ -14,6 +14,11 @@
 clFFT is part of the clMath sofware library, which is the
 successor of APPML.
   
+  
+
+  Build a command line clFFT client program.
+
+  
   
 clMathLibraries/clFFT
   



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

2015-09-13 Thread Justin Lecher
commit: 01d67b4f066fe470068ec0da85ad0d8fb70edd0d
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sat Sep 12 08:41:06 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sat Sep 12 08:41:06 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=01d67b4f

sci-libs/clblas: Version bump

Package-Manager: portage-2.2.20.1

 sci-libs/clblas/ChangeLog |  5 
 sci-libs/clblas/clblas-2.6.ebuild | 57 +++
 2 files changed, 62 insertions(+)

diff --git a/sci-libs/clblas/ChangeLog b/sci-libs/clblas/ChangeLog
index 09bde59..e74dc52 100644
--- a/sci-libs/clblas/ChangeLog
+++ b/sci-libs/clblas/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*clblas-2.6 (12 Sep 2015)
+
+  12 Sep 2015; Marius Brehler  +clblas-2.6.ebuild:
+  sci-libs/clblas: Version bump
+
   06 Sep 2015; Marius Brehler 
   +files/clblas-2.4-samples_CMakeLists.patch,
   +files/clblas-2.4-scripts_perf_CMakeLists.patch,

diff --git a/sci-libs/clblas/clblas-2.6.ebuild 
b/sci-libs/clblas/clblas-2.6.ebuild
new file mode 100644
index 000..2a7b07b
--- /dev/null
+++ b/sci-libs/clblas/clblas-2.6.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils python-single-r1
+
+MY_PN="clBLAS"
+
+DESCRIPTION="A software library containing BLAS routines for OpenCL"
+HOMEPAGE="https://github.com/clMathLibraries/clBLAS;
+SRC_URI="https://github.com/clMathLibraries/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+KEYWORDS="~amd64"
+S="${WORKDIR}/${MY_PN}-${PV}/src"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="+client examples +ktest performance test"
+
+RDEPEND="
+   >=sys-devel/gcc-4.6:*
+   virtual/opencl
+   || ( >=dev-util/amdapp-2.9 dev-util/intel-ocl-sdk )
+   dev-libs/boost
+   performance? ( ${PYTHON_DEPS} )
+   "
+DEPEND="${RDEPEND}"
+#  test? (
+#  >=dev-cpp/gtest-1.6.0
+#  >=sci-libs/acml-6.1.0.3
+#  )"
+
+# The tests only get compiled to an executable named Test, which is not 
recogniozed by cmake.
+# Therefore src_test() won't execute any test.
+RESTRICT="test"
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   if [[ $(gcc-major-version) -lt 4 ]] || ( [[ 
$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ]] ) ; then
+   die "Compilation with gcc older than 4.6 is not 
supported."
+   fi
+   fi
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_build client CLIENT)
+   $(cmake-utils_use_build examples SAMPLE)
+   $(cmake-utils_use_build ktest KTEST)
+   $(cmake-utils_use_build performance PERFORMANCE)
+   $(cmake-utils_use_build test TEST)
+   )
+   cmake-utils_src_configure
+}



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

2015-09-13 Thread Justin Lecher
commit: 2e90c9d63841026529f917665e197875f45ba7e3
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Thu Sep 10 07:39:07 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Sep 10 07:40:00 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2e90c9d6

sci-libs/armadillo: Remove old: Keep in sync with tree

Package-Manager: portage-2.2.20.1

 sci-libs/armadillo/ChangeLog   |   4 +
 sci-libs/armadillo/armadillo-5.100.2.ebuild| 112 ---
 sci-libs/armadillo/armadillo-5.200.2-r1.ebuild | 121 -
 3 files changed, 4 insertions(+), 233 deletions(-)

diff --git a/sci-libs/armadillo/ChangeLog b/sci-libs/armadillo/ChangeLog
index 191e8c9..c172727 100644
--- a/sci-libs/armadillo/ChangeLog
+++ b/sci-libs/armadillo/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  10 Sep 2015; Marius Brehler 
+  -armadillo-5.100.2.ebuild, -armadillo-5.200.2-r1.ebuild:
+  sci-libs/armadillo: Remove old: Keep in sync with tree
+
 *armadillo-5.500.2 (08 Sep 2015)
 
   08 Sep 2015; Marius Brehler 

diff --git a/sci-libs/armadillo/armadillo-5.100.2.ebuild 
b/sci-libs/armadillo/armadillo-5.100.2.ebuild
deleted file mode 100644
index cb326b0..000
--- a/sci-libs/armadillo/armadillo-5.100.2.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-CMAKE_IN_SOURCE_BUILD=1
-
-inherit cmake-utils toolchain-funcs multilib eutils
-
-DESCRIPTION="Streamlined C++ linear algebra library"
-HOMEPAGE="http://arma.sourceforge.net/;
-SRC_URI="mirror://sourceforge/arma/${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0/5"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="arpack atlas blas debug doc examples hdf5 lapack mkl tbb test"
-REQUIRED_USE="test? ( lapack )"
-
-RDEPEND="
-   dev-libs/boost
-   arpack? ( sci-libs/arpack )
-   atlas? ( sci-libs/atlas[lapack] )
-   blas? ( virtual/blas )
-   lapack? ( virtual/lapack )"
-DEPEND="${RDEPEND}
-   arpack? ( virtual/pkgconfig )
-   atlas? ( virtual/pkgconfig )
-   blas? ( virtual/pkgconfig )
-   hdf5? ( sci-libs/hdf5 )
-   lapack? ( virtual/pkgconfig )
-   mkl? ( sci-libs/mkl )
-   tbb? ( dev-cpp/tbb )"
-PDEPEND="${RDEPEND}
-   hdf5? ( sci-libs/hdf5 )
-   mkl? ( sci-libs/mkl )
-   tbb? ( dev-cpp/tbb )"
-
-src_prepare() {
-   # avoid the automagic cmake macros
-   sed -i -e '/ARMA_Find/d' CMakeLists.txt || die
-   cmake-utils_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DINSTALL_LIB_DIR="${EPREFIX}/usr/$(get_libdir)"
-   $(cmake-utils_use debug ARMA_EXTRA_DEBUG)
-   $(cmake-utils_use mkl ARMA_USE_MKL_ALLOC)
-   $(cmake-utils_use tbb ARMA_USE_TBB_ALLOC)
-   )
-   if use arpack; then
-   mycmakeargs+=(
-   -DARPACK_FOUND=ON
-   -DARPACK_LIBRARY="$($(tc-getPKG_CONFIG) --libs arpack)"
-   )
-   fi
-   if use atlas; then
-   local c=atlas-cblas l=atlas-clapack
-   $(tc-getPKG_CONFIG) --exists ${c}-threads && c+=-threads
-   $(tc-getPKG_CONFIG) --exists ${l}-threads && l+=-threads
-   mycmakeargs+=(
-   -DCBLAS_FOUND=ON
-   -DCBLAS_INCLUDE_DIR="$($(tc-getPKG_CONFIG) 
--cflags-only-I ${c} | sed 's/-I//')"
-   -DCBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs ${c})"
-   -DCLAPACK_FOUND=ON
-   -DCLAPACK_INCLUDE_DIR="$($(tc-getPKG_CONFIG) 
--cflags-only-I ${l} | sed 's/-I//')"
-   -DCLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs ${l})"
-   )
-   fi
-   if use blas; then
-   mycmakeargs+=(
-   -DBLAS_FOUND=ON
-   -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
-   )
-   fi
-   if use hdf5; then
-   mycmakeargs+=(
-   -DHDF5_FOUND=ON
-   -DHDF5_LIBRARIES="-lhdf5"
-   )
-   fi
-   if use lapack; then
-   mycmakeargs+=(
-   -DLAPACK_FOUND=ON
-   -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs 
lapack)"
-   )
-   fi
-   cmake-utils_src_configure
-}
-
-src_test() {
-   pushd examples > /dev/null
-   emake \
-   CXXFLAGS="-I../include ${CXXFLAGS} -DARMA_USE_BLAS 
-DARMA_USE_LAPACK" \
-   EXTRA_LIB_FLAGS="-L.. $($(tc-getPKG_CONFIG) --libs blas lapack)"
-   LD_LIBRARY_PATH="..:${LD_LIBRARY_PATH}" ./example1 || die
-   LD_LIBRARY_PATH="..:${LD_LIBRARY_PATH}" ./example2 || die
-   emake clean
-   popd > /dev/null
-}
-
-src_install() {

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

2015-09-13 Thread Justin Lecher
commit: ed8fb25203c90f2049a41a421c54713641f7cd66
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sun Sep 13 08:40:13 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Sep 13 08:40:13 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ed8fb252

sci-libs/rdkit: Fix cmake args

Package-Manager: portage-2.2.20.1

 sci-libs/rdkit/ChangeLog  | 4 
 sci-libs/rdkit/rdkit-2015.03.1.ebuild | 2 +-
 sci-libs/rdkit/rdkit-.ebuild  | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/sci-libs/rdkit/ChangeLog b/sci-libs/rdkit/ChangeLog
index 8a83ba7..2c1da33 100644
--- a/sci-libs/rdkit/ChangeLog
+++ b/sci-libs/rdkit/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  13 Sep 2015; Marius Brehler  
rdkit-2015.03.1.ebuild,
+  rdkit-.ebuild:
+  sci-libs/rdkit: Fix cmake args
+
 *rdkit-2015.03.1 (12 Sep 2015)
 *rdkit- (12 Sep 2015)
 

diff --git a/sci-libs/rdkit/rdkit-2015.03.1.ebuild 
b/sci-libs/rdkit/rdkit-2015.03.1.ebuild
index e98b017..fed972a 100644
--- a/sci-libs/rdkit/rdkit-2015.03.1.ebuild
+++ b/sci-libs/rdkit/rdkit-2015.03.1.ebuild
@@ -40,7 +40,7 @@ src_configure() {
fi
 
if ! use python; then
-   mycmakeargs+=( RDK_BUILD_PYTHON_WRAPPERS= )
+   mycmakeargs+=( -DRDK_BUILD_PYTHON_WRAPPERS=OFF )
fi
 
cmake-utils_src_configure

diff --git a/sci-libs/rdkit/rdkit-.ebuild b/sci-libs/rdkit/rdkit-.ebuild
index dfa196f..d61982e 100644
--- a/sci-libs/rdkit/rdkit-.ebuild
+++ b/sci-libs/rdkit/rdkit-.ebuild
@@ -39,7 +39,7 @@ src_configure() {
fi
 
if ! use python; then
-   mycmakeargs+=( RDK_BUILD_PYTHON_WRAPPERS= )
+   mycmakeargs+=( -DRDK_BUILD_PYTHON_WRAPPERS=OFF )
fi
 
cmake-utils_src_configure



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

2015-09-13 Thread Justin Lecher
commit: 5f99082dd4b71bd4dc5dbf3c16782f2c13295b73
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Sep 13 08:09:00 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Sep 13 08:09:00 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=5f99082d

Merge pull request #486 from mschubert/rdkit

sci-libs/rdkit: initial commit

 sci-libs/rdkit/ChangeLog   | 10 +
 sci-libs/rdkit/Manifest|  1 +
 .../pyfaidx => sci-libs/rdkit}/metadata.xml|  4 +-
 sci-libs/rdkit/rdkit-2015.03.1.ebuild  | 47 ++
 sci-libs/rdkit/rdkit-.ebuild   | 46 +
 5 files changed, 106 insertions(+), 2 deletions(-)



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

2015-09-13 Thread Justin Lecher
commit: c1eb50700da945cc0888d14c14ee2e71911b63f2
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Sep 13 18:33:15 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Sep 13 18:33:15 2015 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c1eb5070

Merge pull request #487 from mschubert/rdkit

sci-libs/rdkit: simplify USE checks

 sci-libs/rdkit/ChangeLog  |  4 
 sci-libs/rdkit/rdkit-2015.03.1.ebuild | 10 ++
 sci-libs/rdkit/rdkit-.ebuild  | 10 ++
 3 files changed, 8 insertions(+), 16 deletions(-)



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

2015-09-13 Thread Thomas Sachau
commit: d41f1c1ca47c70bc1c1ff1b7a1d2f8cd9dc4d8e9
Author: Thomas Sachau  gentoo  org>
AuthorDate: Sun Sep 13 18:47:46 2015 +
Commit: Thomas Sachau  gentoo  org>
CommitDate: Sun Sep 13 18:47:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d41f1c1c

Drop vulnerable versions, bug 556076

Package-Manager: portage-2.2.18

 dev-vcs/subversion/Manifest|   2 -
 dev-vcs/subversion/subversion-1.7.20.ebuild| 473 
 dev-vcs/subversion/subversion-1.8.13-r1.ebuild | 493 -
 3 files changed, 968 deletions(-)

diff --git a/dev-vcs/subversion/Manifest b/dev-vcs/subversion/Manifest
index 72085fb..8f0c00e 100644
--- a/dev-vcs/subversion/Manifest
+++ b/dev-vcs/subversion/Manifest
@@ -1,6 +1,4 @@
-DIST subversion-1.7.20.tar.bz2 6014383 SHA256 
0d16f62d2ed1a152e26f8194ac3eb889ef9f1a1716959a43115266e8baa50068 SHA512 
ea7cdfa0ac489cf62a9c5a05a651d541f383b6487beabe0fb0d972b8612b25831ac54dda18c4fc37e80168f0c3bc9a5441ed6e94f59691b35dd33ed2631f
 WHIRLPOOL 
7de4efff69ac2f63257d444e92d4f432ac61a6a2be9feb2969fd1b5fd69189dde5566067742d70883a7d40283d131886879e8ebc13c9faf352d1942b4f1d17e9
 DIST subversion-1.7.21.tar.bz2 5996788 SHA256 
efeb349c5ba6d529ff8e9730a2abd9cb70f276b249238a6b7f27ba7da1190620 SHA512 
d0ba3f0771c523b44efd2f12c1d101d720b7d834bc6bef12b8e47789a2fb76a2d399c041c1cdcd0e04411c29abfb9b2974ca9df6f2389f8a01d82e7738881975
 WHIRLPOOL 
0d12286ab0e5043f28622529ff5d2af5a1c8a61ef65227cc069cf93de35479bf79433fa201417456499fa16f11b03474127b66547b9c2e2a8c0d209fa2108e59
-DIST subversion-1.8.13.tar.bz2 6863330 SHA256 
1099cc68840753b48aedb3a27ebd1e2afbcc84ddb871412e5d500e843d607579 SHA512 
5b145888fdd294b871066483f9cc5af811aadd88c537c3859b005b73efaf66bd8d5c7c4dc6562897c00331be2ddfd834688a90eb5c229bc6625ab3c45c02045f
 WHIRLPOOL 
d79c71385e21ee3254a798687fd1de3e01a1577287b03d9a0f87e0a31621501e749ee9b37f40c59cb206fc68ba9968132e724f3c4a12c7aa8d5aa59d66a4ade4
 DIST subversion-1.8.14.tar.bz2 6850562 SHA256 
7f3883cdfcad4174e06dd94d6e3e8ec91856823268eebe60c924be76f5229a1f SHA512 
95e1501494f5355f0c331fbe81422ca8f0b4d69e6d303125f4a5aac5f6fe946e958ca76fc96fe6b096cc0a530634ca103bf35622c12af90489ae17d0b9a9d987
 WHIRLPOOL 
0323746d40830109e081e002f499f1c73c15fe77acd4f1c9b790ae12440b3361d189f1d5212d49ba6f6c449297aec3513761375f748800686892607705310a56
 DIST subversion-1.9.0.tar.bz2 7743404 SHA256 
fcb11db07e132cac6c72a969e222a592f849ef34dd8bd1c2f99fa1ad267a3fe6 SHA512 
3f1100802cd11f268a5247f5eebd9be9a8a15488fab3e396c4e0364abbaadd611bb0a5d4c6ca3eee3911e70f2cec0ff660259bb225be47f1909fd6367b3e
 WHIRLPOOL 
dc2875ee6fa911babdac86455b67af618056d72a709170666e21e826bb3a465a60f9e5b5df02170107208cbded4aecd49cb7e805d3713c671dabfb884f7abbb7
 DIST subversion-1.9.1.tar.bz2 7747098 SHA256 
91548f9fce38bdb2958848f54fd8007e357c22db09b7ef4763fc85cbcbc2c913 SHA512 
57b8f913aefb06bbeac065ae6bb8113853018bdaefdb80c74a337479b9f3cf89834e8656591dbe8ab66b2cadf5f99f1036ff826a886ed6a9f643d6e5adb6a972
 WHIRLPOOL 
58bd1e41a7643befe6e9800ce0a270379b980746b14eda2c2230f96ea9e07b17ab115959e5b61f324f51055697c898526ac3b4be9b883147b1156f7c20b1f010

diff --git a/dev-vcs/subversion/subversion-1.7.20.ebuild 
b/dev-vcs/subversion/subversion-1.7.20.ebuild
deleted file mode 100644
index 5b585c8..000
--- a/dev-vcs/subversion/subversion-1.7.20.ebuild
+++ /dev/null
@@ -1,473 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_OPTIONAL=1
-WANT_AUTOMAKE="none"
-MY_P="${P/_/-}"
-GENTOO_DEPEND_ON_PERL="no"
-
-inherit autotools bash-completion-r1 db-use depend.apache distutils-r1 
elisp-common flag-o-matic java-pkg-opt-2 libtool multilib perl-module eutils
-
-DESCRIPTION="Advanced version control system"
-HOMEPAGE="http://subversion.apache.org/;
-SRC_URI="mirror://apache/${PN}/${MY_P}.tar.bz2"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="Subversion GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring java 
kde nls perl python ruby sasl test vim-syntax +webdav-neon webdav-serf"
-
-COMMON_DEPEND=">=dev-db/sqlite-3.6.18[threadsafe(+)]
-   >=dev-libs/apr-1.3:1
-   >=dev-libs/apr-util-1.3:1
-   dev-libs/expat
-   sys-libs/zlib
-   berkdb? ( >=sys-libs/db-4.0.14 )
-   ctypes-python? ( ${PYTHON_DEPS} )
-   gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus 
gnome-base/libgnome-keyring )
-   kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 
>=kde-base/kdelibs-4:4 )
-   perl? ( dev-lang/perl:= )
-   python? ( ${PYTHON_DEPS} )
-   ruby? ( >=dev-lang/ruby-1.8.2:1.8
-   

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

2015-09-13 Thread Manuel Rüger
commit: f86f3396b12f10a71e891372559bc303be7ea40e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:46:49 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:48:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86f3396

x11-misc/xfishtank: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/xfishtank/xfishtank-2.1.ebuild | 42 -
 1 file changed, 42 deletions(-)

diff --git a/x11-misc/xfishtank/xfishtank-2.1.ebuild 
b/x11-misc/xfishtank/xfishtank-2.1.ebuild
deleted file mode 100644
index 03021e8..000
--- a/x11-misc/xfishtank/xfishtank-2.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-MY_P=${P}tp
-
-DESCRIPTION="Turns your root window into an aquarium"
-HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/demos/;
-SRC_URI="http://www.ibiblio.org/pub/Linux/X11/demos/${MY_P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="ppc ppc64 x86"
-IUSE=""
-
-RDEPEND="x11-libs/libX11
-   x11-libs/libXt
-   x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-misc/makedepend"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-   unpack ${A}
-   epatch "${FILESDIR}/${MY_P}-Makefile.patch"
-   cd "${S}"
-   sed -i -e 's,INSTPGMFLAGS = -s,INSTPGMFLAGS =,' Makefile || die
-}
-
-src_compile() {
-   makedepend || die "makedepend failed"
-   emake || die "emake failed"
-}
-
-src_install() {
-   make BINDIR=/usr/bin DESTDIR="${D}" install || die "make install failed"
-   dodoc README README.Linux README.TrueColor README.Why.2.1tp
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xorg-cf-files/

2015-09-13 Thread Manuel Rüger
commit: b6b89b7a44d1a2719c52db949cba560b761eeb65
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:48:12 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:48:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6b89b7a

x11-misc/xorg-cf-files: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/xorg-cf-files/Manifest|  1 -
 .../xorg-cf-files/xorg-cf-files-1.0.4-r1.ebuild| 32 --
 x11-misc/xorg-cf-files/xorg-cf-files-1.0.4.ebuild  | 28 ---
 3 files changed, 61 deletions(-)

diff --git a/x11-misc/xorg-cf-files/Manifest b/x11-misc/xorg-cf-files/Manifest
index af31eca..8c70a67 100644
--- a/x11-misc/xorg-cf-files/Manifest
+++ b/x11-misc/xorg-cf-files/Manifest
@@ -1,2 +1 @@
-DIST xorg-cf-files-1.0.4.tar.bz2 367380 SHA256 
36e9ce83e4978f59909c6f44c43002d9b240ae66e23984ea1086f0b18c810669 SHA512 
e00ba2273b8ec7ca4ae84c176075170ae74162064463e9b48fb5c6ad62f7984a93fafa626caf0a9079b796f4deec57759a1d0fc148e77793eae130a9441baf42
 WHIRLPOOL 
bee8bd9b8b72e19bf1429aefe86db6b4eed39132e4080f9e3c9a4acb9d6b40e73e5d6dfd75304d29654feaa4c88f64ffd34c097896417ab3285e10090c3915ff
 DIST xorg-cf-files-1.0.5.tar.bz2 377835 SHA256 
ed23b85043edecc38fad4229e0ebdb7ff80b570e746bc03a7c8678d601be7ed4 SHA512 
139d2c51538257eac79118ea367cdfbebebcd095f353e784b61c109e008bf8e43eb4ef15bb0c8df74339dbed9d96af4c4d1e023c23d02d5de31dc2ea5b85ce5c
 WHIRLPOOL 
8621de9d25a9672d30d9ee3ed6a617e9c9e9d5a34c945fa458b0318b9bf157569f97ea1697efc463f3bb0ae8c6d0335dd30a6b5499c6baf00c5e172aaa5bf95b

diff --git a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.4-r1.ebuild 
b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.4-r1.ebuild
deleted file mode 100644
index a640f2f..000
--- a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.4-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit xorg-2
-
-DESCRIPTION="Old Imake-related build files"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.0.2-solaris-prefix.patch
-)
-
-src_install() {
-   xorg-2_src_install
-   echo "#define ManDirectoryRoot ${EPREFIX}/usr/share/man" >> 
"${ED}"/usr/$(get_libdir)/X11/config/host.def
-   sed -i -e "s/LibDirName *lib$/LibDirName $(get_libdir)/" 
"${ED}"/usr/$(get_libdir)/X11/config/Imake.tmpl || die "failed libdir sed"
-   sed -i -e "s|LibDir Concat(ProjectRoot,/lib/X11)|LibDir 
Concat(ProjectRoot,/$(get_libdir)/X11)|" 
"${ED}"/usr/$(get_libdir)/X11/config/X11.tmpl || die "failed libdir sed"
-   sed -i -e "s|\(EtcX11Directory \)\(/etc/X11$\)|\1${EPREFIX}\2|" 
"${ED}"/usr/$(get_libdir)/X11/config/X11.tmpl || die "failed etcx11dir sed"
-   sed -i -e "/#  define Solaris64bitSubdir/d" 
"${ED}"/usr/$(get_libdir)/X11/config/sun.cf
-   sed -i -e 's/-DNOSTDHDRS//g' "${ED}"/usr/$(get_libdir)/X11/config/sun.cf
-
-   sed -r -i -e "s|LibDirName[[:space:]]+lib.*$|LibDirName $(get_libdir)|" 
"${ED}"/usr/$(get_libdir)/X11/config/linux.cf || die "failed libdir sed"
-   sed -r -i -e "s|SystemUsrLibDir[[:space:]]+/usr/lib.*$|SystemUsrLibDir 
/usr/$(get_libdir)|" "${ED}"/usr/$(get_libdir)/X11/config/linux.cf || die 
"failed libdir sed"
-   sed -r -i -e "s|TkLibDir[[:space:]]+/usr/lib.*$|TkLibDir 
/usr/$(get_libdir)|" "${ED}"/usr/$(get_libdir)/X11/config/linux.cf || die 
"failed libdir sed"
-}

diff --git a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.4.ebuild 
b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.4.ebuild
deleted file mode 100644
index de5f956..000
--- a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.4.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=3
-
-inherit xorg-2
-
-DESCRIPTION="Old Imake-related build files"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.0.2-solaris-prefix.patch
-)
-
-src_install() {
-   xorg-2_src_install
-   echo "#define ManDirectoryRoot ${EPREFIX}/usr/share/man" >> 
${ED}/usr/$(get_libdir)/X11/config/host.def
-   sed -i -e "s/LibDirName *lib$/LibDirName $(get_libdir)/" 
"${ED}"/usr/$(get_libdir)/X11/config/Imake.tmpl || die "failed libdir sed"
-   sed -i -e "s|LibDir Concat(ProjectRoot,/lib/X11)|LibDir 
Concat(ProjectRoot,/$(get_libdir)/X11)|" 
${ED}/usr/$(get_libdir)/X11/config/X11.tmpl || die "failed libdir sed"
-   sed -i -e "s|\(EtcX11Directory 

  1   2   >