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

2014-08-20 Thread Johannes Huber
commit: 1afbdac7e2f38b5658a8a39585db7607b4154c2c
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Aug 21 06:27:48 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Aug 21 06:27:48 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1afbdac7

[kde-base/krfb] Restore patch

Package-Manager: portage-2.2.12

---
 14.0-CVE-2014-4607-unbundle-libvncserver.patch | 133 +
 1 file changed, 133 insertions(+)

diff --git 
a/kde-base/krfb/files/krfb-4.14.0-CVE-2014-4607-unbundle-libvncserver.patch 
b/kde-base/krfb/files/krfb-4.14.0-CVE-2014-4607-unbundle-libvncserver.patch
new file mode 100644
index 000..202519b
--- /dev/null
+++ b/kde-base/krfb/files/krfb-4.14.0-CVE-2014-4607-unbundle-libvncserver.patch
@@ -0,0 +1,133 @@
+From 766fc7694a58b7e01c003356db94276f07b791b5 Mon Sep 17 00:00:00 2001
+From: Johannes Huber 
+Date: Thu, 31 Jul 2014 19:41:01 +0200
+Subject: [PATCH] CVE-2014-4607: Unbundle libvncserver
+
+http://seclists.org/oss-sec/2014/q2/676
+
+REVIEW: 119548
+---
+ CMakeLists.txt   |  7 +++---
+ cmake/modules/FindLibVNCServer.cmake | 41 
+ krfb/CMakeLists.txt  |  2 ++
+ krfb/rfb.h   |  2 +-
+ 4 files changed, 47 insertions(+), 5 deletions(-)
+ create mode 100644 cmake/modules/FindLibVNCServer.cmake
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 4aa24dd..0b29da0 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -32,6 +32,8 @@ set(CMAKE_MODULE_PATH
+ ${CMAKE_MODULE_PATH}
+ )
+ 
++find_package(LibVNCServer REQUIRED)
++
+ macro_optional_find_package(TelepathyQt4)
+ macro_log_feature(TelepathyQt4_FOUND "telepathy-qt" "Telepathy Qt Bindings" 
"http://telepathy.freedesktop.org"; FALSE "0.9" "Needed to build Telepathy Tubes 
support.")
+ 
+@@ -44,8 +46,6 @@ macro_bool_to_01(X11_XShm_FOUND HAVE_XSHM)
+ include_directories ("${CMAKE_CURRENT_BINARY_DIR}/krfb"
+  "${CMAKE_CURRENT_SOURCE_DIR}/krfb"
+  "${CMAKE_CURRENT_SOURCE_DIR}/krfb/ui"
+- "${CMAKE_CURRENT_SOURCE_DIR}/libvncserver/"
+- "${CMAKE_CURRENT_BINARY_DIR}/libvncserver/"
+ )
+ 
+ if(Q_WS_X11)
+@@ -54,9 +54,8 @@ if(Q_WS_X11)
+   endif(NOT X11_XTest_FOUND)
+ endif(Q_WS_X11)
+ 
+-add_subdirectory(libvncserver)
+ add_subdirectory(krfb)
+-add_subdirectory (framebuffers)
++add_subdirectory(framebuffers)
+ add_subdirectory(doc)
+ 
+ if (NOT INSIDE_KDENETWORK)
+diff --git a/cmake/modules/FindLibVNCServer.cmake 
b/cmake/modules/FindLibVNCServer.cmake
+new file mode 100644
+index 000..5927ab2
+--- /dev/null
 b/cmake/modules/FindLibVNCServer.cmake
+@@ -0,0 +1,41 @@
++# cmake macro to test LIBVNCSERVER LIB
++
++# Copyright (c) 2006, Alessandro Praduroux 
++# Copyright (c) 2007, Urs Wolfer 
++#
++# Redistribution and use is allowed according to the terms of the BSD license.
++# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
++
++INCLUDE(CheckPointerMember)
++
++IF (LIBVNCSERVER_INCLUDE_DIR AND LIBVNCSERVER_LIBRARIES)
++# Already in cache, be silent
++SET(LIBVNCSERVER_FIND_QUIETLY TRUE)
++ENDIF (LIBVNCSERVER_INCLUDE_DIR AND LIBVNCSERVER_LIBRARIES)
++
++FIND_PATH(LIBVNCSERVER_INCLUDE_DIR rfb/rfb.h)
++
++FIND_LIBRARY(LIBVNCSERVER_LIBRARIES NAMES vncserver libvncserver)
++
++# libvncserver and libvncclient are in the same package, so it does
++# not make sense to add a new cmake script for finding libvncclient.
++# instead just find the libvncclient also in this file.
++FIND_PATH(LIBVNCCLIENT_INCLUDE_DIR rfb/rfbclient.h)
++FIND_LIBRARY(LIBVNCCLIENT_LIBRARIES NAMES vncclient libvncclient)
++
++IF (LIBVNCSERVER_INCLUDE_DIR AND LIBVNCSERVER_LIBRARIES)
++   SET(CMAKE_REQUIRED_INCLUDES "${LIBVNCSERVER_INCLUDE_DIR}" 
"${CMAKE_REQUIRED_INCLUDES}")
++   CHECK_POINTER_MEMBER(rfbClient* GotXCutText rfb/rfbclient.h 
LIBVNCSERVER_FOUND)
++ENDIF (LIBVNCSERVER_INCLUDE_DIR AND LIBVNCSERVER_LIBRARIES)
++
++IF (LIBVNCSERVER_FOUND)
++  IF (NOT LIBVNCSERVER_FIND_QUIETLY)
++MESSAGE(STATUS "Found LibVNCServer: ${LIBVNCSERVER_LIBRARIES}")
++  ENDIF (NOT LIBVNCSERVER_FIND_QUIETLY)
++ELSE (LIBVNCSERVER_FOUND)
++  IF (LIBVNCSERVER_FIND_REQUIRED)
++MESSAGE(FATAL_ERROR "Could NOT find acceptable version of LibVNCServer 
(version 0.9 or later required).")
++  ENDIF (LIBVNCSERVER_FIND_REQUIRED)
++ENDIF (LIBVNCSERVER_FOUND)
++
++MARK_AS_ADVANCED(LIBVNCSERVER_INCLUDE_DIR LIBVNCSERVER_LIBRARIES)
+\ No newline at end of file
+diff --git a/krfb/CMakeLists.txt b/krfb/CMakeLists.txt
+index a65eea8..100b49b 100644
+--- a/krfb/CMakeLists.txt
 b/krfb/CMakeLists.txt
+@@ -20,6 +20,7 @@ target_link_libraries (krfbprivate
+${QT_QTCORE_LIBRARY}
+${QT_QTGUI_LIBRARY}
+${X11_X11_LIB}
++   ${LIBVNCSERVER_LIBRARIES}
+ )
+ 
+ set_target_properties (krfbprivate PROPERTIES
+@@ -103,6 +104,7 @@ target_link_libraries (krfb
+

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

2014-08-20 Thread Johannes Huber
commit: 16677bd6fa2ee8d7fbfa16eac4954de52e3a80ab
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Aug 21 06:22:12 2014 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Aug 21 06:22:12 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=16677bd6

[kde-base/kdelibs] Restore patch, bug #520366

Package-Manager: portage-2.2.12

---
 .../kdelibs/files/kdelibs-4.14.0-mimetypes.patch   | 39 ++
 1 file changed, 39 insertions(+)

diff --git a/kde-base/kdelibs/files/kdelibs-4.14.0-mimetypes.patch 
b/kde-base/kdelibs/files/kdelibs-4.14.0-mimetypes.patch
new file mode 100644
index 000..5e54390
--- /dev/null
+++ b/kde-base/kdelibs/files/kdelibs-4.14.0-mimetypes.patch
@@ -0,0 +1,39 @@
+Remove fake MIME types that cause warnings.
+
+The offending MIME types are commented out rather than
+physically removed because doing so would cause the patch
+to be too large.
+
+diff --git a/mimetypes/kde.xml b/mimetypes/kde.xml
+index 76303db..23351c4 100644
+--- a/mimetypes/kde.xml
 b/mimetypes/kde.xml
+@@ -1783,8 +1783,8 @@ Notes:
+ 
+ 
+   
+-
+-  
++
++  uri/ fake mime types
+   
+ mms: URIs
+ mms: وصلات
+@@ -2245,7 +2245,7 @@ Notes:
+ rtspu: 地址
+ rtspu: 網址
+   
+-
++-->
+   
+ 
+ fonts package



[gentoo-commits] gentoo-x86 commit in dev-db/barman: barman-1.3.3.ebuild ChangeLog

2014-08-20 Thread Patrick Lauer (patrick)
patrick 14/08/21 05:45:24

  Modified: ChangeLog
  Added:barman-1.3.3.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.14 dev-db/barman/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/barman/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   20 May 2014 06:13:28 -  1.13
+++ ChangeLog   21 Aug 2014 05:45:24 -  1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/barman
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/barman/ChangeLog,v 1.13 2014/05/20 
06:13:28 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/barman/ChangeLog,v 1.14 2014/08/21 
05:45:24 patrick Exp $
+
+*barman-1.3.3 (21 Aug 2014)
+
+  21 Aug 2014; Patrick Lauer  +barman-1.3.3.ebuild:
+  Bump
 
 *barman-1.3.2 (20 May 2014)
 



1.1  dev-db/barman/barman-1.3.3.ebuild

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

Index: barman-1.3.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/barman/barman-1.3.3.ebuild,v 1.1 
2014/08/21 05:45:24 patrick Exp $
EAPI=5

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

inherit distutils-r1

DESCRIPTION="Administration tool for disaster recovery of PostgreSQL servers"

HOMEPAGE="http://www.pgbarman.org";
SRC_URI="http://downloads.sourceforge.net/project/pgbarman/${PV}/${P}.tar.gz";
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE=""

RDEPEND="dev-python/argh[${PYTHON_USEDEP}]
>=dev-python/psycopg-2[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
net-misc/rsync
dev-db/postgresql-server"
DEPEND=""






[gentoo-commits] gentoo-x86 commit in www-servers/monkeyd: metadata.xml ChangeLog

2014-08-20 Thread Patrick Lauer (patrick)
patrick 14/08/21 05:24:22

  Modified: metadata.xml ChangeLog
  Log:
  Remove unneeded useflag description from metadata.xml
  
  (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.9  www-servers/monkeyd/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/monkeyd/metadata.xml?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/monkeyd/metadata.xml?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/monkeyd/metadata.xml?r1=1.8&r2=1.9

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/monkeyd/metadata.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- metadata.xml5 Feb 2014 13:46:33 -   1.8
+++ metadata.xml21 Aug 2014 05:24:22 -  1.9
@@ -9,6 +9,5 @@
Enable lots of debugging info
Use dev-libs/jemalloc for 
allocations
Do not install shared lib and include 
files
-   Enable musl compatibility mode

 



1.82 www-servers/monkeyd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/monkeyd/ChangeLog?rev=1.82&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/monkeyd/ChangeLog?rev=1.82&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/monkeyd/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog   21 Aug 2014 01:19:42 -  1.81
+++ ChangeLog   21 Aug 2014 05:24:22 -  1.82
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/monkeyd
 # Copyright 1999- Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.81 
2014/08/21 01:19:42 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.82 
2014/08/21 05:24:22 patrick Exp $
+
+  21 Aug 2014; Patrick Lauer  metadata.xml:
+  Remove unneeded useflag description from metadata.xml
 
   21 Aug 2014; Anthony G. Basile  -monkeyd-1.2.2.ebuild,
   -monkeyd-1.5.2.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-vcs/git: ChangeLog git-2.1.0.ebuild

2014-08-20 Thread Lars Wendler (polynomial-c)
polynomial-c14/08/21 05:16:37

  Modified: ChangeLog git-2.1.0.ebuild
  Log:
  Don't install no longer available contrib files (git-diffall and vim)
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.277dev-vcs/git/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.277&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.277&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?r1=1.276&r2=1.277

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v
retrieving revision 1.276
retrieving revision 1.277
diff -u -r1.276 -r1.277
--- ChangeLog   19 Aug 2014 19:10:15 -  1.276
+++ ChangeLog   21 Aug 2014 05:16:37 -  1.277
@@ -1,6 +1,9 @@
 # ChangeLog for dev-vcs/git
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.276 2014/08/19 
19:10:15 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.277 2014/08/21 
05:16:37 polynomial-c Exp $
+
+  21 Aug 2014; Lars Wendler  git-2.1.0.ebuild:
+  Don't install no longer available contrib files (git-diffall and vim).
 
 *git-2.1.0 (19 Aug 2014)
 



1.2  dev-vcs/git/git-2.1.0.ebuild

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

Index: git-2.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- git-2.1.0.ebuild19 Aug 2014 19:10:15 -  1.1
+++ git-2.1.0.ebuild21 Aug 2014 05:16:37 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.1.0.ebuild,v 1.1 
2014/08/19 19:10:15 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.1.0.ebuild,v 1.2 
2014/08/21 05:16:37 polynomial-c Exp $
 
 EAPI=5
 
@@ -420,10 +420,6 @@
cd "${S}"
fi
 
-   # git-diffall
-   dobin contrib/diffall/git-diffall
-   newdoc contrib/diffall/README git-diffall.txt
-
# diff-highlight
dobin contrib/diff-highlight/diff-highlight
newdoc contrib/diff-highlight/README README.diff-highlight
@@ -463,7 +459,6 @@
# completion - installed above
# credential/gnome-keyring TODO
# diff-highlight - done above
-   # diffall - done above
# emacs - installed above
# examples - these are stuff that is not used in Git anymore actually
# git-jump - done above
@@ -478,7 +473,7 @@
for i in \
buildsystems convert-objects fast-import \
hg-to-git hooks remotes2config.sh rerere-train.sh \
-   stats vim workdir \
+   stats workdir \
; do
cp -rf \
"${S}"/contrib/${i} \
@@ -526,7 +521,6 @@
 }
 
 src_test() {
-   # t7004 segfaults
local disabled=""
local tests_cvs="t9200-git-cvsexportcommit.sh \
t9400-git-cvsserver-server.sh \






[gentoo-commits] gentoo-x86 commit in net-libs/nodejs: nodejs-0.10.31.ebuild ChangeLog

2014-08-20 Thread Patrick Lauer (patrick)
patrick 14/08/21 03:47:31

  Modified: ChangeLog
  Added:nodejs-0.10.31.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.129net-libs/nodejs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   6 Aug 2014 08:44:37 -   1.128
+++ ChangeLog   21 Aug 2014 03:47:31 -  1.129
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/nodejs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.128 
2014/08/06 08:44:37 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.129 
2014/08/21 03:47:31 patrick Exp $
+
+*nodejs-0.10.31 (21 Aug 2014)
+
+  21 Aug 2014; Patrick Lauer  +nodejs-0.10.31.ebuild:
+  Bump
 
   06 Aug 2014; Patrick Lauer  -nodejs-0.10.21.ebuild:
   Remove old



1.1  net-libs/nodejs/nodejs-0.10.31.ebuild

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

Index: nodejs-0.10.31.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.10.31.ebuild,v 1.1 
2014/08/21 03:47:31 patrick Exp $

EAPI=5

# has known failures. sigh.
RESTRICT="test"

PYTHON_COMPAT=( python2_{6,7} )

inherit python-any-r1 pax-utils toolchain-funcs

DESCRIPTION="Evented IO for V8 Javascript"
HOMEPAGE="http://nodejs.org/";
SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz";

LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~x64-macos"
IUSE="+npm +snapshot"

RDEPEND="dev-libs/openssl"
DEPEND="${PYTHON_DEPS}
${RDEPEND}"

S=${WORKDIR}/node-v${PV}

src_prepare() {
# fix compilation on Darwin
# http://code.google.com/p/gyp/issues/detail?id=260
sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || 
die

# make sure we use python2.* while using gyp
sed -i -e  "s/python/python2/" deps/npm/node_modules/node-gyp/gyp/gyp 
|| die

# less verbose install output (stating the same as portage, basically)
sed -i -e "/print/d" tools/install.py || die

tc-export CC CXX
}

src_configure() {
local myconf=""
! use npm && myconf="--without-npm"
! use snapshot && myconf="${myconf} --without-snapshot"

"${PYTHON}" configure --prefix="${EPREFIX}"/usr \
--shared-openssl --shared-zlib --without-dtrace ${myconf} || die
}

src_compile() {
local V=1
export V
emake out/Makefile
emake -C out mksnapshot
pax-mark m out/Release/mksnapshot
emake
}

src_install() {
"${PYTHON}" tools/install.py install "${D}"

use npm && dohtml -r "${ED}"/usr/lib/node_modules/npm/html/*
rm -rf "${ED}"/usr/lib/node_modules/npm/doc 
"${ED}"/usr/lib/node_modules/npm/html
rm -rf "${ED}"/usr/lib/dtrace

pax-mark -m "${ED}"/usr/bin/node
}

src_test() {
"${PYTHON}" tools/test.py --mode=release simple message || die
}






[gentoo-commits] gentoo-x86 commit in sys-cluster/ceph/files: ceph.initd ceph.confd

2014-08-20 Thread Yixun Lan (dlan)
dlan14/08/21 03:39:21

  Added:ceph.initd ceph.confd
  Log:
  roll back old stable versions, bug 520250
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 0xAABEFD55)

Revision  ChangesPath
1.5  sys-cluster/ceph/files/ceph.initd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph.initd?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph.initd?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph.initd?r1=1.4&r2=1.5




1.3  sys-cluster/ceph/files/ceph.confd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph.confd?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph.confd?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph.confd?r1=1.2&r2=1.3







[gentoo-commits] gentoo-x86 commit in sys-cluster/ceph: ChangeLog ceph-0.56.3.ebuild

2014-08-20 Thread Yixun Lan (dlan)
dlan14/08/21 03:39:21

  Modified: ChangeLog
  Added:ceph-0.56.3.ebuild
  Log:
  roll back old stable versions, bug 520250
  
  (Portage version: 2.2.12/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 0xAABEFD55)

Revision  ChangesPath
1.57 sys-cluster/ceph/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/ChangeLog?rev=1.57&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/ChangeLog?rev=1.57&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/ceph/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   19 Aug 2014 08:57:46 -  1.56
+++ ChangeLog   21 Aug 2014 03:39:21 -  1.57
@@ -1,6 +1,10 @@
 # ChangeLog for sys-cluster/ceph
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ceph/ChangeLog,v 1.56 
2014/08/19 08:57:46 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ceph/ChangeLog,v 1.57 
2014/08/21 03:39:21 dlan Exp $
+
+  21 Aug 2014; Yixun Lan  ceph-0.56.3.ebuild,
+  +files/ceph.confd, +files/ceph.initd:
+  roll back old stable versions, bug 520250
 
 *ceph-0.67.10 (19 Aug 2014)
 



1.5  sys-cluster/ceph/ceph-0.56.3.ebuild

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







[gentoo-commits] gentoo-x86 commit in dev-db/mysql-init-scripts/files: conf.d-2.0 init.d-2.0 mysqlmanager.conf.d mysqlmanager.rc6 mysql-5.1.67-init.d-r1 mysql.rc6 mysql.conf.d

2014-08-20 Thread Brian Evans (grknight)
grknight14/08/21 03:08:13

  Added:conf.d-2.0 init.d-2.0
  Removed:  mysqlmanager.conf.d mysqlmanager.rc6
mysql-5.1.67-init.d-r1 mysql.rc6 mysql.conf.d
  Log:
  Verision bump to 2.0 adding a simple checkconfig and support for chroot
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.1  dev-db/mysql-init-scripts/files/conf.d-2.0

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/files/conf.d-2.0?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/files/conf.d-2.0?rev=1.1&content-type=text/plain

Index: conf.d-2.0
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/files/conf.d-2.0,v 
1.1 2014/08/21 03:08:13 grknight Exp $

# If you want a non-stock location for the config file, uncomment or update
# either of these as needed. If you do use it, you must make sure that none of
# your socket, pidfile, datadir, logfiles, binary logs, relay logs or InnoDB
# files collide with each other.
MY_CNF="/etc/mysql/my.cnf"
#MY_CNF="${MY_CNF:-/etc/${SVCNAME}/my.cnf}"
#MY_CNF="${MY_CNF:-/etc/mysql/my-${SVCNAME/mysql.}.cnf}"

# Place any additional arguments here that you might need
# Common/useful options:
# --skip-slave-start=1 - For bringing up replication initially
# --server-id=NNN - Server ID for replication
# --skip-networking - lock it down to UNIX sockets only
MY_ARGS=""

# This setting (in seconds) should be high enough to allow InnoDB to do a full
# checkpoint recovery. 900 is the default used in the upstream RPM startup
# scripts. 30 seconds should be sufficent if you just have a tiny <1GiB
# database. After the core startup is done, we wait this long for the UNIX
# socket to appear.
STARTUP_TIMEOUT="900"

# This is how long, in milliseconds, we wait for pidfile to be created, early
# in the startup.
STARTUP_EARLY_TIMEOUT="1000"

# How long (in seconds) should we wait for shutdown?
STOP_TIMEOUT=120

# integer [-20 .. 19 ] default 0
# change the priority of the server -20 (high) to 19 (low)
# see nice(1) for description
#NICE=0

# See start-stop-daemon(8) for possible settings
#IONICE=2

# If defined, --verbose gets passed to S-S-D
#DEBUG=1

# Depending on your usage of MySQL, you may also wish to start it after some
# other services are up. Uncomment the lines below as needed. If these aren't
# enough for you, we encourage you to file a bug, and help us understand how
# you are using MySQL.

# Do your MySQL ACLs refer to hostnames not in your /etc/hosts?
# If so, you need DNS before you can accept connections.
# Avoid dependency circular loops if you use MySQL to power a local DNS server.
#rc_use="dns"
#rc_after="dns"

# Does your MySQL bind to an IP on an interface other than net.lo?
# Alternatively you might wish to specify the exact interface here.
#rc_use="net"
#rc_after="net"

# Do you store your MySQL files on a SAN or other network filesystem, that is
# provided by the netmount init script?
#rc_need="netmount"

# Or from NFS? P.S. This is not a good idea in most cases, but does have some
# valid usage cases, so we provide the option.
#rc_need="nfsmount"

# Should any one of the instances satisfy the requirement for MySQL coming up?
# By default, we say no.
[ "${SVCNAME}" != mysql ] && rc_provide="!mysql"
# But uncomment this next instead if you think it should.
#rc_provide="mysql"

# The conditional above has a false-positive "failure" return value as a
# side-effect, and since it's the last statement, without the next line, this
# script returns failure.
return 0
# vim: ft=gentoo-conf-d et ts=4 sw=4:



1.1  dev-db/mysql-init-scripts/files/init.d-2.0

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/files/init.d-2.0?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/files/init.d-2.0?rev=1.1&content-type=text/plain

Index: init.d-2.0
===
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/files/init.d-2.0,v 
1.1 2014/08/21 03:08:13 grknight Exp $

extra_commands="checkconfig"

depend() {
use net.lo
# localmount needed for $basedir
need localmount
}

get_config() {
my_print_defaults --config-file="$1" mysqld |
sed -n -e "s/^--$2=//p"
}

mysql_svcname() {
local ebextra=
case "${SVCNAME}" in
mysql*) ;;
*) ebextra=" (mysql)" ;;
esac
echo "${SVCNAME}${ebextra}"
}

start() {
# Check for old conf.d variables 

[gentoo-commits] gentoo-x86 commit in dev-db/mysql-init-scripts: mysql-init-scripts-2.0.ebuild ChangeLog mysql-init-scripts-1.2.ebuild mysql-init-scripts-2.0_pre1-r7.ebuild

2014-08-20 Thread Brian Evans (grknight)
grknight14/08/21 03:08:13

  Modified: ChangeLog
  Added:mysql-init-scripts-2.0.ebuild
  Removed:  mysql-init-scripts-1.2.ebuild
mysql-init-scripts-2.0_pre1-r7.ebuild
  Log:
  Verision bump to 2.0 adding a simple checkconfig and support for chroot
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.41 dev-db/mysql-init-scripts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/ChangeLog?rev=1.41&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/ChangeLog?rev=1.41&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   10 Aug 2014 20:01:21 -  1.40
+++ ChangeLog   21 Aug 2014 03:08:13 -  1.41
@@ -1,6 +1,15 @@
 # ChangeLog for dev-db/mysql-init-scripts
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/ChangeLog,v 1.40 
2014/08/10 20:01:21 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/ChangeLog,v 1.41 
2014/08/21 03:08:13 grknight Exp $
+
+*mysql-init-scripts-2.0 (21 Aug 2014)
+
+  21 Aug 2014; Brian Evans  +files/conf.d-2.0,
+  +files/init.d-2.0, +mysql-init-scripts-2.0.ebuild,
+  -files/mysql-5.1.67-init.d-r1, -files/mysql.conf.d, -files/mysql.rc6,
+  -files/mysqlmanager.conf.d, -files/mysqlmanager.rc6,
+  -mysql-init-scripts-1.2.ebuild, -mysql-init-scripts-2.0_pre1-r7.ebuild:
+  Verision bump to 2.0 adding a simple checkconfig and support for chroot
 
   10 Aug 2014; Sergei Trofimovich 
   mysql-init-scripts-1.2.ebuild, mysql-init-scripts-2.0_pre1-r6.ebuild,



1.1  dev-db/mysql-init-scripts/mysql-init-scripts-2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/mysql-init-scripts-2.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-init-scripts/mysql-init-scripts-2.0.ebuild?rev=1.1&content-type=text/plain

Index: mysql-init-scripts-2.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/mysql-init-scripts-2.0.ebuild,v
 1.1 2014/08/21 03:08:13 grknight Exp $

EAPI=5

inherit systemd

DESCRIPTION="Gentoo MySQL init scripts"
HOMEPAGE="http://www.gentoo.org/";
SRC_URI=""

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~sparc-fbsd ~x86-fbsd"
IUSE=""

DEPEND=""
# This _will_ break with MySQL 5.0, 4.x, 3.x
# It also NEEDS openrc for the save_options/get_options builtins.
RDEPEND="!

[gentoo-commits] proj/qt:master commit in: app-crypt/qca/

2014-08-20 Thread Davide Pesavento
commit: c91b9572689a22e2b804b62244ea9946881809b4
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Aug 21 00:33:52 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Aug 21 00:33:52 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=c91b9572

[app-crypt/qca] Minor cleanup.

Package-Manager: portage-2.2.12

---
 app-crypt/qca/metadata.xml| 26 +++---
 app-crypt/qca/qca-.ebuild | 50 +++
 2 files changed, 36 insertions(+), 40 deletions(-)

diff --git a/app-crypt/qca/metadata.xml b/app-crypt/qca/metadata.xml
index 379ecd4..71e6485 100644
--- a/app-crypt/qca/metadata.xml
+++ b/app-crypt/qca/metadata.xml
@@ -1,16 +1,18 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
-   
-   Enable botan plugin
-   Enable cyrus-sasl plugin
-   Enable gcrypt plugin
-   Enable GnuPG plugin
-   Enable logger plugin
-   Enable NSS plugin
-   Enable OpenSSL plugin
-   Enable PKCS#11 plugin
-   Enable softstore plugin
-   
+crypto
+qt
+kde
+
+   Enable botan plugin
+   Enable gcrypt plugin
+   Enable GnuPG plugin
+   Enable logger plugin
+   Enable NSS plugin
+   Enable OpenSSL plugin
+   Enable PKCS#11 plugin
+   Enable SASL plugin
+   Enable softstore plugin
+
 

diff --git a/app-crypt/qca/qca-.ebuild b/app-crypt/qca/qca-.ebuild
index f290f43..395eb61 100644
--- a/app-crypt/qca/qca-.ebuild
+++ b/app-crypt/qca/qca-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit cmake-utils git-r3
+inherit multilib cmake-utils git-r3
 
 DESCRIPTION="Qt Cryptographic Architecture (QCA)"
 HOMEPAGE="http://delta.affinix.com/qca/";
@@ -22,58 +22,52 @@ RDEPEND="
!app-crypt/qca-ossl
!app-crypt/qca-pkcs11
botan? ( dev-libs/botan )
-   sasl? ( dev-libs/cyrus-sasl )
gcrypt? ( dev-libs/libgcrypt:= )
gpg? ( app-crypt/gnupg )
nss? ( dev-libs/nss )
openssl? ( dev-libs/openssl:0 )
pkcs11? (
dev-libs/openssl:0
-   >=dev-libs/pkcs11-helper-1.02
+   dev-libs/pkcs11-helper
)
qt4? ( dev-qt/qtcore:4 )
qt5? (
dev-qt/qtcore:5
dev-qt/qtconcurrent:5
dev-qt/qtnetwork:5
-   )"
+   )
+   sasl? ( dev-libs/cyrus-sasl:2 )
+"
 DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? (
qt4? ( dev-qt/qttest:4 )
qt5? ( dev-qt/qttest:5 )
)
-   ! []"
+qca_plugin_use() {
echo "-DWITH_${2:-$1}_PLUGIN=$(use $1 && echo yes || echo no)"
 }
 
 src_configure() {
local mycmakeargs=(
+   -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/$(usev 
qt4 || usev qt5)/plugins/crypto"
$(cmake-utils_use qt4 QT4_BUILD)
-   $(cmake-utils_use test BUILD_TESTS)
-   $(with_plugin_use botan)
-   $(with_plugin_use sasl cyrus-sasl)
-   $(with_plugin_use gcrypt)
-   $(with_plugin_use gpg gnupg)
-   $(with_plugin_use logger)
-   $(with_plugin_use nss)
-   $(with_plugin_use openssl ossl)
-   $(with_plugin_use pkcs11)
-   $(with_plugin_use softstore)
+   $(qca_plugin_use botan)
+   $(qca_plugin_use gcrypt)
+   $(qca_plugin_use gpg gnupg)
+   $(qca_plugin_use logger)
+   $(qca_plugin_use nss)
+   $(qca_plugin_use openssl ossl)
+   $(qca_plugin_use pkcs11)
+   $(qca_plugin_use sasl cyrus-sasl)
+   $(qca_plugin_use softstore)
+   $(cmake-utils_use_build test TESTS)
)
-   if use qt4; then
-   
mycmakeargs+=(-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt4/plugins/crypto")
-   else
-   
mycmakeargs+=(-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt5/plugins/crypto")
-   fi
-
cmake-utils_src_configure
 }
 
@@ -81,14 +75,14 @@ src_install() {
cmake-utils_src_install
 
if use doc; then
-   pushd "${BUILD_DIR}"
-   doxygen Doxyfile
+   pushd "${BUILD_DIR}" >/dev/null
+   doxygen Doxyfile || die
dohtml apidocs/html/*
-   popd
+   popd >/dev/null
fi
 
if use examples; then
-   insinto /usr/share/doc/${PF}/
+   insinto /usr/share/doc/${PF}
doins -r "${S}"/examples
fi
 }



[gentoo-commits] gentoo commit in xml/htdocs/proj/en/elections/trustees/2014: - New directory

2014-08-20 Thread Jorge Manuel B. S. Vicetto (jmbsvicetto)
jmbsvicetto14/08/21 00:38:58

  Log:
  Directory /var/cvsroot/gentoo/xml/htdocs/proj/en/elections/trustees/2014 
added to the repository



[gentoo-commits] gentoo-x86 commit in media-plugins/mythplugins: ChangeLog mythplugins-0.26.0_p20130322.ebuild mythplugins-0.26.0_p20130729.ebuild mythplugins-0.27.1_p20140527.ebuild mythplugins-0.27_

2014-08-20 Thread Richard Freeman (rich0)
rich0   14/08/21 01:07:17

  Modified: ChangeLog
  Removed:  mythplugins-0.26.0_p20130322.ebuild
mythplugins-0.26.0_p20130729.ebuild
mythplugins-0.27.1_p20140527.ebuild
mythplugins-0.27_p20131124.ebuild
mythplugins-0.26.0_p20130630.ebuild
mythplugins-0.27_p20130924.ebuild
mythplugins-0.26.0_p20130419.ebuild
mythplugins-0.26.0_p20130526.ebuild
  Log:
  Clean out old versions.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x08C170DE55EC123A)

Revision  ChangesPath
1.32 media-plugins/mythplugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/ChangeLog?rev=1.32&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/ChangeLog?rev=1.32&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythplugins/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   18 Aug 2014 02:25:27 -  1.31
+++ ChangeLog   21 Aug 2014 01:07:16 -  1.32
@@ -1,6 +1,13 @@
 # ChangeLog for media-plugins/mythplugins
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/ChangeLog,v 1.31 
2014/08/18 02:25:27 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/ChangeLog,v 1.32 
2014/08/21 01:07:16 rich0 Exp $
+
+  21 Aug 2014; Richard Freeman 
+  -mythplugins-0.26.0_p20130322.ebuild, -mythplugins-0.26.0_p20130419.ebuild,
+  -mythplugins-0.26.0_p20130526.ebuild, -mythplugins-0.26.0_p20130630.ebuild,
+  -mythplugins-0.26.0_p20130729.ebuild, -mythplugins-0.27_p20130924.ebuild,
+  -mythplugins-0.27_p20131124.ebuild, -mythplugins-0.27.1_p20140527.ebuild:
+  Clean out old versions.
 
 *mythplugins-0.27.1_p20140817 (18 Aug 2014)
 






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

2014-08-20 Thread Manuel Rueger (mrueg)
mrueg   14/08/21 02:51:31

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

Revision  ChangesPath
1.428app-text/poppler/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v
retrieving revision 1.427
retrieving revision 1.428
diff -u -r1.427 -r1.428
--- ChangeLog   13 Jul 2014 10:39:44 -  1.427
+++ ChangeLog   21 Aug 2014 02:51:31 -  1.428
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/poppler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.427 
2014/07/13 10:39:44 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.428 
2014/08/21 02:51:31 mrueg Exp $
+
+*poppler-0.26.3 (21 Aug 2014)
+
+  21 Aug 2014; Manuel Rüger  +poppler-0.26.3.ebuild:
+  Version bump.
 
   13 Jul 2014; Johannes Huber  -poppler-0.26.1.ebuild,
   poppler-0.26.2.ebuild, poppler-.ebuild:



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

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

Index: poppler-0.26.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.26.3.ebuild,v 1.1 
2014/08/21 02:51:31 mrueg Exp $

EAPI=5

inherit cmake-utils toolchain-funcs

if [[ "${PV}" == "" ]] ; then
inherit git-r3
EGIT_REPO_URI="git://git.freedesktop.org/git/${PN}/${PN}"
KEYWORDS=""
SLOT="0/"
else
SRC_URI="http://poppler.freedesktop.org/${P}.tar.xz";
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0/46"
fi

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

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

# No test data provided
RESTRICT="test"

COMMON_DEPEND="
>=media-libs/fontconfig-2.6.0
>=media-libs/freetype-2.3.9
sys-libs/zlib
cairo? (
dev-libs/glib:2
>=x11-libs/cairo-1.10.0
introspection? ( >=dev-libs/gobject-introspection-1.32.1 )
)
curl? ( net-misc/curl )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( media-libs/openjpeg:0 )
lcms? ( media-libs/lcms:2 )
png? ( media-libs/libpng:0= )
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtxml:5
)
tiff? ( media-libs/tiff:0 )
"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
"
RDEPEND="${COMMON_DEPEND}
cjk? ( >=app-text/poppler-data-0.4.4 )
"

DOCS=(AUTHORS NEWS README README-XPDF TODO)

PATCHES=( "${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch" )

src_configure() {
local mycmakeargs=(
-DBUILD_GTK_TESTS=OFF
-DBUILD_QT4_TESTS=OFF
-DBUILD_QT5_TESTS=OFF
-DBUILD_CPP_TESTS=OFF
-DENABLE_SPLASH=ON
-DENABLE_ZLIB=ON
-DENABLE_XPDF_HEADERS=ON
$(cmake-utils_use_enable curl LIBCURL)
$(cmake-utils_use_enable cxx CPP)
$(cmake-utils_use_enable jpeg2k LIBOPENJPEG)
$(cmake-utils_use_enable utils)
$(cmake-utils_use_with cairo)
$(cmake-utils_use_with introspection GObjectIntrospection)
$(cmake-utils_use_with jpeg)
$(cmake-utils_use_with png)
$(cmake-utils_use_with qt4)
$(cmake-utils_use_find_package qt5 Qt5Core)
$(cmake-utils_use_with tiff)
)
if use lcms; then
mycmakeargs+=(-DENABLE_CMS=lcms2)
else
mycmakeargs+=(-DENABLE_CMS=)
fi

cmake-utils_src_configure
}

src_install() {
 

[gentoo-commits] proj/qt:master commit in: app-crypt/qca/

2014-08-20 Thread Davide Pesavento
commit: a00efb254eca85bbfca006d9f901e55d1e90cdfa
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Aug 21 01:00:13 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Aug 21 01:00:13 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=a00efb25

[app-crypt/qca] Specify correct QCA_FEATURE_INSTALL_DIR.

Package-Manager: portage-2.2.12

---
 app-crypt/qca/qca-.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-crypt/qca/qca-.ebuild b/app-crypt/qca/qca-.ebuild
index 395eb61..d3bed01 100644
--- a/app-crypt/qca/qca-.ebuild
+++ b/app-crypt/qca/qca-.ebuild
@@ -13,7 +13,9 @@ EGIT_REPO_URI="git://anongit.kde.org/${PN}.git"
 LICENSE="LGPL-2.1"
 SLOT="2"
 KEYWORDS=""
+
 IUSE="botan debug doc examples gcrypt gpg logger nss openssl pkcs11 +qt4 qt5 
sasl softstore test"
+REQUIRED_USE="^^ ( qt4 qt5 )"
 
 RDEPEND="
!app-crypt/qca-cyrus-sasl
@@ -45,7 +47,6 @@ DEPEND="${RDEPEND}
qt5? ( dev-qt/qttest:5 )
)
 "
-REQUIRED_USE="^^ ( qt4 qt5 )"
 
 DOCS=( README TODO )
 
@@ -55,7 +56,8 @@ qca_plugin_use() {
 
 src_configure() {
local mycmakeargs=(
-   -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/$(usev 
qt4 || usev qt5)/plugins/crypto"
+   -DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/$(usex 
qt4 qt4 qt5)/plugins/crypto"
+   -DQCA_FEATURE_INSTALL_DIR="${EPREFIX}/usr/$(usex qt4 share 
$(get_libdir))/$(usex qt4 qt4 qt5)/mkspecs/features"
$(cmake-utils_use qt4 QT4_BUILD)
$(qca_plugin_use botan)
$(qca_plugin_use gcrypt)



[gentoo-commits] gentoo-x86 commit in media-tv/mythtv: ChangeLog mythtv-0.26.0_p20130419.ebuild mythtv-0.26.0_p20130729.ebuild mythtv-0.26.0_p20130526.ebuild mythtv-0.26.0_p20130630.ebuild mythtv-0.26

2014-08-20 Thread Richard Freeman (rich0)
rich0   14/08/21 01:06:42

  Modified: ChangeLog
  Removed:  mythtv-0.26.0_p20130419.ebuild
mythtv-0.26.0_p20130729.ebuild
mythtv-0.26.0_p20130526.ebuild
mythtv-0.26.0_p20130630.ebuild
mythtv-0.26.0_p20130322.ebuild
mythtv-0.27_p20130924.ebuild
mythtv-0.27_p20131124.ebuild
mythtv-0.27.1_p20140527.ebuild
  Log:
  Clean out old versions.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0x08C170DE55EC123A)

Revision  ChangesPath
1.420media-tv/mythtv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.420&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.420&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?r1=1.419&r2=1.420

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v
retrieving revision 1.419
retrieving revision 1.420
diff -u -r1.419 -r1.420
--- ChangeLog   18 Aug 2014 02:23:56 -  1.419
+++ ChangeLog   21 Aug 2014 01:06:42 -  1.420
@@ -1,6 +1,13 @@
 # ChangeLog for media-tv/mythtv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.419 
2014/08/18 02:23:56 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.420 
2014/08/21 01:06:42 rich0 Exp $
+
+  21 Aug 2014; Richard Freeman 
+  -mythtv-0.26.0_p20130322.ebuild, -mythtv-0.26.0_p20130419.ebuild,
+  -mythtv-0.26.0_p20130526.ebuild, -mythtv-0.26.0_p20130630.ebuild,
+  -mythtv-0.26.0_p20130729.ebuild, -mythtv-0.27_p20130924.ebuild,
+  -mythtv-0.27_p20131124.ebuild, -mythtv-0.27.1_p20140527.ebuild:
+  Clean out old versions.
 
 *mythtv-0.27.1_p20140817 (18 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in www-servers/monkeyd: ChangeLog monkeyd-1.5.2.ebuild monkeyd-1.2.2.ebuild

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/21 01:19:42

  Modified: ChangeLog
  Removed:  monkeyd-1.5.2.ebuild monkeyd-1.2.2.ebuild
  Log:
  Remove vulnerable versions, bug #520220
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.81 www-servers/monkeyd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog   21 Aug 2014 01:17:56 -  1.80
+++ ChangeLog   21 Aug 2014 01:19:42 -  1.81
@@ -1,6 +1,10 @@
 # ChangeLog for www-servers/monkeyd
 # Copyright 1999- Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.80 
2014/08/21 01:17:56 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.81 
2014/08/21 01:19:42 blueness Exp $
+
+  21 Aug 2014; Anthony G. Basile  -monkeyd-1.2.2.ebuild,
+  -monkeyd-1.5.2.ebuild:
+  Remove vulnerable versions, bug #520220
 
   21 Aug 2014; Anthony G. Basile  monkeyd-1.5.3.ebuild:
   Stable for arm, ppc and ppc64.  Bug #520220






[gentoo-commits] gentoo-x86 commit in www-servers/monkeyd: monkeyd-1.5.3.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/21 01:17:56

  Modified: monkeyd-1.5.3.ebuild ChangeLog
  Log:
  Stable for arm, ppc and ppc64.  Bug #520220
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  www-servers/monkeyd/monkeyd-1.5.3.ebuild

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

Index: monkeyd-1.5.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/monkeyd/monkeyd-1.5.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- monkeyd-1.5.3.ebuild20 Aug 2014 16:00:01 -  1.3
+++ monkeyd-1.5.3.ebuild21 Aug 2014 01:17:56 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/monkeyd-1.5.3.ebuild,v 
1.3 2014/08/20 16:00:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/monkeyd-1.5.3.ebuild,v 
1.4 2014/08/21 01:17:56 blueness Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm ~mips ppc ppc64 x86"
 
 # ssl is broken, so we turn it off until fixed
 IUSE="-debug jemalloc php minimal elibc_musl elibc_uclibc monkeyd_plugins_auth 
monkeyd_plugins_cheetah cgi monkeyd_plugins_dirlisting fastcgi 
+monkeyd_plugins_liana monkeyd_plugins_logger monkeyd_plugins_mandril"



1.80 www-servers/monkeyd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   20 Aug 2014 16:00:01 -  1.79
+++ ChangeLog   21 Aug 2014 01:17:56 -  1.80
@@ -1,6 +1,9 @@
 # ChangeLog for www-servers/monkeyd
 # Copyright 1999- Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.79 
2014/08/20 16:00:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/monkeyd/ChangeLog,v 1.80 
2014/08/21 01:17:56 blueness Exp $
+
+  21 Aug 2014; Anthony G. Basile  monkeyd-1.5.3.ebuild:
+  Stable for arm, ppc and ppc64.  Bug #520220
 
   20 Aug 2014; Agostino Sarubbo  monkeyd-1.5.3.ebuild:
   Stable for x86, wrt bug #520220






[gentoo-commits] gentoo-x86 commit in dev-python/translationstring: translationstring-1.1-r1.ebuild ChangeLog

2014-08-20 Thread Ian Delaney (idella4)
idella4 14/08/21 01:22:27

  Modified: translationstring-1.1-r1.ebuild ChangeLog
  Log:
  drop py2.6 pypy2_0 add py3.4
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.5  
dev-python/translationstring/translationstring-1.1-r1.ebuild

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

Index: translationstring-1.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/translationstring/translationstring-1.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- translationstring-1.1-r1.ebuild 31 Mar 2014 21:13:30 -  1.4
+++ translationstring-1.1-r1.ebuild 21 Aug 2014 01:22:27 -  1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/translationstring/translationstring-1.1-r1.ebuild,v
 1.4 2014/03/31 21:13:30 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/translationstring/translationstring-1.1-r1.ebuild,v
 1.5 2014/08/21 01:22:27 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
 
 inherit distutils-r1
 



1.13 dev-python/translationstring/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   31 Mar 2014 21:13:30 -  1.12
+++ ChangeLog   21 Aug 2014 01:22:27 -  1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/translationstring
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v 
1.12 2014/03/31 21:13:30 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v 
1.13 2014/08/21 01:22:27 idella4 Exp $
+
+  21 Aug 2014; Ian Delaney  
translationstring-1.1-r1.ebuild:
+  drop py2.6 pypy2_0 add py3.4
 
   31 Mar 2014; Michał Górny  
translationstring-1.1-r1.ebuild:
   Add support for the new PyPy slotting.






[gentoo-commits] gentoo-x86 commit in x11-libs/libxcb: libxcb-1.10.ebuild ChangeLog

2014-08-20 Thread Mike Gilbert (floppym)
floppym 14/08/21 02:28:34

  Modified: libxcb-1.10.ebuild ChangeLog
  Log:
  Add missing ${PYTHON_DEPS} to DEPEND, bug 520146.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.15 x11-libs/libxcb/libxcb-1.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/libxcb-1.10.ebuild?rev=1.15&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/libxcb-1.10.ebuild?rev=1.15&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/libxcb-1.10.ebuild?r1=1.14&r2=1.15

Index: libxcb-1.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.10.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libxcb-1.10.ebuild  29 Jul 2014 14:27:27 -  1.14
+++ libxcb-1.10.ebuild  21 Aug 2014 02:28:34 -  1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.10.ebuild,v 1.14 
2014/07/29 14:27:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.10.ebuild,v 1.15 
2014/08/21 02:28:34 floppym Exp $
 
 EAPI=5
 
@@ -26,6 +26,7 @@
 # Note: ${PYTHON_USEDEP} needs to go verbatim
 DEPEND="${RDEPEND}
dev-libs/libxslt
+   ${PYTHON_DEPS}
$(python_gen_any_dep \

">=x11-proto/xcb-proto-1.10[${MULTILIB_USEDEP},\${PYTHON_USEDEP}]")"
 



1.144x11-libs/libxcb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog   29 Jul 2014 14:27:27 -  1.143
+++ ChangeLog   21 Aug 2014 02:28:34 -  1.144
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libxcb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.143 
2014/07/29 14:27:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.144 
2014/08/21 02:28:34 floppym Exp $
+
+  21 Aug 2014; Mike Gilbert  libxcb-1.10.ebuild:
+  Add missing ${PYTHON_DEPS} to DEPEND, bug 520146.
 
   29 Jul 2014; Michał Górny  libxcb-1.10.ebuild,
   libxcb-1.9.3-r1.ebuild:






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

2014-08-20 Thread Ian Delaney (idella4)
idella4 14/08/21 01:30:14

  Modified: ChangeLog
  Added:colander-1.0_beta1.ebuild
  Log:
  bump; drop py2.6 pypy2_0 add py3.4, tidy
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.12 dev-python/colander/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   31 Mar 2014 20:50:55 -  1.11
+++ ChangeLog   21 Aug 2014 01:30:14 -  1.12
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/colander
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v 1.11 
2014/03/31 20:50:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v 1.12 
2014/08/21 01:30:14 idella4 Exp $
+
+*colander-1.0_beta1 (21 Aug 2014)
+
+  21 Aug 2014; Ian Delaney  +colander-1.0_beta1.ebuild:
+  bump; drop py2.6 pypy2_0 add py3.4, tidy
 
   31 Mar 2014; Michał Górny  colander-1.0_alpha1-r1.ebuild:
   Add support for the new PyPy slotting.



1.1  dev-python/colander/colander-1.0_beta1.ebuild

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

Index: colander-1.0_beta1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/colander/colander-1.0_beta1.ebuild,v 1.1 
2014/08/21 01:30:14 idella4 Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION="A simple schema-based serialization and deserialization library"
HOMEPAGE="http://docs.pylonsproject.org/projects/colander/en/latest/ 
http://pypi.python.org/pypi/colander";
MY_P=${P/_beta1/b1}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"

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

# MIT license is used by included (modified) iso8601.py code.
LICENSE="repoze MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"

# Depend on an ebuild of translationstring with Python 3 support.
RDEPEND=">=dev-python/translationstring-1.1[${PYTHON_USEDEP}]"

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

# Include COPYRIGHT.txt because the license seems to require it.
DOCS=( CHANGES.txt COPYRIGHT.txt README.txt )

python_prepare_all() {
# Remove pylons theme since it's not included in source
sed -e "/# Add and use Pylons theme/,+37d" -i docs/conf.py || die

distutils-r1_python_prepare_all
}

python_compile_all() {
if use doc; then
# https://github.com/Pylons/colander/issues/38
emake -C docs html SPHINXOPTS=""
fi
}

python_test() {
nosetests || die "Tests fail with ${EPYTHON}"
}

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






[gentoo-commits] proj/hardened-dev:musl commit in: sys-devel/gcc/

2014-08-20 Thread Anthony G. Basile
commit: 5b44a1303170a64536f2f4129a66ed09019042bc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Aug 21 00:58:03 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Aug 21 00:58:03 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=5b44a130

sys-devel/gcc-4.8.3-r99: remove ~mips to prevent it building

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 0xF52D4BBA

---
 sys-devel/gcc/gcc-4.8.3-r99.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-4.8.3-r99.ebuild 
b/sys-devel/gcc/gcc-4.8.3-r99.ebuild
index 987c682..4a64149 100644
--- a/sys-devel/gcc/gcc-4.8.3-r99.ebuild
+++ b/sys-devel/gcc/gcc-4.8.3-r99.ebuild
@@ -28,7 +28,7 @@ DESCRIPTION="The GNU Compiler Collection"
 
 LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ 
gcc-runtime-library-exception-3.1 ) FDL-1.3+"
 
-KEYWORDS="~amd64 ~arm ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



[gentoo-commits] proj/releng:master commit in: tools-musl/portage.i686.hardened/, tools-musl/portage.armv7a.hardened/, ...

2014-08-20 Thread Anthony G. Basile
commit: 6ec34a2b15a33d1e278bcb8a1c9f9e8ac2d65c31
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Aug 21 01:01:37 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Aug 21 01:01:37 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=6ec34a2b

tools-musl: update ld path for gcc-4.7.4

---
 tools-musl/portage.amd64.hardened/bashrc  | 2 +-
 tools-musl/portage.amd64.vanilla/bashrc   | 2 +-
 tools-musl/portage.armv7a.hardened/bashrc | 2 +-
 tools-musl/portage.armv7a.vanilla/bashrc  | 2 +-
 tools-musl/portage.i686.hardened/bashrc   | 2 +-
 tools-musl/portage.mipsel3.vanilla/bashrc | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools-musl/portage.amd64.hardened/bashrc 
b/tools-musl/portage.amd64.hardened/bashrc
index 70b67d2..b44ab32 100644
--- a/tools-musl/portage.amd64.hardened/bashrc
+++ b/tools-musl/portage.amd64.hardened/bashrc
@@ -8,7 +8,7 @@ post_src_install() {
 /usr/lib
 /usr/local/lib
 /usr/lib/opengl/xorg-x11/lib
-/usr/lib/gcc/${CHOST}/4.7.3
+/usr/lib/gcc/${CHOST}/4.7.4
 /usr/${CHOST}/lib
 /usr/games/lib
 EOF

diff --git a/tools-musl/portage.amd64.vanilla/bashrc 
b/tools-musl/portage.amd64.vanilla/bashrc
index 70b67d2..adaf162 100644
--- a/tools-musl/portage.amd64.vanilla/bashrc
+++ b/tools-musl/portage.amd64.vanilla/bashrc
@@ -8,7 +8,7 @@ post_src_install() {
 /usr/lib
 /usr/local/lib
 /usr/lib/opengl/xorg-x11/lib
-/usr/lib/gcc/${CHOST}/4.7.3
+/usr/lib/gcc/${CHOST}/4.7.7
 /usr/${CHOST}/lib
 /usr/games/lib
 EOF

diff --git a/tools-musl/portage.armv7a.hardened/bashrc 
b/tools-musl/portage.armv7a.hardened/bashrc
index 70b67d2..b44ab32 100644
--- a/tools-musl/portage.armv7a.hardened/bashrc
+++ b/tools-musl/portage.armv7a.hardened/bashrc
@@ -8,7 +8,7 @@ post_src_install() {
 /usr/lib
 /usr/local/lib
 /usr/lib/opengl/xorg-x11/lib
-/usr/lib/gcc/${CHOST}/4.7.3
+/usr/lib/gcc/${CHOST}/4.7.4
 /usr/${CHOST}/lib
 /usr/games/lib
 EOF

diff --git a/tools-musl/portage.armv7a.vanilla/bashrc 
b/tools-musl/portage.armv7a.vanilla/bashrc
index 70b67d2..b44ab32 100644
--- a/tools-musl/portage.armv7a.vanilla/bashrc
+++ b/tools-musl/portage.armv7a.vanilla/bashrc
@@ -8,7 +8,7 @@ post_src_install() {
 /usr/lib
 /usr/local/lib
 /usr/lib/opengl/xorg-x11/lib
-/usr/lib/gcc/${CHOST}/4.7.3
+/usr/lib/gcc/${CHOST}/4.7.4
 /usr/${CHOST}/lib
 /usr/games/lib
 EOF

diff --git a/tools-musl/portage.i686.hardened/bashrc 
b/tools-musl/portage.i686.hardened/bashrc
index 70b67d2..b44ab32 100644
--- a/tools-musl/portage.i686.hardened/bashrc
+++ b/tools-musl/portage.i686.hardened/bashrc
@@ -8,7 +8,7 @@ post_src_install() {
 /usr/lib
 /usr/local/lib
 /usr/lib/opengl/xorg-x11/lib
-/usr/lib/gcc/${CHOST}/4.7.3
+/usr/lib/gcc/${CHOST}/4.7.4
 /usr/${CHOST}/lib
 /usr/games/lib
 EOF

diff --git a/tools-musl/portage.mipsel3.vanilla/bashrc 
b/tools-musl/portage.mipsel3.vanilla/bashrc
index 70b67d2..b44ab32 100644
--- a/tools-musl/portage.mipsel3.vanilla/bashrc
+++ b/tools-musl/portage.mipsel3.vanilla/bashrc
@@ -8,7 +8,7 @@ post_src_install() {
 /usr/lib
 /usr/local/lib
 /usr/lib/opengl/xorg-x11/lib
-/usr/lib/gcc/${CHOST}/4.7.3
+/usr/lib/gcc/${CHOST}/4.7.4
 /usr/${CHOST}/lib
 /usr/games/lib
 EOF



[gentoo-commits] proj/releng:master commit in: tools-musl/portage.i686.hardened/, tools-musl/portage.armv7a.hardened/, ...

2014-08-20 Thread Anthony G. Basile
commit: efb4bfd1b8fbf41359b23dc88d1766c926e49713
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Aug 21 01:00:52 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Aug 21 01:00:52 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=efb4bfd1

tools-musl: migrate masked packages to tree profiles

---
 tools-musl/portage.amd64.hardened/package.mask  | 3 ---
 tools-musl/portage.amd64.vanilla/package.mask   | 3 ---
 tools-musl/portage.armv7a.hardened/package.mask | 3 ---
 tools-musl/portage.armv7a.vanilla/package.mask  | 3 ---
 tools-musl/portage.i686.hardened/package.mask   | 3 ---
 tools-musl/portage.i686.vanilla/package.mask| 3 ---
 tools-musl/portage.mipsel3.vanilla/package.mask | 6 --
 7 files changed, 24 deletions(-)

diff --git a/tools-musl/portage.amd64.hardened/package.mask 
b/tools-musl/portage.amd64.hardened/package.mask
deleted file mode 100644
index 794369e..000
--- a/tools-musl/portage.amd64.hardened/package.mask
+++ /dev/null
@@ -1,3 +0,0 @@
->sys-devel/gcc-4.7.3-r99
-sys-apps/systemd
-sys-fs/udev

diff --git a/tools-musl/portage.amd64.vanilla/package.mask 
b/tools-musl/portage.amd64.vanilla/package.mask
deleted file mode 100644
index 794369e..000
--- a/tools-musl/portage.amd64.vanilla/package.mask
+++ /dev/null
@@ -1,3 +0,0 @@
->sys-devel/gcc-4.7.3-r99
-sys-apps/systemd
-sys-fs/udev

diff --git a/tools-musl/portage.armv7a.hardened/package.mask 
b/tools-musl/portage.armv7a.hardened/package.mask
deleted file mode 100644
index 794369e..000
--- a/tools-musl/portage.armv7a.hardened/package.mask
+++ /dev/null
@@ -1,3 +0,0 @@
->sys-devel/gcc-4.7.3-r99
-sys-apps/systemd
-sys-fs/udev

diff --git a/tools-musl/portage.armv7a.vanilla/package.mask 
b/tools-musl/portage.armv7a.vanilla/package.mask
deleted file mode 100644
index 794369e..000
--- a/tools-musl/portage.armv7a.vanilla/package.mask
+++ /dev/null
@@ -1,3 +0,0 @@
->sys-devel/gcc-4.7.3-r99
-sys-apps/systemd
-sys-fs/udev

diff --git a/tools-musl/portage.i686.hardened/package.mask 
b/tools-musl/portage.i686.hardened/package.mask
deleted file mode 100644
index 794369e..000
--- a/tools-musl/portage.i686.hardened/package.mask
+++ /dev/null
@@ -1,3 +0,0 @@
->sys-devel/gcc-4.7.3-r99
-sys-apps/systemd
-sys-fs/udev

diff --git a/tools-musl/portage.i686.vanilla/package.mask 
b/tools-musl/portage.i686.vanilla/package.mask
deleted file mode 100644
index 794369e..000
--- a/tools-musl/portage.i686.vanilla/package.mask
+++ /dev/null
@@ -1,3 +0,0 @@
->sys-devel/gcc-4.7.3-r99
-sys-apps/systemd
-sys-fs/udev

diff --git a/tools-musl/portage.mipsel3.vanilla/package.mask 
b/tools-musl/portage.mipsel3.vanilla/package.mask
deleted file mode 100644
index d4a8d93..000
--- a/tools-musl/portage.mipsel3.vanilla/package.mask
+++ /dev/null
@@ -1,6 +0,0 @@
->app-misc/pax-utils-0.7
-dev-util/pkgconfig
->sys-apps/kbd-1.15.5-r99
-sys-apps/systemd
->sys-devel/gcc-4.7.3-r99
-sys-fs/udev



[gentoo-commits] gentoo-x86 commit in profiles/hardened/linux/musl/mips: package.mask

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/21 00:54:03

  Added:package.mask
  Log:
  Mask some packages for musl/mipsel

Revision  ChangesPath
1.1  profiles/hardened/linux/musl/mips/package.mask

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

Index: package.mask
===
# Copyright 1999-2014 Gentoo Foundation.
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/profiles/hardened/linux/musl/mips/package.mask,v 1.1 
2014/08/21 00:54:03 blueness Exp $

>app-misc/pax-utils-0.7
dev-util/pkgconfig
>sys-apps/kbd-1.15.5-r99






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

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/21 00:54:03

  Modified: ChangeLog
  Log:
  Mask some packages for musl/mipsel

Revision  ChangesPath
1.66 profiles/hardened/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   16 Aug 2014 21:10:36 -  1.65
+++ ChangeLog   21 Aug 2014 00:54:03 -  1.66
@@ -1,6 +1,10 @@
 # ChangeLog for Gentoo/AMD64 profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v 1.65 
2014/08/16 21:10:36 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/ChangeLog,v 1.66 
2014/08/21 00:54:03 blueness Exp $
+
+  21 Aug 2014; Anthony G. Basile 
+  +linux/musl/mips/package.mask:
+  Mask some packages for musl/mipsel
 
   16 Aug 2014; Anthony G. Basile 
   -linux/uclibc/amd64/make.defaults, -linux/uclibc/amd64/package.mask,






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

2014-08-20 Thread Davide Pesavento
commit: 633a7562a2728079922a3f3cd135d0e7ea550275
Author: Davide Pesavento  gmail  com>
AuthorDate: Wed Aug 20 23:50:54 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Wed Aug 20 23:50:54 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=633a7562

Merge pull request #71 from eliasp/qca-plugin-path

[app-crypt/qca] Install the QCA plugins into the Qt plugin directory.


 app-crypt/qca/qca-.ebuild | 5 +
 1 file changed, 5 insertions(+)



[gentoo-commits] proj/qt:master commit in: app-crypt/qca/

2014-08-20 Thread Davide Pesavento
commit: 50edfb7a66d7f27d07dab8fe770930aa979f612e
Author: Elias Probst  eliasprobst  eu>
AuthorDate: Wed Aug 20 21:51:31 2014 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Wed Aug 20 21:51:31 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=50edfb7a

[app-crypt/qca] Install the QCA plugins into the Qt plugin directory.

---
 app-crypt/qca/qca-.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/app-crypt/qca/qca-.ebuild b/app-crypt/qca/qca-.ebuild
index a2d91a1..f290f43 100644
--- a/app-crypt/qca/qca-.ebuild
+++ b/app-crypt/qca/qca-.ebuild
@@ -68,6 +68,11 @@ src_configure() {
$(with_plugin_use pkcs11)
$(with_plugin_use softstore)
)
+   if use qt4; then
+   
mycmakeargs+=(-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt4/plugins/crypto")
+   else
+   
mycmakeargs+=(-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt5/plugins/crypto")
+   fi
 
cmake-utils_src_configure
 }



[gentoo-commits] gentoo-x86 commit in dev-games/openscenegraph: metadata.xml openscenegraph-3.0.1-r1.ebuild ChangeLog

2014-08-20 Thread Maciej Mrozowski (reavertm)
reavertm14/08/20 23:47:19

  Modified: metadata.xml openscenegraph-3.0.1-r1.ebuild
ChangeLog
  Log:
  Remove not really supported USE flag "itk", bug 520364.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
B1E955DB)

Revision  ChangesPath
1.9  dev-games/openscenegraph/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/metadata.xml?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/metadata.xml?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/openscenegraph/metadata.xml?r1=1.8&r2=1.9

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/metadata.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- metadata.xml17 Nov 2011 18:14:20 -  1.8
+++ metadata.xml20 Aug 2014 23:47:19 -  1.9
@@ -12,7 +12,6 @@
   
 Build examples using x11-libs/fox 
library
 Enable support for sci-libs/gdal 
library
-   Build dev-tcltk/itk plugin
 Build OpenInventor plugin
 Build osg applications
 Enable support for the X xrandr extension



1.5  dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild

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

Index: openscenegraph-3.0.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openscenegraph-3.0.1-r1.ebuild  15 Jun 2013 20:09:37 -  1.4
+++ openscenegraph-3.0.1-r1.ebuild  20 Aug 2014 23:47:19 -  1.5
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild,v
 1.4 2013/06/15 20:09:37 pacho Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1-r1.ebuild,v
 1.5 2014/08/20 23:47:19 reavertm Exp $
 
-EAPI=3
+EAPI=5
 
 inherit eutils cmake-utils flag-o-matic wxwidgets
 
@@ -16,11 +16,12 @@
 LICENSE="wxWinLL-3 LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE="curl debug doc examples ffmpeg fltk fox gdal gif glut gtk itk jpeg jpeg2k
-openexr openinventor osgapps pdf png qt4 sdl svg tiff truetype vnc wxwidgets 
xine xrandr zlib"
+IUSE="curl debug doc examples ffmpeg fltk fox gdal gif glut gtk jpeg jpeg2k
+openexr openinventor osgapps pdf png qt4 sdl svg tiff truetype vnc wxwidgets
+xine xrandr zlib"
 
 # NOTE: OpenAL (support missing)
-# TODO: COLLADA, FBX, OpenVRML, Performer, DCMTK
+# TODO: COLLADA, FBX, ITK, OpenVRML, Performer, DCMTK
 RDEPEND="
x11-libs/libSM
x11-libs/libXext
@@ -43,7 +44,6 @@
ffmpeg? ( virtual/ffmpeg )
gdal? ( sci-libs/gdal )
gif? ( media-libs/giflib )
-   itk? ( dev-tcltk/itk )
jpeg? ( virtual/jpeg )
jpeg2k? ( media-libs/jasper )
openexr? (
@@ -94,6 +94,7 @@
 
mycmakeargs=(
-DDYNAMIC_OPENSCENEGRAPH=ON
+   -DWITH_ITK=OFF
-DWITH_OpenAL=OFF # Commented out in buildsystem
-DGENTOO_DOCDIR="/usr/share/doc/${PF}"
$(cmake-utils_use_with curl)
@@ -107,7 +108,6 @@
$(cmake-utils_use_with gif GIFLIB)
$(cmake-utils_use_with glut)
$(cmake-utils_use_with gtk GtkGl)
-   $(cmake-utils_use_with itk)
$(cmake-utils_use_with jpeg)
$(cmake-utils_use_with jpeg2k Jasper)
$(cmake-utils_use_with openexr OpenEXR)



1.57 dev-games/openscenegraph/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   13 Feb 2014 21:22:42 -  1.56
+++ ChangeLog   20 Aug 2014 23:47:19 -  

[gentoo-commits] gentoo-x86 commit in sci-physics/lammps: lammps-20140815.ebuild ChangeLog

2014-08-20 Thread Christoph Junghans (ottxor)
ottxor  14/08/20 23:11:11

  Modified: lammps-20140815.ebuild ChangeLog
  Log:
  fixed build with newer lapack/blas version
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
C2000586)

Revision  ChangesPath
1.3  sci-physics/lammps/lammps-20140815.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild?r1=1.2&r2=1.3

Index: lammps-20140815.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lammps-20140815.ebuild  20 Aug 2014 18:22:23 -  1.2
+++ lammps-20140815.ebuild  20 Aug 2014 23:11:11 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild,v 
1.2 2014/08/20 18:22:23 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild,v 
1.3 2014/08/20 23:11:11 ottxor Exp $
 
 EAPI=5
 
@@ -49,7 +49,11 @@
 IUSE="doc examples gzip lammps-memalign mpi static-libs"
 
 DEPEND="
-   mpi? ( virtual/mpi )
+   mpi? (
+   virtual/blas
+   virtual/lapack
+   virtual/mpi
+   )
sci-libs/voro++
"
 RDEPEND="${DEPEND}"
@@ -74,6 +78,7 @@
MPI_INC=$(usex mpi '' "-I../STUBS") \
MPI_PATH=$(usex mpi '' '-L../STUBS') \
MPI_LIB=$(usex mpi '' '-lmpi_stubs') \
+   user-atc_SYSLIB="$(usex mpi "$($(tc-getPKG_CONFIG) --libs blas) 
$($(tc-getPKG_CONFIG) --libs lapack)" '')"\
"$@"
 }
 



1.38 sci-physics/lammps/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   20 Aug 2014 18:22:23 -  1.37
+++ ChangeLog   20 Aug 2014 23:11:11 -  1.38
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/lammps
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.37 
2014/08/20 18:22:23 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.38 
2014/08/20 23:11:11 ottxor Exp $
+
+  20 Aug 2014; Christoph Junghans  lammps-20140815.ebuild:
+  fixed build with newer lapack/blas version
 
   20 Aug 2014; Nicolas Bock  lammps-20140815.ebuild:
   sci-physics/lammps-20140815: Fix linker error.






[gentoo-commits] gentoo-x86 commit in net-misc/putty: ChangeLog putty-0.63_p20140820.ebuild

2014-08-20 Thread Jeroen Roovers (jer)
jer 14/08/20 23:06:29

  Modified: ChangeLog
  Added:putty-0.63_p20140820.ebuild
  Log:
  Snapshot bump.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.95 net-misc/putty/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog   16 Apr 2014 15:53:52 -  1.94
+++ ChangeLog   20 Aug 2014 23:06:29 -  1.95
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/putty
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.94 2014/04/16 
15:53:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.95 2014/08/20 
23:06:29 jer Exp $
+
+*putty-0.63_p20140820 (20 Aug 2014)
+
+  20 Aug 2014; Jeroen Roovers  +putty-0.63_p20140820.ebuild:
+  Snapshot bump.
 
 *putty-0.63_p20140416 (16 Apr 2014)
 



1.1  net-misc/putty/putty-0.63_p20140820.ebuild

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

Index: putty-0.63_p20140820.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.63_p20140820.ebuild,v 
1.1 2014/08/20 23:06:29 jer Exp $

EAPI=5
inherit autotools eutils gnome2-utils toolchain-funcs versionator

DESCRIPTION="A Free Telnet/SSH Client"
HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/";
SRC_URI="
http://dev.gentoo.org/~jer/${P/_p*/}-2014-08-20.tar.gz
http://dev.gentoo.org/~jer/${PN}-icons.tar.bz2
"
LICENSE="MIT"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="doc +gtk ipv6 kerberos"

S=${WORKDIR}/${P/_p*/}-2014-08-20

RDEPEND="
!net-misc/pssh
kerberos? ( virtual/krb5 )
gtk? ( x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/pango
dev-libs/glib )
"
DEPEND="
${RDEPEND}
dev-lang/perl
virtual/pkgconfig
"

src_prepare() {
sed -i \
-e '/AM_PATH_GTK(/d' \
-e 's|-Werror||g' \
configure.ac || die

eautoreconf
}

src_configure() {
cd "${S}"/unix || die
econf \
$(use_with kerberos gssapi) \
$(use_with gtk)
}

src_compile() {
cd "${S}"/unix || die
emake AR=$(tc-getAR) $(usex ipv6 '' COMPAT=-DNO_IPV6)
}

src_install() {
dodoc doc/puttydoc.txt

if use doc; then
dohtml doc/*.html
fi

cd "${S}"/unix || die
default

if use gtk ; then
for i in 16 22 24 32 48 64 128 256; do
newicon -s ${i} "${WORKDIR}"/${PN}-icons/${PN}-${i}.png 
${PN}.png
done

# install desktop file provided by Gustav Schaffter in #49577
make_desktop_entry ${PN} PuTTY ${PN} Network
fi
}

pkg_preinst() {
use gtk && gnome2_icon_savelist
}

pkg_postinst() {
use gtk && gnome2_icon_cache_update
}

pkg_postrm() {
use gtk && gnome2_icon_cache_update
}






[gentoo-commits] gentoo-x86 commit in sys-boot/unetbootin: unetbootin-608.ebuild ChangeLog unetbootin-585.ebuild unetbootin-603.ebuild

2014-08-20 Thread Jeroen Roovers (jer)
jer 14/08/20 22:44:26

  Modified: unetbootin-608.ebuild ChangeLog
  Removed:  unetbootin-585.ebuild unetbootin-603.ebuild
  Log:
  Old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.4  sys-boot/unetbootin/unetbootin-608.ebuild

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

Index: unetbootin-608.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-608.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- unetbootin-608.ebuild   20 Aug 2014 19:00:42 -  1.3
+++ unetbootin-608.ebuild   20 Aug 2014 22:44:26 -  1.4
@@ -1,13 +1,12 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-608.ebuild,v 
1.3 2014/08/20 19:00:42 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-608.ebuild,v 
1.4 2014/08/20 22:44:26 jer Exp $
 
 EAPI=5
 
 inherit eutils qt4-r2
 
-DESCRIPTION="Universal Netboot Installer creates Live USB systems for various 
OS
-distributions."
+DESCRIPTION="Universal Netboot Installer creates Live USB systems for various 
OS distributions"
 HOMEPAGE="http://unetbootin.sourceforge.net/";
 SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.tar.gz"
 



1.108sys-boot/unetbootin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog   20 Aug 2014 19:00:42 -  1.107
+++ ChangeLog   20 Aug 2014 22:44:26 -  1.108
@@ -1,6 +1,10 @@
 # ChangeLog for sys-boot/unetbootin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.107 
2014/08/20 19:00:42 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.108 
2014/08/20 22:44:26 jer Exp $
+
+  20 Aug 2014; Jeroen Roovers  -unetbootin-585.ebuild,
+  -unetbootin-603.ebuild:
+  Old.
 
   20 Aug 2014; Johannes Huber  unetbootin-608.ebuild:
   amd64 stable, bug #511158






[gentoo-commits] dev/mgorny:master commit in: sys-apps/portage/

2014-08-20 Thread Michał Górny
commit: 2e04ba14534fdddcf10b0d62820bc89f3242c877
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 20 22:12:43 2014 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 20 22:12:43 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=2e04ba14

Fix Python script wrapping and splitting.

---
 sys-apps/portage/portage-.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys-apps/portage/portage-.ebuild 
b/sys-apps/portage/portage-.ebuild
index 792fbe7..b4e63e7 100644
--- a/sys-apps/portage/portage-.ebuild
+++ b/sys-apps/portage/portage-.ebuild
@@ -170,8 +170,11 @@ python_test() {
 python_install() {
distutils-r1_python_install \
--system-prefix="${EPREFIX}/usr" \
+   --bindir="$(python_get_scriptdir)" \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
+   --portage-bindir="${EPREFIX}/usr/lib/portage/${EPYTHON}" \
+   --sbindir="$(python_get_scriptdir)" \
--sysconfdir="${EPREFIX}/etc" \
"${@}"
 }



[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Deep: Test-Deep-0.110.0-r1.ebuild ChangeLog Test-Deep-0.110.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 21:36:26

  Modified: ChangeLog
  Added:Test-Deep-0.110.0-r1.ebuild
  Removed:  Test-Deep-0.110.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.73 dev-perl/Test-Deep/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Deep/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   1 Feb 2014 23:46:21 -   1.72
+++ ChangeLog   20 Aug 2014 21:36:26 -  1.73
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Test-Deep
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Deep/ChangeLog,v 1.72 
2014/02/01 23:46:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Deep/ChangeLog,v 1.73 
2014/08/20 21:36:26 axs Exp $
+
+*Test-Deep-0.110.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-Deep-0.110.0-r1.ebuild, -Test-Deep-0.110.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   01 Feb 2014; Mike Frysinger  Test-Deep-0.110.0.ebuild:
   Mark arm64/m68k stable.



1.1  dev-perl/Test-Deep/Test-Deep-0.110.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Deep/Test-Deep-0.110.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Deep/Test-Deep-0.110.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Deep-0.110.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Deep/Test-Deep-0.110.0-r1.ebuild,v 1.1 
2014/08/20 21:36:26 axs Exp $

EAPI=5

MODULE_AUTHOR=RJBS
MODULE_VERSION=0.110
inherit perl-module

DESCRIPTION="Test::Deep - Extremely flexible deep comparison"

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

DEPEND="
test? ( dev-perl/Test-NoWarnings
dev-perl/Test-Tester )"
RDEPEND=""

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/DBD-SQLite: DBD-SQLite-1.400.0-r1.ebuild DBD-SQLite-1.370.0-r1.ebuild DBD-SQLite-1.350.0-r1.ebuild ChangeLog DBD-SQLite-1.350.0.ebuild DBD-SQLite-1.370.0

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 21:34:11

  Modified: ChangeLog
  Added:DBD-SQLite-1.400.0-r1.ebuild
DBD-SQLite-1.370.0-r1.ebuild
DBD-SQLite-1.350.0-r1.ebuild
  Removed:  DBD-SQLite-1.350.0.ebuild DBD-SQLite-1.370.0.ebuild
DBD-SQLite-1.400.0.ebuild
  Log:
  bumped EAPI to 5; committed 1.350.0 bump directly to stable as no other 
changes present and revbump helps stable systems to keep from dieing on 
perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.114dev-perl/DBD-SQLite/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog   13 Mar 2014 19:58:26 -  1.113
+++ ChangeLog   20 Aug 2014 21:34:11 -  1.114
@@ -1,6 +1,18 @@
 # ChangeLog for dev-perl/DBD-SQLite
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v 1.113 
2014/03/13 19:58:26 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v 1.114 
2014/08/20 21:34:11 axs Exp $
+
+*DBD-SQLite-1.400.0-r1 (20 Aug 2014)
+*DBD-SQLite-1.370.0-r1 (20 Aug 2014)
+*DBD-SQLite-1.350.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +DBD-SQLite-1.350.0-r1.ebuild, +DBD-SQLite-1.370.0-r1.ebuild,
+  +DBD-SQLite-1.400.0-r1.ebuild, -DBD-SQLite-1.350.0.ebuild,
+  -DBD-SQLite-1.370.0.ebuild, -DBD-SQLite-1.400.0.ebuild:
+  bumped EAPI to 5; committed 1.350.0 bump directly to stable as no other
+  changes present and revbump helps stable systems to keep from dieing on
+  perl-5.18 upgrade
 
   13 Mar 2014; Christoph Junghans  
DBD-SQLite-1.400.0.ebuild:
   added ~x64-macos (tested by me)



1.1  dev-perl/DBD-SQLite/DBD-SQLite-1.400.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.400.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.400.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: DBD-SQLite-1.400.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.400.0-r1.ebuild,v 1.1 
2014/08/20 21:34:11 axs Exp $

EAPI=5

MODULE_AUTHOR=ISHIGAKI
MODULE_VERSION=1.40
inherit perl-module

DESCRIPTION="Self Contained RDBMS in a DBI Driver"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
IUSE="test"

RDEPEND="
>=dev-db/sqlite-3.6.22[extensions(+)]
>=dev-perl/DBI-1.57
!http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.370.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.370.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: DBD-SQLite-1.370.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.370.0-r1.ebuild,v 1.1 
2014/08/20 21:34:11 axs Exp $

EAPI=5

MODULE_AUTHOR=ADAMK
MODULE_VERSION=1.37
inherit perl-module

DESCRIPTION="Self Contained RDBMS in a DBI Driver"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="test"

RDEPEND="
>=dev-db/sqlite-3.6.22[extensions(+)]
>=dev-perl/DBI-1.57
!http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.350.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.350.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: DBD-SQLite-1.350.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#

[gentoo-commits] gentoo-x86 commit in dev-perl/DBD-Pg: DBD-Pg-2.19.3-r1.ebuild ChangeLog DBD-Pg-2.19.3.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 21:30:38

  Modified: ChangeLog
  Added:DBD-Pg-2.19.3-r1.ebuild
  Removed:  DBD-Pg-2.19.3.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.135dev-perl/DBD-Pg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog   13 Jun 2014 19:08:35 -  1.134
+++ ChangeLog   20 Aug 2014 21:30:38 -  1.135
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/DBD-Pg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.134 
2014/06/13 19:08:35 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.135 
2014/08/20 21:30:38 axs Exp $
+
+*DBD-Pg-2.19.3-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +DBD-Pg-2.19.3-r1.ebuild, -DBD-Pg-2.19.3.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
 *DBD-Pg-3.3.0 (13 Jun 2014)
 



1.1  dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild?rev=1.1&content-type=text/plain

Index: DBD-Pg-2.19.3-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild,v 
1.1 2014/08/20 21:30:38 axs Exp $

EAPI=5

MODULE_AUTHOR=TURNSTEP
MODULE_VERSION=2.19.3
inherit perl-module

DESCRIPTION="The Perl DBD::Pg Module"

SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""

RDEPEND="virtual/perl-version
>=dev-perl/DBI-1.52
dev-db/postgresql-base"
DEPEND="${RDEPEND}"

# testcases require a local database with an
# open password for the postgres user.
SRC_TEST="skip"

src_prepare() {
postgres_include="$(readlink -f "${EPREFIX}"/usr/include/postgresql)"
postgres_lib="${postgres_include//include/lib}"
# Fall-through case is the non-split postgresql
# The active cases instead get us the matching libdir for the 
includedir.
for i in lib lib64 ; do
if [ -d "${postgres_lib}/${i}" ]; then
postgres_lib="${postgres_lib}/${i}"
break
fi
done

# env variables for compilation:
export POSTGRES_INCLUDE="${postgres_include}"
export POSTGRES_LIB="${postgres_lib}"
perl-module_src_prepare
}






[gentoo-commits] proj/releng:master commit in: tools-musl/stage4/portage.mips/, tools-musl/stage4/, ...

2014-08-20 Thread Anthony G. Basile
commit: 63e88837b3cd7dafe2faca061222ded94907ee73
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Aug 20 21:00:45 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug 20 21:00:45 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=63e88837

tools-musl: no need for the stage4 scripts for mipsel3

---
 tools-musl/stage4/README   |   11 -
 tools-musl/stage4/portage.mips/env/libintl.conf|1 -
 tools-musl/stage4/portage.mips/env/parallel.conf   |1 -
 tools-musl/stage4/portage.mips/make.conf   |   16 -
 tools-musl/stage4/portage.mips/package.env |7 -
 tools-musl/stage4/portage.mips/package.mask|9 -
 tools-musl/stage4/portage.mips/package.use |3 -
 .../stage4/portage.mips/repos.conf/gentoo.conf |7 -
 .../savedconfig/sys-apps/busybox-1.22.1-r99| 1035 
 tools-musl/stage4/run.sh   |  127 ---
 10 files changed, 1217 deletions(-)

diff --git a/tools-musl/stage4/README b/tools-musl/stage4/README
deleted file mode 100644
index cdc3225..000
--- a/tools-musl/stage4/README
+++ /dev/null
@@ -1,11 +0,0 @@
-
-This is not ready yet for a full catalyst run.  However,
-if you have a musl chroot (which you can get from any
-gentoo mirror off of /experimental/amd64/musl) then you
-can build a new stage by running ./run.sh.  It basically
-uses the `ROOT=rootfs emerge -e @system` technique.
-
-Once more stuff is integrated into gentoo, we will replace
-this with a catalyst scripts.
-
-Anthony G. Basile 

diff --git a/tools-musl/stage4/portage.mips/env/libintl.conf 
b/tools-musl/stage4/portage.mips/env/libintl.conf
deleted file mode 100644
index 49d6560..000
--- a/tools-musl/stage4/portage.mips/env/libintl.conf
+++ /dev/null
@@ -1 +0,0 @@
-LDFLAGS=-lintl

diff --git a/tools-musl/stage4/portage.mips/env/parallel.conf 
b/tools-musl/stage4/portage.mips/env/parallel.conf
deleted file mode 100644
index c67232a..000
--- a/tools-musl/stage4/portage.mips/env/parallel.conf
+++ /dev/null
@@ -1 +0,0 @@
-MAKEOPTS=-j1

diff --git a/tools-musl/stage4/portage.mips/make.conf 
b/tools-musl/stage4/portage.mips/make.conf
deleted file mode 100644
index ecd4450..000
--- a/tools-musl/stage4/portage.mips/make.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-CHOST=MY_CHOST
-CFLAGS="-Os -pipe -fomit-frame-pointerMY_CFLAGS"
-CXXFLAGS="${CFLAGS}"
-
-USE="-hardened -fortran -mudflap"
-USE="${USE} -xattr python zlib"
-
-MAKEOPTS="-j9"
-
-INSTALL_MASK="charset.alias"
-PORTDIR="/usr/portage"
-
-source /var/lib/layman/make.conf
-
-GENTOO_MIRRORS="ftp://192.168.3.1/pub/gentoo";
-SYNC="rsync://192.168.3.1/portage"

diff --git a/tools-musl/stage4/portage.mips/package.env 
b/tools-musl/stage4/portage.mips/package.env
deleted file mode 100644
index e073445..000
--- a/tools-musl/stage4/portage.mips/package.env
+++ /dev/null
@@ -1,7 +0,0 @@
-dev-vcs/git libintl.conf
-sys-apps/kbd libintl.conf
-sys-apps/man-db parallel.conf
-sys-apps/net-tools libintl.conf
-sys-fs/e2fsprogs libintl.conf
-sys-fs/eudev libintl.conf
-sys-process/procps libintl.conf

diff --git a/tools-musl/stage4/portage.mips/package.mask 
b/tools-musl/stage4/portage.mips/package.mask
deleted file mode 100644
index c584dfd..000
--- a/tools-musl/stage4/portage.mips/package.mask
+++ /dev/null
@@ -1,9 +0,0 @@
->app-misc/pax-utils-0.7
->dev-libs/glib-2.36.4-r99
->sys-apps/kbd-1.15.5-r99
->sys-apps/net-tools-1.60_p20120127084908-r99
->sys-apps/util-linux-2.23.1-r99
-sys-apps/systemd
->sys-devel/gcc-4.7.3-r99
-sys-fs/udev
->sys-process/procps-3.3.8-r99

diff --git a/tools-musl/stage4/portage.mips/package.use 
b/tools-musl/stage4/portage.mips/package.use
deleted file mode 100644
index 09bebea..000
--- a/tools-musl/stage4/portage.mips/package.use
+++ /dev/null
@@ -1,3 +0,0 @@
-dev-vcs/git -gpg
-sys-fs/e2fsprogs -nls
-sys-apps/busybox -* savedconfig

diff --git a/tools-musl/stage4/portage.mips/repos.conf/gentoo.conf 
b/tools-musl/stage4/portage.mips/repos.conf/gentoo.conf
deleted file mode 100644
index 9f1129c..000
--- a/tools-musl/stage4/portage.mips/repos.conf/gentoo.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-[DEFAULT]
-main-repo = gentoo
-
-[gentoo]
-location = /usr/portage
-sync-type = rsync
-sync-uri = rsync://192.168.3.1/portage

diff --git 
a/tools-musl/stage4/portage.mips/savedconfig/sys-apps/busybox-1.22.1-r99 
b/tools-musl/stage4/portage.mips/savedconfig/sys-apps/busybox-1.22.1-r99
deleted file mode 100644
index 9aeaf0f..000
--- a/tools-musl/stage4/portage.mips/savedconfig/sys-apps/busybox-1.22.1-r99
+++ /dev/null
@@ -1,1035 +0,0 @@
-#
-# Automatically generated make config: don't edit
-# Busybox version: 1.22.1
-# Wed Mar  5 19:56:19 2014
-#
-CONFIG_HAVE_DOT_CONFIG=y
-
-#
-# Busybox Settings
-#
-
-#
-# General Configuration
-#
-CONFIG_DESKTOP=y
-# CONFIG_EXTRA_COMPAT is not set
-CONFIG_INCLUDE_SUSv2=y
-# CONFIG_USE_PORTABLE_CODE is not set
-CONFIG_PLATFORM_LINUX=y
-CONFIG_FEATURE_BUF

[gentoo-commits] gentoo-x86 commit in dev-python/sqlalchemy-migrate: sqlalchemy-migrate-0.9.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:38:48

  Modified: sqlalchemy-migrate-0.9.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.ebuild

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

Index: sqlalchemy-migrate-0.9.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sqlalchemy-migrate-0.9.ebuild   20 Jul 2014 11:05:03 -  1.5
+++ sqlalchemy-migrate-0.9.ebuild   20 Aug 2014 20:38:48 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.ebuild,v
 1.5 2014/07/20 11:05:03 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.9.ebuild,v
 1.6 2014/08/20 20:38:48 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.34 dev-python/sqlalchemy-migrate/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   20 Jul 2014 11:05:03 -  1.33
+++ ChangeLog   20 Aug 2014 20:38:48 -  1.34
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/sqlalchemy-migrate
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog,v 
1.33 2014/07/20 11:05:03 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/ChangeLog,v 
1.34 2014/08/20 20:38:48 blueness Exp $
+
+  20 Aug 2014; Anthony G. Basile 
+  sqlalchemy-migrate-0.9.ebuild:
+  Keyword ~ppc ~ppc64, bug #508282
 
   20 Jul 2014; Tobias Klausmann 
   sqlalchemy-migrate-0.9.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/pbr: pbr-0.7.0.ebuild pbr-0.8.0.ebuild pbr-0.5.23-r2.ebuild pbr-0.5.23.ebuild pbr-0.8.2.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:37:21

  Modified: pbr-0.7.0.ebuild pbr-0.8.0.ebuild
pbr-0.5.23-r2.ebuild pbr-0.5.23.ebuild
pbr-0.8.2.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.2  dev-python/pbr/pbr-0.7.0.ebuild

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

Index: pbr-0.7.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pbr-0.7.0.ebuild27 Mar 2014 21:48:40 -  1.1
+++ pbr-0.7.0.ebuild20 Aug 2014 20:37:21 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.7.0.ebuild,v 1.1 
2014/03/27 21:48:40 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.7.0.ebuild,v 1.2 
2014/08/20 20:37:21 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.6  dev-python/pbr/pbr-0.8.0.ebuild

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

Index: pbr-0.8.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.8.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pbr-0.8.0.ebuild20 Jul 2014 11:04:41 -  1.5
+++ pbr-0.8.0.ebuild20 Aug 2014 20:37:21 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.8.0.ebuild,v 1.5 
2014/07/20 11:04:41 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.8.0.ebuild,v 1.6 
2014/08/20 20:37:21 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3} )
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.3  dev-python/pbr/pbr-0.5.23-r2.ebuild

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

Index: pbr-0.5.23-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.5.23-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pbr-0.5.23-r2.ebuild19 Mar 2014 23:14:21 -  1.2
+++ pbr-0.5.23-r2.ebuild20 Aug 2014 20:37:21 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.5.23-r2.ebuild,v 1.2 
2014/03/19 23:14:21 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pbr/pbr-0.5.23-r2.ebuild,v 1.3 
2014/08/20 20:37:21 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.5  dev-python/pbr/pbr-0.5.23.ebuild

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

Index: pbr-0.5.23.ebuild
=

[gentoo-commits] gentoo-x86 commit in dev-python/pip: pip-1.4.ebuild pip-1.5.5.ebuild pip-1.3.1.ebuild pip-1.5.6.ebuild pip-1.5.ebuild pip-1.5.4.ebuild pip-1.5.4-r1.ebuild pip-1.5.2.ebuild pip-1.4.1.e

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:36:24

  Modified: pip-1.4.ebuild pip-1.5.5.ebuild pip-1.3.1.ebuild
pip-1.5.6.ebuild pip-1.5.ebuild pip-1.5.4.ebuild
pip-1.5.4-r1.ebuild pip-1.5.2.ebuild
pip-1.4.1.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.4  dev-python/pip/pip-1.4.ebuild

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

Index: pip-1.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pip-1.4.ebuild  5 Sep 2013 18:46:49 -   1.3
+++ pip-1.4.ebuild  20 Aug 2014 20:36:24 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.4.ebuild,v 1.3 
2013/09/05 18:46:49 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.4.ebuild,v 1.4 
2014/08/20 20:36:24 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -12,7 +12,7 @@
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="zsh-completion"
 



1.4  dev-python/pip/pip-1.5.5.ebuild

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

Index: pip-1.5.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.5.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pip-1.5.5.ebuild8 Jun 2014 09:40:16 -   1.3
+++ pip-1.5.5.ebuild20 Aug 2014 20:36:24 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.5.5.ebuild,v 1.3 
2014/06/08 09:40:16 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.5.5.ebuild,v 1.4 
2014/08/20 20:36:24 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy )
@@ -12,7 +12,7 @@
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="zsh-completion"
 



1.6  dev-python/pip/pip-1.3.1.ebuild

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

Index: pip-1.3.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.3.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pip-1.3.1.ebuild5 Sep 2013 18:46:49 -   1.5
+++ pip-1.3.1.ebuild20 Aug 2014 20:36:24 -  1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.3.1.ebuild,v 1.5 
2013/09/05 18:46:49 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.3.1.ebuild,v 1.6 
2014/08/20 20:36:24 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -12,7 +12,7 @@
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="zsh-completion"
 



1.3  dev-python/pip/pip-1.5.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-1.5.6.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-1.5.6.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip

[gentoo-commits] gentoo-x86 commit in dev-python/testrepository: testrepository-0.0.18.ebuild testrepository-0.0.17-r2.ebuild testrepository-0.0.17-r1.ebuild testrepository-0.0.18-r1.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:33:17

  Modified: testrepository-0.0.18.ebuild
testrepository-0.0.17-r2.ebuild
testrepository-0.0.17-r1.ebuild
testrepository-0.0.18-r1.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.9  dev-python/testrepository/testrepository-0.0.18.ebuild

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

Index: testrepository-0.0.18.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.18.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- testrepository-0.0.18.ebuild10 Aug 2014 21:23:13 -  1.8
+++ testrepository-0.0.18.ebuild20 Aug 2014 20:33:16 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.18.ebuild,v
 1.8 2014/08/10 21:23:13 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.18.ebuild,v
 1.9 2014/08/20 20:33:16 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.4  dev-python/testrepository/testrepository-0.0.17-r2.ebuild

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

Index: testrepository-0.0.17-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.17-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- testrepository-0.0.17-r2.ebuild 10 Aug 2014 21:23:13 -  1.3
+++ testrepository-0.0.17-r2.ebuild 20 Aug 2014 20:33:16 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.17-r2.ebuild,v
 1.3 2014/08/10 21:23:13 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.17-r2.ebuild,v
 1.4 2014/08/20 20:33:16 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.5  dev-python/testrepository/testrepository-0.0.17-r1.ebuild

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

Index: testrepository-0.0.17-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.17-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- testrepository-0.0.17-r1.ebuild 10 Aug 2014 21:23:13 -  1.4
+++ testrepository-0.0.17-r1.ebuild 20 Aug 2014 20:33:16 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.17-r1.ebuild,v
 1.4 2014/08/10 21:23:13 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testrepository/testrepository-0.0.17-r1.ebuild,v
 1.5 2014/08/20 20:33:16 blueness Exp $
 
 EAPI=5
 # Although package supports alt. py impls, only works fully under py2.7
@@ -14,7 +14,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"

[gentoo-commits] gentoo-x86 commit in dev-python/flake8: flake8-2.0.ebuild flake8-2.1.0.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:30:48

  Modified: flake8-2.0.ebuild flake8-2.1.0.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.11 dev-python/flake8/flake8-2.0.ebuild

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

Index: flake8-2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- flake8-2.0.ebuild   20 Jul 2014 11:05:24 -  1.10
+++ flake8-2.0.ebuild   20 Aug 2014 20:30:48 -  1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.0.ebuild,v 1.10 
2014/07/20 11:05:24 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.0.ebuild,v 1.11 
2014/08/20 20:30:48 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://bitbucket.org/tarek/flake8";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 x86"
 IUSE="test"
 LICENSE="MIT"
 SLOT="0"



1.8  dev-python/flake8/flake8-2.1.0.ebuild

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

Index: flake8-2.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- flake8-2.1.0.ebuild 20 Jul 2014 09:45:32 -  1.7
+++ flake8-2.1.0.ebuild 20 Aug 2014 20:30:48 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild,v 1.7 
2014/07/20 09:45:32 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/flake8-2.1.0.ebuild,v 1.8 
2014/08/20 20:30:48 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://bitbucket.org/tarek/flake8";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 LICENSE="MIT"
 SLOT="0"



1.16 dev-python/flake8/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   20 Jul 2014 11:05:24 -  1.15
+++ ChangeLog   20 Aug 2014 20:30:48 -  1.16
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/flake8
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.15 
2014/07/20 11:05:24 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/flake8/ChangeLog,v 1.16 
2014/08/20 20:30:48 blueness Exp $
+
+  20 Aug 2014; Anthony G. Basile  flake8-2.0.ebuild,
+  flake8-2.1.0.ebuild:
+  Keyword ~ppc ~ppc64, bug #508282
 
   20 Jul 2014; Tobias Klausmann  flake8-2.0.ebuild:
   Keyworded on alpha, bug #508282






[gentoo-commits] gentoo-x86 commit in dev-python/mccabe: mccabe-0.2.1.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:29:46

  Modified: mccabe-0.2.1.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.10 dev-python/mccabe/mccabe-0.2.1.ebuild

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

Index: mccabe-0.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/mccabe/mccabe-0.2.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mccabe-0.2.1.ebuild 20 Jul 2014 11:06:08 -  1.9
+++ mccabe-0.2.1.ebuild 20 Aug 2014 20:29:46 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mccabe/mccabe-0.2.1.ebuild,v 1.9 
2014/07/20 11:06:08 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mccabe/mccabe-0.2.1.ebuild,v 
1.10 2014/08/20 20:29:46 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 HOMEPAGE="https://github.com/flintwork/mccabe";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 x86"
 IUSE=""
 LICENSE="MIT"
 SLOT="0"



1.10 dev-python/mccabe/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/mccabe/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   20 Jul 2014 11:06:08 -  1.9
+++ ChangeLog   20 Aug 2014 20:29:46 -  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/mccabe
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mccabe/ChangeLog,v 1.9 
2014/07/20 11:06:08 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mccabe/ChangeLog,v 1.10 
2014/08/20 20:29:46 blueness Exp $
+
+  20 Aug 2014; Anthony G. Basile  mccabe-0.2.1.ebuild:
+  Keyword ~ppc ~ppc64, bug #508282
 
   20 Jul 2014; Tobias Klausmann  mccabe-0.2.1.ebuild:
   Keyworded on alpha, bug #508282






[gentoo-commits] gentoo-x86 commit in dev-perl/DBD-mysql: DBD-mysql-4.20.0-r1.ebuild ChangeLog DBD-mysql-4.20.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 20:27:28

  Modified: ChangeLog
  Added:DBD-mysql-4.20.0-r1.ebuild
  Removed:  DBD-mysql-4.20.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.142dev-perl/DBD-mysql/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog   5 Sep 2013 11:42:49 -   1.141
+++ ChangeLog   20 Aug 2014 20:27:28 -  1.142
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/DBD-mysql
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/ChangeLog,v 1.141 
2013/09/05 11:42:49 zlogene Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/ChangeLog,v 1.142 
2014/08/20 20:27:28 axs Exp $
+
+*DBD-mysql-4.20.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +DBD-mysql-4.20.0-r1.ebuild, -DBD-mysql-4.20.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   05 Sep 2013; Mikle Kolyada  -DBD-mysql-4.01.7.ebuild:
   drop old



1.1  dev-perl/DBD-mysql/DBD-mysql-4.20.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/DBD-mysql-4.20.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/DBD-mysql-4.20.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: DBD-mysql-4.20.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/DBD-mysql-4.20.0-r1.ebuild,v 1.1 
2014/08/20 20:27:28 axs Exp $

EAPI=5

MODULE_AUTHOR=CAPTTOFU
MODULE_VERSION=4.020
inherit eutils perl-module

DESCRIPTION="The Perl DBD:mysql Module"

SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="embedded"

RDEPEND="dev-perl/DBI
virtual/mysql[embedded?]"
DEPEND="${RDEPEND}"

mydoc="ToDo"

src_configure() {
use embedded && myconf="${myconf} --force-embedded 
--embedded=mysql_config"
perl-module_src_configure
}






[gentoo-commits] gentoo-x86 commit in dev-python/testscenarios: testscenarios-0.4-r4.ebuild testscenarios-0.4-r5.ebuild testscenarios-0.4.ebuild testscenarios-0.4-r2.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:26:22

  Modified: testscenarios-0.4-r4.ebuild
testscenarios-0.4-r5.ebuild
testscenarios-0.4.ebuild
testscenarios-0.4-r2.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.9  dev-python/testscenarios/testscenarios-0.4-r4.ebuild

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

Index: testscenarios-0.4-r4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4-r4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- testscenarios-0.4-r4.ebuild 19 Jul 2014 19:28:13 -  1.8
+++ testscenarios-0.4-r4.ebuild 20 Aug 2014 20:26:22 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4-r4.ebuild,v 
1.8 2014/07/19 19:28:13 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4-r4.ebuild,v 
1.9 2014/08/20 20:26:22 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy2_0 pypy )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 
 RDEPEND="dev-python/testtools[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}



1.3  dev-python/testscenarios/testscenarios-0.4-r5.ebuild

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

Index: testscenarios-0.4-r5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4-r5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- testscenarios-0.4-r5.ebuild 20 Jul 2014 11:05:44 -  1.2
+++ testscenarios-0.4-r5.ebuild 20 Aug 2014 20:26:22 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4-r5.ebuild,v 
1.2 2014/07/20 11:05:44 klausman Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4-r5.ebuild,v 
1.3 2014/08/20 20:26:22 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy2_0 pypy )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 
 RDEPEND="dev-python/testtools[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}



1.5  dev-python/testscenarios/testscenarios-0.4.ebuild

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

Index: testscenarios-0.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- testscenarios-0.4.ebuild6 Jul 2014 12:50:52 -   1.4
+++ testscenarios-0.4.ebuild20 Aug 2014 20:26:22 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4.ebuild,v 1.4 
2014/07/06 12:50:52 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testscenarios/testscenarios-0.4.ebuild,v 1.5 
2014/08/20 20:26:22 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2} )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 

[gentoo-commits] gentoo-x86 commit in dev-python/testresources: testresources-0.2.7-r2.ebuild testresources-0.2.7-r1.ebuild testresources-0.2.7.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:25:19

  Modified: testresources-0.2.7-r2.ebuild
testresources-0.2.7-r1.ebuild
testresources-0.2.7.ebuild ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  dev-python/testresources/testresources-0.2.7-r2.ebuild

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

Index: testresources-0.2.7-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- testresources-0.2.7-r2.ebuild   10 Aug 2014 21:23:23 -  1.4
+++ testresources-0.2.7-r2.ebuild   20 Aug 2014 20:25:19 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7-r2.ebuild,v
 1.4 2014/08/10 21:23:23 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7-r2.ebuild,v
 1.5 2014/08/20 20:25:19 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.8  dev-python/testresources/testresources-0.2.7-r1.ebuild

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

Index: testresources-0.2.7-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- testresources-0.2.7-r1.ebuild   10 Aug 2014 21:23:23 -  1.7
+++ testresources-0.2.7-r1.ebuild   20 Aug 2014 20:25:19 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7-r1.ebuild,v
 1.7 2014/08/10 21:23:23 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7-r1.ebuild,v
 1.8 2014/08/20 20:25:19 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.5  dev-python/testresources/testresources-0.2.7.ebuild

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

Index: testresources-0.2.7.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- testresources-0.2.7.ebuild  10 Aug 2014 21:23:23 -  1.4
+++ testresources-0.2.7.ebuild  20 Aug 2014 20:25:19 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7.ebuild,v 
1.4 2014/08/10 21:23:23 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testresources/testresources-0.2.7.ebuild,v 
1.5 2014/08/20 20:25:19 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2} )
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 DEPEND="dev-

[gentoo-commits] gentoo-x86 commit in dev-python/fixtures: fixtures-0.3.12-r1.ebuild fixtures-0.3.14.ebuild fixtures-0.3.14-r2.ebuild fixtures-0.3.14-r1.ebuild ChangeLog

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 20:24:24

  Modified: fixtures-0.3.12-r1.ebuild fixtures-0.3.14.ebuild
fixtures-0.3.14-r2.ebuild fixtures-0.3.14-r1.ebuild
ChangeLog
  Log:
  Keyword ~ppc ~ppc64, bug #508282
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  dev-python/fixtures/fixtures-0.3.12-r1.ebuild

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

Index: fixtures-0.3.12-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.12-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fixtures-0.3.12-r1.ebuild   10 Aug 2014 21:10:42 -  1.4
+++ fixtures-0.3.12-r1.ebuild   20 Aug 2014 20:24:24 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.12-r1.ebuild,v 1.4 
2014/08/10 21:10:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.12-r1.ebuild,v 1.5 
2014/08/20 20:24:24 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 # nose not listed but provides coverage output of tests



1.3  dev-python/fixtures/fixtures-0.3.14.ebuild

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

Index: fixtures-0.3.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fixtures-0.3.14.ebuild  10 Aug 2014 21:10:42 -  1.2
+++ fixtures-0.3.14.ebuild  20 Aug 2014 20:24:24 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14.ebuild,v 1.2 
2014/08/10 21:10:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14.ebuild,v 1.3 
2014/08/20 20:24:24 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -13,7 +13,7 @@
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 # nose not listed but provides coverage output of tests



1.5  dev-python/fixtures/fixtures-0.3.14-r2.ebuild

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

Index: fixtures-0.3.14-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fixtures-0.3.14-r2.ebuild   10 Aug 2014 21:10:42 -  1.4
+++ fixtures-0.3.14-r2.ebuild   20 Aug 2014 20:24:24 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r2.ebuild,v 1.4 
2014/08/10 21:10:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r2.ebuild,v 1.5 
2014/08/20 20:24:24 blueness Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -13,7 +13,7 @@
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 IUSE="test"
 
 # nose not listed but provides coverage output of tests



1.10 dev-python/fixtures/fixtures-0.3.14-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r1.ebuild?rev=1.10&view=marku

[gentoo-commits] proj/hardened-dev:master commit in: sys-kernel/hardened-sources/

2014-08-20 Thread Anthony G. Basile
commit: 4d46b0d1399d7a4fb0561cfb29b8a182d6750308
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Aug 20 20:15:15 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug 20 20:15:15 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=4d46b0d1

sys-kernel/hardened-sources: testing patchset 20140819

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 0xF52D4BBA

---
 ...rdened-sources-3.14.17.ebuild => hardened-sources-3.14.17-r1.ebuild} | 2 +-
 ...rdened-sources-3.15.10.ebuild => hardened-sources-3.15.10-r1.ebuild} | 2 +-
 ...hardened-sources-3.2.62.ebuild => hardened-sources-3.2.62-r1.ebuild} | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/hardened-sources/hardened-sources-3.14.17.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-3.14.17-r1.ebuild
similarity index 96%
rename from sys-kernel/hardened-sources/hardened-sources-3.14.17.ebuild
rename to sys-kernel/hardened-sources/hardened-sources-3.14.17-r1.ebuild
index 97aa981..3c46494 100644
--- a/sys-kernel/hardened-sources/hardened-sources-3.14.17.ebuild
+++ b/sys-kernel/hardened-sources/hardened-sources-3.14.17-r1.ebuild
@@ -12,7 +12,7 @@ K_DEBLOB_AVAILABLE="1"
 inherit kernel-2
 detect_version
 
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1"
+HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2"
 
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2";
 SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
 

diff --git a/sys-kernel/hardened-sources/hardened-sources-3.15.10.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-3.15.10-r1.ebuild
similarity index 96%
rename from sys-kernel/hardened-sources/hardened-sources-3.15.10.ebuild
rename to sys-kernel/hardened-sources/hardened-sources-3.15.10-r1.ebuild
index 743cac1..8895f99 100644
--- a/sys-kernel/hardened-sources/hardened-sources-3.15.10.ebuild
+++ b/sys-kernel/hardened-sources/hardened-sources-3.15.10-r1.ebuild
@@ -12,7 +12,7 @@ K_DEBLOB_AVAILABLE="1"
 inherit kernel-2
 detect_version
 
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1"
+HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2"
 
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2";
 SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
 

diff --git a/sys-kernel/hardened-sources/hardened-sources-3.2.62.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-3.2.62-r1.ebuild
similarity index 96%
rename from sys-kernel/hardened-sources/hardened-sources-3.2.62.ebuild
rename to sys-kernel/hardened-sources/hardened-sources-3.2.62-r1.ebuild
index b658290..e77441a 100644
--- a/sys-kernel/hardened-sources/hardened-sources-3.2.62.ebuild
+++ b/sys-kernel/hardened-sources/hardened-sources-3.2.62-r1.ebuild
@@ -12,7 +12,7 @@ K_DEBLOB_AVAILABLE="1"
 inherit kernel-2
 detect_version
 
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-1"
+HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2"
 
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2";
 SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
 



[gentoo-commits] gentoo-x86 commit in dev-perl/Test-NoWarnings: Test-NoWarnings-1.40.0-r1.ebuild ChangeLog Test-NoWarnings-1.40.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 20:11:10

  Modified: ChangeLog
  Added:Test-NoWarnings-1.40.0-r1.ebuild
  Removed:  Test-NoWarnings-1.40.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.50 dev-perl/Test-NoWarnings/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-NoWarnings/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   1 Feb 2014 23:45:11 -   1.49
+++ ChangeLog   20 Aug 2014 20:11:10 -  1.50
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Test-NoWarnings
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-NoWarnings/ChangeLog,v 1.49 
2014/02/01 23:45:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-NoWarnings/ChangeLog,v 1.50 
2014/08/20 20:11:10 axs Exp $
+
+*Test-NoWarnings-1.40.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-NoWarnings-1.40.0-r1.ebuild, -Test-NoWarnings-1.40.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   01 Feb 2014; Mike Frysinger  
Test-NoWarnings-1.40.0.ebuild:
   Add arm64/m68k love.



1.1  dev-perl/Test-NoWarnings/Test-NoWarnings-1.40.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-NoWarnings/Test-NoWarnings-1.40.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-NoWarnings/Test-NoWarnings-1.40.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-NoWarnings-1.40.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-NoWarnings/Test-NoWarnings-1.40.0-r1.ebuild,v
 1.1 2014/08/20 20:11:10 axs Exp $

EAPI=5

MODULE_AUTHOR=ADAMK
MODULE_VERSION=1.04
inherit perl-module

DESCRIPTION="Make sure you didn't emit any warnings while testing"

SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""

RDEPEND=">=dev-perl/Test-Tester-0.107"
DEPEND="${RDEPEND}"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Tester: Test-Tester-0.108.0-r1.ebuild Test-Tester-0.109.0-r1.ebuild ChangeLog Test-Tester-0.108.0.ebuild Test-Tester-0.109.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 20:08:36

  Modified: ChangeLog
  Added:Test-Tester-0.108.0-r1.ebuild
Test-Tester-0.109.0-r1.ebuild
  Removed:  Test-Tester-0.108.0.ebuild
Test-Tester-0.109.0.ebuild
  Log:
  bumped EAPI to 5; committed 0.108.0 directly to stable as no other changes 
present and revbump helps stable systems to keep from dieing on perl-5.18 
upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.56 dev-perl/Test-Tester/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Tester/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   1 Feb 2014 23:40:55 -   1.55
+++ ChangeLog   20 Aug 2014 20:08:35 -  1.56
@@ -1,6 +1,16 @@
 # ChangeLog for dev-perl/Test-Tester
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Tester/ChangeLog,v 1.55 
2014/02/01 23:40:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Tester/ChangeLog,v 1.56 
2014/08/20 20:08:35 axs Exp $
+
+*Test-Tester-0.108.0-r1 (20 Aug 2014)
+*Test-Tester-0.109.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-Tester-0.108.0-r1.ebuild, +Test-Tester-0.109.0-r1.ebuild,
+  -Test-Tester-0.108.0.ebuild, -Test-Tester-0.109.0.ebuild:
+  bumped EAPI to 5; committed 0.108.0 directly to stable as no other changes
+  present and revbump helps stable systems to keep from dieing on perl-5.18
+  upgrade
 
   01 Feb 2014; Mike Frysinger  Test-Tester-0.108.0.ebuild,
   Test-Tester-0.109.0.ebuild:



1.1  dev-perl/Test-Tester/Test-Tester-0.108.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Tester/Test-Tester-0.108.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Tester/Test-Tester-0.108.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Tester-0.108.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Tester/Test-Tester-0.108.0-r1.ebuild,v 
1.1 2014/08/20 20:08:35 axs Exp $

EAPI=5

MODULE_AUTHOR=FDALY
MODULE_VERSION=0.108
inherit perl-module

DESCRIPTION="Ease testing test modules built with Test::Builder"

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

SRC_TEST="do"



1.1  dev-perl/Test-Tester/Test-Tester-0.109.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Tester/Test-Tester-0.109.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Tester/Test-Tester-0.109.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Tester-0.109.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Tester/Test-Tester-0.109.0-r1.ebuild,v 
1.1 2014/08/20 20:08:35 axs Exp $

EAPI=5

MODULE_AUTHOR=FDALY
MODULE_VERSION=0.109
inherit perl-module

DESCRIPTION="Ease testing test modules built with Test::Builder"

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

SRC_TEST="do"






[gentoo-commits] proj/hardened-patchset: New tag: 20100711

2014-08-20 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug 20 20:02:47 2014 +

New tag: 20100711




[gentoo-commits] proj/hardened-patchset:master commit in: 3.14.17/, 3.15.10/, 3.2.62/

2014-08-20 Thread Anthony G. Basile
commit: a559b42a27e8937ad9d9345717820cd312f2ffc6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Aug 20 20:01:43 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug 20 20:01:43 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-patchset.git;a=commit;h=a559b42a

Grsec/PaX: 3.0-{3.2.62,3.14.17,3.15.10}-201408192020

---
 3.14.17/_README|  2 +-
 ...4420_grsecurity-3.0-3.14.17-201408192019.patch} | 37 +++---
 3.15.10/_README|  2 +-
 ...4420_grsecurity-3.0-3.15.10-201408192020.patch} | 37 +++---
 3.2.62/_README |  2 +-
 ... 4420_grsecurity-3.0-3.2.62-201408191950.patch} | 11 ++-
 6 files changed, 77 insertions(+), 14 deletions(-)

diff --git a/3.14.17/_README b/3.14.17/_README
index e4c4eb2..ce3685e 100644
--- a/3.14.17/_README
+++ b/3.14.17/_README
@@ -2,7 +2,7 @@ README
 -
 Individual Patch Descriptions:
 -
-Patch: 4420_grsecurity-3.0-3.14.17-201408140021.patch
+Patch: 4420_grsecurity-3.0-3.14.17-201408192019.patch
 From:  http://www.grsecurity.net
 Desc:  hardened-sources base patch from upstream grsecurity
 

diff --git a/3.14.17/4420_grsecurity-3.0-3.14.17-201408140021.patch 
b/3.14.17/4420_grsecurity-3.0-3.14.17-201408192019.patch
similarity index 99%
rename from 3.14.17/4420_grsecurity-3.0-3.14.17-201408140021.patch
rename to 3.14.17/4420_grsecurity-3.0-3.14.17-201408192019.patch
index 1f1739c..73749ef 100644
--- a/3.14.17/4420_grsecurity-3.0-3.14.17-201408140021.patch
+++ b/3.14.17/4420_grsecurity-3.0-3.14.17-201408192019.patch
@@ -44456,7 +44456,7 @@ index 56e24c0..e1c8e1f 100644
   "md/raid1:%s: read error 
corrected "
   "(%d sectors at %llu on %s)\n",
 diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c
-index cb882aa..9bd076e 100644
+index cb882aa..cb8aeca 100644
 --- a/drivers/md/raid10.c
 +++ b/drivers/md/raid10.c
 @@ -1949,7 +1949,7 @@ static void end_sync_read(struct bio *bio, int error)
@@ -44518,8 +44518,25 @@ index cb882aa..9bd076e 100644
}
  
rdev_dec_pending(rdev, mddev);
+@@ -2954,6 +2954,7 @@ static sector_t sync_request(struct mddev *mddev, 
sector_t sector_nr,
+*/
+   if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
+   end_reshape(conf);
++  close_sync(conf);
+   return 0;
+   }
+ 
+@@ -4411,7 +4412,7 @@ read_more:
+   read_bio->bi_private = r10_bio;
+   read_bio->bi_end_io = end_sync_read;
+   read_bio->bi_rw = READ;
+-  read_bio->bi_flags &= ~(BIO_POOL_MASK - 1);
++  read_bio->bi_flags &= (~0UL << BIO_RESET_BITS);
+   read_bio->bi_flags |= 1 << BIO_UPTODATE;
+   read_bio->bi_vcnt = 0;
+   read_bio->bi_iter.bi_size = 0;
 diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
-index 16f5c21..522b82e 100644
+index 16f5c21..c5d72c7 100644
 --- a/drivers/md/raid5.c
 +++ b/drivers/md/raid5.c
 @@ -1707,6 +1707,10 @@ static int grow_one_stripe(struct r5conf *conf, int 
hash)
@@ -44580,6 +44597,15 @@ index 16f5c21..522b82e 100644
 > conf->max_nr_stripes)
printk(KERN_WARNING
   "md/raid:%s: Too many read errors, failing 
device %s.\n",
+@@ -3779,6 +3787,8 @@ static void handle_stripe(struct stripe_head *sh)
+   set_bit(R5_Wantwrite, &dev->flags);
+   if (prexor)
+   continue;
++  if (s.failed > 1)
++  continue;
+   if (!test_bit(R5_Insync, &dev->flags) ||
+   ((i == sh->pd_idx || i == sh->qd_idx)  &&
+s.failed == 0))
 diff --git a/drivers/media/dvb-core/dvbdev.c b/drivers/media/dvb-core/dvbdev.c
 index 983db75..ef9248c 100644
 --- a/drivers/media/dvb-core/dvbdev.c
@@ -74698,10 +74724,10 @@ index 000..4d6fce8
 +#endif
 diff --git a/grsecurity/grsec_exec.c b/grsecurity/grsec_exec.c
 new file mode 100644
-index 000..f35f454
+index 000..14638ff
 --- /dev/null
 +++ b/grsecurity/grsec_exec.c
-@@ -0,0 +1,187 @@
+@@ -0,0 +1,188 @@
 +#include 
 +#include 
 +#include 
@@ -74836,7 +74862,8 @@ index 000..f35f454
 +  "CAP_MAC_OVERRIDE",
 +  "CAP_MAC_ADMIN",
 +  "CAP_SYSLOG",
-+  "CAP_WAKE_ALARM"
++  "CAP_WAKE_ALARM",
++  "CAP_BLOCK_SUSPEND"
 +};
 +
 +int captab_log_entries = sizeof(captab_log)/sizeof(captab_log[0]);

diff --git a/3.15.10/_README b/3.15.10/_README
index 9e87c71..70556f5 100644
--- a/3

[gentoo-commits] gentoo-x86 commit in dev-perl/XML-LibXML: XML-LibXML-2.1.400-r1.ebuild ChangeLog XML-LibXML-2.1.400.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 19:47:33

  Modified: ChangeLog
  Added:XML-LibXML-2.1.400-r1.ebuild
  Removed:  XML-LibXML-2.1.400.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.158dev-perl/XML-LibXML/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog   16 Mar 2014 12:53:19 -  1.157
+++ ChangeLog   20 Aug 2014 19:47:33 -  1.158
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/XML-LibXML
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.157 
2014/03/16 12:53:19 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.158 
2014/08/20 19:47:33 axs Exp $
+
+*XML-LibXML-2.1.400-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +XML-LibXML-2.1.400-r1.ebuild, -XML-LibXML-2.1.400.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   16 Mar 2014; Mikle Kolyada  XML-LibXML-2.1.400.ebuild:
   alpha stable wrt bug #495512



1.1  dev-perl/XML-LibXML/XML-LibXML-2.1.400-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400-r1.ebuild?rev=1.1&content-type=text/plain

Index: XML-LibXML-2.1.400-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400-r1.ebuild,v 1.1 
2014/08/20 19:47:33 axs Exp $

EAPI=5

MODULE_AUTHOR=SHLOMIF
MODULE_VERSION=2.0014
inherit perl-module

DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's 
libXSLT"

SLOT="0"
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="test"

RDEPEND="
>=dev-perl/XML-SAX-0.120.0
>=dev-libs/libxml2-2.6.21
>=dev-perl/XML-NamespaceSupport-1.70.0
"
DEPEND="${RDEPEND}
test? (
dev-perl/Test-Pod
)
"

SRC_TEST="do"

# rac can't discern any difference between the build with or without
# this, and if somebody wants to reactivate it, get it out of global
# scope.
#export PERL5LIB=`perl -e 'print map { ":$ENV{D}/$_" } @INC'`
mytargets="pure_install doc_install"

src_compile() {
export SKIP_SAX_INSTALL=1
perl-module_src_compile
}

pkg_postinst() {
pkg_update_parser add XML::LibXML::SAX::Parser
pkg_update_parser add XML::LibXML::SAX
}

pkg_postrm() {
pkg_update_parser remove XML::LibXML::SAX::Parser
pkg_update_parser remove XML::LibXML::SAX
}

pkg_update_parser() {
# pkg_update_parser [add|remove] $parser_module
local action=$1
local parser_module=$2

if [[ "$ROOT" = "/" ]] ; then
einfo "Update Parser: $1 $2"
perl -MXML::SAX -e 
"XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()" \
|| ewarn "Update Parser: $1 $2 failed"
else
elog "To $1 $2 run:"
elog "perl -MXML::SAX -e 
'XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()'"
fi
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/tilt: ChangeLog tilt-2.0.1.ebuild

2014-08-20 Thread Hans de Graaff (graaff)
graaff  14/08/20 19:37:47

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

Revision  ChangesPath
1.35 dev-ruby/tilt/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tilt/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   12 Aug 2014 19:54:41 -  1.34
+++ ChangeLog   20 Aug 2014 19:37:47 -  1.35
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/tilt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tilt/ChangeLog,v 1.34 2014/08/12 
19:54:41 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tilt/ChangeLog,v 1.35 2014/08/20 
19:37:47 graaff Exp $
+
+*tilt-2.0.1 (20 Aug 2014)
+
+  20 Aug 2014; Hans de Graaff  +tilt-2.0.1.ebuild:
+  Version bump.
 
   12 Aug 2014; Anthony G. Basile  tilt-1.4.1-r1.ebuild,
   tilt-1.4.1.ebuild:



1.1  dev-ruby/tilt/tilt-2.0.1.ebuild

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

Index: tilt-2.0.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tilt/tilt-2.0.1.ebuild,v 1.1 
2014/08/20 19:37:47 graaff Exp $

EAPI=5

# jruby fails tests
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/TEMPLATES.md"

inherit ruby-fakegem

DESCRIPTION="A thin interface over a Ruby template engines to make their usage 
as generic as possible"
HOMEPAGE="http://github.com/rtomayko/tilt";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""

# Block on some of the potential test dependencies. These dependencies
# are optional for the test suite, and we don't want to depend on all of
# them to faciliate keywording and stabling.
ruby_add_bdepend "test? (
dev-ruby/bluecloth
dev-ruby/coffee-script
dev-ruby/erubis
dev-ruby/nokogiri
dev-ruby/radius
!!=dev-ruby/builder-2.0.0"

all_ruby_prepare() {
rm Gemfile || die
sed -e '/bundler/I s:^:#:' -i Rakefile test/test_helper.rb || die

# Avoid tests with minor syntax differences since this happens all
# the time when details in the dependencies change.
sed -e '/test_smarty_pants_true/,/^end/ s:^:#:' -i 
test/tilt_markdown_test.rb || die
sed -e '/smartypants when :smart is set/,/^end/ s:^:#:' -i 
test/tilt_rdiscounttemplate_test.rb || die
}






[gentoo-commits] proj/hardened-dev:musl commit in: sys-devel/gcc/

2014-08-20 Thread Anthony G. Basile
commit: 4766355c3ec3665080ca153ba22e2664674a9e24
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Aug 20 19:36:27 2014 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug 20 19:36:27 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=4766355c

sys-devel/gcc-4.7.4: switch to EAPI=2, bug #520346

Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: 0xF52D4BBA

---
 sys-devel/gcc/gcc-4.7.4-r99.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-4.7.4-r99.ebuild 
b/sys-devel/gcc/gcc-4.7.4-r99.ebuild
index ea62b60..0eef441 100644
--- a/sys-devel/gcc/gcc-4.7.4-r99.ebuild
+++ b/sys-devel/gcc/gcc-4.7.4-r99.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.7.3.ebuild,v 1.2 
2013/05/20 10:56:06 aballier Exp $
 
-EAPI="4"
+EAPI="2"
 
 PATCH_VER="1.1"
 UCLIBC_VER="1.0"



[gentoo-commits] gentoo-x86 commit in www-apps/jekyll: ChangeLog jekyll-1.5.1.ebuild

2014-08-20 Thread Manuel Rueger (mrueg)
mrueg   14/08/20 19:05:38

  Modified: ChangeLog
  Removed:  jekyll-1.5.1.ebuild
  Log:
  Cleanup old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.5  www-apps/jekyll/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-apps/jekyll/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   16 Aug 2014 13:09:59 -  1.4
+++ ChangeLog   20 Aug 2014 19:05:38 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/jekyll
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/jekyll/ChangeLog,v 1.4 2014/08/16 
13:09:59 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/jekyll/ChangeLog,v 1.5 2014/08/20 
19:05:38 mrueg Exp $
+
+  20 Aug 2014; Manuel Rüger  -jekyll-1.5.1.ebuild:
+  Cleanup old.
 
   16 Aug 2014; Manuel Rüger  jekyll-2.3.0.ebuild:
   Add missing test dependency.






[gentoo-commits] gentoo-x86 commit in sys-boot/unetbootin: unetbootin-608.ebuild ChangeLog

2014-08-20 Thread Johannes Huber (johu)
johu14/08/20 19:00:42

  Modified: unetbootin-608.ebuild ChangeLog
  Log:
  amd64 stable, bug #511158
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xF3CFD2BD)

Revision  ChangesPath
1.3  sys-boot/unetbootin/unetbootin-608.ebuild

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

Index: unetbootin-608.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-608.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unetbootin-608.ebuild   14 Aug 2014 16:50:06 -  1.2
+++ unetbootin-608.ebuild   20 Aug 2014 19:00:42 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-608.ebuild,v 
1.2 2014/08/14 16:50:06 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-608.ebuild,v 
1.3 2014/08/20 19:00:42 johu Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 UNBI_LINGUAS="



1.107sys-boot/unetbootin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.107&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?rev=1.107&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/unetbootin/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog   14 Aug 2014 16:50:06 -  1.106
+++ ChangeLog   20 Aug 2014 19:00:42 -  1.107
@@ -1,6 +1,9 @@
 # ChangeLog for sys-boot/unetbootin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.106 
2014/08/14 16:50:06 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.107 
2014/08/20 19:00:42 johu Exp $
+
+  20 Aug 2014; Johannes Huber  unetbootin-608.ebuild:
+  amd64 stable, bug #511158
 
   14 Aug 2014; Pawel Hajdan jr  unetbootin-608.ebuild:
   x86 stable wrt bug #511158






[gentoo-commits] gentoo-x86 commit in dev-db/myodbc: myodbc-5.2.7.ebuild ChangeLog

2014-08-20 Thread Brian Evans (grknight)
grknight14/08/20 18:52:50

  Modified: myodbc-5.2.7.ebuild ChangeLog
  Log:
  Fix build failures on >=dev-db/mariadb-10.0
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.2  dev-db/myodbc/myodbc-5.2.7.ebuild

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

Index: myodbc-5.2.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/myodbc/myodbc-5.2.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- myodbc-5.2.7.ebuild 29 Jul 2014 03:35:31 -  1.1
+++ myodbc-5.2.7.ebuild 20 Aug 2014 18:52:50 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/myodbc/myodbc-5.2.7.ebuild,v 1.1 
2014/07/29 03:35:31 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/myodbc/myodbc-5.2.7.ebuild,v 1.2 
2014/08/20 18:52:50 grknight Exp $
 
 EAPI=5
 inherit cmake-utils eutils flag-o-matic versionator
@@ -38,7 +38,9 @@
echo "TARGET_LINK_LIBRARIES(myodbc-installer odbc)" >> 
"${S}/installer/CMakeLists.txt"
 
# Patch document path so it doesn't install files to /usr
-   epatch "${FILESDIR}/cmake-doc-path.patch"
+   epatch "${FILESDIR}/cmake-doc-path.patch" \
+   "${FILESDIR}/${PV}-cxxlinkage.patch" \
+   "${FILESDIR}/${PV}-mariadb-dynamic-array.patch"
 }
 
 src_configure() {
@@ -49,6 +51,7 @@
-DWITH_UNIXODBC=1
-DRPM_BUILD=1
-DMYSQLCLIENT_LIB_NAME="libmysqlclient_r.so"
+   -DWITH_DOCUMENTATION_INSTALL_PATH=/usr/share/doc/${P}
)
 
cmake-utils_src_configure



1.37 dev-db/myodbc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/myodbc/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   29 Jul 2014 03:35:31 -  1.36
+++ ChangeLog   20 Aug 2014 18:52:50 -  1.37
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/myodbc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/myodbc/ChangeLog,v 1.36 2014/07/29 
03:35:31 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/myodbc/ChangeLog,v 1.37 2014/08/20 
18:52:50 grknight Exp $
+
+  20 Aug 2014;   +files/5.2.7-cxxlinkage.patch,
+  +files/5.2.7-mariadb-dynamic-array.patch, myodbc-5.2.7.ebuild:
+  Fix build failures on >=dev-db/mariadb-10.0
 
 *myodbc-5.2.7 (29 Jul 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-db/myodbc/files: 5.2.7-cxxlinkage.patch 5.2.7-mariadb-dynamic-array.patch

2014-08-20 Thread Brian Evans (grknight)
grknight14/08/20 18:52:50

  Added:5.2.7-cxxlinkage.patch
5.2.7-mariadb-dynamic-array.patch
  Log:
  Fix build failures on >=dev-db/mariadb-10.0
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.1  dev-db/myodbc/files/5.2.7-cxxlinkage.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/myodbc/files/5.2.7-cxxlinkage.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/myodbc/files/5.2.7-cxxlinkage.patch?rev=1.1&content-type=text/plain

Index: 5.2.7-cxxlinkage.patch
===
diff -uarN mysql-connector-odbc-5.3.4-src.orig/cmake/FindMySQL.cmake 
mysql-connector-odbc-5.3.4-src/cmake/FindMySQL.cmake
--- mysql-connector-odbc-5.3.4-src.orig/cmake/FindMySQL.cmake   2014-06-18 
18:50:16.0 -0400
+++ mysql-connector-odbc-5.3.4-src/cmake/FindMySQL.cmake2014-08-20 
10:05:00.191485304 -0400
@@ -105,16 +105,16 @@
   # Finally remove the dot
   STRING(REGEX REPLACE "[.]" "" MYSQL_NUM_VERSION "${MYSQL_NUM_VERSION}")
 
-  IF(MYSQL_CXX_LINKAGE OR MYSQL_NUM_VERSION GREATER 50603)
+  IF(MYSQL_CXX_LINKAGE)
 EXECUTE_PROCESS(COMMAND ${MYSQL_CONFIG_EXECUTABLE} "--cxxflags"
 OUTPUT_VARIABLE _mysql_config_output
 )
 SET(MYSQL_CXX_LINKAGE 1)
-  ELSE (MYSQL_CXX_LINKAGE OR MYSQL_NUM_VERSION GREATER 50603)
+  ELSE (MYSQL_CXX_LINKAGE)
 EXECUTE_PROCESS(COMMAND ${MYSQL_CONFIG_EXECUTABLE} "--cflags"
 OUTPUT_VARIABLE _mysql_config_output
 )
-  ENDIF(MYSQL_CXX_LINKAGE OR MYSQL_NUM_VERSION GREATER 50603)
+  ENDIF(MYSQL_CXX_LINKAGE)
 
   # Remove the stl4port dependency
   STRING(REGEX REPLACE "-library=stlport4" "" _mysql_config_output 
"${_mysql_config_output}")



1.1  dev-db/myodbc/files/5.2.7-mariadb-dynamic-array.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/myodbc/files/5.2.7-mariadb-dynamic-array.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/myodbc/files/5.2.7-mariadb-dynamic-array.patch?rev=1.1&content-type=text/plain

Index: 5.2.7-mariadb-dynamic-array.patch
===
diff -aurN a/driver/catalog_no_i_s.c b/driver/catalog_no_i_s.c
--- a/driver/catalog_no_i_s.c   2014-06-18 18:50:16.0 -0400
+++ b/driver/catalog_no_i_s.c   2014-08-20 14:08:33.997339096 -0400
@@ -1093,7 +1093,11 @@
   unsigned long *lengths;
   SQLRETURN rc= SQL_SUCCESS;
 
+#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID > 11
+  my_init_dynamic_array(&records, sizeof(MY_FOREIGN_KEY_FIELD), 0, 0, MYF(0));
+#else
   my_init_dynamic_array(&records, sizeof(MY_FOREIGN_KEY_FIELD), 0, 0);
+#endif
 
   /* Get the list of tables that match szCatalog and szTable */
   pthread_mutex_lock(&stmt->dbc->lock);
diff -aurN a/driver/desc.c b/driver/desc.c
--- a/driver/desc.c 2014-06-18 18:50:16.0 -0400
+++ b/driver/desc.c 2014-08-20 14:07:37.409169269 -0400
@@ -63,8 +63,12 @@
  but in desc_get_rec we manually get a pointer to it. This avoids
  having to call set_dynamic after modifying the DESCREC.
   */
+#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID > 11
+  if (my_init_dynamic_array(&desc->records, sizeof(DESCREC), 0, 0, MYF(0)))
+#else
   if (my_init_dynamic_array(&desc->records, sizeof(DESCREC), 0, 0))
+#endif
   {
 x_free((char *)desc);
 return NULL;
   }
@@ -995,9 +1003,15 @@
 
   /* copy the records */
   delete_dynamic(&dest->records);
+#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID > 11
+  if (my_init_dynamic_array(&dest->records, sizeof(DESCREC),
+src->records.max_element,
+src->records.alloc_increment, MYF(0)))
+#else
   if (my_init_dynamic_array(&dest->records, sizeof(DESCREC),
 src->records.max_element,
 src->records.alloc_increment))
+#endif
   {
 return set_desc_error(dest, "HY001",
   "Memory allocation error",
diff -aurN a/driver/handle.c b/driver/handle.c
--- a/driver/handle.c   2014-06-18 18:50:16.0 -0400
+++ b/driver/handle.c   2014-08-20 14:05:00.364248403 -0400
@@ -403,7 +403,11 @@
 }
   }
 
+#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID > 11
+  my_init_dynamic_array(*param_bind, sizeof(MYSQL_BIND), elements, 10, MYF(0));
+#else
   my_init_dynamic_array(*param_bind, sizeof(MYSQL_BIND), elements, 10);
+#endif
   memset((*param_bind)->buffer, 0, sizeof(MYSQL_BIND) *

(*param_bind)->max_element);
 
diff -aurN a/driver/parse.c b/driver/parse.c
--- a/driver/parse.c2014-06-18 18:50:16.0 -0400
+++ b/driver/parse.c2014-08-20 14:03:54.336383876 -0400
@@ -129,8 +129,13 @@
 
 /* TODO: Store offsets rath

[gentoo-commits] gentoo-x86 commit in dev-perl/XML-NamespaceSupport: XML-NamespaceSupport-1.110.0-r1.ebuild ChangeLog XML-NamespaceSupport-1.110.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:47:04

  Modified: ChangeLog
  Added:XML-NamespaceSupport-1.110.0-r1.ebuild
  Removed:  XML-NamespaceSupport-1.110.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.57 dev-perl/XML-NamespaceSupport/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-NamespaceSupport/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   25 Feb 2013 21:07:02 -  1.56
+++ ChangeLog   20 Aug 2014 18:47:04 -  1.57
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/XML-NamespaceSupport
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-NamespaceSupport/ChangeLog,v 
1.56 2013/02/25 21:07:02 zmedico Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-NamespaceSupport/ChangeLog,v 
1.57 2014/08/20 18:47:04 axs Exp $
+
+*XML-NamespaceSupport-1.110.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +XML-NamespaceSupport-1.110.0-r1.ebuild, 
-XML-NamespaceSupport-1.110.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   25 Feb 2013; Zac Medico 
   XML-NamespaceSupport-1.110.0.ebuild:



1.1  
dev-perl/XML-NamespaceSupport/XML-NamespaceSupport-1.110.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-NamespaceSupport/XML-NamespaceSupport-1.110.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-NamespaceSupport/XML-NamespaceSupport-1.110.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: XML-NamespaceSupport-1.110.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/XML-NamespaceSupport/XML-NamespaceSupport-1.110.0-r1.ebuild,v
 1.1 2014/08/20 18:47:04 axs Exp $

EAPI=5

MODULE_AUTHOR=PERIGRIN
MODULE_VERSION=1.11
inherit perl-module

DESCRIPTION="A Perl module that offers a simple to process namespaced XML names"

SLOT="0"
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=""

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-ruby/yajl-ruby: yajl-ruby-1.2.1.ebuild ChangeLog

2014-08-20 Thread Hans de Graaff (graaff)
graaff  14/08/20 18:44:01

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

Revision  ChangesPath
1.32 dev-ruby/yajl-ruby/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/yajl-ruby/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   15 Aug 2014 16:54:40 -  1.31
+++ ChangeLog   20 Aug 2014 18:44:01 -  1.32
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/yajl-ruby
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yajl-ruby/ChangeLog,v 1.31 
2014/08/15 16:54:40 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yajl-ruby/ChangeLog,v 1.32 
2014/08/20 18:44:01 graaff Exp $
+
+*yajl-ruby-1.2.1 (20 Aug 2014)
+
+  20 Aug 2014; Hans de Graaff  +yajl-ruby-1.2.1.ebuild:
+  Version bump.
 
   15 Aug 2014; Raúl Porcel  yajl-ruby-1.1.0.ebuild,
   yajl-ruby-1.1.0-r1.ebuild, yajl-ruby-1.2.0.ebuild:



1.1  dev-ruby/yajl-ruby/yajl-ruby-1.2.1.ebuild

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

Index: yajl-ruby-1.2.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yajl-ruby/yajl-ruby-1.2.1.ebuild,v 
1.1 2014/08/20 18:44:01 graaff Exp $

EAPI=5

USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"

RUBY_FAKEGEM_RECIPE_TEST="rspec"

RUBY_FAKEGEM_TASK_DOC=""

inherit multilib ruby-fakegem

DESCRIPTION="Ruby C bindings to the Yajl JSON stream-based parser library"
HOMEPAGE="http://github.com/brianmario/yajl-ruby";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""

RDEPEND="${RDEPEND} dev-libs/yajl"
DEPEND="${DEPEND} dev-libs/yajl"

each_ruby_prepare() {
# Make sure the right ruby interpreter is used
sed -e '/capture/ s:ruby:'${RUBY}':' -i 
spec/parsing/large_number_spec.rb || die
}

each_ruby_configure() {
${RUBY} -Cext/yajl extconf.rb || die "extconf.rb failed"
}

each_ruby_compile() {
emake -Cext/yajl CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" V=1
cp ext/yajl/yajl$(get_modname) lib/yajl/ || die
}

each_ruby_test() {
# Set RUBYLIB to pass search path on to additional interpreters that
# are started.
RUBYLIB=lib ${RUBY} -S rspec --format progress spec || die
}






[gentoo-commits] gentoo-x86 commit in dev-util/eric: eric-4.5.24.ebuild eric-5.4.6.ebuild ChangeLog eric-5.3.8.ebuild eric-4.5.17.ebuild eric-5.4.0_rc1.ebuild

2014-08-20 Thread Davide Pesavento (pesa)
pesa14/08/20 18:38:29

  Modified: ChangeLog
  Added:eric-4.5.24.ebuild eric-5.4.6.ebuild
  Removed:  eric-5.3.8.ebuild eric-4.5.17.ebuild
eric-5.4.0_rc1.ebuild
  Log:
  Version bumps.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  ChangesPath
1.210dev-util/eric/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog   3 Aug 2014 15:55:28 -   1.209
+++ ChangeLog   20 Aug 2014 18:38:29 -  1.210
@@ -1,6 +1,14 @@
 # ChangeLog for dev-util/eric
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.209 2014/08/03 
15:55:28 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.210 2014/08/20 
18:38:29 pesa Exp $
+
+*eric-5.4.6 (20 Aug 2014)
+*eric-4.5.24 (20 Aug 2014)
+
+  20 Aug 2014; Davide Pesavento  +eric-4.5.24.ebuild,
+  +eric-5.4.6.ebuild, -eric-4.5.17.ebuild, -eric-5.3.8.ebuild,
+  -eric-5.4.0_rc1.ebuild:
+  Version bumps.
 
   03 Aug 2014; Michał Górny  eric-5.4.0_rc1.ebuild:
   Enable Python 3.3 & 3.4.



1.1  dev-util/eric/eric-4.5.24.ebuild

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

Index: eric-4.5.24.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.5.24.ebuild,v 1.1 
2014/08/20 18:38:29 pesa Exp $

EAPI=4

PYTHON_DEPEND="2:2.7"
SUPPORT_PYTHON_ABIS="1"
# 2.4 and 2.5 are restricted to avoid conditional dependency on 
dev-python/simplejson
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-jython 2.7-pypy-*"

PLOCALES="cs de en es fr it ru tr zh_CN"

inherit eutils l10n python

DESCRIPTION="A full featured Python IDE using PyQt4 and QScintilla"
HOMEPAGE="http://eric-ide.python-projects.org/";

SLOT="4"
MY_PV=${PV/_rc/-RC}
MY_P=${PN}${SLOT}-${MY_PV}

BASE_URI="mirror://sourceforge/eric-ide/${PN}${SLOT}/stable/${MY_PV}"
SRC_URI="${BASE_URI}/${MY_P}.tar.gz"
for L in ${PLOCALES}; do
SRC_URI+=" linguas_${L}? ( 
${BASE_URI}/${PN}${SLOT}-i18n-${L/zh_CN/zh_CN.GB2312}-${MY_PV}.tar.gz )"
done
unset L

LICENSE="GPL-3"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="kde"

DEPEND="
>=dev-python/sip-4.12.4
>=dev-python/PyQt4-4.9.6-r1[X,help,svg,webkit]
>=dev-python/qscintilla-python-2.3
kde? ( kde-base/pykde4 )
"
RDEPEND="${DEPEND}
>=dev-python/chardet-2.0.1
>=dev-python/coverage-3.0.1
>=dev-python/pygments-1.5
"

S=${WORKDIR}/${MY_P}

PYTHON_VERSIONED_EXECUTABLES=("/usr/bin/.*")

src_prepare() {
epatch "${FILESDIR}/eric-4.5-no-interactive.patch"
use kde || epatch "${FILESDIR}/eric-4.4-no-pykde.patch"

# Delete internal copies of dev-python/chardet,
# dev-python/pygments and dev-python/simplejson
rm -fr eric/ThirdParty

# Delete internal copy of dev-python/coverage
rm -fr eric/DebugClients/Python{,3}/coverage
sed -i -e 's/from DebugClients\.Python3\?\.coverage/from coverage/' \
$(grep -lr 'from DebugClients\.Python3\?\.coverage' .) || die
}

src_install() {
installation() {
"$(PYTHON)" install.py \
-z \
-b "${EPREFIX}/usr/bin" \
-i "${T}/images/${PYTHON_ABI}" \
-d "${EPREFIX}$(python_get_sitedir)" \
-c
}
python_execute_function installation
python_merge_intermediate_installation_images "${T}/images"

doicon eric/icons/default/eric.png
make_desktop_entry "eric4 --nosplash" eric4 eric "Development;IDE;Qt"
}

pkg_postinst() {
python_mod_optimize eric4{,config.py,plugins}

elog "The following packages will give Eric extended functionality:"
elog "  dev-python/cx_Freeze"
elog "  dev-python/pyenchant"
elog "  dev-python/pylint"
elog "  dev-python/pysvn"
elog "  dev-vcs/mercurial"
elog
elog "This version has a plugin interface with plugin-autofetch from"
elog "the application itself. You ma

[gentoo-commits] gentoo-x86 commit in dev-util/aruba: ChangeLog aruba-0.6.1.ebuild

2014-08-20 Thread Hans de Graaff (graaff)
graaff  14/08/20 18:32:21

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

Revision  ChangesPath
1.45 dev-util/aruba/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/aruba/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   16 Aug 2014 07:44:30 -  1.44
+++ ChangeLog   20 Aug 2014 18:32:21 -  1.45
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/aruba
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/aruba/ChangeLog,v 1.44 2014/08/16 
07:44:30 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/aruba/ChangeLog,v 1.45 2014/08/20 
18:32:21 graaff Exp $
+
+*aruba-0.6.1 (20 Aug 2014)
+
+  20 Aug 2014; Hans de Graaff  +aruba-0.6.1.ebuild:
+  Version bump.
 
 *aruba-0.6.0 (16 Aug 2014)
 



1.1  dev-util/aruba/aruba-0.6.1.ebuild

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

Index: aruba-0.6.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/aruba/aruba-0.6.1.ebuild,v 1.1 
2014/08/20 18:32:21 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_RECIPE_TEST="cucumber"
RUBY_FAKEGEM_EXTRADOC="History.md README.md"

RUBY_FAKEGEM_GEMSPEC="aruba.gemspec"

inherit ruby-fakegem

DESCRIPTION="Cucumber steps for driving out command line applications"
HOMEPAGE="https://github.com/cucumber/aruba";
LICENSE="MIT"

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
SLOT="0"
IUSE=""

DEPEND="${DEPEND} test? ( sys-devel/bc )"
RDEPEND="${RDEPEND}"

ruby_add_rdepend "
>=dev-ruby/childprocess-0.3.6
>=dev-ruby/rspec-expectations-2.7:2
>=dev-util/cucumber-1.1.1"

ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.11:2 >=dev-ruby/bcat-0.6.1 )"

all_ruby_prepare() {
# Remove bundler-related code.
sed -i -e '/[Bb]undler/d' Rakefile || die
rm Gemfile || die

# Remove references to git ls-files.
sed -i -e '/git ls-files/d' aruba.gemspec || die
}






[gentoo-commits] gentoo-x86 commit in dev-perl/XML-SAX-Base: XML-SAX-Base-1.80.0-r1.ebuild ChangeLog

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:26:50

  Modified: ChangeLog
  Added:XML-SAX-Base-1.80.0-r1.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.24 dev-perl/XML-SAX-Base/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Base/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   25 Feb 2013 21:07:47 -  1.23
+++ ChangeLog   20 Aug 2014 18:26:50 -  1.24
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/XML-SAX-Base
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Base/ChangeLog,v 1.23 
2013/02/25 21:07:47 zmedico Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Base/ChangeLog,v 1.24 
2014/08/20 18:26:50 axs Exp $
+
+*XML-SAX-Base-1.80.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +XML-SAX-Base-1.80.0-r1.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   25 Feb 2013; Zac Medico  XML-SAX-Base-1.80.0.ebuild:
   Add ~arm-linux keyword.



1.1  dev-perl/XML-SAX-Base/XML-SAX-Base-1.80.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-SAX-Base/XML-SAX-Base-1.80.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-SAX-Base/XML-SAX-Base-1.80.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: XML-SAX-Base-1.80.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Base/XML-SAX-Base-1.80.0-r1.ebuild,v 
1.1 2014/08/20 18:26:50 axs Exp $

EAPI=5

MODULE_AUTHOR=GRANTM
MODULE_VERSION=1.08
inherit perl-module eutils

DESCRIPTION="Base class SAX Drivers and Filters"

SLOT="0"
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="
!

[gentoo-commits] gentoo-x86 commit in sci-physics/lammps: lammps-20140815.ebuild ChangeLog

2014-08-20 Thread Nicolas Bock (nicolasbock)
nicolasbock14/08/20 18:22:23

  Modified: lammps-20140815.ebuild ChangeLog
  Log:
  sci-physics/lammps-20140815: Fix linker error.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
AC91CA52)

Revision  ChangesPath
1.2  sci-physics/lammps/lammps-20140815.ebuild

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

Index: lammps-20140815.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lammps-20140815.ebuild  17 Aug 2014 23:52:33 -  1.1
+++ lammps-20140815.ebuild  20 Aug 2014 18:22:23 -  1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild,v 
1.1 2014/08/17 23:52:33 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/lammps-20140815.ebuild,v 
1.2 2014/08/20 18:22:23 nicolasbock Exp $
 
 EAPI=5
 
-inherit eutils fortran-2 multilib
+inherit eutils flag-o-matic fortran-2 multilib
 
 convert_month() {
case $1 in
@@ -67,7 +67,7 @@
CC=$(usex mpi "mpic++" "$(tc-getCXX)") \
F90=$(usex mpi "mpif90" "$(tc-getFC)") \
LINK=$(usex mpi "mpic++" "$(tc-getCXX)") \
-   CCFLAGS="${CXXFLAGS} -I../../src" \
+   CCFLAGS="${CXXFLAGS}" \
F90FLAGS="${FCFLAGS}" \
LINKFLAGS="${LDFLAGS}" \
LMP_INC="${LAMMPS_INCLUDEFLAGS}" \
@@ -79,9 +79,6 @@
 
 src_prepare() {
# Fix inconsistent use of SHFLAGS.
-   sed -i -e 's:$(CCFLAGS):$(CCFLAGS) -fPIC:' src/STUBS/Makefile || die
-   sed -i -e 's:$(F90FLAGS):$(F90FLAGS) -fPIC:' lib/meam/Makefile.gfortran 
|| die
-   sed -i -e 's:$(F90FLAGS):$(F90FLAGS) -fPIC:' lib/reax/Makefile.gfortran 
|| die
sed -i \
-e 's:voronoi_SYSINC\s\+=.*$:voronoi_SYSINC = 
-I/usr/include/voro++:' \
-e 's:voronoi_SYSPATH\s\+=.*$:voronoi_SYSPATH =:' \
@@ -101,6 +98,10 @@
 }
 
 src_compile() {
+   # Prepare compiler flags.
+   append-cxxflags -fPIC -I../../src
+   append-fflags -fPIC
+
# Compile stubs for serial version.
use mpi || lmp_emake -C src stubs
 
@@ -137,8 +138,11 @@
emake -C src yes-srd
emake -C src yes-voronoi
emake -C src yes-xtc
-   emake -C src yes-user-atc
-   lmp_emake -C lib/atc -f Makefile.g++
+
+   if use mpi; then
+   emake -C src yes-user-atc
+   lmp_emake -C lib/atc -f Makefile.g++
+   fi
 
if use static-libs; then
# Build static library.



1.37 sci-physics/lammps/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   17 Aug 2014 23:52:33 -  1.36
+++ ChangeLog   20 Aug 2014 18:22:23 -  1.37
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/lammps
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.36 
2014/08/17 23:52:33 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.37 
2014/08/20 18:22:23 nicolasbock Exp $
+
+  20 Aug 2014; Nicolas Bock  lammps-20140815.ebuild:
+  sci-physics/lammps-20140815: Fix linker error.
 
 *lammps-20140815 (17 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Warn: Test-Warn-0.240.0-r1.ebuild ChangeLog Test-Warn-0.240.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:17:00

  Modified: ChangeLog
  Added:Test-Warn-0.240.0-r1.ebuild
  Removed:  Test-Warn-0.240.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.57 dev-perl/Test-Warn/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Warn/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   9 Jun 2014 23:42:52 -   1.56
+++ ChangeLog   20 Aug 2014 18:17:00 -  1.57
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Test-Warn
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Warn/ChangeLog,v 1.56 
2014/06/09 23:42:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Warn/ChangeLog,v 1.57 
2014/08/20 18:17:00 axs Exp $
+
+*Test-Warn-0.240.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-Warn-0.240.0-r1.ebuild, -Test-Warn-0.240.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   09 Jun 2014; Mike Frysinger  Test-Warn-0.240.0.ebuild:
   Add arm64 love.



1.1  dev-perl/Test-Warn/Test-Warn-0.240.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Warn/Test-Warn-0.240.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Warn/Test-Warn-0.240.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Warn-0.240.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Warn/Test-Warn-0.240.0-r1.ebuild,v 1.1 
2014/08/20 18:17:00 axs Exp $

EAPI=5

MODULE_AUTHOR=CHORNY
MODULE_VERSION=0.24
inherit perl-module

DESCRIPTION="Perl extension to test methods for warnings"

SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
IUSE="test"

RDEPEND=">=dev-perl/Sub-Uplevel-0.12
dev-perl/Tree-DAG_Node
virtual/perl-Test-Simple
virtual/perl-File-Spec"
DEPEND="test? ( ${RDEPEND}
dev-perl/Test-Pod )"

SRC_TEST="do"






[gentoo-commits] proj/betagarden:master commit in: media-fonts/wqy-zenhei/

2014-08-20 Thread Sebastian Pipping
commit: 1dae1a190a9d8dcadc93fbc56e197eec413412c6
Author: Sebastian Pipping  pipping  org>
AuthorDate: Wed Aug 20 17:54:34 2014 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Wed Aug 20 18:10:12 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=1dae1a19

media-fonts/wqy-zenhei: 0.8.38

---
 media-fonts/wqy-zenhei/metadata.xml |  8 +++
 media-fonts/wqy-zenhei/wqy-zenhei-0.8.38.ebuild | 29 +
 2 files changed, 37 insertions(+)

diff --git a/media-fonts/wqy-zenhei/metadata.xml 
b/media-fonts/wqy-zenhei/metadata.xml
new file mode 100644
index 000..16bcc9f
--- /dev/null
+++ b/media-fonts/wqy-zenhei/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   sp...@gentoo.org
+   Sebastian Pipping
+   
+

diff --git a/media-fonts/wqy-zenhei/wqy-zenhei-0.8.38.ebuild 
b/media-fonts/wqy-zenhei/wqy-zenhei-0.8.38.ebuild
new file mode 100644
index 000..52607e1
--- /dev/null
+++ b/media-fonts/wqy-zenhei/wqy-zenhei-0.8.38.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+inherit font
+
+MY_PV=${PV/_/-}
+DESCRIPTION="Chinese font"
+HOMEPAGE="http://sourceforge.net/projects/wqy/";
+SRC_URI="mirror://sourceforge/project/wqy/${PN}/${PV}%20%28Pangu%29/wqy-zenhei-${PV}-1.tar.gz"
+
+LICENSE="GPL-2-with-font-exception"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE=""
+
+S="${WORKDIR}"/${PN}
+
+src_install() {
+   insinto ${FONTDIR}
+   newins ${PN}.{ttc,ttf} || die
+
+   export FONT_CONF=( 44-wqy-zenhei.conf 66-wqy-zenhei-sharp.conf 
66-wqy-zenhei-sharp-no13px.conf )
+   font_fontconfig
+
+   dodoc AUTHORS ChangeLog README || die
+}



[gentoo-commits] proj/betagarden:master commit in: media-fonts/wqy-zenhei/

2014-08-20 Thread Sebastian Pipping
commit: 5440cd43c90d4c819e67a0f579bc7165a184a87f
Author: Sebastian Pipping  pipping  org>
AuthorDate: Wed Aug 20 18:05:31 2014 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Wed Aug 20 18:10:12 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=5440cd43

media-fonts/wqy-zenhei: 0.9.45

---
 media-fonts/wqy-zenhei/wqy-zenhei-0.9.45.ebuild | 33 +
 1 file changed, 33 insertions(+)

diff --git a/media-fonts/wqy-zenhei/wqy-zenhei-0.9.45.ebuild 
b/media-fonts/wqy-zenhei/wqy-zenhei-0.9.45.ebuild
new file mode 100644
index 000..b80d4e5
--- /dev/null
+++ b/media-fonts/wqy-zenhei/wqy-zenhei-0.9.45.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+inherit font
+
+MY_PV=${PV/_/-}
+DESCRIPTION="Chinese font"
+HOMEPAGE="http://sourceforge.net/projects/wqy/";
+SRC_URI="mirror://sourceforge/project/wqy/${PN}/${PV}%20%28Fighting-state%20RC1%29/wqy-zenhei-${PV}.tar.gz"
+
+LICENSE="GPL-2-with-font-exception"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE=""
+
+S="${WORKDIR}"/${PN}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   insinto ${FONTDIR}
+   newins ${PN}.{ttc,ttf} || die
+
+   export FONT_CONF=( 43-wqy-zenhei-sharp.conf 44-wqy-zenhei.conf )
+   font_fontconfig
+
+   dodoc AUTHORS ChangeLog README || die
+}



[gentoo-commits] proj/betagarden:master commit in: media-fonts/wqy-zenhei/

2014-08-20 Thread Sebastian Pipping
commit: 8c333cdb0983fc72049e13f2dc5c5c3729cc0427
Author: Sebastian Pipping  pipping  org>
AuthorDate: Wed Aug 20 18:09:19 2014 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Wed Aug 20 18:10:12 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=8c333cdb

media-fonts/wqy-zenhei: 0.9.46

---
 media-fonts/wqy-zenhei/wqy-zenhei-0.9.46.ebuild | 32 +
 1 file changed, 32 insertions(+)

diff --git a/media-fonts/wqy-zenhei/wqy-zenhei-0.9.46.ebuild 
b/media-fonts/wqy-zenhei/wqy-zenhei-0.9.46.ebuild
new file mode 100644
index 000..46fde6d
--- /dev/null
+++ b/media-fonts/wqy-zenhei/wqy-zenhei-0.9.46.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+inherit font
+
+MY_PV=${PV/_/-}
+DESCRIPTION="Chinese font"
+HOMEPAGE="http://sourceforge.net/projects/wqy/";
+SRC_URI="mirror://sourceforge/project/wqy/${PN}-snapshot/${PV}-May/${PN}-${PV}-May.tar.bz2"
+LICENSE="GPL-2-with-font-exception"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE=""
+
+S="${WORKDIR}"/${PN}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   insinto ${FONTDIR}
+   newins ${PN}.{ttc,ttf} || die
+
+   export FONT_CONF=( 43-wqy-zenhei-sharp.conf 44-wqy-zenhei.conf )
+   font_fontconfig
+
+   dodoc AUTHORS ChangeLog README || die
+}



[gentoo-commits] proj/betagarden:master commit in: media-fonts/wqy-microhei/

2014-08-20 Thread Sebastian Pipping
commit: 76368baddc3d42f78982874504c517ad446add69
Author: Sebastian Pipping  pipping  org>
AuthorDate: Wed Aug 20 17:31:22 2014 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Wed Aug 20 18:14:17 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=76368bad

media-fonts/wqy-microhei: 0.2.0_beta

---
 media-fonts/wqy-microhei/metadata.xml  |  8 +++
 .../wqy-microhei/wqy-microhei-0.2.0_beta.ebuild| 28 ++
 2 files changed, 36 insertions(+)

diff --git a/media-fonts/wqy-microhei/metadata.xml 
b/media-fonts/wqy-microhei/metadata.xml
new file mode 100644
index 000..16bcc9f
--- /dev/null
+++ b/media-fonts/wqy-microhei/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   sp...@gentoo.org
+   Sebastian Pipping
+   
+

diff --git a/media-fonts/wqy-microhei/wqy-microhei-0.2.0_beta.ebuild 
b/media-fonts/wqy-microhei/wqy-microhei-0.2.0_beta.ebuild
new file mode 100644
index 000..0f35e41
--- /dev/null
+++ b/media-fonts/wqy-microhei/wqy-microhei-0.2.0_beta.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+inherit font
+
+MY_PV=${PV/_/-}
+DESCRIPTION="Chinese font"
+HOMEPAGE="http://sourceforge.net/projects/wqy/";
+SRC_URI="mirror://sourceforge/project/wqy/${PN}/${MY_PV}/${PN}-${MY_PV}.tar.gz
+   
mirror://sourceforge/project/wqy/${PN}-lite/${MY_PV}/${PN}-lite-${MY_PV}.tar.gz"
+
+LICENSE="|| ( Apache-2.0 GPL-3-with-font-exception )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE=""
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto ${FONTDIR}
+   newins ${PN}/${PN}.ttc ${PN}.ttf || die
+   newins ${PN}-lite/${PN}-lite.ttc ${PN}-lite.ttf || die
+
+   dodoc ${PN}/{AUTHORS,ChangeLog,README}.txt || die
+}



[gentoo-commits] gentoo-x86 commit in dev-perl/HTML-Parser: HTML-Parser-3.710.0-r1.ebuild ChangeLog HTML-Parser-3.710.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:13:27

  Modified: ChangeLog
  Added:HTML-Parser-3.710.0-r1.ebuild
  Removed:  HTML-Parser-3.710.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.171dev-perl/HTML-Parser/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/HTML-Parser/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog   22 Feb 2014 15:54:00 -  1.170
+++ ChangeLog   20 Aug 2014 18:13:27 -  1.171
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/HTML-Parser
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Parser/ChangeLog,v 1.170 
2014/02/22 15:54:00 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Parser/ChangeLog,v 1.171 
2014/08/20 18:13:27 axs Exp $
+
+*HTML-Parser-3.710.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +HTML-Parser-3.710.0-r1.ebuild, -HTML-Parser-3.710.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   22 Feb 2014; Mikle Kolyada  -HTML-Parser-3.690.0.ebuild,
   HTML-Parser-3.710.0.ebuild:



1.1  dev-perl/HTML-Parser/HTML-Parser-3.710.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/HTML-Parser/HTML-Parser-3.710.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/HTML-Parser/HTML-Parser-3.710.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: HTML-Parser-3.710.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/HTML-Parser/HTML-Parser-3.710.0-r1.ebuild,v 
1.1 2014/08/20 18:13:27 axs Exp $

EAPI=5

MODULE_AUTHOR=GAAS
MODULE_VERSION=3.71
inherit perl-module

DESCRIPTION="Parse  section of HTML documents"

SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
IUSE="test"

RDEPEND=">=dev-perl/HTML-Tagset-3.03"
DEPEND="${RDEPEND}
test? ( dev-perl/Test-Pod )"

SRC_TEST=do
mydoc="ANNOUNCEMENT"






[gentoo-commits] gentoo-x86 commit in dev-perl/HTML-Tagset: HTML-Tagset-3.200.0-r1.ebuild ChangeLog HTML-Tagset-3.200.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:13:26

  Modified: ChangeLog
  Added:HTML-Tagset-3.200.0-r1.ebuild
  Removed:  HTML-Tagset-3.200.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.53 dev-perl/HTML-Tagset/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/HTML-Tagset/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog   20 Jan 2014 23:25:36 -  1.52
+++ ChangeLog   20 Aug 2014 18:13:26 -  1.53
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/HTML-Tagset
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Tagset/ChangeLog,v 1.52 
2014/01/20 23:25:36 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Tagset/ChangeLog,v 1.53 
2014/08/20 18:13:26 axs Exp $
+
+*HTML-Tagset-3.200.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +HTML-Tagset-3.200.0-r1.ebuild, -HTML-Tagset-3.200.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   20 Jan 2014; Mike Frysinger  HTML-Tagset-3.200.0.ebuild:
   Add arm64 love.



1.1  dev-perl/HTML-Tagset/HTML-Tagset-3.200.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/HTML-Tagset/HTML-Tagset-3.200.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/HTML-Tagset/HTML-Tagset-3.200.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: HTML-Tagset-3.200.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/HTML-Tagset/HTML-Tagset-3.200.0-r1.ebuild,v 
1.1 2014/08/20 18:13:26 axs Exp $

EAPI=5

MODULE_AUTHOR=PETDANCE
MODULE_VERSION=3.20
inherit perl-module

DESCRIPTION="Data tables useful in parsing HTML"

SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
IUSE=""

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Requires: Test-Requires-0.60.0-r1.ebuild ChangeLog Test-Requires-0.60.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:08:04

  Modified: ChangeLog
  Added:Test-Requires-0.60.0-r1.ebuild
  Removed:  Test-Requires-0.60.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.28 dev-perl/Test-Requires/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Requires/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   1 Feb 2014 23:52:57 -   1.27
+++ ChangeLog   20 Aug 2014 18:08:04 -  1.28
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Test-Requires
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Requires/ChangeLog,v 1.27 
2014/02/01 23:52:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Requires/ChangeLog,v 1.28 
2014/08/20 18:08:04 axs Exp $
+
+*Test-Requires-0.60.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-Requires-0.60.0-r1.ebuild, -Test-Requires-0.60.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   01 Feb 2014; Mike Frysinger  Test-Requires-0.60.0.ebuild:
   Add arm64/m68k love.



1.1  dev-perl/Test-Requires/Test-Requires-0.60.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Requires/Test-Requires-0.60.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Requires/Test-Requires-0.60.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Requires-0.60.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Requires/Test-Requires-0.60.0-r1.ebuild,v 
1.1 2014/08/20 18:08:04 axs Exp $

EAPI=5

MODULE_AUTHOR=TOKUHIROM
MODULE_VERSION=0.06
inherit perl-module

DESCRIPTION="Checks to see if the module can be loaded"

SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x86-solaris"
IUSE=""

RDEPEND=">=virtual/perl-Test-Simple-0.61"
DEPEND="${RDEPEND}"

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-perl/Class-Accessor: Class-Accessor-0.340.0-r1.ebuild ChangeLog Class-Accessor-0.340.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:05:01

  Modified: ChangeLog
  Added:Class-Accessor-0.340.0-r1.ebuild
  Removed:  Class-Accessor-0.340.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.72 dev-perl/Class-Accessor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-Accessor/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   1 Sep 2012 11:15:57 -   1.71
+++ ChangeLog   20 Aug 2014 18:05:01 -  1.72
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Class-Accessor
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Accessor/ChangeLog,v 1.71 
2012/09/01 11:15:57 grobian Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Accessor/ChangeLog,v 1.72 
2014/08/20 18:05:01 axs Exp $
+
+*Class-Accessor-0.340.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Class-Accessor-0.340.0-r1.ebuild, -Class-Accessor-0.340.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   01 Sep 2012; Fabian Groffen 
   Class-Accessor-0.340.0.ebuild:



1.1  dev-perl/Class-Accessor/Class-Accessor-0.340.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-Accessor/Class-Accessor-0.340.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-Accessor/Class-Accessor-0.340.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Class-Accessor-0.340.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Accessor/Class-Accessor-0.340.0-r1.ebuild,v
 1.1 2014/08/20 18:05:01 axs Exp $

EAPI=5

MODULE_AUTHOR=KASEI
MODULE_VERSION=0.34
inherit perl-module

DESCRIPTION="Automated accessor generation"

SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~ppc-aix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""

RDEPEND="dev-perl/Sub-Name"
DEPEND="${RDEPEND}"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Sub-Name: Sub-Name-0.50.0-r1.ebuild ChangeLog Sub-Name-0.50.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:04:27

  Modified: ChangeLog
  Added:Sub-Name-0.50.0-r1.ebuild
  Removed:  Sub-Name-0.50.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.28 dev-perl/Sub-Name/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Sub-Name/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   23 Feb 2014 14:53:17 -  1.27
+++ ChangeLog   20 Aug 2014 18:04:27 -  1.28
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Sub-Name
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Name/ChangeLog,v 1.27 
2014/02/23 14:53:17 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Name/ChangeLog,v 1.28 
2014/08/20 18:04:27 axs Exp $
+
+*Sub-Name-0.50.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Sub-Name-0.50.0-r1.ebuild, -Sub-Name-0.50.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   23 Feb 2014; Naohiro Aota  Sub-Name-0.50.0.ebuild:
   Add ~x86-fbsd.



1.1  dev-perl/Sub-Name/Sub-Name-0.50.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Name/Sub-Name-0.50.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Name/Sub-Name-0.50.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Sub-Name-0.50.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Name/Sub-Name-0.50.0-r1.ebuild,v 1.1 
2014/08/20 18:04:27 axs Exp $

EAPI=5

MODULE_AUTHOR=FLORA
MODULE_VERSION=0.05
inherit perl-module

DESCRIPTION="(Re)name a sub"

SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-solaris"
IUSE=""

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Fatal: Test-Fatal-0.10.0-r1.ebuild ChangeLog Test-Fatal-0.10.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 18:00:47

  Modified: ChangeLog
  Added:Test-Fatal-0.10.0-r1.ebuild
  Removed:  Test-Fatal-0.10.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.33 dev-perl/Test-Fatal/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Fatal/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   1 Feb 2014 23:53:09 -   1.32
+++ ChangeLog   20 Aug 2014 18:00:47 -  1.33
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Test-Fatal
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Fatal/ChangeLog,v 1.32 
2014/02/01 23:53:09 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Fatal/ChangeLog,v 1.33 
2014/08/20 18:00:47 axs Exp $
+
+*Test-Fatal-0.10.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-Fatal-0.10.0-r1.ebuild, -Test-Fatal-0.10.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   01 Feb 2014; Mike Frysinger  Test-Fatal-0.10.0.ebuild:
   Add arm64/m68k love.



1.1  dev-perl/Test-Fatal/Test-Fatal-0.10.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Fatal/Test-Fatal-0.10.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Fatal/Test-Fatal-0.10.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Fatal-0.10.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Fatal/Test-Fatal-0.10.0-r1.ebuild,v 1.1 
2014/08/20 18:00:47 axs Exp $

EAPI=5

MODULE_AUTHOR=RJBS
MODULE_VERSION=0.010
inherit perl-module

DESCRIPTION="Incredibly simple helpers for testing code with exceptions"

SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
IUSE="test"

RDEPEND=">=dev-perl/Try-Tiny-0.70.0"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.30
test? ( virtual/perl-Test-Simple )"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Sub-Uplevel: Sub-Uplevel-0.240.0-r1.ebuild ChangeLog Sub-Uplevel-0.240.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 17:56:19

  Modified: ChangeLog
  Added:Sub-Uplevel-0.240.0-r1.ebuild
  Removed:  Sub-Uplevel-0.240.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.89 dev-perl/Sub-Uplevel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Sub-Uplevel/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog   1 Feb 2014 23:34:58 -   1.88
+++ ChangeLog   20 Aug 2014 17:56:19 -  1.89
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Sub-Uplevel
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Uplevel/ChangeLog,v 1.88 
2014/02/01 23:34:58 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Uplevel/ChangeLog,v 1.89 
2014/08/20 17:56:19 axs Exp $
+
+*Sub-Uplevel-0.240.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Sub-Uplevel-0.240.0-r1.ebuild, -Sub-Uplevel-0.240.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   01 Feb 2014; Mike Frysinger  Sub-Uplevel-0.240.0.ebuild:
   Add arm64 love.



1.1  dev-perl/Sub-Uplevel/Sub-Uplevel-0.240.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Uplevel/Sub-Uplevel-0.240.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Uplevel/Sub-Uplevel-0.240.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Sub-Uplevel-0.240.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Uplevel/Sub-Uplevel-0.240.0-r1.ebuild,v 
1.1 2014/08/20 17:56:19 axs Exp $

EAPI=5

MODULE_AUTHOR=DAGOLDEN
MODULE_VERSION=0.24
inherit perl-module

DESCRIPTION="Apparently run a function in a higher stack frame"

SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Exception: Test-Exception-0.320.0-r1.ebuild ChangeLog Test-Exception-0.320.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 17:55:22

  Modified: ChangeLog
  Added:Test-Exception-0.320.0-r1.ebuild
  Removed:  Test-Exception-0.320.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.86 dev-perl/Test-Exception/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Exception/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   13 Mar 2014 11:34:45 -  1.85
+++ ChangeLog   20 Aug 2014 17:55:22 -  1.86
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Test-Exception
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Exception/ChangeLog,v 1.85 
2014/03/13 11:34:45 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Exception/ChangeLog,v 1.86 
2014/08/20 17:55:22 axs Exp $
+
+*Test-Exception-0.320.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Test-Exception-0.320.0-r1.ebuild, -Test-Exception-0.320.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   13 Mar 2014; Mikle Kolyada  -Test-Exception-0.27.ebuild,
   -Test-Exception-0.310.0.ebuild, Test-Exception-0.320.0.ebuild:



1.1  dev-perl/Test-Exception/Test-Exception-0.320.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Exception/Test-Exception-0.320.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Exception/Test-Exception-0.320.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Test-Exception-0.320.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Exception/Test-Exception-0.320.0-r1.ebuild,v
 1.1 2014/08/20 17:55:22 axs Exp $

EAPI=5

MODULE_AUTHOR=ADIE
MODULE_VERSION=0.32
inherit perl-module

DESCRIPTION="test functions for exception based code"

SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""

RDEPEND=">=virtual/perl-Test-Simple-0.64
>=dev-perl/Sub-Uplevel-0.18"
DEPEND="${RDEPEND}
>=virtual/perl-Module-Build-0.36"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in www-servers/hiawatha: hiawatha-9.7.ebuild ChangeLog

2014-08-20 Thread Julian Ospald (hasufell)
hasufell14/08/20 17:49:45

  Modified: ChangeLog
  Added:hiawatha-9.7.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.8  www-servers/hiawatha/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/hiawatha/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   12 Jul 2014 00:19:54 -  1.7
+++ ChangeLog   20 Aug 2014 17:49:45 -  1.8
@@ -1,6 +1,11 @@
 # ChangeLog for www-servers/hiawatha
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/hiawatha/ChangeLog,v 1.7 
2014/07/12 00:19:54 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/hiawatha/ChangeLog,v 1.8 
2014/08/20 17:49:45 hasufell Exp $
+
+*hiawatha-9.7 (20 Aug 2014)
+
+  20 Aug 2014; Julian Ospald  +hiawatha-9.7.ebuild:
+  version bump
 
   12 Jul 2014; Julian Ospald  hiawatha-9.6.ebuild,
   hiawatha-9.6-r1.ebuild:



1.1  www-servers/hiawatha/hiawatha-9.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/hiawatha/hiawatha-9.7.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/hiawatha/hiawatha-9.7.ebuild?rev=1.1&content-type=text/plain

Index: hiawatha-9.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/hiawatha/hiawatha-9.7.ebuild,v 
1.1 2014/08/20 17:49:45 hasufell Exp $

# ssl USE flag currently broken
# https://github.com/hsleisink/hiawatha/issues/15

EAPI=5

CMAKE_MIN_VERSION="2.8.4"

inherit cmake-utils systemd user

DESCRIPTION="Advanced and secure webserver"
HOMEPAGE="http://www.hiawatha-webserver.org";
SRC_URI="http://www.hiawatha-webserver.org/files/${P}.tar.gz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +cache ipv6 monitor +rewrite rproxy tomahawk +xslt"

RDEPEND="
>=net-libs/polarssl-1.3[threads]
xslt? ( dev-libs/libxslt
dev-libs/libxml2 )"
DEPEND="${RDEPEND}"
PDEPEND="monitor? ( www-apps/hiawatha-monitor )"

# set this in make.conf if you want to use a different user/group
HIAWATHA_USER=${HIAWATHA_USER:-hiawatha}
HIAWATHA_GROUP=${HIAWATHA_GROUP:-hiawatha}

pkg_setup() {
enewgroup ${HIAWATHA_GROUP}
enewuser ${HIAWATHA_USER} -1 -1 /var/www/hiawatha ${HIAWATHA_GROUP}
}

src_prepare() {
epatch "${FILESDIR}"/${PN}-9.5-cflags.patch

rm -r polarssl || die

grep '#ServerId =' config/hiawatha.conf.in 1>/dev/null || die
sed -i \
-e "s/#ServerId =.*$/ServerId = ${HIAWATHA_USER}/" \
config/hiawatha.conf.in || die
}

src_configure() {
local mycmakeargs=(
-DCONFIG_DIR:STRING=/etc/hiawatha
$(cmake-utils_use_enable cache CACHE)
$(cmake-utils_use_enable debug DEBUG)
$(cmake-utils_use_enable ipv6 IPV6)
$(cmake-utils_use_enable kernel_linux LOADCHECK)
$(cmake-utils_use_enable monitor MONITOR)
$(cmake-utils_use_enable rproxy RPROXY)
-DENABLE_SSL=YES
$(cmake-utils_use_enable tomahawk TOMAHAWK)
$(cmake-utils_use_enable rewrite TOOLKIT)
$(cmake-utils_use_enable xslt XSLT)
-DLOG_DIR:STRING=/var/log/hiawatha
-DPID_DIR:STRING=/var/run
-DUSE_SHARED_POLARSSL_LIBRARY=ON
-DUSE_SYSTEM_POLARSSL=ON
-DWEBROOT_DIR:STRING=/var/www/hiawatha
-DWORK_DIR:STRING=/var/lib/hiawatha
)

cmake-utils_src_configure
}

src_install() {
cmake-utils_src_install

rm -rf "${ED%%/}"/var/www/hiawatha/*

newinitd "${FILESDIR}"/hiawatha.initd hiawatha
systemd_dounit "${FILESDIR}"/hiawatha.service

local i
for i in /var/{lib,log}/hiawatha ; do
keepdir ${i}
fowners ${HIAWATHA_USER}:${HIAWATHA_GROUP} ${i}
fperms 0750 ${i}
done

keepdir /var/www/hiawatha
fowners ${HIAWATHA_USER}:${HIAWATHA_GROUP} /var/www/hiawatha
}






[gentoo-commits] gentoo-x86 commit in games-engines/renpy: ChangeLog renpy-6.17.6.ebuild renpy-6.17.4.ebuild

2014-08-20 Thread Julian Ospald (hasufell)
hasufell14/08/20 17:36:28

  Modified: ChangeLog
  Removed:  renpy-6.17.6.ebuild renpy-6.17.4.ebuild
  Log:
  rm old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.46 games-engines/renpy/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/ChangeLog?rev=1.46&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/ChangeLog?rev=1.46&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-engines/renpy/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   20 Aug 2014 17:35:12 -  1.45
+++ ChangeLog   20 Aug 2014 17:36:28 -  1.46
@@ -1,6 +1,11 @@
 # ChangeLog for games-engines/renpy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/ChangeLog,v 1.45 
2014/08/20 17:35:12 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/ChangeLog,v 1.46 
2014/08/20 17:36:28 hasufell Exp $
+
+  20 Aug 2014; Julian Ospald  -renpy-6.17.4.ebuild,
+  -renpy-6.17.6.ebuild, -files/renpy-6.17.4-multiple-abi.patch,
+  -files/renpy-6.17.6-multiple-abi.patch:
+  rm old
 
 *renpy-6.18.0 (20 Aug 2014)
 






[gentoo-commits] gentoo-x86 commit in games-engines/renpy/files: renpy-6.17.4-multiple-abi.patch renpy-6.17.6-multiple-abi.patch

2014-08-20 Thread Julian Ospald (hasufell)
hasufell14/08/20 17:36:28

  Removed:  renpy-6.17.4-multiple-abi.patch
renpy-6.17.6-multiple-abi.patch
  Log:
  rm old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)



[gentoo-commits] gentoo-x86 commit in sys-cluster/ploop: ploop-1.12.ebuild ChangeLog ploop-1.9.ebuild

2014-08-20 Thread Maxim Koltsov (maksbotan)
maksbotan14/08/20 17:29:19

  Modified: ChangeLog
  Added:ploop-1.12.ebuild
  Removed:  ploop-1.9.ebuild
  Log:
  Bump to 1.12, drop obsolete postinst message, thanks to slepnoga. Clean old.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

Revision  ChangesPath
1.31 sys-cluster/ploop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ChangeLog?rev=1.31&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ChangeLog?rev=1.31&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   27 Jul 2014 15:29:15 -  1.30
+++ ChangeLog   20 Aug 2014 17:29:19 -  1.31
@@ -1,6 +1,12 @@
 # ChangeLog for sys-cluster/ploop
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.30 
2014/07/27 15:29:15 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.31 
2014/08/20 17:29:19 maksbotan Exp $
+
+*ploop-1.12 (20 Aug 2014)
+
+  20 Aug 2014; Maxim Koltsov  +ploop-1.12.ebuild,
+  -ploop-1.9.ebuild:
+  Bump to 1.12, drop obsolete postinst message, thanks to slepnoga. Clean old.
 
   27 Jul 2014; Mikle Kolyada  ploop-1.11.ebuild:
   amd64 stable wrt bug #515870



1.1  sys-cluster/ploop/ploop-1.12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ploop-1.12.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ploop/ploop-1.12.ebuild?rev=1.1&content-type=text/plain

Index: ploop-1.12.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ploop-1.12.ebuild,v 1.1 
2014/08/20 17:29:19 maksbotan Exp $

EAPI=5

inherit eutils toolchain-funcs multilib systemd

DESCRIPTION="openvz tool and a library to control ploop block devices"
HOMEPAGE="http://wiki.openvz.org/Download/ploop";
SRC_URI="http://download.openvz.org/utils/ploop/${PV}/src/${P}.tar.bz2";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug static-libs"

DEPEND="
dev-libs/libxml2
virtual/pkgconfig
"

RDEPEND="dev-libs/libxml2
!

[gentoo-commits] gentoo-x86 commit in games-engines/renpy: renpy-6.18.0.ebuild ChangeLog

2014-08-20 Thread Julian Ospald (hasufell)
hasufell14/08/20 17:35:12

  Modified: ChangeLog
  Added:renpy-6.18.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.45 games-engines/renpy/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-engines/renpy/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   30 Jul 2014 18:06:23 -  1.44
+++ ChangeLog   20 Aug 2014 17:35:12 -  1.45
@@ -1,6 +1,12 @@
 # ChangeLog for games-engines/renpy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/ChangeLog,v 1.44 
2014/07/30 18:06:23 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/ChangeLog,v 1.45 
2014/08/20 17:35:12 hasufell Exp $
+
+*renpy-6.18.0 (20 Aug 2014)
+
+  20 Aug 2014; Julian Ospald 
+  +files/renpy-6.18.0-multiple-abi.patch, +renpy-6.18.0.ebuild:
+  version bump
 
   30 Jul 2014; Chema Alonso  renpy-6.17.7.ebuild:
   Stable for amd64 wrt bug #518182



1.1  games-engines/renpy/renpy-6.18.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/renpy-6.18.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/renpy-6.18.0.ebuild?rev=1.1&content-type=text/plain

Index: renpy-6.18.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/renpy-6.18.0.ebuild,v 
1.1 2014/08/20 17:35:12 hasufell Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_IN_SOURCE_BUILD=1
inherit eutils toolchain-funcs python-r1 versionator gnome2-utils games 
distutils-r1

DESCRIPTION="Visual novel engine written in python"
HOMEPAGE="http://www.renpy.org";
SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2";

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
MYSLOT=$(delete_all_version_separators ${SLOT})
KEYWORDS="~amd64 ~x86"
IUSE="development doc examples"
REQUIRED_USE="examples? ( development )"

RDEPEND="
>=app-admin/eselect-renpy-0.4
dev-libs/fribidi
dev-python/pygame[X,${PYTHON_USEDEP}]
>=dev-lang/python-exec-0.3[${PYTHON_USEDEP}]
media-libs/glew
media-libs/libpng:0
media-libs/libsdl[X,video]
media-libs/freetype:2
sys-libs/zlib
virtual/ffmpeg"
DEPEND="${RDEPEND}
dev-python/cython[${PYTHON_USEDEP}]
virtual/pkgconfig"

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

pkg_setup() {
games_pkg_setup
export CFLAGS="${CFLAGS} $($(tc-getPKG_CONFIG) --cflags fribidi)"
}

python_prepare_all() {
# wooosh! this should fix multiple abi
epatch "${FILESDIR}"/${P}-multiple-abi.patch

einfo "Deleting precompiled python files"
find . -name '*.py[co]' -print -delete || die

sed -i \
-e "s/@SLOT@/${MYSLOT}/" \
renpy.py renpy/common.py || die "setting slot failed!"

distutils-r1_python_prepare_all
}

python_compile() {
cd "${S}"/module || die
distutils-r1_python_compile
}

python_install() {
cd "${S}"/module || die
distutils-r1_python_install 
--install-lib="$(python_get_sitedir)/renpy${MYSLOT}"

cd "${S}" || die
python_scriptinto "${GAMES_BINDIR}"
python_newscript renpy.py ${PN}-${SLOT}

python_moduleinto renpy${MYSLOT}
python_domodule renpy
if use development ; then
python_domodule launcher templates
fi
if use examples ; then
python_domodule the_question tutorial
fi
}

python_install_all() {
if use development; then
newicon -s 32 launcher/game/images/logo32.png ${P}.png
make_desktop_entry ${PN}-${SLOT} "Ren'Py ${PV}" ${P}
fi

if use doc; then
dohtml -r doc
fi

prepgamesdirs
}

pkg_preinst() {
games_pkg_preinst
use development && gnome2_icon_savelist
}

pkg_postinst() {
games_pkg_postinst
use development && gnome2_icon_cache_update

einfo "running: eselect renpy update --if-unset"
eselect renpy update --if-unset
}

pkg_postrm() {
use development && gnome2_icon_cache_update

einfo "running: eselect renpy update --if-unset"
eselect renpy update --if-u

[gentoo-commits] gentoo-x86 commit in games-engines/renpy/files: renpy-6.18.0-multiple-abi.patch

2014-08-20 Thread Julian Ospald (hasufell)
hasufell14/08/20 17:35:12

  Added:renpy-6.18.0-multiple-abi.patch
  Log:
  version bump
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.1  games-engines/renpy/files/renpy-6.18.0-multiple-abi.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/files/renpy-6.18.0-multiple-abi.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/renpy/files/renpy-6.18.0-multiple-abi.patch?rev=1.1&content-type=text/plain

Index: renpy-6.18.0-multiple-abi.patch
===
commit 7451ba936ca2f3358ca51ab562371774199c7052
Author: hasufell 
Date:   Tue Jan 21 01:02:00 2014 +0100

fix multiple abi support

diff --git a/renpy.py b/renpy.py
index 9f2977f..394e4e1 100644
--- a/renpy.py
+++ b/renpy.py
@@ -28,82 +28,9 @@
 import os
 import sys
 import warnings
-
-# Functions to be customized by distributors. 
-
-# Given the Ren'Py base directory (usually the directory containing
-# this file), this is expected to return the path to the common directory.
-def path_to_common(renpy_base):
-return renpy_base + "/renpy/common"
-
-# Given a directory holding a Ren'Py game, this is expected to return
-# the path to a directory that will hold save files.
-def path_to_saves(gamedir):
-import renpy #@UnresolvedImport
-
-# Android.
-if renpy.android:
-paths = [
-os.path.join(os.environ["ANDROID_OLD_PUBLIC"], "game/saves"),
-os.path.join(os.environ["ANDROID_PRIVATE"], "saves"),
-os.path.join(os.environ["ANDROID_PUBLIC"], "saves"),
-]
-
-for rv in paths:
-if os.path.isdir(rv):
-break
-
-print "Using savedir", rv
-
-# We return the last path as the default.
-
-return rv
-
-
-# No save directory given.
-if not renpy.config.save_directory:
-return gamedir + "/saves"
-
-# Search the path above Ren'Py for a directory named "Ren'Py Data".
-# If it exists, then use that for our save directory.
-path = renpy.config.renpy_base
-
-while True:
-if os.path.isdir(path + "/Ren'Py Data"):
-return path + "/Ren'Py Data/" + renpy.config.save_directory
-
-newpath = os.path.dirname(path)
-if path == newpath:
-break
-path = newpath
-
-# Otherwise, put the saves in a platform-specific location.
-if renpy.macintosh:
-rv = "~/Library/RenPy/" + renpy.config.save_directory
-return os.path.expanduser(rv)
-
-elif renpy.windows:
-if 'APPDATA' in os.environ:
-return os.environ['APPDATA'] + "/RenPy/" + 
renpy.config.save_directory
-else:
-rv = "~/RenPy/" + renpy.config.save_directory
-return os.path.expanduser(rv)
-
-else:
-rv = "~/.renpy/" + renpy.config.save_directory
-return os.path.expanduser(rv)
-
-
-# Returns the path to the Ren'Py base directory (containing common and
-# the launcher, usually.)
-def path_to_renpy_base():
-renpy_base = os.path.dirname(os.path.realpath(sys.argv[0]))
-renpy_base = os.environ.get('RENPY_BASE', renpy_base)
-renpy_base = os.path.abspath(renpy_base)
-
-return renpy_base
-
-##
+from distutils.sysconfig import get_python_lib
+sys.path.append(get_python_lib() + "/renpy@SLOT@")
+import renpy.common as common
 
 # The version of the Mac Launcher and py4renpy that we require.
 macos_version = (6, 14, 0)
@@ -131,7 +58,7 @@ if android:
 
 def main():
 
-renpy_base = path_to_renpy_base()
+renpy_base = common.path_to_renpy_base()
 
 # Add paths.
 if os.path.exists(renpy_base + "/module"):
diff --git a/renpy/common.py b/renpy/common.py
new file mode 100644
index 000..1f15b3c
--- /dev/null
+++ b/renpy/common.py
@@ -0,0 +1,103 @@
+# This file is part of Ren'Py. The license below applies to Ren'Py only.
+# Games and other projects that use Ren'Py may use a different license.
+
+# Copyright 2004-2014 Tom Rothamel 
+#
+# Permission is hereby granted, free of charge, to any person
+# obtaining a copy of this software and associated documentation files
+# (the "Software"), to deal in the Software without restriction,
+# including without limitation the rights to use, copy, modify, merge,
+# publish, distribute, sublicense, and/or sell copies of the Software,
+# and to permit persons to whom the Software is furnished to do so,
+# subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A P

[gentoo-commits] gentoo-x86 commit in dev-perl/XML-Simple: XML-Simple-2.200.0-r1.ebuild ChangeLog XML-Simple-2.200.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 17:31:36

  Modified: ChangeLog
  Added:XML-Simple-2.200.0-r1.ebuild
  Removed:  XML-Simple-2.200.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.86 dev-perl/XML-Simple/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-Simple/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   5 Sep 2013 05:41:47 -   1.85
+++ ChangeLog   20 Aug 2014 17:31:36 -  1.86
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/XML-Simple
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-Simple/ChangeLog,v 1.85 
2013/09/05 05:41:47 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-Simple/ChangeLog,v 1.86 
2014/08/20 17:31:36 axs Exp $
+
+*XML-Simple-2.200.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +XML-Simple-2.200.0-r1.ebuild, -XML-Simple-2.200.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   05 Sep 2013; Mike Frysinger  XML-Simple-2.200.0.ebuild:
   Mark s390/sh stable #449628.



1.1  dev-perl/XML-Simple/XML-Simple-2.200.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-Simple/XML-Simple-2.200.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-Simple/XML-Simple-2.200.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: XML-Simple-2.200.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/XML-Simple/XML-Simple-2.200.0-r1.ebuild,v 1.1 
2014/08/20 17:31:36 axs Exp $

EAPI=5

MODULE_AUTHOR=GRANTM
MODULE_VERSION=2.20
inherit perl-module

DESCRIPTION="XML::Simple - Easy API to read/write XML (esp config files)"

SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""

RDEPEND="virtual/perl-Storable
dev-perl/XML-SAX
dev-perl/XML-LibXML
>=dev-perl/XML-NamespaceSupport-1.04
>=dev-perl/XML-Parser-2.30"
DEPEND="${RDEPEND}"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Finance-Quote: Finance-Quote-1.350.0.ebuild ChangeLog

2014-08-20 Thread Samuli Suominen (ssuominen)
ssuominen14/08/20 17:30:14

  Modified: ChangeLog
  Added:Finance-Quote-1.350.0.ebuild
  Log:
  Version bump and complete dependencies wrt #520330 by Harold Naparst
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.75 dev-perl/Finance-Quote/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Finance-Quote/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   12 Jun 2014 18:21:58 -  1.74
+++ ChangeLog   20 Aug 2014 17:30:14 -  1.75
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Finance-Quote
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Finance-Quote/ChangeLog,v 1.74 
2014/06/12 18:21:58 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Finance-Quote/ChangeLog,v 1.75 
2014/08/20 17:30:14 ssuominen Exp $
+
+*Finance-Quote-1.350.0 (20 Aug 2014)
+
+  20 Aug 2014; Samuli Suominen 
+  +Finance-Quote-1.350.0.ebuild:
+  Version bump and complete dependencies wrt #520330 by Harold Naparst
 
   12 Jun 2014; Mikle Kolyada  Finance-Quote-1.290.0.ebuild:
   Add missing test dependency wrt bug #509504



1.1  dev-perl/Finance-Quote/Finance-Quote-1.350.0.ebuild

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

Index: Finance-Quote-1.350.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Finance-Quote/Finance-Quote-1.350.0.ebuild,v 
1.1 2014/08/20 17:30:14 ssuominen Exp $

EAPI=5

MODULE_AUTHOR=ECOCODE
MODULE_VERSION=1.35
inherit perl-module

DESCRIPTION="Get stock and mutual fund quotes from various exchanges"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
IUSE="test"

# virtual/perl-Data-Dumper currently commented out in the code
# dev-perl/Perl-Critic-Dynamic is missing for USE="test" wrt #520340
RDEPEND="dev-perl/Crypt-SSLeay
dev-perl/Date-Calc
dev-perl/HTTP-Cookies
dev-perl/HTTP-Message
dev-perl/HTML-Tree
dev-perl/HTML-TableExtract
dev-perl/JSON
dev-perl/Mozilla-CA
dev-perl/libwww-perl"
DEPEND="${RDEPEND}
test? ( dev-perl/Test-Pod )"

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Unicode-String: Unicode-String-2.90.0-r1.ebuild ChangeLog Unicode-String-2.90.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 17:28:53

  Modified: ChangeLog
  Added:Unicode-String-2.90.0-r1.ebuild
  Removed:  Unicode-String-2.90.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.48 dev-perl/Unicode-String/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Unicode-String/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   5 Dec 2012 11:35:28 -   1.47
+++ ChangeLog   20 Aug 2014 17:28:52 -  1.48
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Unicode-String
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Unicode-String/ChangeLog,v 1.47 
2012/12/05 11:35:28 grobian Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Unicode-String/ChangeLog,v 1.48 
2014/08/20 17:28:52 axs Exp $
+
+*Unicode-String-2.90.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +Unicode-String-2.90.0-r1.ebuild, -Unicode-String-2.90.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   05 Dec 2012; Fabian Groffen  
Unicode-String-2.90.0.ebuild:
   Marked ~x86-linux, bug #444950



1.1  dev-perl/Unicode-String/Unicode-String-2.90.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Unicode-String/Unicode-String-2.90.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Unicode-String/Unicode-String-2.90.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: Unicode-String-2.90.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Unicode-String/Unicode-String-2.90.0-r1.ebuild,v
 1.1 2014/08/20 17:28:52 axs Exp $

EAPI=5

MODULE_AUTHOR=GAAS
MODULE_VERSION=2.09
inherit perl-module

DESCRIPTION="String manipulation for Unicode strings"

SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~x86-linux"
IUSE=""

RDEPEND=">=virtual/perl-MIME-Base64-2.11"
DEPEND="${RDEPEND}"






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

2014-08-20 Thread Sven Vermeulen
commit: 9660ec3c7e65d654770832d9011cce2eb7bc1134
Author: Jason Zaman  perfinion  com>
AuthorDate: Wed Aug 20 16:26:29 2014 +
Commit: Sven Vermeulen  gentoo  org>
CommitDate: Wed Aug 20 17:10:23 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=9660ec3c

Allow udev udev to set predictable ifnames

Udev sets the interface names predictably, it uses a
netlink_route_socket to do so.

more info at:
http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/

---
 policy/modules/system/udev.te | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/policy/modules/system/udev.te b/policy/modules/system/udev.te
index 83a8b11..737e854 100644
--- a/policy/modules/system/udev.te
+++ b/policy/modules/system/udev.te
@@ -332,6 +332,9 @@ ifdef(`distro_gentoo',`
allow udev_t self:capability2 block_suspend;
allow udev_t udev_tbl_t:dir relabelto;
 
+   # needed for predictable network interfaces naming
+   allow udev_t self:netlink_route_socket rw_netlink_socket_perms;
+
manage_dirs_pattern(udev_t, udev_tbl_t, udev_tbl_t)
manage_files_pattern(udev_t, udev_tbl_t, udev_tbl_t)
manage_lnk_files_pattern(udev_t, udev_tbl_t, udev_tbl_t)



[gentoo-commits] gentoo-x86 commit in dev-perl/MP3-Info: MP3-Info-1.240.0-r1.ebuild ChangeLog MP3-Info-1.240.0.ebuild

2014-08-20 Thread Ian Stakenvicius (axs)
axs 14/08/20 17:27:48

  Modified: ChangeLog
  Added:MP3-Info-1.240.0-r1.ebuild
  Removed:  MP3-Info-1.240.0.ebuild
  Log:
  bumped EAPI to 5; committed directly to stable as no other changes present 
and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 2B6559ED)

Revision  ChangesPath
1.74 dev-perl/MP3-Info/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/MP3-Info/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   7 May 2014 08:02:03 -   1.73
+++ ChangeLog   20 Aug 2014 17:27:48 -  1.74
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/MP3-Info
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/MP3-Info/ChangeLog,v 1.73 
2014/05/07 08:02:03 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/MP3-Info/ChangeLog,v 1.74 
2014/08/20 17:27:48 axs Exp $
+
+*MP3-Info-1.240.0-r1 (20 Aug 2014)
+
+  20 Aug 2014; Ian Stakenvicius (_AxS_) 
+  +MP3-Info-1.240.0-r1.ebuild, -MP3-Info-1.240.0.ebuild:
+  bumped EAPI to 5; committed directly to stable as no other changes present 
and
+  revbump helps stable systems to keep from dieing on perl-5.18 upgrade
 
   07 May 2014; Mikle Kolyada  MP3-Info-1.240.0.ebuild:
   Add ~arm keyword



1.1  dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: MP3-Info-1.240.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild,v 1.1 
2014/08/20 17:27:48 axs Exp $

EAPI=5

MODULE_AUTHOR=DANIEL
MODULE_VERSION=1.24
inherit perl-module

DESCRIPTION="A Perl module to manipulate/fetch info from MP3 files"

SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~x86-solaris"
IUSE=""

SRC_TEST="do"






[gentoo-commits] gentoo-x86 commit in dev-perl/Mozilla-CA: Mozilla-CA-20130114.ebuild ChangeLog

2014-08-20 Thread Samuli Suominen (ssuominen)
ssuominen14/08/20 17:22:41

  Modified: Mozilla-CA-20130114.ebuild ChangeLog
  Log:
  Keyword for alpha/ppc/ppc64/x86 (because Mozilla::CA is a dependency of 
Finance::Quote)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  ChangesPath
1.2  dev-perl/Mozilla-CA/Mozilla-CA-20130114.ebuild

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

Index: Mozilla-CA-20130114.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Mozilla-CA/Mozilla-CA-20130114.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Mozilla-CA-20130114.ebuild  28 May 2014 10:15:29 -  1.1
+++ Mozilla-CA-20130114.ebuild  20 Aug 2014 17:22:41 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Mozilla-CA/Mozilla-CA-20130114.ebuild,v 1.1 
2014/05/28 10:15:29 titanofold Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Mozilla-CA/Mozilla-CA-20130114.ebuild,v 1.2 
2014/08/20 17:22:41 ssuominen Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 RDEPEND=""



1.2  dev-perl/Mozilla-CA/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mozilla-CA/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   28 May 2014 10:15:29 -  1.1
+++ ChangeLog   20 Aug 2014 17:22:41 -  1.2
@@ -1,10 +1,14 @@
 # ChangeLog for dev-perl/Mozilla-CA
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mozilla-CA/ChangeLog,v 1.1 
2014/05/28 10:15:29 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mozilla-CA/ChangeLog,v 1.2 
2014/08/20 17:22:41 ssuominen Exp $
+
+  20 Aug 2014; Samuli Suominen 
+  Mozilla-CA-20130114.ebuild:
+  Keyword for alpha/ppc/ppc64/x86 (because Mozilla::CA is a dependency of
+  Finance::Quote)
 
 *Mozilla-CA-20130114 (28 May 2014)
 
   28 May 2014; Aaron W. Swenson 
   +Mozilla-CA-20130114.ebuild, +metadata.xml:
   Initial commit. Ebuild written by me. Satisfies dependency for www-apps/rt.
-






[gentoo-commits] gentoo-x86 commit in net-dns/avahi: ChangeLog avahi-0.6.31-r3.ebuild avahi-0.6.31-r4.ebuild

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 17:22:01

  Modified: ChangeLog
  Removed:  avahi-0.6.31-r3.ebuild avahi-0.6.31-r4.ebuild
  Log:
  Fix bug #501664
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.268net-dns/avahi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -r1.267 -r1.268
--- ChangeLog   20 Aug 2014 17:20:13 -  1.267
+++ ChangeLog   20 Aug 2014 17:22:01 -  1.268
@@ -1,6 +1,10 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.267 2014/08/20 
17:20:13 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.268 2014/08/20 
17:22:01 blueness Exp $
+
+  20 Aug 2014; Anthony G. Basile  -avahi-0.6.31-r3.ebuild,
+  -avahi-0.6.31-r4.ebuild:
+  Fix bug #501664
 
   20 Aug 2014; Anthony G. Basile 
   +files/avahi-0.6.31-fix-locale-build.patch, avahi-0.6.31-r5.ebuild:






[gentoo-commits] gentoo-x86 commit in net-dns/avahi/files: avahi-0.6.31-fix-locale-build.patch

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 17:20:13

  Added:avahi-0.6.31-fix-locale-build.patch
  Log:
  Fix bug #501664
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.1  net-dns/avahi/files/avahi-0.6.31-fix-locale-build.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/files/avahi-0.6.31-fix-locale-build.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/files/avahi-0.6.31-fix-locale-build.patch?rev=1.1&content-type=text/plain

Index: avahi-0.6.31-fix-locale-build.patch
===
avahi-gobject fails to build under et_EE and possibly other locales.

The regex for a sed in avahi-gobject/Makefile fails under various locales.
Forcing LANG=C fixes the issue.

Patch-by: Rafał Mużyło 

X-Gentoo-Bug: 501664
X-Gentoo-Bug-URL: https://bugs.gentoo.org/501664

diff -Naur avahi-0.6.31.orig/avahi-gobject/Makefile.in 
avahi-0.6.31/avahi-gobject/Makefile.in
--- avahi-0.6.31.orig/avahi-gobject/Makefile.in 2014-08-20 13:10:02.914432590 
-0400
+++ avahi-0.6.31/avahi-gobject/Makefile.in  2014-08-20 13:12:09.024436983 
-0400
@@ -992,7 +992,7 @@
 
 @HAVE_DBUS_TRUE@@have_gobject_t...@signals-marshal.list: $(CORE_SOURCES) 
Makefile.am
 @HAVE_DBUS_TRUE@@HAVE_GOBJECT_TRUE@$(AM_V_GEN)( cd $(srcdir) && \
-@HAVE_DBUS_TRUE@@HAVE_GOBJECT_TRUE@sed -n -e 
's/.*_ga_signals_marshal_\([A-Z]*__[A-Z_]*\).*/\1/p' \
+@HAVE_DBUS_TRUE@@HAVE_GOBJECT_TRUE@LANG=C sed -n -e 
's/.*_ga_signals_marshal_\([A-Z]*__[A-Z_]*\).*/\1/p' \
 @HAVE_DBUS_TRUE@@HAVE_GOBJECT_TRUE@$(CORE_SOURCES) ) \
 @HAVE_DBUS_TRUE@@HAVE_GOBJECT_TRUE@| sed -e 's/__/:/' -e 'y/_/,/' 
| sort -u > $@.tmp && \
 @HAVE_DBUS_TRUE@@HAVE_GOBJECT_TRUE@if cmp -s $@.tmp $@; then \






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

2014-08-20 Thread Anthony G. Basile (blueness)
blueness14/08/20 17:20:13

  Modified: avahi-0.6.31-r5.ebuild ChangeLog
  Log:
  Fix bug #501664
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  net-dns/avahi/avahi-0.6.31-r5.ebuild

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

Index: avahi-0.6.31-r5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- avahi-0.6.31-r5.ebuild  3 Aug 2014 17:45:35 -   1.5
+++ avahi-0.6.31-r5.ebuild  20 Aug 2014 17:20:13 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r5.ebuild,v 1.5 
2014/08/03 17:45:35 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r5.ebuild,v 1.6 
2014/08/20 17:20:13 blueness Exp $
 
 EAPI="5"
 
@@ -123,6 +123,9 @@
# allow building client without the daemon
epatch "${FILESDIR}"/${P}-build-client-without-daemon.patch
 
+   # Fix build under various locales, bug #501664
+   epatch "${FILESDIR}"/${P}-fix-locale-build.patch
+
# Drop DEPRECATED flags, bug #384743
sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED=1::g' avahi-ui/Makefile.am || 
die
 



1.267net-dns/avahi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.266
retrieving revision 1.267
diff -u -r1.266 -r1.267
--- ChangeLog   3 Aug 2014 17:45:35 -   1.266
+++ ChangeLog   20 Aug 2014 17:20:13 -  1.267
@@ -1,6 +1,10 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.266 2014/08/03 
17:45:35 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.267 2014/08/20 
17:20:13 blueness Exp $
+
+  20 Aug 2014; Anthony G. Basile 
+  +files/avahi-0.6.31-fix-locale-build.patch, avahi-0.6.31-r5.ebuild:
+  Fix bug #501664
 
   03 Aug 2014;   avahi-0.6.31-r2.ebuild,
   avahi-0.6.31-r5.ebuild:






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

2014-08-20 Thread Jason Zaman
commit: e87124ea3216ac9d592fafad521076661f62fabb
Author: Jason Zaman  perfinion  com>
AuthorDate: Mon Aug 18 09:51:22 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Wed Aug 20 17:12:08 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=e87124ea

Add java_domain_type interface

This interface will enable another domain to use Java without
having to domtrans to java_t

---
 policy/modules/contrib/java.if | 34 ++
 policy/modules/contrib/java.te |  3 +++
 2 files changed, 37 insertions(+)

diff --git a/policy/modules/contrib/java.if b/policy/modules/contrib/java.if
index acf6a63..f4b9444 100644
--- a/policy/modules/contrib/java.if
+++ b/policy/modules/contrib/java.if
@@ -327,3 +327,37 @@ template(`java_noatsecure_domtrans',`
 
java_domtrans($1)
 ')
+
+###
+## 
+## The template for using java in a domain.
+## 
+## 
+## 
+## This template creates a derived domains which are used
+## for java applications.
+## 
+## 
+## 
+## 
+## The type of the domain to be given java privs.
+## 
+## 
+#
+template(`java_domain_type',`
+   gen_require(`
+   attribute java_domain;
+   type java_exec_t, java_tmp_t, java_tmpfs_t;
+   type java_home_t;
+   ')
+
+   
+   #
+   # Policy
+   #
+
+   typeattribute $1 java_domain;
+
+   # cannot be called on the attribute, so do it now
+   auth_use_nsswitch($1)
+')

diff --git a/policy/modules/contrib/java.te b/policy/modules/contrib/java.te
index 11e996d..67af775 100644
--- a/policy/modules/contrib/java.te
+++ b/policy/modules/contrib/java.te
@@ -120,6 +120,9 @@ ifdef(`distro_gentoo',`
manage_dirs_pattern(java_domain, java_home_t, java_home_t)
manage_files_pattern(java_domain, java_home_t, java_home_t)
userdom_user_home_dir_filetrans(java_domain, java_home_t, dir, 
".icedtea")
+
+   manage_lnk_files_pattern(java_domain, java_tmp_t, java_tmp_t)
+   files_tmp_filetrans(java_domain, java_tmp_t, lnk_file)
 ')
 
 tunable_policy(`allow_java_execstack',`



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

2014-08-20 Thread Jason Zaman
commit: 2e7d43201fda0a9a6a16f0781d69b8081885e5a3
Author: Jason Zaman  perfinion  com>
AuthorDate: Mon Aug 18 09:54:23 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Wed Aug 20 17:12:18 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=2e7d4320

Add policy for Android tools and SDK

---
 policy/modules/contrib/android.fc |   5 ++
 policy/modules/contrib/android.if |  99 
 policy/modules/contrib/android.te | 104 ++
 3 files changed, 208 insertions(+)

diff --git a/policy/modules/contrib/android.fc 
b/policy/modules/contrib/android.fc
new file mode 100644
index 000..1214e57
--- /dev/null
+++ b/policy/modules/contrib/android.fc
@@ -0,0 +1,5 @@
+HOME_DIR/\.AndroidStudio.*(/.*)?   
gen_context(system_u:object_r:android_home_t,s0)
+HOME_DIR/\.android(/.*)?   
gen_context(system_u:object_r:android_home_t,s0)
+
+/opt/android-studio/bin/studio.sh  
gen_context(system_u:object_r:android_java_exec_t,s0)
+

diff --git a/policy/modules/contrib/android.if 
b/policy/modules/contrib/android.if
new file mode 100644
index 000..0c52d31
--- /dev/null
+++ b/policy/modules/contrib/android.if
@@ -0,0 +1,99 @@
+## Android development tools - adb, fastboot, android studio
+
+###
+## 
+##  The role for using the android tools.
+## 
+## 
+##  
+##  The role associated with the user domain.
+##  
+## 
+## 
+##  
+##  The user domain.
+##  
+## 
+#
+interface(`android_role',`
+   gen_require(`
+   type android_tools_t;
+   type android_tools_exec_t;
+   type android_home_t;
+   type android_tmp_t;
+   type android_java_t;
+   type android_java_exec_t;
+   ')
+
+   role $1 types android_tools_t;
+   role $1 types android_java_t;
+
+   domtrans_pattern($2, android_tools_exec_t, android_tools_t)
+   domtrans_pattern($2, android_java_exec_t, android_java_t)
+
+   allow $2 android_tools_t:process { ptrace signal_perms };
+   allow $2 android_java_t:process { ptrace signal_perms noatsecure siginh 
rlimitinh };
+
+   manage_dirs_pattern($2, android_home_t, android_home_t)
+   manage_files_pattern($2, android_home_t, android_home_t)
+   manage_lnk_files_pattern($2, android_home_t, android_home_t)
+
+   userdom_user_home_dir_filetrans($2, android_home_t, dir, ".android")
+   userdom_user_home_dir_filetrans($2, android_home_t, dir, 
".AndroidStudioBeta")
+   userdom_user_home_dir_filetrans($2, android_home_t, dir, 
".AndroidStudio")
+
+   manage_dirs_pattern($2, android_tmp_t, android_tmp_t)
+   manage_files_pattern($2, android_tmp_t, android_tmp_t)
+
+   allow $2 android_home_t:dir relabel_dir_perms;
+   allow $2 android_home_t:file relabel_file_perms;
+   allow $2 android_tools_exec_t:file relabel_file_perms;
+
+   ps_process_pattern($2, android_tools_t)
+   ps_process_pattern($2, android_java_t)
+
+   android_dbus_chat($2)
+')
+
+#
+## 
+## Execute the android tools commands in the
+## android tools domain.
+## 
+## 
+## 
+## Domain allowed access.
+## 
+## 
+
+interface(`android_tools_domtrans',`
+   gen_require(`
+   type android_tools_t;
+   type android_tools_exec_t;
+   ')
+
+   corecmd_search_bin($1)
+   domtrans_pattern($1, android_tools_exec_t, android_tools_t)
+')
+
+#
+## 
+## Send and receive messages from the android java
+## domain over dbus.
+## 
+## 
+## 
+## Domain allowed access.
+## 
+## 
+#
+interface(`android_dbus_chat',`
+   gen_require(`
+   type android_java_t;
+   class dbus send_msg;
+   ')
+
+   allow $1 android_java_t:dbus send_msg;
+   allow android_java_t $1:dbus send_msg;
+')
+

diff --git a/policy/modules/contrib/android.te 
b/policy/modules/contrib/android.te
new file mode 100644
index 000..dc70c31
--- /dev/null
+++ b/policy/modules/contrib/android.te
@@ -0,0 +1,104 @@
+policy_module(android, 1.0.0)
+
+
+#
+# Declarations
+#
+
+# adb needs to be labelled with android_tools_exec_t
+type android_tools_t;
+type android_tools_exec_t; # customizable
+userdom_user_application_domain(android_tools_t, android_tools_exec_t)
+
+type android_tmp_t;
+userdom_user_tmp_file(android_tmp_t)
+
+# for X server SHM
+type android_tmpfs_t;
+userdom_user_tmpfs_file(android_tmpfs_t)
+
+type android_java_t;
+type android_java_exec_t;
+userdom_user_application_domain(android_java_t, android_java_exec_t)
+java_domain_type(android_java_t)
+android_tools_domtrans(android_java_t)
+can_exec(android_java_t, android_home_t)
+can_exec(android_java_t, android_java_exec_t)
+
+# the android dir ~/.android

[gentoo-commits] proj/hardened-refpolicy:perfinion commit in: policy/modules/system/

2014-08-20 Thread Jason Zaman
commit: 9660ec3c7e65d654770832d9011cce2eb7bc1134
Author: Jason Zaman  perfinion  com>
AuthorDate: Wed Aug 20 16:26:29 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Wed Aug 20 17:10:23 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=9660ec3c

Allow udev udev to set predictable ifnames

Udev sets the interface names predictably, it uses a
netlink_route_socket to do so.

more info at:
http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/

---
 policy/modules/system/udev.te | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/policy/modules/system/udev.te b/policy/modules/system/udev.te
index 83a8b11..737e854 100644
--- a/policy/modules/system/udev.te
+++ b/policy/modules/system/udev.te
@@ -332,6 +332,9 @@ ifdef(`distro_gentoo',`
allow udev_t self:capability2 block_suspend;
allow udev_t udev_tbl_t:dir relabelto;
 
+   # needed for predictable network interfaces naming
+   allow udev_t self:netlink_route_socket rw_netlink_socket_perms;
+
manage_dirs_pattern(udev_t, udev_tbl_t, udev_tbl_t)
manage_files_pattern(udev_t, udev_tbl_t, udev_tbl_t)
manage_lnk_files_pattern(udev_t, udev_tbl_t, udev_tbl_t)



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

2014-08-20 Thread Jason Zaman
commit: 319c3a79d778755a5519bac88dd056bcb6537057
Author: Jason Zaman  perfinion  com>
AuthorDate: Mon Aug 18 09:51:22 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Wed Aug 20 17:05:26 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=319c3a79

Add java_domain_type interface

This interface will enable another domain to use Java without
having to domtrans to java_t

---
 policy/modules/contrib/java.if | 34 ++
 policy/modules/contrib/java.te |  3 +++
 2 files changed, 37 insertions(+)

diff --git a/policy/modules/contrib/java.if b/policy/modules/contrib/java.if
index acf6a63..f4b9444 100644
--- a/policy/modules/contrib/java.if
+++ b/policy/modules/contrib/java.if
@@ -327,3 +327,37 @@ template(`java_noatsecure_domtrans',`
 
java_domtrans($1)
 ')
+
+###
+## 
+## The template for using java in a domain.
+## 
+## 
+## 
+## This template creates a derived domains which are used
+## for java applications.
+## 
+## 
+## 
+## 
+## The type of the domain to be given java privs.
+## 
+## 
+#
+template(`java_domain_type',`
+   gen_require(`
+   attribute java_domain;
+   type java_exec_t, java_tmp_t, java_tmpfs_t;
+   type java_home_t;
+   ')
+
+   
+   #
+   # Policy
+   #
+
+   typeattribute $1 java_domain;
+
+   # cannot be called on the attribute, so do it now
+   auth_use_nsswitch($1)
+')

diff --git a/policy/modules/contrib/java.te b/policy/modules/contrib/java.te
index 11e996d..67af775 100644
--- a/policy/modules/contrib/java.te
+++ b/policy/modules/contrib/java.te
@@ -120,6 +120,9 @@ ifdef(`distro_gentoo',`
manage_dirs_pattern(java_domain, java_home_t, java_home_t)
manage_files_pattern(java_domain, java_home_t, java_home_t)
userdom_user_home_dir_filetrans(java_domain, java_home_t, dir, 
".icedtea")
+
+   manage_lnk_files_pattern(java_domain, java_tmp_t, java_tmp_t)
+   files_tmp_filetrans(java_domain, java_tmp_t, lnk_file)
 ')
 
 tunable_policy(`allow_java_execstack',`



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

2014-08-20 Thread Jason Zaman
commit: 0335b979cb62f51143112789876baf9c1d1197f3
Author: Jason Zaman  perfinion  com>
AuthorDate: Mon Aug 18 09:54:23 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Wed Aug 20 17:05:52 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=0335b979

Add policy for Android tools and SDK

---
 policy/modules/contrib/android.fc |   5 ++
 policy/modules/contrib/android.if |  99 
 policy/modules/contrib/android.te | 104 ++
 3 files changed, 208 insertions(+)

diff --git a/policy/modules/contrib/android.fc 
b/policy/modules/contrib/android.fc
new file mode 100644
index 000..1214e57
--- /dev/null
+++ b/policy/modules/contrib/android.fc
@@ -0,0 +1,5 @@
+HOME_DIR/\.AndroidStudio.*(/.*)?   
gen_context(system_u:object_r:android_home_t,s0)
+HOME_DIR/\.android(/.*)?   
gen_context(system_u:object_r:android_home_t,s0)
+
+/opt/android-studio/bin/studio.sh  
gen_context(system_u:object_r:android_java_exec_t,s0)
+

diff --git a/policy/modules/contrib/android.if 
b/policy/modules/contrib/android.if
new file mode 100644
index 000..0c52d31
--- /dev/null
+++ b/policy/modules/contrib/android.if
@@ -0,0 +1,99 @@
+## Android development tools - adb, fastboot, android studio
+
+###
+## 
+##  The role for using the android tools.
+## 
+## 
+##  
+##  The role associated with the user domain.
+##  
+## 
+## 
+##  
+##  The user domain.
+##  
+## 
+#
+interface(`android_role',`
+   gen_require(`
+   type android_tools_t;
+   type android_tools_exec_t;
+   type android_home_t;
+   type android_tmp_t;
+   type android_java_t;
+   type android_java_exec_t;
+   ')
+
+   role $1 types android_tools_t;
+   role $1 types android_java_t;
+
+   domtrans_pattern($2, android_tools_exec_t, android_tools_t)
+   domtrans_pattern($2, android_java_exec_t, android_java_t)
+
+   allow $2 android_tools_t:process { ptrace signal_perms };
+   allow $2 android_java_t:process { ptrace signal_perms noatsecure siginh 
rlimitinh };
+
+   manage_dirs_pattern($2, android_home_t, android_home_t)
+   manage_files_pattern($2, android_home_t, android_home_t)
+   manage_lnk_files_pattern($2, android_home_t, android_home_t)
+
+   userdom_user_home_dir_filetrans($2, android_home_t, dir, ".android")
+   userdom_user_home_dir_filetrans($2, android_home_t, dir, 
".AndroidStudioBeta")
+   userdom_user_home_dir_filetrans($2, android_home_t, dir, 
".AndroidStudio")
+
+   manage_dirs_pattern($2, android_tmp_t, android_tmp_t)
+   manage_files_pattern($2, android_tmp_t, android_tmp_t)
+
+   allow $2 android_home_t:dir relabel_dir_perms;
+   allow $2 android_home_t:file relabel_file_perms;
+   allow $2 android_tools_exec_t:file relabel_file_perms;
+
+   ps_process_pattern($2, android_tools_t)
+   ps_process_pattern($2, android_java_t)
+
+   android_dbus_chat($2)
+')
+
+#
+## 
+## Execute the android tools commands in the
+## android tools domain.
+## 
+## 
+## 
+## Domain allowed access.
+## 
+## 
+
+interface(`android_tools_domtrans',`
+   gen_require(`
+   type android_tools_t;
+   type android_tools_exec_t;
+   ')
+
+   corecmd_search_bin($1)
+   domtrans_pattern($1, android_tools_exec_t, android_tools_t)
+')
+
+#
+## 
+## Send and receive messages from the android java
+## domain over dbus.
+## 
+## 
+## 
+## Domain allowed access.
+## 
+## 
+#
+interface(`android_dbus_chat',`
+   gen_require(`
+   type android_java_t;
+   class dbus send_msg;
+   ')
+
+   allow $1 android_java_t:dbus send_msg;
+   allow android_java_t $1:dbus send_msg;
+')
+

diff --git a/policy/modules/contrib/android.te 
b/policy/modules/contrib/android.te
new file mode 100644
index 000..dc70c31
--- /dev/null
+++ b/policy/modules/contrib/android.te
@@ -0,0 +1,104 @@
+policy_module(android, 1.0.0)
+
+
+#
+# Declarations
+#
+
+# adb needs to be labelled with android_tools_exec_t
+type android_tools_t;
+type android_tools_exec_t; # customizable
+userdom_user_application_domain(android_tools_t, android_tools_exec_t)
+
+type android_tmp_t;
+userdom_user_tmp_file(android_tmp_t)
+
+# for X server SHM
+type android_tmpfs_t;
+userdom_user_tmpfs_file(android_tmpfs_t)
+
+type android_java_t;
+type android_java_exec_t;
+userdom_user_application_domain(android_java_t, android_java_exec_t)
+java_domain_type(android_java_t)
+android_tools_domtrans(android_java_t)
+can_exec(android_java_t, android_home_t)
+can_exec(android_java_t, android_java_exec_t)
+
+# the android dir ~/.android

[gentoo-commits] proj/hardened-refpolicy:perfinion commit in: policy/modules/kernel/

2014-08-20 Thread Jason Zaman
commit: a6e3727f6a44639b69ee0e63580611504dd29a65
Author: Sven Vermeulen  siphos  be>
AuthorDate: Tue Aug 19 20:23:13 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Tue Aug 19 20:23:13 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=a6e3727f

Built from .te.in

---
 policy/modules/kernel/corenetwork.te | 39 +++-
 1 file changed, 38 insertions(+), 1 deletion(-)

diff --git a/policy/modules/kernel/corenetwork.te 
b/policy/modules/kernel/corenetwork.te
index 83cdee2..f1830c7 100644
--- a/policy/modules/kernel/corenetwork.te
+++ b/policy/modules/kernel/corenetwork.te
@@ -2,7 +2,7 @@
 # This is a generated file!  Instead of modifying this file, the
 # corenetwork.te.in or corenetwork.te.m4 file should be modified.
 #
-policy_module(corenetwork, 1.19.0)
+policy_module(corenetwork, 1.20.2)
 
 
 #
@@ -460,6 +460,14 @@ portcon tcp 53 gen_context(system_u:object_r:dns_port_t,s0)
 portcon udp 53 gen_context(system_u:object_r:dns_port_t,s0)
 
 
+type dropbox_port_t, port_type, defined_port_type;
+type dropbox_client_packet_t, packet_type, client_packet_type;
+type dropbox_server_packet_t, packet_type, server_packet_type;
+typeattribute dropbox_port_t unreserved_port_type;
+portcon tcp 17500 gen_context(system_u:object_r:dropbox_port_t,s0)
+portcon udp 17500 gen_context(system_u:object_r:dropbox_port_t,s0)
+
+
 type efs_port_t, port_type, defined_port_type;
 type efs_client_packet_t, packet_type, client_packet_type;
 type efs_server_packet_t, packet_type, server_packet_type;
@@ -526,6 +534,15 @@ portcon tcp 1721 
gen_context(system_u:object_r:gatekeeper_port_t,s0)
 portcon tcp 7000 gen_context(system_u:object_r:gatekeeper_port_t,s0)
 
 
+type gdomap_port_t, port_type, defined_port_type;
+type gdomap_client_packet_t, packet_type, client_packet_type;
+type gdomap_server_packet_t, packet_type, server_packet_type;
+typeattribute gdomap_port_t reserved_port_type;
+typeattribute gdomap_port_t rpc_port_type;
+portcon tcp 538 gen_context(system_u:object_r:gdomap_port_t,s0)
+portcon udp 538 gen_context(system_u:object_r:gdomap_port_t,s0)
+
+
 type gds_db_port_t, port_type, defined_port_type;
 type gds_db_client_packet_t, packet_type, client_packet_type;
 type gds_db_server_packet_t, packet_type, server_packet_type;
@@ -746,7 +763,12 @@ type ircd_port_t, port_type, defined_port_type;
 type ircd_client_packet_t, packet_type, client_packet_type;
 type ircd_server_packet_t, packet_type, server_packet_type;
 typeattribute ircd_port_t unreserved_port_type;
+portcon tcp 6665 gen_context(system_u:object_r:ircd_port_t,s0)
+portcon tcp  gen_context(system_u:object_r:ircd_port_t,s0)
 portcon tcp 6667 gen_context(system_u:object_r:ircd_port_t,s0)
+portcon tcp 6668 gen_context(system_u:object_r:ircd_port_t,s0)
+portcon tcp 6669 gen_context(system_u:object_r:ircd_port_t,s0)
+portcon tcp 6697 gen_context(system_u:object_r:ircd_port_t,s0)
 
 
 type isakmp_port_t, port_type, defined_port_type;
@@ -1318,6 +1340,13 @@ typeattribute razor_port_t unreserved_port_type;
 portcon tcp 2703 gen_context(system_u:object_r:razor_port_t,s0)
 
 
+type redis_port_t, port_type, defined_port_type;
+type redis_client_packet_t, packet_type, client_packet_type;
+type redis_server_packet_t, packet_type, server_packet_type;
+typeattribute redis_port_t unreserved_port_type;
+portcon tcp 6379 gen_context(system_u:object_r:redis_port_t,s0)
+
+
 type repository_port_t, port_type, defined_port_type;
 type repository_client_packet_t, packet_type, client_packet_type;
 type repository_server_packet_t, packet_type, server_packet_type;
@@ -1409,6 +1438,14 @@ typeattribute rwho_port_t rpc_port_type;
 portcon udp 513 gen_context(system_u:object_r:rwho_port_t,s0)
 
 
+type salt_port_t, port_type, defined_port_type;
+type salt_client_packet_t, packet_type, client_packet_type;
+type salt_server_packet_t, packet_type, server_packet_type;
+typeattribute salt_port_t unreserved_port_type;
+portcon tcp 4505 gen_context(system_u:object_r:salt_port_t,s0)
+portcon tcp 4506 gen_context(system_u:object_r:salt_port_t,s0)
+
+
 type sap_port_t, port_type, defined_port_type;
 type sap_client_packet_t, packet_type, client_packet_type;
 type sap_server_packet_t, packet_type, server_packet_type;



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

2014-08-20 Thread Jason Zaman
commit: 8536b0d09cab98d71c8efac29e5c0bed93563807
Author: Sven Vermeulen  siphos  be>
AuthorDate: Tue Aug 19 20:16:33 2014 +
Commit: Jason Zaman  perfinion  com>
CommitDate: Tue Aug 19 20:16:33 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=8536b0d0

Add filetrans for ~/.pki

---
 policy/modules/contrib/chromium.te | 1 +
 1 file changed, 1 insertion(+)

diff --git a/policy/modules/contrib/chromium.te 
b/policy/modules/contrib/chromium.te
index 0f72dd7..48a0abd 100644
--- a/policy/modules/contrib/chromium.te
+++ b/policy/modules/contrib/chromium.te
@@ -157,6 +157,7 @@ miscfiles_manage_user_certs(chromium_t)
 miscfiles_read_all_certs(chromium_t)
 miscfiles_read_localization(chromium_t)
 miscfiles_user_home_dir_filetrans_cert_home(chromium_t, dir, ".nss")
+miscfiles_user_home_dir_filetrans_cert_home(chromium_t, dir, ".pki")
 
 sysnet_dns_name_resolve(chromium_t) 
 



  1   2   3   4   5   6   >