[gentoo-commits] gentoo-x86 commit in sci-chemistry/ccpn: ChangeLog ccpn-2.4.1_p141117.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 08:01:09

  Modified: ChangeLog
  Added:ccpn-2.4.1_p141117.ebuild
  Log:
  sci-chemistry/ccpn: Todays python patches
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.153sci-chemistry/ccpn/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ChangeLog?rev=1.153view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ChangeLog?rev=1.153content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ChangeLog?r1=1.152r2=1.153

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog   22 Oct 2014 08:52:51 -  1.152
+++ ChangeLog   17 Nov 2014 08:01:09 -  1.153
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/ccpn
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ChangeLog,v 1.152 
2014/10/22 08:52:51 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ChangeLog,v 1.153 
2014/11/17 08:01:09 jlec Exp $
+
+*ccpn-2.4.1_p141117 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org +ccpn-2.4.1_p141117.ebuild:
+  Todays python patches
 
 *ccpn-2.4.1_p141022 (22 Oct 2014)
 



1.1  sci-chemistry/ccpn/ccpn-2.4.1_p141117.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ccpn-2.4.1_p141117.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/ccpn-2.4.1_p141117.ebuild?rev=1.1content-type=text/plain

Index: ccpn-2.4.1_p141117.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-chemistry/ccpn/ccpn-2.4.1_p141117.ebuild,v 1.1 
2014/11/17 08:01:09 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=ssl,tk

inherit eutils flag-o-matic multilib portability python-single-r1 
toolchain-funcs versionator

PATCHSET=${PV##*_p}
MY_PN=${PN}mr
MY_PV=$(replace_version_separator 3 _ ${PV%%_p*})
MY_MAJOR=$(get_version_component_range 1-3)

DESCRIPTION=The Collaborative Computing Project for NMR
HOMEPAGE=http://www.ccpn.ac.uk/ccpn;
SRC_URI=http://www-old.ccpn.ac.uk/download/${MY_PN}/analysis${MY_PV}.tar.gz;
[[ -n ${PATCHSET} ]] \
 SRC_URI+= 
http://dev.gentoo.org/~jlec/distfiles/ccpn-update-${MY_MAJOR}-${PATCHSET}.patch.xz;

SLOT=0
LICENSE=|| ( CCPN LGPL-2.1 )
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=+opengl

REQUIRED_USE=${PYTHON_REQUIRED_USE}

RDEPEND=
${PYTHON_DEPS}
dev-lang/tk[threads]
dev-python/numpy[${PYTHON_USEDEP}]
dev-tcltk/tix
=sci-libs/ccpn-data-${MY_MAJOR}*[${PYTHON_USEDEP}]
sci-biology/psipred
x11-libs/libXext
x11-libs/libX11
opengl? (
media-libs/freeglut
dev-python/pyglet[${PYTHON_USEDEP}] )
DEPEND=${RDEPEND}

RESTRICT=mirror

S=${WORKDIR}/${MY_PN}/${MY_PN}$(get_version_component_range 1-2)

src_prepare() {
[[ -n ${PATCHSET} ]]  \
EPATCH_OPTS=-p2 epatch 
${WORKDIR}/ccpn-update-${MY_MAJOR}-${PATCHSET}.patch

epatch ${FILESDIR}/2.3.1-parallel.patch

append-lfs-flags

sed \
-e /PSIPRED_DIR/s:'data':'share/psipred/data':g \
-e s:weights_s:weights:g \
-i python/ccpnmr/analysis/wrappers/Psipred.py || die

local tk_ver
local myconf

tk_ver=$(best_version dev-lang/tk | cut -d- -f3 | cut -d. -f1,2)

if use opengl; then
GLUT_NEED_INIT=-DNEED_GLUT_INIT
IGNORE_GL_FLAG=
GL_FLAG=-DUSE_GL_TRUE
GL_DIR=${EPREFIX}/usr
GL_LIB=-lglut -lGLU -lGL
GL_INCLUDE_FLAGS=-I\$(GL_DIR)/include
GL_LIB_FLAGS=-L\$(GL_DIR)/$(get_libdir)

else
IGNORE_GL_FLAG=-DIGNORE_GL
GL_FLAG=-DUSE_GL_FALSE
fi

GLUT_NOT_IN_GL=
GLUT_FLAG=\$(GLUT_NEED_INIT) \$(GLUT_NOT_IN_GL)

rm -rf data model doc license || die

sed \
-e s|/usr|${EPREFIX}/usr|g \
-e s|^\(CC =\).*|\1 $(tc-getCC)|g \
-e s|^\(OPT_FLAG =\).*|\1 ${CPPFLAGS} ${CFLAGS}|g \
-e s|^\(LINK_FLAGS =.*\)|\1 ${LDFLAGS}|g \
-e s|^\(IGNORE_GL_FLAG =\).*|\1 ${IGNORE_GL_FLAG}|g \
-e s|^\(GL_FLAG =\).*|\1 ${GL_FLAG}|g \
-e s|^\(GL_DIR =\).*|\1 ${GL_DIR}|g \
-e s|^\(GL_LIB =\).*|\1 ${GL_LIB}|g \
-e s|^\(GL_LIB_FLAGS =\).*|\1 ${GL_LIB_FLAGS}|g \
   

[gentoo-commits] gentoo-x86 commit in app-admin/eselect-ruby: eselect-ruby-20131227.ebuild ChangeLog

2014-11-17 Thread Agostino Sarubbo (ago)
ago 14/11/17 08:09:19

  Modified: eselect-ruby-20131227.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #517382
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.7  app-admin/eselect-ruby/eselect-ruby-20131227.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild?r1=1.6r2=1.7

Index: eselect-ruby-20131227.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- eselect-ruby-20131227.ebuild25 Aug 2014 16:19:07 -  1.6
+++ eselect-ruby-20131227.ebuild17 Nov 2014 08:09:19 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild,v 
1.6 2014/08/25 16:19:07 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild,v 
1.7 2014/11/17 08:09:19 ago Exp $
 
 DESCRIPTION=Manages multiple Ruby versions
 HOMEPAGE=http://www.gentoo.org;
@@ -8,7 +8,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 RDEPEND==app-admin/eselect-1.0.2



1.55 app-admin/eselect-ruby/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?rev=1.55view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?rev=1.55content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?r1=1.54r2=1.55

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog   25 Aug 2014 16:19:07 -  1.54
+++ ChangeLog   17 Nov 2014 08:09:19 -  1.55
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/eselect-ruby
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v 1.54 
2014/08/25 16:19:07 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v 1.55 
2014/11/17 08:09:19 ago Exp $
+
+  17 Nov 2014; Agostino Sarubbo a...@gentoo.org eselect-ruby-20131227.ebuild:
+  Stable for ppc, wrt bug #517382
 
   25 Aug 2014; Manuel RĂ¼ger mr...@gentoo.org eselect-ruby-20131227.ebuild:
   Mark amd64 stable. Bug #517382.






[gentoo-commits] gentoo-x86 commit in app-admin/eselect-ruby: eselect-ruby-20131227.ebuild ChangeLog

2014-11-17 Thread Agostino Sarubbo (ago)
ago 14/11/17 08:09:31

  Modified: eselect-ruby-20131227.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #517382
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.8  app-admin/eselect-ruby/eselect-ruby-20131227.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild?r1=1.7r2=1.8

Index: eselect-ruby-20131227.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- eselect-ruby-20131227.ebuild17 Nov 2014 08:09:19 -  1.7
+++ eselect-ruby-20131227.ebuild17 Nov 2014 08:09:31 -  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/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild,v 
1.7 2014/11/17 08:09:19 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/eselect-ruby/eselect-ruby-20131227.ebuild,v 
1.8 2014/11/17 08:09:31 ago Exp $
 
 DESCRIPTION=Manages multiple Ruby versions
 HOMEPAGE=http://www.gentoo.org;
@@ -8,7 +8,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris
 IUSE=
 
 RDEPEND==app-admin/eselect-1.0.2



1.56 app-admin/eselect-ruby/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?rev=1.56view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?rev=1.56content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?r1=1.55r2=1.56

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   17 Nov 2014 08:09:19 -  1.55
+++ ChangeLog   17 Nov 2014 08:09:31 -  1.56
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/eselect-ruby
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v 1.55 
2014/11/17 08:09:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v 1.56 
2014/11/17 08:09:31 ago Exp $
+
+  17 Nov 2014; Agostino Sarubbo a...@gentoo.org eselect-ruby-20131227.ebuild:
+  Stable for ppc64, wrt bug #517382
 
   17 Nov 2014; Agostino Sarubbo a...@gentoo.org eselect-ruby-20131227.ebuild:
   Stable for ppc, wrt bug #517382






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

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 08:15:48

  Modified: ChangeLog
  Added:aufs3-3_p20141110.ebuild
  Log:
  sys-fs/aufs3: Bump to latest aufs3
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.112sys-fs/aufs3/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog   4 Nov 2014 08:11:48 -   1.111
+++ ChangeLog   17 Nov 2014 08:15:48 -  1.112
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/aufs3
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v 1.111 2014/11/04 
08:11:48 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/ChangeLog,v 1.112 2014/11/17 
08:15:48 jlec Exp $
+
+*aufs3-3_p20141110 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org +aufs3-3_p20141110.ebuild:
+  Bump to latest aufs3
 
 *aufs3-3_p20141103 (04 Nov 2014)
 



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

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

Index: aufs3-3_p20141110.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20141110.ebuild,v 1.1 
2014/11/17 08:15:48 jlec Exp $

EAPI=5

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

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

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

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

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

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

MODULE_NAMES=aufs(misc:${S})

README_GENTOO_SUFFIX=-r1

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

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

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

linux-mod_pkg_setup

if [[ ${KV_MINOR} -gt ${PATCH_MAX_VER} ]]; then
PATCH_BRANCH=x-rcN
elif [[ ${KV_MINOR} == 10 ]]  [[ ${KV_PATCH} -ge 28 ]]; then
PATCH_BRANCH=${KV_MINOR}.x
elif [[ ${KV_MINOR} == 12 ]]; then
PATCH_BRANCH=${KV_MINOR}.x
elif [[ ${KV_MINOR} == 12 ]]  [[ ${KV_PATCH} -ge 31 ]]; then
PATCH_BRANCH=${KV_MINOR}.31+
elif [[ ${KV_MINOR} == 14 ]]  [[ ${KV_PATCH} -ge 21 ]]; then
PATCH_BRANCH=${KV_MINOR}.12+
else
PATCH_BRANCH=${KV_MINOR}
fi

case ${KV_EXTRA} in
)
elog It seems you are using vanilla-sources 
with aufs3
elog Please use sys-kernel/aufs-sources with 
USE=vanilla
elog This will save you the nasty reemerge of 
sys-fs/aufs3 on every kernel upgrade
;;
-gentoo)
elog It seems you are using gentoo-sources 
with aufs3
elog Please use sys-kernel/aufs-sources
elog This will save you the nasty reemerge of 
sys-fs/aufs3 on every kernel upgrade
;;
esac

pushd ${T}  /dev/null
unpack ${A}
cd ${PN}-standalone || die
local module_branch=origin/${PN}.${PATCH_BRANCH}
einfo Using 

[gentoo-commits] gentoo-x86 commit in kde-base/print-manager: print-manager-4.14.3.ebuild ChangeLog

2014-11-17 Thread Michael Palimaka (kensington)
kensington14/11/17 08:37:32

  Modified: print-manager-4.14.3.ebuild ChangeLog
  Log:
  Restore fix for bug #525202 that was accidentally lost in the version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)

Revision  ChangesPath
1.2  kde-base/print-manager/print-manager-4.14.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/print-manager/print-manager-4.14.3.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/print-manager/print-manager-4.14.3.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/print-manager/print-manager-4.14.3.ebuild?r1=1.1r2=1.2

Index: print-manager-4.14.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/kde-base/print-manager/print-manager-4.14.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- print-manager-4.14.3.ebuild 16 Nov 2014 12:21:30 -  1.1
+++ print-manager-4.14.3.ebuild 17 Nov 2014 08:37:32 -  1.2
@@ -1,14 +1,14 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/kde-base/print-manager/print-manager-4.14.3.ebuild,v 
1.1 2014/11/16 12:21:30 alexxy Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/print-manager/print-manager-4.14.3.ebuild,v 
1.2 2014/11/17 08:37:32 kensington Exp $
 
 EAPI=5
 
 inherit kde4-base
 
 DESCRIPTION=Manage print jobs and printers in KDE
-KEYWORDS= ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
-IUSE=debug
+KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
+IUSE=debug +gtk
 
 DEPEND=
=net-print/cups-1.5.0[dbus]
@@ -17,5 +17,22 @@
!kde-base/printer-applet:4
!kde-base/system-config-printer-kde:4
!kde-misc/print-manager
-   app-admin/system-config-printer-gnome
+   gtk? ( app-admin/system-config-printer-gnome )
 
+
+pkg_postinst(){
+   if ! use gtk ; then
+   ewarn
+   ewarn By switching off \gtk\ USE flag, you have chosen to do 
without
+   ewarn an important, though optional, runtime dependency:
+   ewarn
+   ewarn app-admin/system-config-printer-gnome
+   ewarn
+   ewarn ${PN} will work nevertheless, but is going to be less 
comfortable
+   ewarn and will show the following error status during runtime:
+   ewarn
+   ewarn \Failed to group devices: 'The name 
org.fedoraproject.Config.Printing
+   ewarn was not provided by any .service files'\
+   ewarn
+   fi
+}



1.90 kde-base/print-manager/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/print-manager/ChangeLog?rev=1.90view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/print-manager/ChangeLog?rev=1.90content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/print-manager/ChangeLog?r1=1.89r2=1.90

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-base/print-manager/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   16 Nov 2014 12:21:30 -  1.89
+++ ChangeLog   17 Nov 2014 08:37:32 -  1.90
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/print-manager
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/print-manager/ChangeLog,v 1.89 
2014/11/16 12:21:30 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/print-manager/ChangeLog,v 1.90 
2014/11/17 08:37:32 kensington Exp $
+
+  17 Nov 2014; Michael Palimaka kensing...@gentoo.org
+  print-manager-4.14.3.ebuild:
+  Restore fix for bug #525202 that was accidentally lost in the version bump.
 
 *print-manager-4.14.3 (16 Nov 2014)
 






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

2014-11-17 Thread Michael Palimaka
commit: ae7cc637ba91b776ac282172c6274738d15e
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Nov 17 08:39:02 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Nov 17 08:39:02 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ae7cc637

[kde-base/print-manager] Restore 896009a47447bc00c15a7b597152968b34e9f433 which 
was accidentally never applied to the live ebuild.

Package-Manager: portage-2.2.14

---
 .../print-manager/print-manager-4.14.49..ebuild | 21 +++--
 1 file changed, 19 insertions(+), 2 deletions(-)

diff --git a/kde-base/print-manager/print-manager-4.14.49..ebuild 
b/kde-base/print-manager/print-manager-4.14.49..ebuild
index c436164..4c7ad8c 100644
--- a/kde-base/print-manager/print-manager-4.14.49..ebuild
+++ b/kde-base/print-manager/print-manager-4.14.49..ebuild
@@ -8,7 +8,7 @@ inherit kde4-base
 
 DESCRIPTION=Manage print jobs and printers in KDE
 KEYWORDS=
-IUSE=debug
+IUSE=debug +gtk
 
 DEPEND=
=net-print/cups-1.5.0[dbus]
@@ -17,5 +17,22 @@ RDEPEND=${DEPEND}
!kde-base/printer-applet:4
!kde-base/system-config-printer-kde:4
!kde-misc/print-manager
-   app-admin/system-config-printer-gnome
+   gtk? ( app-admin/system-config-printer-gnome )
 
+
+pkg_postinst(){
+   if ! use gtk ; then
+   ewarn
+   ewarn By switching off \gtk\ USE flag, you have chosen to do 
without
+   ewarn an important, though optional, runtime dependency:
+   ewarn
+   ewarn app-admin/system-config-printer-gnome
+   ewarn
+   ewarn ${PN} will work nevertheless, but is going to be less 
comfortable
+   ewarn and will show the following error status during runtime:
+   ewarn
+   ewarn \Failed to group devices: 'The name 
org.fedoraproject.Config.Printing
+   ewarn was not provided by any .service files'\
+   ewarn
+   fi
+}



[gentoo-commits] gentoo-x86 commit in sci-chemistry/relax: ChangeLog relax-3.3.2.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 08:54:44

  Modified: ChangeLog
  Added:relax-3.3.2.ebuild
  Log:
  sci-chemistry/relax: Version Bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.29 sci-chemistry/relax/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   10 Oct 2014 08:19:27 -  1.28
+++ ChangeLog   17 Nov 2014 08:54:44 -  1.29
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/relax
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.28 
2014/10/10 08:19:27 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.29 
2014/11/17 08:54:44 jlec Exp $
+
+*relax-3.3.2 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org +relax-3.3.2.ebuild:
+  Version Bump
 
 *relax-3.3.1 (10 Oct 2014)
 



1.1  sci-chemistry/relax/relax-3.3.2.ebuild

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

Index: relax-3.3.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/relax-3.3.2.ebuild,v 1.1 
2014/11/17 08:54:44 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

WX_GTK_VER=2.9

inherit eutils multiprocessing python-single-r1 scons-utils toolchain-funcs 
wxwidgets virtualx

DESCRIPTION=Molecular dynamics by NMR data analysis
HOMEPAGE=http://www.nmr-relax.com/;
SRC_URI=http://download.gna.org/relax/${P}.src.tar.bz2;

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

REQUIRED_USE=${PYTHON_REQUIRED_USE}

RDEPEND=
${PYTHON_DEPS}
dev-python/Numdifftools[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}]
sci-chemistry/molmol
sci-chemistry/pymol[${PYTHON_USEDEP}]
sci-chemistry/vmd
=sci-libs/bmrblib-1.0.3[${PYTHON_USEDEP}]
=sci-libs/minfx-1.0.11[${PYTHON_USEDEP}]
sci-libs/scipy[${PYTHON_USEDEP}]
sci-visualization/grace
sci-visualization/opendx
x11-libs/wxGTK:${WX_GTK_VER}[X]
DEPEND=${RDEPEND}
media-gfx/pngcrush

pkg_setup() {
python-single-r1_pkg_setup
}

src_prepare() {
rm -rf minfx bmrblib extern/numdifftools || die
tc-export CC
}

src_compile() {
escons
}

src_test() {
VIRTUALX_COMMAND=${EPYTHON} ./${PN}.py -x --traceback
virtualmake
}

src_install() {
dodoc README docs/{CHANGES,COMMITTERS,JOBS,relax.pdf}

python_moduleinto ${PN}
python_domodule *

rm ${PN} README || die

make_wrapper ${PN}-nmr ${EPYTHON} $(python_get_sitedir)/${PN}/${PN}.py 
$@
}






[gentoo-commits] gentoo-x86 commit in app-i18n/ibus: ibus-1.5.5.ebuild ChangeLog

2014-11-17 Thread Agostino Sarubbo (ago)
ago 14/11/17 08:55:13

  Modified: ibus-1.5.5.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #517912
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.10 app-i18n/ibus/ibus-1.5.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild?r1=1.9r2=1.10

Index: ibus-1.5.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ibus-1.5.5.ebuild   17 Nov 2014 08:55:01 -  1.9
+++ ibus-1.5.5.ebuild   17 Nov 2014 08:55:13 -  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/app-i18n/ibus/ibus-1.5.5.ebuild,v 1.9 
2014/11/17 08:55:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild,v 1.10 
2014/11/17 08:55:13 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -17,7 +17,7 @@
 
 LICENSE=LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=~alpha amd64 arm ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd
 IUSE=deprecated gconf gtk +gtk3 +introspection nls +python test vala wayland 
+X
 REQUIRED_USE=|| ( gtk gtk3 X )
deprecated? ( python )



1.153app-i18n/ibus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ChangeLog?rev=1.153view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ChangeLog?rev=1.153content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ChangeLog?r1=1.152r2=1.153

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog   17 Nov 2014 08:55:01 -  1.152
+++ ChangeLog   17 Nov 2014 08:55:13 -  1.153
@@ -1,6 +1,9 @@
 # ChangeLog for app-i18n/ibus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v 1.152 2014/11/17 
08:55:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v 1.153 2014/11/17 
08:55:13 ago Exp $
+
+  17 Nov 2014; Agostino Sarubbo a...@gentoo.org ibus-1.5.5.ebuild:
+  Stable for ppc64, wrt bug #517912
 
   17 Nov 2014; Agostino Sarubbo a...@gentoo.org ibus-1.5.5.ebuild:
   Stable for ppc, wrt bug #517912






[gentoo-commits] gentoo-x86 commit in sys-kernel/aufs-sources: aufs-sources-3.17.2.ebuild aufs-sources-3.14.24.ebuild aufs-sources-3.10.60.ebuild aufs-sources-3.12.32.ebuild ChangeLog aufs-sources-3.1

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 08:55:04

  Modified: aufs-sources-3.17.2.ebuild ChangeLog
  Added:aufs-sources-3.14.24.ebuild
aufs-sources-3.10.60.ebuild
aufs-sources-3.12.32.ebuild
  Removed:  aufs-sources-3.17.0.ebuild
aufs-sources-3.17.1.ebuild
aufs-sources-3.16.6.ebuild
aufs-sources-3.12.29.ebuild
aufs-sources-3.17.1-r1.ebuild
aufs-sources-3.14.20.ebuild
aufs-sources-3.16.4.ebuild
aufs-sources-3.14.16.ebuild
aufs-sources-3.10.57.ebuild
aufs-sources-3.14.22.ebuild
  Log:
  sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release; 
drop old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.2  sys-kernel/aufs-sources/aufs-sources-3.17.2.ebuild

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

Index: aufs-sources-3.17.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- aufs-sources-3.17.2.ebuild  31 Oct 2014 08:06:12 -  1.1
+++ aufs-sources-3.17.2.ebuild  17 Nov 2014 08:55:04 -  1.2
@@ -1,19 +1,19 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.2.ebuild,v 
1.1 2014/10/31 08:06:12 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.17.2.ebuild,v 
1.2 2014/11/17 08:55:04 jlec Exp $
 
 EAPI=5
 
 ETYPE=sources
 K_WANT_GENPATCHES=base extras experimental
-K_GENPATCHES_VER=5
+K_GENPATCHES_VER=6
 K_DEBLOB_AVAILABLE=1
 UNIPATCH_STRICTORDER=1
 inherit kernel-2 eutils readme.gentoo
 detect_version
 detect_arch
 
-AUFS_VERSION=3.17_p20141020
+AUFS_VERSION=3.17_p20141110
 AUFS_TARBALL=aufs-sources-${AUFS_VERSION}.tar.xz
 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone 
aufs${AUFS_VERSION/_p*}  aufs-sources-${AUFS_VERSION}.tar
 AUFS_URI=http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL};



1.158sys-kernel/aufs-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog   31 Oct 2014 08:06:12 -  1.157
+++ ChangeLog   17 Nov 2014 08:55:04 -  1.158
@@ -1,6 +1,20 @@
 # ChangeLog for sys-kernel/aufs-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.157 
2014/10/31 08:06:12 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.158 
2014/11/17 08:55:04 jlec Exp $
+
+*aufs-sources-3.14.24 (17 Nov 2014)
+*aufs-sources-3.12.32 (17 Nov 2014)
+*aufs-sources-3.10.60 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org -aufs-sources-3.10.57.ebuild,
+  +aufs-sources-3.10.60.ebuild, -aufs-sources-3.12.29.ebuild,
+  +aufs-sources-3.12.32.ebuild, -aufs-sources-3.14.16.ebuild,
+  -aufs-sources-3.14.20.ebuild, -aufs-sources-3.14.22.ebuild,
+  +aufs-sources-3.14.24.ebuild, -aufs-sources-3.16.4.ebuild,
+  -aufs-sources-3.16.6.ebuild, -aufs-sources-3.17.0.ebuild,
+  -aufs-sources-3.17.1.ebuild, -aufs-sources-3.17.1-r1.ebuild,
+  aufs-sources-3.17.2.ebuild:
+  Bump to latest aufs3, genpatches and linux release; drop old
 
 *aufs-sources-3.17.2 (31 Oct 2014)
 *aufs-sources-3.16.7 (31 Oct 2014)



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

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

Index: aufs-sources-3.14.24.ebuild

[gentoo-commits] gentoo-x86 commit in app-i18n/ibus: ibus-1.5.5.ebuild ChangeLog

2014-11-17 Thread Agostino Sarubbo (ago)
ago 14/11/17 08:55:01

  Modified: ibus-1.5.5.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #517912
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.9  app-i18n/ibus/ibus-1.5.5.ebuild

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

Index: ibus-1.5.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ibus-1.5.5.ebuild   12 Nov 2014 14:31:12 -  1.8
+++ ibus-1.5.5.ebuild   17 Nov 2014 08:55:01 -  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/app-i18n/ibus/ibus-1.5.5.ebuild,v 1.8 
2014/11/12 14:31:12 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ibus-1.5.5.ebuild,v 1.9 
2014/11/17 08:55:01 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -17,7 +17,7 @@
 
 LICENSE=LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=~alpha amd64 arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd
 IUSE=deprecated gconf gtk +gtk3 +introspection nls +python test vala wayland 
+X
 REQUIRED_USE=|| ( gtk gtk3 X )
deprecated? ( python )



1.152app-i18n/ibus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ChangeLog?rev=1.152view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ChangeLog?rev=1.152content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus/ChangeLog?r1=1.151r2=1.152

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog   12 Nov 2014 14:31:12 -  1.151
+++ ChangeLog   17 Nov 2014 08:55:01 -  1.152
@@ -1,6 +1,9 @@
 # ChangeLog for app-i18n/ibus
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v 1.151 2014/11/12 
14:31:12 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v 1.152 2014/11/17 
08:55:01 ago Exp $
+
+  17 Nov 2014; Agostino Sarubbo a...@gentoo.org ibus-1.5.5.ebuild:
+  Stable for ppc, wrt bug #517912
 
 *ibus-1.5.9 (12 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-java/jffi: jffi-1.2.7-r2.ebuild ChangeLog

2014-11-17 Thread Johann Schmitz (ercpe)
ercpe   14/11/17 09:09:28

  Modified: ChangeLog
  Added:jffi-1.2.7-r2.ebuild
  Log:
  Fix for building against libffi-3.2 (bug #529426)
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.36 dev-java/jffi/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/ChangeLog?rev=1.36view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/ChangeLog?rev=1.36content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/ChangeLog?r1=1.35r2=1.36

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   13 Nov 2014 15:08:27 -  1.35
+++ ChangeLog   17 Nov 2014 09:09:28 -  1.36
@@ -1,6 +1,12 @@
 # ChangeLog for dev-java/jffi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v 1.35 2014/11/13 
15:08:27 ercpe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v 1.36 2014/11/17 
09:09:28 ercpe Exp $
+
+*jffi-1.2.7-r2 (17 Nov 2014)
+
+  17 Nov 2014; Johann Schmitz er...@gentoo.org
+  +files/jffi-1.2.7-makefile.patch, +jffi-1.2.7-r2.ebuild:
+  Fix for building against libffi-3.2 (bug #529426)
 
 *jffi-1.2.7-r1 (13 Nov 2014)
 *jffi-1.0.11-r1 (13 Nov 2014)



1.1  dev-java/jffi/jffi-1.2.7-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/jffi-1.2.7-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/jffi-1.2.7-r2.ebuild?rev=1.1content-type=text/plain

Index: jffi-1.2.7-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/jffi-1.2.7-r2.ebuild,v 1.1 
2014/11/17 09:09:28 ercpe Exp $

EAPI=5

JAVA_PKG_IUSE=doc source test

inherit eutils java-pkg-2 java-ant-2 versionator vcs-snapshot

DESCRIPTION=An optimized Java interface to libffi
HOMEPAGE=https://github.com/jnr/jffi;
SRC_URI=https://github.com/jnr/jffi/tarball/${PV} - ${P}.tar.gz

LICENSE=|| ( Apache-2.0 LGPL-3 )
SLOT=1.2
KEYWORDS=~amd64 ~ppc ~x86 ~ppc-macos ~x64-macos ~x86-macos

COMMON_DEP=virtual/libffi:0

RDEPEND=${COMMON_DEP}
=virtual/jre-1.5

DEPEND=${COMMON_DEP}
=virtual/jdk-1.5
virtual/pkgconfig
test? (
dev-java/ant-junit4:0
dev-java/junit:4
)

java_prepare() {
cp ${FILESDIR}/${PN}_maven-build.xml build.xml || die
epatch ${FILESDIR}/${P}-makefile.patch
epatch ${FILESDIR}/${P}-junit-4.11.patch

# misc fixes for Darwin
if [[ ${CHOST} == *-darwin* ]] ; then
local uarch
# don't do multiarch
# avoid using Xcode stuff
# use Prefix' headers
# don't mess with deployment target
# set install_name
use x64-macos  uarch=x86_64
use x86-macos  uarch=i386
use ppc-macos  uarch=ppc
sed -i \
-e /ARCHES +=/s/=.*$/= ${uarch}/ \
-e /XCODE=/s:=.*$:=${EPREFIX}: \
-e /MACSDK/s/^/#/ \
-e /MACOSX_DEPLOYMENT_TARGET=/s/MAC/NOMAC/ \
-e /SOFLAGS =/s:=.*:= -install_name 
${EPREFIX}/usr/lib/jffi-${SLOT}/libjffi-${SLOT}.jnilib: \
jni/GNUmakefile || die
fi

find ${WORKDIR} -iname '*.jar' -delete || die
}

JAVA_ANT_REWRITE_CLASSPATH=yes

EANT_EXTRA_ARGS=-Dmaven.build.finalName=${PN}
src_compile() {
# generate Version.java
cat  src/main/java/com/kenai/jffi/Version.java -EOF
package com.kenai.jffi;
public final class Version {
private Version() {}
public static final int MAJOR = 
$(get_version_component_range 1);
public static final int MINOR = 
$(get_version_component_range 2);
public static final int MICRO = 
$(get_version_component_range 3);
}
EOF

java-pkg-2_src_compile

# generate headers
mkdir -p build/jni
javah -d build/jni -classpath target/classes \
com.kenai.jffi.Foreign \
com.kenai.jffi.ObjectBuffer \
com.kenai.jffi.Version \
|| die

#build native library.
local args=(
SRC_DIR=jni
JNI_DIR=jni
BUILD_DIR=build/jni
VERSION=$(get_version_component_range 1-2)

[gentoo-commits] gentoo-x86 commit in dev-java/jffi/files: jffi-1.2.7-makefile.patch

2014-11-17 Thread Johann Schmitz (ercpe)
ercpe   14/11/17 09:09:28

  Added:jffi-1.2.7-makefile.patch
  Log:
  Fix for building against libffi-3.2 (bug #529426)
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.1  dev-java/jffi/files/jffi-1.2.7-makefile.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/files/jffi-1.2.7-makefile.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jffi/files/jffi-1.2.7-makefile.patch?rev=1.1content-type=text/plain

Index: jffi-1.2.7-makefile.patch
===
diff --git a/jffi-1.2.7/jni/GNUmakefile b/jffi-1.2.7/jni/GNUmakefile
index 27737be..2e709d9 100755
--- a/jffi-1.2.7/jni/GNUmakefile
+++ b/jffi-1.2.7/jni/GNUmakefile
@@ -47,7 +47,6 @@ else
   LIBFFI_SRC_DIR = $(SRC_DIR)/libffi
   LIBFFI_BUILD_DIR = $(BUILD_DIR)/libffi-$(PLATFORM)
   LIBFFI = $(LIBFFI_BUILD_DIR)/.libs/libffi_convenience.a
-  LIBFFI_LIBS = $(LIBFFI)
   LIBFFI_CFLAGS = -I$(LIBFFI_BUILD_DIR)/include
 endif
 
@@ -64,11 +63,11 @@ JFLAGS = -fno-omit-frame-pointer -fno-strict-aliasing 
-DNDEBUG
 OFLAGS = -O2 $(JFLAGS)
 
 # MacOS headers aren't completely warning free, so turn them off
-WERROR = -Werror
+WERROR =
 ifneq ($(OS),darwin)
   WFLAGS += -Wundef $(WERROR)
 endif
-WFLAGS += -W -Wall -Wno-unused -Wno-parentheses
+WFLAGS += -W -Wall -Wno-unused -Wno-unused-parameter -Wno-parentheses
 PICFLAGS = -fPIC
 SOFLAGS = # Filled in for each OS specifically
 FFI_MMAP_EXEC = -DFFI_MMAP_EXEC_WRIT
@@ -279,7 +278,7 @@ debug:
@echo JFFI_BUILD_DIR=$(JFFI_BUILD_DIR)
@echo OBJS=$(OBJS)
 
-$(LIBJFFI):  $(OBJS) $(LIBFFI_LIBS)
+$(LIBJFFI):  $(OBJS)
$(CC) -o $@ $(LDFLAGS) $(SOFLAGS) $(OBJS) $(LIBFFI_LIBS) $(LIBS)
$(STRIP) $@
 
@@ -291,7 +290,7 @@ $(BUILD_DIR)/%.o : $(SRC_DIR)/%.S $(wildcard 
$(JFFI_SRC_DIR)/*.h)
@mkdir -p $(@D)
@$(CC) $(CFLAGS) -o $@ -c $
 
-$(OBJS) : $(LIBFFI_LIBS)
+$(OBJS) : 
 
 ifeq ($(OS), darwin)
 build_ffi = \
diff --git a/jffi-1.2.7/libtest/GNUmakefile b/jffi-1.2.7/libtest/GNUmakefile
index 9e70664..3e279a3 100644
--- a/jffi-1.2.7/libtest/GNUmakefile
+++ b/jffi-1.2.7/libtest/GNUmakefile
@@ -44,10 +44,10 @@ TEST_OBJS := $(patsubst $(SRC_DIR)/%.c, 
$(TEST_BUILD_DIR)/%.o, $(TEST_SRCS))
 # Compiler/linker flags from:
 #   
http://weblogs.java.net/blog/kellyohair/archive/2006/01/compilation_of_1.html
 JFLAGS = -fno-omit-frame-pointer -fno-strict-aliasing
-OFLAGS = -O2 $(JFLAGS)
-WFLAGS = -W -Werror -Wall -Wno-unused -Wno-parentheses
+OFLAGS = $(JFLAGS)
+WFLAGS = -W -Wall -Wno-unused -Wno-unused-parameter -Wno-parentheses
 PICFLAGS = -fPIC
-SOFLAGS = -shared -Wl,-O1
+SOFLAGS = -shared
 LDFLAGS += $(SOFLAGS)
 
 IFLAGS = -I$(BUILD_DIR)






[gentoo-commits] gentoo-x86 commit in dev-java/jffi/files: jffi-1.2.7_no-werror.patch

2014-11-17 Thread Johann Schmitz (ercpe)
ercpe   14/11/17 09:12:23

  Removed:  jffi-1.2.7_no-werror.patch
  Log:
  Dropped jffi-1.2.7-r1
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)



[gentoo-commits] gentoo-x86 commit in dev-java/jffi: ChangeLog jffi-1.2.7-r1.ebuild

2014-11-17 Thread Johann Schmitz (ercpe)
ercpe   14/11/17 09:12:23

  Modified: ChangeLog
  Removed:  jffi-1.2.7-r1.ebuild
  Log:
  Dropped jffi-1.2.7-r1
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.37 dev-java/jffi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   17 Nov 2014 09:09:28 -  1.36
+++ ChangeLog   17 Nov 2014 09:12:23 -  1.37
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/jffi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v 1.36 2014/11/17 
09:09:28 ercpe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/jffi/ChangeLog,v 1.37 2014/11/17 
09:12:23 ercpe Exp $
+
+  17 Nov 2014; Johann Schmitz er...@gentoo.org
+  -files/jffi-1.2.7_no-werror.patch, -jffi-1.2.7-r1.ebuild:
+  Dropped jffi-1.2.7-r1
 
 *jffi-1.2.7-r2 (17 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-util/nvidia-cuda-toolkit: ChangeLog nvidia-cuda-toolkit-6.5.14.ebuild nvidia-cuda-toolkit-6.5.19.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:15:13

  Modified: ChangeLog nvidia-cuda-toolkit-6.5.14.ebuild
  Added:nvidia-cuda-toolkit-6.5.19.ebuild
  Log:
  dev-util/nvidia-cuda-toolkit: Import Version Bump from sci overlay, thanks 
Marius Brehler for the work; Add warning for reduced 32bit support, #529320
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.94 dev-util/nvidia-cuda-toolkit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog?rev=1.94view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog?rev=1.94content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog?r1=1.93r2=1.94

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog   6 Nov 2014 08:15:19 -   1.93
+++ ChangeLog   17 Nov 2014 09:15:13 -  1.94
@@ -1,477 +1,11 @@
 # ChangeLog for dev-util/nvidia-cuda-toolkit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog,v 
1.93 2014/11/06 08:15:19 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog,v 
1.94 2014/11/17 09:15:13 jlec Exp $
 
-  06 Nov 2014; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-6.5.14.ebuild:
-  Fix non existing documentation directory on x86
+*nvidia-cuda-toolkit-6.5.19 (17 Nov 2014)
 
-  05 Nov 2014; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-6.5.14.ebuild:
-  Test for presents of deprecated.3 before moving, #525226
+  17 Nov 2014; Justin Lecher j...@gentoo.org
+  nvidia-cuda-toolkit-6.5.14.ebuild, +nvidia-cuda-toolkit-6.5.19.ebuild:
+  Import Version Bump from sci overlay, thanks Marius Brehler for the work; Add
+  warning for reduced 32bit support, #529320
 
-*nvidia-cuda-toolkit-4.2.9-r2 (04 Nov 2014)
-
-  04 Nov 2014; Patrick Lauer patr...@gentoo.org
-  +nvidia-cuda-toolkit-4.2.9-r2.ebuild:
-  Restore old version needed by media-libs/opencv and fix deps
-
-  04 Nov 2014; Patrick Lauer patr...@gentoo.org
-  -nvidia-cuda-toolkit-4.2.9-r2.ebuild:
-  Remove old version that has broken dependencies after toolchain changes
-
-  15 Sep 2014; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-6.5.14.ebuild:
-  Fix min nvidia-drivers version, thanks Marius Brehler for reporting, #521480
-
-*nvidia-cuda-toolkit-6.5.14 (21 Aug 2014)
-
-  21 Aug 2014; Justin Lecher j...@gentoo.org
-  +nvidia-cuda-toolkit-6.5.14.ebuild:
-  Version BUmp, #520302
-
-*nvidia-cuda-toolkit-6.0.37-r4 (14 Jul 2014)
-
-  14 Jul 2014; Justin Lecher j...@gentoo.org
-  +nvidia-cuda-toolkit-6.0.37-r4.ebuild:
-  Add profiler specific paths only with USE=profiler, #512160
-
-*nvidia-cuda-toolkit-6.0.37-r3 (16 Jun 2014)
-
-  16 Jun 2014; Justin Lecher j...@gentoo.org
-  -nvidia-cuda-toolkit-6.0.37.ebuild, -nvidia-cuda-toolkit-6.0.37-r1.ebuild,
-  -nvidia-cuda-toolkit-6.0.37-r2.ebuild, +nvidia-cuda-toolkit-6.0.37-r3.ebuild:
-  Fix cuda-config
-
-  16 Jun 2014; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-6.0.37-r2.ebuild:
-  Fix version of gcc dependency, #513218
-
-*nvidia-cuda-toolkit-6.0.37-r2 (15 Jun 2014)
-
-  15 Jun 2014; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-6.0.37-r1.ebuild, +nvidia-cuda-toolkit-6.0.37-r2.ebuild:
-  Raise gcc version requirement, #513218
-
-*nvidia-cuda-toolkit-6.0.37-r1 (30 Apr 2014)
-
-  30 Apr 2014; Justin Lecher j...@gentoo.org
-  +nvidia-cuda-toolkit-6.0.37-r1.ebuild:
-  rename generic man page, #509168
-
-*nvidia-cuda-toolkit-6.0.37 (24 Apr 2014)
-
-  24 Apr 2014; Justin Lecher j...@gentoo.org
-  +nvidia-cuda-toolkit-6.0.37.ebuild:
-  Version Bump, #507804
-
-  31 Mar 2014; Jeroen Roovers j...@gentoo.org
-  nvidia-cuda-toolkit-4.2.9-r2.ebuild, nvidia-cuda-toolkit-5.5.22.ebuild:
-  Fix x11-drivers/nvidia-drivers version dependencies (bug #505198).
-
-  22 Mar 2014; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-4.2.9-r2.ebuild, nvidia-cuda-toolkit-5.5.22.ebuild:
-  Add uvm USE-dep to nvidia-drivers, #505198
-
-  27 Jan 2014; Justin Lecher j...@gentoo.org
-  -nvidia-cuda-toolkit-4.2.9-r3.ebuild, -nvidia-cuda-toolkit-5.0.35-r2.ebuild,
-  -nvidia-cuda-toolkit-5.0.35-r3.ebuild, -nvidia-cuda-toolkit-5.0.35-r4.ebuild:
-  Drop old
-
-  26 Jan 2014; Agostino Sarubbo a...@gentoo.org
-  nvidia-cuda-toolkit-5.5.22.ebuild:
-  Stable for x86, wrt bug #486578
-
-  22 Dec 2013; Pacho Ramos pa...@gentoo.org 
nvidia-cuda-toolkit-5.5.22.ebuild:
-  amd64 stable, bug #486578
-
-  26 Nov 2013; Justin Lecher j...@gentoo.org
-  nvidia-cuda-toolkit-4.2.9-r2.ebuild, nvidia-cuda-toolkit-4.2.9-r3.ebuild,
-  nvidia-cuda-toolkit-5.0.35-r2.ebuild, 

[gentoo-commits] gentoo-x86 commit in dev-util/nvidia-cuda-sdk: ChangeLog nvidia-cuda-sdk-6.5.19.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:18:23

  Modified: ChangeLog
  Added:nvidia-cuda-sdk-6.5.19.ebuild
  Log:
  dev-util/nvidia-cuda-sdk: Import Version Bump from sci overlay, thanks Marius 
Brehler for the work; Add warning for reduced 32bit support, #529320
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.55 dev-util/nvidia-cuda-sdk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog?rev=1.55view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog?rev=1.55content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog?r1=1.54r2=1.55

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog   19 Sep 2014 09:14:35 -  1.54
+++ ChangeLog   17 Nov 2014 09:18:23 -  1.55
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/nvidia-cuda-sdk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog,v 1.54 
2014/09/19 09:14:35 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog,v 1.55 
2014/11/17 09:18:23 jlec Exp $
+
+*nvidia-cuda-sdk-6.5.19 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org +nvidia-cuda-sdk-6.5.19.ebuild:
+  Import Version Bump from sci overlay, thanks Marius Brehler for the work; Add
+  warning for reduced 32bit support, #529320
 
   19 Sep 2014; Justin Lecher j...@gentoo.org nvidia-cuda-sdk-6.5.14.ebuild:
   Fix double definition of c++ compiler, #523142



1.1  dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild?rev=1.1content-type=text/plain

Index: nvidia-cuda-sdk-6.5.19.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild,v
 1.1 2014/11/17 09:18:23 jlec Exp $

EAPI=5

inherit cuda eutils flag-o-matic portability toolchain-funcs unpacker 
versionator

MYD=$(get_version_component_range 1)_$(get_version_component_range 2)

DESCRIPTION=NVIDIA CUDA Software Development Kit
HOMEPAGE=http://developer.nvidia.com/cuda;
CURI=http://developer.download.nvidia.com/compute/cuda/${MYD}/rel/installers;
SRC_URI=amd64? ( ${CURI}/cuda_${PV}_linux_64.run )

LICENSE=CUDPP
SLOT=0
KEYWORDS=~amd64 ~amd64-linux
IUSE=debug +doc +examples opencl +cuda

RDEPEND=
~dev-util/nvidia-cuda-toolkit-${PV}
media-libs/freeglut
examples? (
media-libs/freeimage
media-libs/glew
virtual/mpi
=x11-drivers/nvidia-drivers-343.22[uvm]
)
DEPEND=${RDEPEND}

RESTRICT=test

S=${WORKDIR}/cuda-samples

QA_EXECSTACK=(
opt/cuda/sdk/0_Simple/cdpSimplePrint/cdpSimplePrint
opt/cuda/sdk/0_Simple/cdpSimpleQuicksort/cdpSimpleQuicksort
opt/cuda/sdk/bin/x86_64/linux/release/cdpSimplePrint
opt/cuda/sdk/bin/x86_64/linux/release/cdpSimpleQuicksort
)

src_unpack() {
unpacker
unpacker run_files/cuda-samples*run
}

pkg_setup() {
if use cuda || use opencl; then
cuda_pkg_setup
fi

if use x86; then
ewarn Starting with version 6.5 NVIDIA dropped more and more
ewarn the support for 32bit linux.
ewarn Be aware that bugfixes and new features may not be 
available.
ewarn 
http://dev.gentoo.org/~jlec/distfiles/CUDA_Toolkit_Release_Notes.pdf;
fi
}

src_prepare() {
export RAWLDFLAGS=$(raw-ldflags)
#   epatch ${FILESDIR}/${P}-asneeded.patch

sed \
-e 's:-O2::g' \
-e 's:-O3::g' \
-e /LINK/s:gcc:$(tc-getCC) ${LDFLAGS}:g \
-e /LINK/s:g++:$(tc-getCXX) ${LDFLAGS}:g \
-e /CC/s:gcc:$(tc-getCC):g \
-e /GCC/s:g++:$(tc-getCXX):g \
-e /NVCC /s|\(:=\).*|:= ${EPREFIX}/opt/cuda/bin/nvcc|g \
-e / CFLAGS/s|\(:=\)|\1 ${CFLAGS}|g \
-e / CXXFLAGS/s|\(:=\)|\1 ${CXXFLAGS}|g \
-e /NVCCFLAGS/s|\(:=\)|\1 ${NVCCFLAGS} |g \
-e 's:-Wimplicit::g' \
-e s|../../common/lib/linux/\$(OS_ARCH)/libGLEW.a|$(pkg-config 
--libs glew)|g \
-e 

[gentoo-commits] gentoo-x86 commit in dev-util/nvidia-cuda-sdk: ChangeLog nvidia-cuda-sdk-6.5.19.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:20:48

  Modified: ChangeLog nvidia-cuda-sdk-6.5.19.ebuild
  Log:
  dev-util/nvidia-cuda-sdk: Readd dropped keywords
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.56 dev-util/nvidia-cuda-sdk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog?rev=1.56view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog?rev=1.56content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog?r1=1.55r2=1.56

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   17 Nov 2014 09:18:23 -  1.55
+++ ChangeLog   17 Nov 2014 09:20:48 -  1.56
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/nvidia-cuda-sdk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog,v 1.55 
2014/11/17 09:18:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/ChangeLog,v 1.56 
2014/11/17 09:20:48 jlec Exp $
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org nvidia-cuda-sdk-6.5.19.ebuild:
+  Readd dropped keywords
 
 *nvidia-cuda-sdk-6.5.19 (17 Nov 2014)
 



1.2  dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild

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

Index: nvidia-cuda-sdk-6.5.19.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nvidia-cuda-sdk-6.5.19.ebuild   17 Nov 2014 09:18:23 -  1.1
+++ nvidia-cuda-sdk-6.5.19.ebuild   17 Nov 2014 09:20:48 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild,v
 1.1 2014/11/17 09:18:23 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild,v
 1.2 2014/11/17 09:20:48 jlec Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=CUDPP
 SLOT=0
-KEYWORDS=~amd64 ~amd64-linux
+KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux
 IUSE=debug +doc +examples opencl +cuda
 
 RDEPEND=






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

2014-11-17 Thread Justin Lecher
commit: 0956c347f052c43bf6df2ed94b6be08f54be728e
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Mon Nov 17 09:06:16 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Nov 17 09:06:16 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0956c347

sci-chemistry/cs-rosetta: Drop all keywords

Package-Manager: portage-2.2.14

---
 sci-chemistry/cs-rosetta/ChangeLog   | 4 
 sci-chemistry/cs-rosetta/cs-rosetta-1.01.2009.1109.11.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/sci-chemistry/cs-rosetta/ChangeLog 
b/sci-chemistry/cs-rosetta/ChangeLog
index ba57b80..651329e 100644
--- a/sci-chemistry/cs-rosetta/ChangeLog
+++ b/sci-chemistry/cs-rosetta/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  17 Nov 2014; Justin Lecher j...@gentoo.org
+  cs-rosetta-1.01.2009.1109.11.ebuild:
+  Drop all keywords
+
   16 Sep 2014; Christoph Junghans ott...@gentoo.org
   cs-rosetta-1.01.2009.1109.11.ebuild:
   dropped ~amd64 as sci-chemistry/nmrpipe doesn't have ~amd64

diff --git a/sci-chemistry/cs-rosetta/cs-rosetta-1.01.2009.1109.11.ebuild 
b/sci-chemistry/cs-rosetta/cs-rosetta-1.01.2009.1109.11.ebuild
index ce0bbc6..8d42a2b 100644
--- a/sci-chemistry/cs-rosetta/cs-rosetta-1.01.2009.1109.11.ebuild
+++ b/sci-chemistry/cs-rosetta/cs-rosetta-1.01.2009.1109.11.ebuild
@@ -15,7 +15,7 @@ SRC_URI=
 
 SLOT=0
 LICENSE=all-rights-reserved
-KEYWORDS=~x86 ~amd64-linux ~x86-linux
+KEYWORDS=
 IUSE=custom-cflags
 
 RDEPEND=



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

2014-11-17 Thread Justin Lecher
commit: d166e7a6058682d2207ad00aeb498d039660359f
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Mon Nov 17 09:04:36 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Nov 17 09:04:36 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d166e7a6

sci-chemistry/mddnmr: Drop all keywords

Package-Manager: portage-2.2.14

---
 sci-chemistry/mddnmr/ChangeLog| 3 +++
 sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/sci-chemistry/mddnmr/ChangeLog b/sci-chemistry/mddnmr/ChangeLog
index d3e05ec..62124b9 100644
--- a/sci-chemistry/mddnmr/ChangeLog
+++ b/sci-chemistry/mddnmr/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  17 Nov 2014; Justin Lecher j...@gentoo.org mddnmr-2.4-r1.ebuild:
+  Drop all keywords
+
   16 Sep 2014; Justin Lecher j...@gentoo.org mddnmr-2.4-r1.ebuild:
   Add back dropped ~amd64
 

diff --git a/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild 
b/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild
index a8b2328..4c706c3 100644
--- a/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild
+++ b/sci-chemistry/mddnmr/mddnmr-2.4-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE=http://www.nmr.gu.se/~mdd/;
 SRC_URI=http://pc8.nmr.gu.se/~mdd/Downloads/${MY_P}.tgz;
 
 SLOT=0
-KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=
 LICENSE=mddnmr
 IUSE=
 



[gentoo-commits] proj/sci:master commit in: dev-util/nvidia-cuda-toolkit/files/, dev-util/nvidia-cuda-toolkit/, ...

2014-11-17 Thread Justin Lecher
commit: 84cf6050a0ad069364645a656964cb35cdcc6f8b
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Mon Nov 17 09:20:26 2014 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Mon Nov 17 09:20:26 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=84cf6050

Imported to tree

Signed-off-by: Justin Lecher jlec AT gentoo.org

---
 dev-util/nvidia-cuda-sdk/ChangeLog |   9 --
 dev-util/nvidia-cuda-sdk/metadata.xml  |  17 ---
 .../nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild  | 145 -
 dev-util/nvidia-cuda-toolkit/ChangeLog |   9 --
 dev-util/nvidia-cuda-toolkit/files/cuda-config.in  |  28 
 dev-util/nvidia-cuda-toolkit/metadata.xml  |  18 ---
 .../nvidia-cuda-toolkit-6.5.19.ebuild  | 144 
 7 files changed, 370 deletions(-)

diff --git a/dev-util/nvidia-cuda-sdk/ChangeLog 
b/dev-util/nvidia-cuda-sdk/ChangeLog
deleted file mode 100644
index 8ecb9a7..000
--- a/dev-util/nvidia-cuda-sdk/ChangeLog
+++ /dev/null
@@ -1,9 +0,0 @@
-# ChangeLog for dev-util/nvidia-cuda-sdk
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*nvidia-cuda-sdk-6.5.19 (15 Nov 2014)
-
-  15 Nov 2014; Marius Brehler mar...@linux.sungazer.de +metadata.xml,
-  +nvidia-cuda-sdk-6.5.19.ebuild:
-  dev-util/nvidia-cuda-sdk: add version 6.5.19

diff --git a/dev-util/nvidia-cuda-sdk/metadata.xml 
b/dev-util/nvidia-cuda-sdk/metadata.xml
deleted file mode 100644
index 288e495..000
--- a/dev-util/nvidia-cuda-sdk/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
-pkgmetadata
-  herdsci/herd
-  maintainer
-emailj...@gentoo.org/email
-nameJustin Lecher/name
-  /maintainer
-  use
-flag name=opencl
-   Build OpenCL binaries.
-   /flag
-flag name=cuda
-   Build CUDA binaries.
-   /flag
-  /use
-/pkgmetadata

diff --git a/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild 
b/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild
deleted file mode 100644
index 93de750..000
--- a/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.19.ebuild
+++ /dev/null
@@ -1,145 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit cuda eutils flag-o-matic portability toolchain-funcs unpacker 
versionator
-
-MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
-
-DESCRIPTION=NVIDIA CUDA Software Development Kit
-HOMEPAGE=http://developer.nvidia.com/cuda;
-CURI=http://developer.download.nvidia.com/compute/cuda/${MYD}/rel/installers;
-SRC_URI=amd64? ( ${CURI}/cuda_${PV}_linux_64.run )
-
-LICENSE=CUDPP
-SLOT=0
-KEYWORDS=~amd64 ~amd64-linux
-IUSE=debug +doc +examples opencl +cuda
-
-RDEPEND=
-   ~dev-util/nvidia-cuda-toolkit-${PV}
-   media-libs/freeglut
-   examples? (
-   media-libs/freeimage
-   media-libs/glew
-   virtual/mpi
-   =x11-drivers/nvidia-drivers-343.22[uvm]
-   )
-DEPEND=${RDEPEND}
-
-RESTRICT=test
-
-S=${WORKDIR}/cuda-samples
-
-QA_EXECSTACK=(
-   opt/cuda/sdk/0_Simple/cdpSimplePrint/cdpSimplePrint
-   opt/cuda/sdk/0_Simple/cdpSimpleQuicksort/cdpSimpleQuicksort
-   opt/cuda/sdk/bin/x86_64/linux/release/cdpSimplePrint
-   opt/cuda/sdk/bin/x86_64/linux/release/cdpSimpleQuicksort
-   )
-
-src_unpack() {
-   unpacker
-   unpacker run_files/cuda-samples*run
-}
-
-pkg_setup() {
-   if use cuda || use opencl; then
-   cuda_pkg_setup
-   fi
-}
-
-src_prepare() {
-   export RAWLDFLAGS=$(raw-ldflags)
-#  epatch ${FILESDIR}/${P}-asneeded.patch
-
-   sed \
-   -e 's:-O2::g' \
-   -e 's:-O3::g' \
-   -e /LINK/s:gcc:$(tc-getCC) ${LDFLAGS}:g \
-   -e /LINK/s:g++:$(tc-getCXX) ${LDFLAGS}:g \
-   -e /CC/s:gcc:$(tc-getCC):g \
-   -e /GCC/s:g++:$(tc-getCXX):g \
-   -e /NVCC /s|\(:=\).*|:= ${EPREFIX}/opt/cuda/bin/nvcc|g \
-   -e / CFLAGS/s|\(:=\)|\1 ${CFLAGS}|g \
-   -e / CXXFLAGS/s|\(:=\)|\1 ${CXXFLAGS}|g \
-   -e /NVCCFLAGS/s|\(:=\)|\1 ${NVCCFLAGS} |g \
-   -e 's:-Wimplicit::g' \
-   -e s|../../common/lib/linux/\$(OS_ARCH)/libGLEW.a|$(pkg-config 
--libs glew)|g \
-   -e s|../../common/lib/\$(OSLOWER)/libGLEW.a|$(pkg-config 
--libs glew)|g \
-   -e 
s|../../common/lib/\$(OSLOWER)/\$(OS_ARCH)/libGLEW.a|$(pkg-config --libs 
glew)|g \
-   -i $(find . -type f -name Makefile) || die
-
-#  -e /ALL_LDFLAGS/s|:=|:= ${RAWLDFLAGS} |g \
-   find common/inc/GL -delete || die
-   find . -type f -name *\.a -delete || die
-}
-
-src_compile() {
-   use examples || return
-   

[gentoo-commits] gentoo commit in xml/htdocs/proj/en/base/amd64: index.xml

2014-11-17 Thread Sergey Popov (pinkbyte)
pinkbyte14/11/17 09:21:06

  Modified: index.xml
  Log:
  Remove myself from amd64 project due to lack of time

Revision  ChangesPath
1.162xml/htdocs/proj/en/base/amd64/index.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/base/amd64/index.xml?rev=1.162view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/base/amd64/index.xml?rev=1.162content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/base/amd64/index.xml?r1=1.161r2=1.162

Index: index.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/base/amd64/index.xml,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- index.xml   19 Aug 2014 06:14:17 -  1.161
+++ index.xml   17 Nov 2014 09:21:06 -  1.162
@@ -2,7 +2,7 @@
 ?xml-stylesheet href=/xsl/project.xsl type=text/xsl?
 ?xml-stylesheet href=/xsl/guide.xsl type=text/xsl?
 !DOCTYPE project SYSTEM http://www.gentoo.org/dtd/project.dtd;
-!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/base/amd64/index.xml,v 
1.161 2014/08/19 06:14:17 ago Exp $ --
+!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/base/amd64/index.xml,v 
1.162 2014/11/17 09:21:06 pinkbyte Exp $ --
 project
 
 nameGentoo/AMD64/name
@@ -46,7 +46,6 @@
 dev role=Developer description=emul-linux packagespacho/dev
 dev role=Developerrich0/dev
 dev role=Developernimiux/dev
-dev role=DeveloperPinkbyte/dev
 dev role=Developerzlogene/dev
 
 extrachapter position=top






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Trap: Test-Trap-0.2.5.ebuild ChangeLog

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:32:30

  Modified: ChangeLog
  Added:Test-Trap-0.2.5.ebuild
  Log:
  dev-perl/Test-Trap: Verison BUmp
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.20 dev-perl/Test-Trap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Trap/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   26 May 2014 06:38:19 -  1.19
+++ ChangeLog   17 Nov 2014 09:32:30 -  1.20
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/Test-Trap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Trap/ChangeLog,v 1.19 
2014/05/26 06:38:19 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Trap/ChangeLog,v 1.20 
2014/11/17 09:32:30 jlec Exp $
+
+*Test-Trap-0.2.5 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org +Test-Trap-0.2.5.ebuild:
+  Verison BUmp
 
 *Test-Trap-0.2.4 (26 May 2014)
 



1.1  dev-perl/Test-Trap/Test-Trap-0.2.5.ebuild

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

Index: Test-Trap-0.2.5.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-Trap/Test-Trap-0.2.5.ebuild,v 
1.1 2014/11/17 09:32:30 jlec Exp $

EAPI=5

MODULE_AUTHOR=EBHANSSEN
MODULE_VERSION=v${PV}

inherit perl-module

DESCRIPTION=Trap exit codes, exceptions, output, etc

SLOT=0
KEYWORDS= ~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
IUSE=test

# Carp??
RDEPEND=
dev-perl/Data-Dump
virtual/perl-Exporter
virtual/perl-File-Temp
virtual/perl-IO

DEPEND=${RDEPEND}
=virtual/perl-Module-Build-0.400.3
test? (
=dev-perl/Test-Tester-0.107
)

SRC_TEST=do parallel






[gentoo-commits] gentoo-x86 commit in net-analyzer/openvas-administrator: ChangeLog openvas-administrator-1.3.2.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:33:29

  Modified: ChangeLog openvas-administrator-1.3.2.ebuild
  Log:
  net-analyzer/openvas-administrator: Correct dependency information, #514780
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.8  net-analyzer/openvas-administrator/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/openvas-administrator/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/openvas-administrator/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/openvas-administrator/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   29 Sep 2014 06:57:04 -  1.7
+++ ChangeLog   17 Nov 2014 09:33:29 -  1.8
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/openvas-administrator
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/ChangeLog,v 1.7 
2014/09/29 06:57:04 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/ChangeLog,v 1.8 
2014/11/17 09:33:29 jlec Exp $
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org
+  openvas-administrator-1.3.2.ebuild:
+  Correct dependency information, #514780
 
   29 Sep 2014; Justin Lecher j...@gentoo.org metadata.xml:
   Add myself as maintainer



1.2  
net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild?r1=1.1r2=1.2

Index: openvas-administrator-1.3.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openvas-administrator-1.3.2.ebuild  10 Nov 2013 18:31:53 -  1.1
+++ openvas-administrator-1.3.2.ebuild  17 Nov 2014 09:33:29 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild,v
 1.1 2013/11/10 18:31:53 hanno Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/openvas-administrator/openvas-administrator-1.3.2.ebuild,v
 1.2 2014/11/17 09:33:29 jlec Exp $
 
 EAPI=5
 
@@ -14,7 +14,9 @@
 KEYWORDS=~amd64 ~arm ~ppc ~x86
 IUSE=
 
-RDEPEND==net-analyzer/openvas-libraries-6.0.0
+RDEPEND=
+   =net-analyzer/openvas-libraries-6.0.0
+   net-analyzer/openvas-libraries-7.0.0
 DEPEND=${RDEPEND}
virtual/pkgconfig
dev-util/cmake
@@ -26,7 +28,7 @@
 
 src_install() {
cmake-utils_src_install
-   dodoc ChangeLog CHANGES README || die dodoc failed
+   dodoc ChangeLog CHANGES README
doinitd ${FILESDIR}/openvasad
 }
 






[gentoo-commits] proj/kde: New branch: apps-scratch

2014-11-17 Thread Michael Palimaka
commit: 
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Nov 17 09:36:16 2014 +

New branch: apps-scratch




[gentoo-commits] gentoo-x86 commit in dev-python/appdirs: metadata.xml ChangeLog appdirs-1.4.0.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:38:11

  Modified: metadata.xml ChangeLog appdirs-1.4.0.ebuild
  Log:
  dev-python/appdirs: Add x86 and py3_4 support
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.2  dev-python/appdirs/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/appdirs/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml2 Aug 2012 19:48:50 -   1.1
+++ metadata.xml17 Nov 2014 09:38:11 -  1.2
@@ -1,14 +1,13 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdpython/herd
-   maintainer
-   emailaide...@gentoo.org/email
-   nameAmadeusz Żołnowski/name
-   /maintainer
-   longdescription lang=en
+  herdpython/herd
+  maintainer
+emailaide...@gentoo.org/email
+nameAmadeusz Żołnowski/name
+  /maintainer
+  longdescription lang=en
A small Python module for determining appropriate 
platform-specific
dirs, e.g. a user data dir.
/longdescription
 /pkgmetadata
-



1.7  dev-python/appdirs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/appdirs/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   12 Oct 2014 19:52:22 -  1.6
+++ ChangeLog   17 Nov 2014 09:38:11 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/appdirs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/appdirs/ChangeLog,v 1.6 
2014/10/12 19:52:22 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/appdirs/ChangeLog,v 1.7 
2014/11/17 09:38:11 jlec Exp $
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org appdirs-1.4.0.ebuild,
+  metadata.xml:
+  Add x86 and py3_4 support
 
 *appdirs-1.4.0 (12 Oct 2014)
 



1.2  dev-python/appdirs/appdirs-1.4.0.ebuild

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

Index: appdirs-1.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/appdirs/appdirs-1.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- appdirs-1.4.0.ebuild12 Oct 2014 19:52:22 -  1.1
+++ appdirs-1.4.0.ebuild17 Nov 2014 09:38:11 -  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/dev-python/appdirs/appdirs-1.4.0.ebuild,v 
1.1 2014/10/12 19:52:22 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/appdirs/appdirs-1.4.0.ebuild,v 
1.2 2014/11/17 09:38:11 jlec Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy pypy2_0 )
 
 inherit distutils-r1
 
@@ -14,7 +14,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64
+KEYWORDS=~amd64 ~x86
 IUSE=
 
 RDEPEND=






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

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:42:00

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

Revision  ChangesPath
1.26 dev-python/pytools/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytools/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   6 Oct 2014 07:34:39 -   1.25
+++ ChangeLog   17 Nov 2014 09:42:00 -  1.26
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pytools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/ChangeLog,v 1.25 
2014/10/06 07:34:39 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/ChangeLog,v 1.26 
2014/11/17 09:42:00 jlec Exp $
+
+*pytools-2014.3.2 (17 Nov 2014)
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org +pytools-2014.3.2.ebuild:
+  Verison BUmp
 
 *pytools-2014.3.1 (06 Oct 2014)
 



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

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

Index: pytools-2014.3.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/pytools-2014.3.2.ebuild,v 
1.1 2014/11/17 09:42:00 jlec Exp $

EAPI=5

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

inherit distutils-r1

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

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

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

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






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

2014-11-17 Thread Michael Palimaka
commit: 2781dad2e0f8b2bd9e2f21aa5473e4a326d7991a
Author: Michael Palimaka kensington AT gentoo DOT org
AuthorDate: Mon Nov 17 09:44:25 2014 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Mon Nov 17 09:44:25 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2781dad2

[eclass] Add add_kdeapps_dep function.

---
 eclass/kde5-functions.eclass | 24 
 1 file changed, 24 insertions(+)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 4466276..830cacc 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -131,6 +131,30 @@ add_frameworks_dep() {
_add_kdecategory_dep kde-frameworks ${1} ${2} ${version}
 }
 
+# @FUNCTION: add_kdeapps_dep
+# @USAGE: package [USE flags] [minimum version]
+# @DESCRIPTION:
+# Create proper dependency for kde-apps/ dependencies.
+# This takes 1 to 3 arguments. The first being the package name, the optional
+# second is additional USE flags to append, and the optional third is the
+# version to use instead of the automatic version (use sparingly).
+# The output of this should be added directly to DEPEND/RDEPEND, and may be
+# wrapped in a USE conditional (but not an || conditional without an extra set
+# of parentheses).
+add_kdeapps_dep() {
+   debug-print-function ${FUNCNAME} $@
+
+   local version
+
+   if [[ -n ${3} ]]; then
+   version=${3}
+   elif [[ ${CATEGORY} = kde-apps ]]; then
+   version=${PV}
+   fi
+
+   _add_kdecategory_dep kde-apps ${1} ${2} ${version}
+}
+
 # @FUNCTION: add_kdebase_dep
 # @USAGE: package [USE flags] [minimum version]
 # @DESCRIPTION:



[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti/files: ganeti-2.11-start-stop-daemon-args.patch

2014-11-17 Thread Sergey Popov (pinkbyte)
pinkbyte14/11/17 09:56:40

  Modified: ganeti-2.11-start-stop-daemon-args.patch
  Log:
  QA: revision bump, fix warning during logs rotating by not sending --stop 
through start-stop-daemon. Drop old revision
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x1F357D42)

Revision  ChangesPath
1.3  
app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch?r1=1.2r2=1.3

Index: ganeti-2.11-start-stop-daemon-args.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ganeti-2.11-start-stop-daemon-args.patch27 Oct 2014 09:51:37 -  
1.2
+++ ganeti-2.11-start-stop-daemon-args.patch17 Nov 2014 09:56:40 -  
1.3
@@ -26,11 +26,13 @@
--pidfile $pidfile
else
  _ignore_error killproc -p $pidfile $name
-@@ -350,7 +350,7 @@
+@@ -348,8 +348,8 @@ rotate_logs() {
+   local daemonexec=$(_daemon_executable $name)
  
if type -p start-stop-daemon /dev/null; then
- start-stop-daemon --stop --signal HUP --quiet \
+-start-stop-daemon --stop --signal HUP --quiet \
 -  --oknodo --pidfile $pidfile
++start-stop-daemon --signal HUP --quiet \
 +  --pidfile $pidfile
else
  _ignore_error killproc \






[gentoo-commits] gentoo-x86 commit in dev-util/nvidia-cuda-toolkit: nvidia-cuda-toolkit-6.5.19.ebuild ChangeLog nvidia-cuda-toolkit-6.5.14.ebuild

2014-11-17 Thread Justin Lecher (jlec)
jlec14/11/17 09:56:21

  Modified: nvidia-cuda-toolkit-6.5.19.ebuild ChangeLog
nvidia-cuda-toolkit-6.5.14.ebuild
  Log:
  dev-util/nvidia-cuda-toolkit: Fix installation problems due to arch specific 
differences in tarballs
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.2  
dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.19.ebuild

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

Index: nvidia-cuda-toolkit-6.5.19.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nvidia-cuda-toolkit-6.5.19.ebuild   17 Nov 2014 09:15:13 -  1.1
+++ nvidia-cuda-toolkit-6.5.19.ebuild   17 Nov 2014 09:56: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-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.19.ebuild,v
 1.1 2014/11/17 09:15:13 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.19.ebuild,v
 1.2 2014/11/17 09:56:21 jlec Exp $
 
 EAPI=5
 
@@ -76,8 +76,10 @@
dohtml -r doc/html/*
fi
 
-   [[ -d doc ]]  mv doc/man/man3/{,cuda-}deprecated.3 || die
-   doman doc/man/man*/*
+   if use amd64; then
+   mv doc/man/man3/{,cuda-}deprecated.3 || die
+   doman doc/man/man*/*
+   fi
 
use debugger || remove+= bin/cuda-gdb extras/Debugger
( use profiler || use eclipse ) || remove+= libnsight



1.95 dev-util/nvidia-cuda-toolkit/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog?rev=1.95view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog?rev=1.95content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog?r1=1.94r2=1.95

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog   17 Nov 2014 09:15:13 -  1.94
+++ ChangeLog   17 Nov 2014 09:56:21 -  1.95
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/nvidia-cuda-toolkit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog,v 
1.94 2014/11/17 09:15:13 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/ChangeLog,v 
1.95 2014/11/17 09:56:21 jlec Exp $
+
+  17 Nov 2014; Justin Lecher j...@gentoo.org
+  nvidia-cuda-toolkit-6.5.14.ebuild, nvidia-cuda-toolkit-6.5.19.ebuild:
+  Fix installation problems due to arch specific differences in tarballs
 
 *nvidia-cuda-toolkit-6.5.19 (17 Nov 2014)
 



1.6  
dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild?r1=1.5r2=1.6

Index: nvidia-cuda-toolkit-6.5.14.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nvidia-cuda-toolkit-6.5.14.ebuild   17 Nov 2014 09:15:13 -  1.5
+++ nvidia-cuda-toolkit-6.5.14.ebuild   17 Nov 2014 09:56: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-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild,v
 1.5 2014/11/17 09:15:13 jlec Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild,v
 1.6 2014/11/17 09:56:21 jlec Exp $
 
 EAPI=5
 
@@ -76,8 +76,10 @@
dohtml -r doc/html/*
fi
 
-   [[ -d doc ]]  mv 

[gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ChangeLog ganeti-2.11.6-r1.ebuild ganeti-2.11.6.ebuild

2014-11-17 Thread Sergey Popov (pinkbyte)
pinkbyte14/11/17 09:56:40

  Modified: ChangeLog
  Added:ganeti-2.11.6-r1.ebuild
  Removed:  ganeti-2.11.6.ebuild
  Log:
  QA: revision bump, fix warning during logs rotating by not sending --stop 
through start-stop-daemon. Drop old revision
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x1F357D42)

Revision  ChangesPath
1.96 app-emulation/ganeti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.96view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.96content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.95r2=1.96

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog   10 Nov 2014 17:51:36 -  1.95
+++ ChangeLog   17 Nov 2014 09:56:40 -  1.96
@@ -1,6 +1,13 @@
 # ChangeLog for app-emulation/ganeti
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.95 
2014/11/10 17:51:36 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.96 
2014/11/17 09:56:40 pinkbyte Exp $
+
+*ganeti-2.11.6-r1 (17 Nov 2014)
+
+  17 Nov 2014; Sergey Popov pinkb...@gentoo.org -ganeti-2.11.6.ebuild,
+  +ganeti-2.11.6-r1.ebuild, files/ganeti-2.11-start-stop-daemon-args.patch:
+  QA: revision bump, fix warning during logs rotating by not sending --stop
+  through start-stop-daemon. Drop old revision
 
 *ganeti-2.11.6 (10 Nov 2014)
 



1.1  app-emulation/ganeti/ganeti-2.11.6-r1.ebuild

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

Index: ganeti-2.11.6-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.11.6-r1.ebuild,v 1.1 
2014/11/17 09:56:40 pinkbyte Exp $

EAPI=5
PYTHON_COMPAT=(python2_{6,7})
use test  PYTHON_REQ_USE=ipv6

inherit eutils confutils autotools bash-completion-r1 python-single-r1 
versionator pax-utils

MY_PV=${PV/_rc/~rc}
#MY_PV=${PV/_beta/~beta}
MY_P=${PN}-${MY_PV}
SERIES=$(get_version_component_range 1-2)

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.ganeti.org/ganeti.git
inherit git-2
KEYWORDS=
# you will need to pull in the haskell overlay for pandoc
GIT_DEPEND=app-text/pandoc
dev-python/docutils
dev-python/sphinx
media-libs/gd[fontconfig,jpeg,png,truetype]
media-gfx/graphviz
media-fonts/urw-fonts
else
SRC_URI=http://downloads.ganeti.org/releases/${SERIES}/${P}.tar.gz;
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=Ganeti is a virtual server management software tool
HOMEPAGE=http://code.google.com/p/ganeti/;

LICENSE=GPL-2
SLOT=0
IUSE=drbd haskell-daemons htools ipv6 kvm lxc monitoring multiple-users rbd 
syslog test xen
REQUIRED_USE=|| ( kvm xen lxc )

USER_PREFIX=${GANETI_USER_PREFIX:-gnt-}
GROUP_PREFIX=${GANETI_GROUP_PREFIX:-${USER_PREFIX}}

S=${WORKDIR}/${MY_P}

HASKELL_DEPS==dev-lang/ghc-6.12:0=
dev-haskell/json:0=
dev-haskell/curl:0=
dev-haskell/network:0=
dev-haskell/parallel
dev-haskell/hslogger:0=
dev-haskell/utf8-string:0=
dev-haskell/deepseq:0=
dev-haskell/attoparsec:0=
dev-haskell/crypto:0=
dev-haskell/vector:0=
dev-haskell/hinotify:0=
dev-haskell/regex-pcre-builtin:0=
dev-haskell/zlib:0=
dev-haskell/base64-bytestring:0=
monitoring? ( dev-haskell/snap-server:0= )

DEPEND=xen? ( =app-emulation/xen-3.0 )
kvm? ( app-emulation/qemu )
lxc? ( app-emulation/lxc )
drbd? ( sys-cluster/drbd-8.5 )
rbd? ( sys-cluster/ceph )
ipv6? ( net-misc/ndisc6 )
haskell-daemons? (
${HASKELL_DEPS}
dev-haskell/text:0=
)
dev-libs/openssl
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/ipaddr[${PYTHON_USEDEP}]

[gentoo-commits] gentoo-x86 commit in app-admin/eselect-ruby: ChangeLog eselect-ruby-20100603.ebuild

2014-11-17 Thread Manuel Rueger (mrueg)
mrueg   14/11/17 10:17:59

  Modified: ChangeLog
  Removed:  eselect-ruby-20100603.ebuild
  Log:
  Cleanup old.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.57 app-admin/eselect-ruby/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-ruby/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   17 Nov 2014 08:09:31 -  1.56
+++ ChangeLog   17 Nov 2014 10:17:59 -  1.57
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/eselect-ruby
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v 1.56 
2014/11/17 08:09:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-ruby/ChangeLog,v 1.57 
2014/11/17 10:17:59 mrueg Exp $
+
+  17 Nov 2014; Manuel RĂ¼ger mr...@gentoo.org -eselect-ruby-20100603.ebuild:
+  Cleanup old.
 
   17 Nov 2014; Agostino Sarubbo a...@gentoo.org eselect-ruby-20131227.ebuild:
   Stable for ppc64, wrt bug #517382






[gentoo-commits] proj/gentoo-bsd:master commit in: sys-freebsd/freebsd-sbin/

2014-11-17 Thread Yuta SATOH
commit: 0c1bf1d9d4b16d375f0377454a8e03511c3dd0e9
Author: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
AuthorDate: Mon Nov 17 10:17:07 2014 +
Commit: Yuta SATOH nigoro.gentoo AT 0x100 DOT com
CommitDate: Mon Nov 17 10:17:07 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=0c1bf1d9

freebsd-sbin: remove idmapd.initd

---
 sys-freebsd/freebsd-sbin/Manifest| 6 +++---
 sys-freebsd/freebsd-sbin/freebsd-sbin-10.0.0..ebuild | 3 ---
 sys-freebsd/freebsd-sbin/freebsd-sbin-10.1.0..ebuild | 3 ---
 sys-freebsd/freebsd-sbin/freebsd-sbin-9.3.0..ebuild  | 3 ---
 4 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/sys-freebsd/freebsd-sbin/Manifest 
b/sys-freebsd/freebsd-sbin/Manifest
index 319b4d0..db2f2db 100644
--- a/sys-freebsd/freebsd-sbin/Manifest
+++ b/sys-freebsd/freebsd-sbin/Manifest
@@ -6,6 +6,6 @@ AUX freebsd-sbin-7.1-zlib.patch 800 SHA256 
18c028bf1b51cf7c57d5517d8fe6f3221c8a4
 AUX freebsd-sbin-bsdxml2expat.patch 424 SHA256 
f40f55bec52d0e3e0205c363ad624a1139a74d5de36f99ca2ff9e53583bc2287 SHA512 
f455db40e528c9bf19a68a639d2c0b304371d66741ee852c279246647f43620fd33911787aa9721547e086cbaa7dafa85b1ee6571094593c74de15e2ccc2f522
 WHIRLPOOL 
9409fa6d31a1a9b7dad59a6bdd820319c8a895b27c130af7d29e0db969be6760c4ab7df952420fb4fca9445fe0433b3aca5377f509852261d0f6b4e5a2fbd72b
 AUX freebsd-sbin-setXid.patch 541 SHA256 
2d8158df7af52f9ce15f1513d16ed08ea6244f310aea3f271b12184a6a4c4267 SHA512 
e6f1aefab22eca6941a5b62f6f9d9c82e0efc2b308ec636ecab40d9a678e87f2f6ccfefac99f5367ad8a16d18ddadf9a877a2f93697248b3f38a09edac75ec6e
 WHIRLPOOL 
a2d578ff3b54ad25875f65d6724d0762c0fc3a400aa8e14c93ab94dc789910fbc6ab70528cbd0074fd0d7a4957a2d2d51bf10f615cbfd751aa4e95edc88d4e7d
 AUX idmapd.initd 440 SHA256 
e89050097731f658825b4a7215023e1c5070f0e31cfdf79eaf299ede9c9f9e39 SHA512 
d76f1ed5b6cb0624359f0e1018b1decee80fec6e201393500656a2001034b042dde4299c2768ea8bfd1aa65813c86a5f9c06b5dd2e41ab74f954b8310d55259a
 WHIRLPOOL 
eeb04173b61c7e60883bd51e07be5f69aa67d6f4e506c3b3e07604e86cb43d81b5722e23e21ec189d83f2549a8827256216f45025ea5fd427b4874f2723c7a16
-EBUILD freebsd-sbin-10.0.0..ebuild 2754 SHA256 
389dd4e1757a8073330bd823b3fd156802dae51c6906e64aec577b4a51429f5d SHA512 
0b3419140e8cc27a57eed7c06e63ea45152f03fe80d27af485ddd6e741834bde3c123bfeebb36bcc70f3781bb9a0beaa7c73b5e332553e6b0ddec7732aaa560e
 WHIRLPOOL 
2581caae4b9fac7152281b1ac7aa396f88abf73832ce87f47900fea7925bce33c2b94dc0920a02a2da20a5d63f292ffb9b6aecbad0a0445e503c42dc60443776
-EBUILD freebsd-sbin-10.1.0..ebuild 2754 SHA256 
389dd4e1757a8073330bd823b3fd156802dae51c6906e64aec577b4a51429f5d SHA512 
0b3419140e8cc27a57eed7c06e63ea45152f03fe80d27af485ddd6e741834bde3c123bfeebb36bcc70f3781bb9a0beaa7c73b5e332553e6b0ddec7732aaa560e
 WHIRLPOOL 
2581caae4b9fac7152281b1ac7aa396f88abf73832ce87f47900fea7925bce33c2b94dc0920a02a2da20a5d63f292ffb9b6aecbad0a0445e503c42dc60443776
-EBUILD freebsd-sbin-9.3.0..ebuild 2760 SHA256 
4874f0acd14cd1735316806710a27e63a9e5bf6436e8f2ebe9494b9b08601a56 SHA512 
13808a37b195ae768ceb73ff2f8a7cc12d343cf84b0f2ac24f8a6c2aa282072e2ce4dbde2a7bed5279e2bf2d9bf6e0422679f19eea5bcc1e836e156b3280a388
 WHIRLPOOL 
50849f9d28ee674a4b54f2c8de87f785e0441e5c70e2e0f98a89e40282159bf14842b307f407ae97dda0620c8b9e13c2555735c3597547005c584c0bc7a7737d
+EBUILD freebsd-sbin-10.0.0..ebuild 2682 SHA256 
0089b62a44f816b015aae62867f54c085c6ed531359b9c4b4562747de67d777f SHA512 
1d848b4463e9ce046f227966c9b0499f864e8644c3bad9779f00fc1fc1f941ff78ac130fd968cb954e83869e20473e36fc99106fdc4728e8c0bb05574bd14650
 WHIRLPOOL 
7174b3132e112288cb99f493e7b3982f4f01b63b67962f2a81516404bb131f00c9aca4316f2eda31d232b53c0343f98722d3f5882a37f4e4ded92b9d584c8741
+EBUILD freebsd-sbin-10.1.0..ebuild 2682 SHA256 
0089b62a44f816b015aae62867f54c085c6ed531359b9c4b4562747de67d777f SHA512 
1d848b4463e9ce046f227966c9b0499f864e8644c3bad9779f00fc1fc1f941ff78ac130fd968cb954e83869e20473e36fc99106fdc4728e8c0bb05574bd14650
 WHIRLPOOL 
7174b3132e112288cb99f493e7b3982f4f01b63b67962f2a81516404bb131f00c9aca4316f2eda31d232b53c0343f98722d3f5882a37f4e4ded92b9d584c8741
+EBUILD freebsd-sbin-9.3.0..ebuild 2688 SHA256 
58c6d302fbd9574a6a297fca5e82155de57c5e481e6a11bee5641affd19fbb9c SHA512 
d68d282ccb4b9b62848f50cd16fd5dc733a69ec7fea6b917958d920767f9a654422d221d27f3066ab80ab9d719ddfbb25940eecc34a0e14209877dd2c9ef38e6
 WHIRLPOOL 
73952d98c0b8ecc4e6dab9e57f841d75b2976285daf0062121c98450567483a68ea6a931c77a80c77e0823f1132b90ca511eaebfca38572378b8829a5093cc38

diff --git a/sys-freebsd/freebsd-sbin/freebsd-sbin-10.0.0..ebuild 
b/sys-freebsd/freebsd-sbin/freebsd-sbin-10.0.0..ebuild
index 0b33874..36ef6d8 100644
--- a/sys-freebsd/freebsd-sbin/freebsd-sbin-10.0.0..ebuild
+++ b/sys-freebsd/freebsd-sbin/freebsd-sbin-10.0.0..ebuild
@@ -76,9 +76,6 @@ src_install() {
insinto /etc
doins minfree sysctl.conf regdomain.xml || die
 
-   # initd script for idmapd
-   newinitd ${FILESDIR}/idmapd.initd idmapd
-
   

[gentoo-commits] proj/gentoo-bsd:master commit in: sys-freebsd/grub2-bhyve/

2014-11-17 Thread Yuta SATOH
commit: 75afdd46473a2fec68ad6c4792a75f2b93ec0afa
Author: Yuta SATOH nigoro AT gentoo DOT gr DOT jp
AuthorDate: Mon Nov 17 10:37:44 2014 +
Commit: Yuta SATOH nigoro.gentoo AT 0x100 DOT com
CommitDate: Mon Nov 17 10:37:44 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=75afdd46

grub2-bhyve-0.24: version bump

---
 sys-freebsd/grub2-bhyve/Manifest  | 4 ++--
 .../grub2-bhyve/{grub2-bhyve-0.23.ebuild = grub2-bhyve-0.24.ebuild}  | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-freebsd/grub2-bhyve/Manifest b/sys-freebsd/grub2-bhyve/Manifest
index 087dd68..c8e8fae 100644
--- a/sys-freebsd/grub2-bhyve/Manifest
+++ b/sys-freebsd/grub2-bhyve/Manifest
@@ -1,4 +1,4 @@
-DIST grub2-bhyve-0.23.tar.gz 8390695 SHA256 
2bbae9a291e5458b70141d0be1fcc82d0cfa989df2f3983fb64b7e307e81602e SHA512 
9b365acf754c61abd7f9bbf4889bd005be6467ef6d6118df6805187460fc79e759d6402b9d95816d865a00f16d72c9a091a46ef0909500396af65eca2a61ee7f
 WHIRLPOOL 
5d8a69ea801a77d2a01cadd52b24a423c9cee3f59aa096f39fda8b28948a0dd6acddb4259648fdf60e8070716c0c3b69952a2c25f1ef2101fa59f69b3d22665c
-EBUILD grub2-bhyve-0.23.ebuild 996 SHA256 
b1e78404d33c394b81fdbbbde98d241715d50a94400fab273226e9082c0e56e1 SHA512 
1af28631d55cf04d859dad718d8ec8c0fa672bb7ae7272c3749b4748bc724cf25d372c182a0badf3b10bc9b829ca01b3939dbeca4f77e9ae1e478e7965601404
 WHIRLPOOL 
18c94f6761861d8fcd17fb8c88b46ddd3431b0362e5193b3dabc66d0920c8b87f57df036bdba65d0bfd17af08f77d73c32695fed5ee34343e7d36737a923bd32
+DIST grub2-bhyve-0.24.tar.gz 8380188 SHA256 
42228c161550edb037a1e6f0ed2cdd1bd547344184fb43af955b9f588c753ea3 SHA512 
3ec2484cb2791318b034e12f6098ce43f11dee949af60cb410ef153008c8e03809e2e956a787fb59d0f333c8f516f911ea747466458566fb9ecea9277857158b
 WHIRLPOOL 
e55e87ffd7950913281701e428330ca7a3ba3340112860e4afd8001cc019413642e31c120801b22c88f9ac7b4b5d285046fb9475278f7ee696a8812b40cad412
+EBUILD grub2-bhyve-0.24.ebuild 996 SHA256 
b1e78404d33c394b81fdbbbde98d241715d50a94400fab273226e9082c0e56e1 SHA512 
1af28631d55cf04d859dad718d8ec8c0fa672bb7ae7272c3749b4748bc724cf25d372c182a0badf3b10bc9b829ca01b3939dbeca4f77e9ae1e478e7965601404
 WHIRLPOOL 
18c94f6761861d8fcd17fb8c88b46ddd3431b0362e5193b3dabc66d0920c8b87f57df036bdba65d0bfd17af08f77d73c32695fed5ee34343e7d36737a923bd32
 EBUILD grub2-bhyve-.ebuild 996 SHA256 
b1e78404d33c394b81fdbbbde98d241715d50a94400fab273226e9082c0e56e1 SHA512 
1af28631d55cf04d859dad718d8ec8c0fa672bb7ae7272c3749b4748bc724cf25d372c182a0badf3b10bc9b829ca01b3939dbeca4f77e9ae1e478e7965601404
 WHIRLPOOL 
18c94f6761861d8fcd17fb8c88b46ddd3431b0362e5193b3dabc66d0920c8b87f57df036bdba65d0bfd17af08f77d73c32695fed5ee34343e7d36737a923bd32
 MISC metadata.xml 223 SHA256 
5c9860c4ce81b51fef51a6c5e87081bfd13e74ba452c27191a1abc0ca5ff0aa0 SHA512 
3dc7fea8c9f850d63d4f9f24af639fb41d406c2e87439eb960c401412b37e7dc7ab6822d446ec113eb079aba30967391e95cd71dceb889753ed969bc51f6064e
 WHIRLPOOL 
577570d1260a6ef86155c1647e3d90c18aa9b83a89027dcea28b70d22df60e413cee353083d7e915d81129f447772dc7dc4ea766e478a9cf363dabce5d9042de

diff --git a/sys-freebsd/grub2-bhyve/grub2-bhyve-0.23.ebuild 
b/sys-freebsd/grub2-bhyve/grub2-bhyve-0.24.ebuild
similarity index 100%
rename from sys-freebsd/grub2-bhyve/grub2-bhyve-0.23.ebuild
rename to sys-freebsd/grub2-bhyve/grub2-bhyve-0.24.ebuild



[gentoo-commits] gentoo-x86 commit in dev-util/mdds: mdds-0.11.1.ebuild ChangeLog

2014-11-17 Thread Tomas Chvatal (scarabeus)
scarabeus14/11/17 11:16:49

  Modified: ChangeLog
  Added:mdds-0.11.1.ebuild
  Log:
  Version bump to latest release.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
8EEE3BE8)

Revision  ChangesPath
1.39 dev-util/mdds/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/mdds/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   29 Jun 2014 16:43:28 -  1.38
+++ ChangeLog   17 Nov 2014 11:16:49 -  1.39
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/mdds
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mdds/ChangeLog,v 1.38 2014/06/29 
16:43:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mdds/ChangeLog,v 1.39 2014/11/17 
11:16:49 scarabeus Exp $
+
+*mdds-0.11.1 (17 Nov 2014)
+
+  17 Nov 2014; TomĂ¡Å¡ ChvĂ¡tal scarab...@gentoo.org +mdds-0.11.1.ebuild:
+  Version bump to latest release.
 
   29 Jun 2014; Agostino Sarubbo a...@gentoo.org mdds-0.10.3.ebuild:
   Stable for x86, wrt bug #514886



1.1  dev-util/mdds/mdds-0.11.1.ebuild

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

Index: mdds-0.11.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/mdds/mdds-0.11.1.ebuild,v 1.1 
2014/11/17 11:16:49 scarabeus Exp $

EAPI=5

inherit toolchain-funcs

DESCRIPTION=A collection of multi-dimensional data structure and indexing 
algorithm
HOMEPAGE=http://code.google.com/p/multidimalgorithm/;
SRC_URI=http://kohei.us/files/${PN}/src/${P/-/_}.tar.bz2;

LICENSE=MIT
SLOT=0/${PV}
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
IUSE=

DEPEND=dev-libs/boost:=
RDEPEND=${DEPEND}

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

src_configure() {
econf \
--with-hash-container=boost \
--docdir=${EPREFIX}/usr/share/doc/${PF}
}

src_compile() { :; }

src_test() {
tc-export CXX
default
}






[gentoo-commits] gentoo-x86 commit in app-office/libreoffice-l10n: libreoffice-l10n-4.3.4.1.ebuild ChangeLog libreoffice-l10n-4.3.1.2.ebuild

2014-11-17 Thread Tomas Chvatal (scarabeus)
scarabeus14/11/17 11:20:41

  Modified: ChangeLog
  Added:libreoffice-l10n-4.3.4.1.ebuild
  Removed:  libreoffice-l10n-4.3.1.2.ebuild
  Log:
  Version bump to 4.3.4.1.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
8EEE3BE8)

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

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog   19 Sep 2014 09:01:04 -  1.121
+++ ChangeLog   17 Nov 2014 11:20:41 -  1.122
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/libreoffice-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 
1.121 2014/09/19 09:01:04 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 
1.122 2014/11/17 11:20:41 scarabeus Exp $
+
+*libreoffice-l10n-4.3.4.1 (17 Nov 2014)
+
+  17 Nov 2014; TomĂ¡Å¡ ChvĂ¡tal scarab...@gentoo.org
+  +libreoffice-l10n-4.3.4.1.ebuild, -libreoffice-l10n-4.3.1.2.ebuild:
+  Version bump to 4.3.4.1.
 
   19 Sep 2014; Andreas K. Huettel dilfri...@gentoo.org
   -libreoffice-l10n-4.2.5.2.ebuild:



1.1  app-office/libreoffice-l10n/libreoffice-l10n-4.3.4.1.ebuild

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

Index: libreoffice-l10n-4.3.4.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-4.3.4.1.ebuild,v
 1.1 2014/11/17 11:20:41 scarabeus Exp $

EAPI=5

inherit rpm eutils multilib versionator

MY_PV=$(get_version_component_range 1-3)

DESCRIPTION=Translations for the Libreoffice suite
HOMEPAGE=http://www.libreoffice.org;
BASE_SRC_URI=http://download.documentfoundation.org/${PN/-l10n/}/stable/${MY_PV}/rpm;

LICENSE=|| ( LGPL-3 MPL-1.1 )
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux
IUSE=offlinehelp

#
# when changing the language lists, please be careful to preserve the spaces 
(bug 491728)
#
LANGUAGES_HELP= am ast bg bn_IN bn bo bs ca_valencia ca cs da de dz el en_GB 
en en_ZA eo es et eu fi fr gl gu he hi hr hu id is it ja ka km ko mk nb ne nl 
nn om pl pt_BR pt ru si sk sl sq sv tg tr ug uk vi zh_CN zh_TW 
LANGUAGES=${LANGUAGES_HELP}af ar as be br brx cy dgo fa ga gd kk kmr_Latn kn 
kok ks lb lo lt lv mai ml mn mni mr my nr nso oc or pa_IN ro rw sa_IN sat sd 
sid sr_Latn sr ss st sw_TZ ta te th tn ts tt uz ve xh zu 

for lang in ${LANGUAGES_HELP}; do
helppack=
[[ ${lang} == en ]]  lang2=${lang/en/en_US} || lang2=${lang}
helppack=offlinehelp? ( 
${BASE_SRC_URI}/x86/LibreOffice_${MY_PV}_Linux_x86_rpm_helppack_${lang2/_/-}.tar.gz
 )
SRC_URI+= linguas_${lang}? ( ${helppack} )
done
for lang in ${LANGUAGES}; do
langpack=
[[ ${lang} == en ]] \
|| 
langpack=${BASE_SRC_URI}/x86/LibreOffice_${MY_PV}_Linux_x86_rpm_langpack_${lang/_/-}.tar.gz
[[ -z ${langpack} ]] || SRC_URI+= linguas_${lang}? ( ${langpack} )
IUSE+= linguas_${lang}
done
unset lang helppack langpack lang2

RDEPEND+=app-text/hunspell

RESTRICT=strip

S=${WORKDIR}

src_unpack() {
default

local lang dir rpmdir i
local ooextused=()

for lang in ${LANGUAGES}; do
# break away if not enabled; paludis support
use_if_iuse linguas_${lang} || continue

dir=${lang/_/-}

# for english we provide just helppack, as translation is 
always there
if [[ ${lang} != en ]]; then

rpmdir=LibreOffice_${PV}_Linux_x86_rpm_langpack_${dir}/RPMS/
[[ -d ${rpmdir} ]] || die Missing directory: 
\${rpmdir}\
# First remove dictionaries, we want to use system ones.
rm -rf ${S}/${rpmdir}/*dict*.rpm
rpm_unpack ./${rpmdir}/*.rpm
fi
if [[ ${LANGUAGES_HELP} =~  ${lang}  ]]  use offlinehelp; 
then
[[ ${lang} == en ]]  dir=en-US
   

[gentoo-commits] gentoo-x86 commit in app-office/libreoffice: libreoffice-4.3.9999.ebuild libreoffice-4.3.4.1.ebuild ChangeLog libreoffice-4.3.1.2.ebuild

2014-11-17 Thread Tomas Chvatal (scarabeus)
scarabeus14/11/17 11:23:04

  Modified: libreoffice-4.3..ebuild ChangeLog
  Added:libreoffice-4.3.4.1.ebuild
  Removed:  libreoffice-4.3.1.2.ebuild
  Log:
  Version bump to 4.3.4.1 fixing bug#527942 and bug#523934.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 8EEE3BE8)

Revision  ChangesPath
1.5  app-office/libreoffice/libreoffice-4.3..ebuild

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

Index: libreoffice-4.3..ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3..ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libreoffice-4.3..ebuild 3 Nov 2014 11:16:53 -   1.4
+++ libreoffice-4.3..ebuild 17 Nov 2014 11:23:04 -  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/app-office/libreoffice/libreoffice-4.3..ebuild,v 
1.4 2014/11/03 11:16:53 titanofold Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3..ebuild,v 
1.5 2014/11/17 11:23:04 scarabeus Exp $
 
 EAPI=5
 
@@ -60,8 +60,6 @@
 # If you want them gone, patches are welcome.
 ADDONS_SRC+= ${ADDONS_URI}/d62650a6f908e85643e557a236ea989c-vigra1.6.0.tar.gz
 ADDONS_SRC+= 
${ADDONS_URI}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz # 
modifies source code
-ADDONS_SRC+= collada? ( 
${ADDONS_URI}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
 )
-ADDONS_SRC+= collada? ( ${ADDONS_URI}/OpenCOLLADA-master-6509aa13af.tar.bz2 )
 ADDONS_SRC+= java? ( 
${ADDONS_URI}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip )
 ADDONS_SRC+= libreoffice_extensions_wiki-publisher? ( 
${ADDONS_URI}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) # no release 
for 8 years, should we package it?
 ADDONS_SRC+= libreoffice_extensions_scripting-javascript? ( 
${ADDONS_URI}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) # Does not 
build with 1.6 rhino at all
@@ -146,6 +144,7 @@
x11-libs/libXrender
bluetooth? ( net-wireless/bluez )
coinmp? ( sci-libs/coinor-mp )
+   collada? ( media-libs/opencollada )
cups? ( net-print/cups )
dbus? ( =dev-libs/dbus-glib-0.92 )
eds? ( gnome-extra/evolution-data-server )



1.591app-office/libreoffice/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v
retrieving revision 1.590
retrieving revision 1.591
diff -u -r1.590 -r1.591
--- ChangeLog   3 Nov 2014 11:16:53 -   1.590
+++ ChangeLog   17 Nov 2014 11:23:04 -  1.591
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/libreoffice
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.590 
2014/11/03 11:16:53 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.591 
2014/11/17 11:23:04 scarabeus Exp $
+
+*libreoffice-4.3.4.1 (17 Nov 2014)
+
+  17 Nov 2014; TomĂ¡Å¡ ChvĂ¡tal scarab...@gentoo.org 
+libreoffice-4.3.4.1.ebuild,
+  -libreoffice-4.3.1.2.ebuild, libreoffice-4.3..ebuild:
+  Version bump to 4.3.4.1 fixing bug#527942 and bug#523934.
 
   03 Nov 2014; Aaron W. Swenson titanof...@gentoo.org
   libreoffice-4.2.6.3.ebuild, libreoffice-4.2..ebuild,



1.1  app-office/libreoffice/libreoffice-4.3.4.1.ebuild

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

Index: libreoffice-4.3.4.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3.4.1.ebuild,v 1.1 
2014/11/17 11:23:04 scarabeus Exp $

EAPI=5

KDE_REQUIRED=optional

[gentoo-commits] proj/gentoo-news:master commit in: 2014/2014-11-11-kgcc64-sparc-removal/

2014-11-17 Thread RaĂºl Porcel
commit: 7fd1164489b12086e0a6c02553833fac6114a28b
Author: RaĂºl Porcel armin76 AT gentoo DOT org
AuthorDate: Mon Nov 17 11:45:22 2014 +
Commit: RaĂºl Porcel armin76 AT gentoo DOT org
CommitDate: Mon Nov 17 11:45:22 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-news.git;a=commit;h=7fd11644

Add news item for kgcc64 sparc removal

Signed-off-by: RaĂºl Porcel armin76 AT gentoo.org

---
 .../2014-11-11-kgcc64-sparc-removal.en.txt   | 16 
 .../2014-11-11-kgcc64-sparc-removal.en.txt.asc   |  7 +++
 2 files changed, 23 insertions(+)

diff --git 
a/2014/2014-11-11-kgcc64-sparc-removal/2014-11-11-kgcc64-sparc-removal.en.txt 
b/2014/2014-11-11-kgcc64-sparc-removal/2014-11-11-kgcc64-sparc-removal.en.txt
new file mode 100644
index 000..635c865
--- /dev/null
+++ 
b/2014/2014-11-11-kgcc64-sparc-removal/2014-11-11-kgcc64-sparc-removal.en.txt
@@ -0,0 +1,16 @@
+Title: sys-devel/kgcc64 removal on sparc
+Author: RaĂºl Porcel armi...@gentoo.org
+Content-Type: text/plain
+Posted: 2014-11-11
+Revision: 1
+News-Item-Format: 1.0
+Display-If-Profile: default/linux/sparc
+
+sys-devel/kgcc64 is going to be removed from the sparc system package set
+since the normal sys-devel/gcc can, since version 4.4, build 64bit kernels.
+
+Until now, you had to use CONFIG_CROSS_COMPILE=sparc64-unknown-linux-gnu-
+in your kernel config, but with sys-devel/kgcc64 going away, you need to
+remove that option from your kernel configuration. 
+
+

diff --git 
a/2014/2014-11-11-kgcc64-sparc-removal/2014-11-11-kgcc64-sparc-removal.en.txt.asc
 
b/2014/2014-11-11-kgcc64-sparc-removal/2014-11-11-kgcc64-sparc-removal.en.txt.asc
new file mode 100644
index 000..f6ee267
--- /dev/null
+++ 
b/2014/2014-11-11-kgcc64-sparc-removal/2014-11-11-kgcc64-sparc-removal.en.txt.asc
@@ -0,0 +1,7 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iEYEABECAAYFAlRp3CUACgkQuQc30/atMkBWegCfUeS9rme6u7HxiWNZkUGWoPpv
+HB0AoIm7Du6w0Xluoap/pl5iv0IXF5YI
+=fGH0
+-END PGP SIGNATURE-



[gentoo-commits] gentoo-x86 commit in profiles/default/linux/sparc: ChangeLog

2014-11-17 Thread Raul Porcel (armin76)
armin76 14/11/17 11:47:00

  Modified: ChangeLog
  Log:
  Remove sys-devel/kgcc64 since =gcc-4.4 can compile 64bit kernels

Revision  ChangesPath
1.10 profiles/default/linux/sparc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/sparc/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/sparc/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/sparc/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/default/linux/sparc/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   21 Oct 2014 12:13:44 -  1.9
+++ ChangeLog   17 Nov 2014 11:47:00 -  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for the default/linux/sparc profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/sparc/ChangeLog,v 
1.9 2014/10/21 12:13:44 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/sparc/ChangeLog,v 
1.10 2014/11/17 11:47:00 armin76 Exp $
+
+  17 Nov 2014; RaĂºl Porcel armi...@gentoo.org 13.0/packages:
+  Remove sys-devel/kgcc64 since =gcc-4.4 can compile 64bit kernels
 
   21 Oct 2014; Mike Frysinger vap...@gentoo.org +package.use.mask:
   Unmask sys-devel/gcc[sanitize] #504200.






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/sparc/13.0: packages

2014-11-17 Thread Raul Porcel (armin76)
armin76 14/11/17 11:47:00

  Modified: packages
  Log:
  Remove sys-devel/kgcc64 since =gcc-4.4 can compile 64bit kernels

Revision  ChangesPath
1.2  profiles/default/linux/sparc/13.0/packages

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/sparc/13.0/packages?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/sparc/13.0/packages?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/sparc/13.0/packages?r1=1.1r2=1.2

Index: packages
===
RCS file: /var/cvsroot/gentoo-x86/profiles/default/linux/sparc/13.0/packages,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- packages18 Jan 2013 19:48:22 -  1.1
+++ packages17 Nov 2014 11:47:00 -  1.2
@@ -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/profiles/default/linux/sparc/13.0/packages,v 1.1 
2013/01/18 19:48:22 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/sparc/13.0/packages,v 1.2 
2014/11/17 11:47:00 armin76 Exp $
 
 # 2008.0 sparc profile
 
-# 64 bit kernel compiler
-*=sys-devel/kgcc64-4.1.2
+# Remove kgcc64 since =gcc-4.4 is able to compile 64bit kernels
+-*sys-devel/kgcc64






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

2014-11-17 Thread Raul Porcel (armin76)
armin76 14/11/17 11:48:32

  Modified: ChangeLog package.mask
  Log:
  Mask sys-devel/kgcc64 since =gcc-4.4 can compile 64bit kernels

Revision  ChangesPath
1.234profiles/arch/sparc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog   15 Nov 2014 21:23:39 -  1.233
+++ ChangeLog   17 Nov 2014 11:48:32 -  1.234
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sparc profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.233 
2014/11/15 21:23:39 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.234 
2014/11/17 11:48:32 armin76 Exp $
+
+  17 Nov 2014; RaĂºl Porcel armi...@gentoo.org package.mask:
+  Mask sys-devel/kgcc64 since =gcc-4.4 can compile 64bit kernels
 
   15 Nov 2014; Mike Gilbert flop...@gentoo.org use.stable.mask:
   Move python3_4 mask to arch profiles.



1.36 profiles/arch/sparc/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.mask,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- package.mask1 Sep 2014 14:26:08 -   1.35
+++ package.mask17 Nov 2014 11:48:32 -  1.36
@@ -1,6 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.mask,v 1.35 
2014/09/01 14:26:08 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.mask,v 1.36 
2014/11/17 11:48:32 armin76 Exp $
+
+# RaĂºl Porcel armi...@gentoo.org (17 Nov 2014)
+# Mask sys-devel/kgcc64 since =gcc-4.4 can build 64bit kernels
+sys-devel/kgcc64
 
 # Julian Ospald hasuf...@gentoo.org (01 Sep 2014)
 # Needs either hardmasked =media-video/libav-10 or






[gentoo-commits] proj/hardened-dev:musl commit in: sys-apps/ldconfig/

2014-11-17 Thread Anthony G. Basile
commit: eb06ad5b586d534a0293856c299c901467061c76
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Mon Nov 17 12:08:34 2014 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Mon Nov 17 12:08:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=eb06ad5b

sys-apps/ldconfig: keyword mask as it breaks a system

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

---
 sys-apps/ldconfig/ldconfig-0.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys-apps/ldconfig/ldconfig-0.1.ebuild 
b/sys-apps/ldconfig/ldconfig-0.1.ebuild
index bbbc42d..08abed3 100644
--- a/sys-apps/ldconfig/ldconfig-0.1.ebuild
+++ b/sys-apps/ldconfig/ldconfig-0.1.ebuild
@@ -10,7 +10,8 @@ SRC_URI=
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64
+#KEYWORDS=~amd64
+KEYWORDS=
 IUSE=
 
 DEPEND=



[gentoo-commits] gentoo-x86 commit in dev-java/icedtea-bin: icedtea-bin-6.1.13.5.ebuild ChangeLog

2014-11-17 Thread Agostino Sarubbo (ago)
ago 14/11/17 12:07:07

  Modified: icedtea-bin-6.1.13.5.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #524560
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: 
--include-arches=amd64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.2  dev-java/icedtea-bin/icedtea-bin-6.1.13.5.ebuild

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

Index: icedtea-bin-6.1.13.5.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-6.1.13.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- icedtea-bin-6.1.13.5.ebuild 16 Nov 2014 22:01:06 -  1.1
+++ icedtea-bin-6.1.13.5.ebuild 17 Nov 2014 12:07:07 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-6.1.13.5.ebuild,v 1.1 
2014/11/16 22:01:06 caster Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-6.1.13.5.ebuild,v 1.2 
2014/11/17 12:07:07 ago Exp $
 
 EAPI=5
 
@@ -23,7 +23,7 @@
 
 LICENSE=GPL-2-with-linking-exception
 SLOT=6
-KEYWORDS=-* ~amd64 ~x86
+KEYWORDS=-* amd64 ~x86
 
 IUSE=+X +alsa cjk +cups doc examples nsplugin selinux source webstart
 REQUIRED_USE=nsplugin? ( X )



1.75 dev-java/icedtea-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/icedtea-bin/ChangeLog?rev=1.75view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/icedtea-bin/ChangeLog?rev=1.75content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/icedtea-bin/ChangeLog?r1=1.74r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   16 Nov 2014 22:01:06 -  1.74
+++ ChangeLog   17 Nov 2014 12:07:07 -  1.75
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/icedtea-bin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/ChangeLog,v 1.74 
2014/11/16 22:01:06 caster Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/ChangeLog,v 1.75 
2014/11/17 12:07:07 ago Exp $
+
+  17 Nov 2014; Agostino Sarubbo a...@gentoo.org icedtea-bin-6.1.13.5.ebuild:
+  Stable for amd64, wrt bug #524560
 
 *icedtea-bin-7.2.5.3 (16 Nov 2014)
 *icedtea-bin-6.1.13.5 (16 Nov 2014)






[gentoo-commits] gentoo-x86 commit in x11-misc/xscreensaver/files: xscreensaver-5.31-uint32_t.patch xscreensaver-5.31-pragma.patch

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 12:19:38

  Added:xscreensaver-5.31-uint32_t.patch
xscreensaver-5.31-pragma.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.1  
x11-misc/xscreensaver/files/xscreensaver-5.31-uint32_t.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/files/xscreensaver-5.31-uint32_t.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/files/xscreensaver-5.31-uint32_t.patch?rev=1.1content-type=text/plain

Index: xscreensaver-5.31-uint32_t.patch
===
--- a/hacks/binaryring.c
+++ b/hacks/binaryring.c
@@ -23,6 +23,7 @@
  * implied warranty.
  */
 
+#include stdint.h /* uint32_t */
 #include screenhack.h
 #include colors.h
 #include hsv.h



1.1  x11-misc/xscreensaver/files/xscreensaver-5.31-pragma.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/files/xscreensaver-5.31-pragma.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xscreensaver/files/xscreensaver-5.31-pragma.patch?rev=1.1content-type=text/plain

Index: xscreensaver-5.31-pragma.patch
===
--- a/hacks/memscroller.c
+++ b/hacks/memscroller.c
@@ -307,7 +307,7 @@
   -- sbrk(2) man page on BSD systems, as of 1995 or so.
  */
 #ifdef HAVE_SBRK
-# if (__GNUC__  4 || (__GNUC__ == 4  __GNUC_MINOR__ = 2)) /* gcc = 4.2 */
+# if (__GNUC__  4 || (__GNUC__ == 4  __GNUC_MINOR__ = 6)) /* gcc = 4.6 */
/* Don't print warning: 'sbrk' is deprecated. */
 #  pragma GCC diagnostic ignored -Wdeprecated-declarations
 # endif






[gentoo-commits] gentoo-x86 commit in x11-misc/xscreensaver: ChangeLog xscreensaver-5.31.ebuild

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 12:19:38

  Modified: ChangeLog
  Added:xscreensaver-5.31.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.381x11-misc/xscreensaver/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/ChangeLog,v
retrieving revision 1.380
retrieving revision 1.381
diff -u -r1.380 -r1.381
--- ChangeLog   11 Nov 2014 10:47:20 -  1.380
+++ ChangeLog   17 Nov 2014 12:19:38 -  1.381
@@ -1,6 +1,13 @@
 # ChangeLog for x11-misc/xscreensaver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/ChangeLog,v 1.380 
2014/11/11 10:47:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver/ChangeLog,v 1.381 
2014/11/17 12:19:38 jer Exp $
+
+*xscreensaver-5.31 (17 Nov 2014)
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org +xscreensaver-5.31.ebuild,
+  +files/xscreensaver-5.31-pragma.patch,
+  +files/xscreensaver-5.31-uint32_t.patch:
+  Version bump.
 
   11 Nov 2014; Agostino Sarubbo a...@gentoo.org xscreensaver-5.30.ebuild:
   Stable for ia64, wrt bug #525680



1.1  x11-misc/xscreensaver/xscreensaver-5.31.ebuild

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

Index: xscreensaver-5.31.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/xscreensaver/xscreensaver-5.31.ebuild,v 1.1 
2014/11/17 12:19:38 jer Exp $

EAPI=5
inherit autotools eutils flag-o-matic multilib pam

DESCRIPTION=A modular screen saver and locker for the X Window System
HOMEPAGE=http://www.jwz.org/xscreensaver/;
SRC_URI=
http://www.jwz.org/xscreensaver/${P}.tar.gz


LICENSE=BSD
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris
IUSE=gdm jpeg new-login opengl pam +perl selinux suid xinerama

COMMON_DEPEND=
=gnome-base/libglade-2
dev-libs/libxml2
media-libs/netpbm
x11-apps/appres
x11-apps/xwininfo
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
x11-libs/libXmu
x11-libs/libXrandr
x11-libs/libXt
x11-libs/libXxf86misc
x11-libs/libXxf86vm
jpeg? ( virtual/jpeg:0 )
new-login? (
gdm? ( gnome-base/gdm )
!gdm? ( || ( x11-misc/lightdm kde-base/kdm ) )
)
opengl? ( virtual/opengl )
pam? ( virtual/pam )
xinerama? ( x11-libs/libXinerama )

# For USE=perl see output of `qlist xscreensaver | grep bin | xargs grep '::'`
RDEPEND=
${COMMON_DEPEND}
perl? (
dev-lang/perl
dev-perl/libwww-perl
virtual/perl-Digest-MD5
)
selinux? ( sec-policy/selinux-xscreensaver )

DEPEND=
${COMMON_DEPEND}
dev-util/intltool
sys-devel/bc
sys-devel/gettext
virtual/pkgconfig
x11-proto/recordproto
x11-proto/scrnsaverproto
x11-proto/xextproto
x11-proto/xf86miscproto
x11-proto/xf86vidmodeproto
xinerama? ( x11-proto/xineramaproto )


src_prepare() {
sed -i configure.in -e '/^ALL_LINGUAS=/d' || die
strip-linguas -i po/
export ALL_LINGUAS=${LINGUAS}

if use new-login  ! use gdm; then #392967
sed -i \
-e /default_l.*1/s:gdmflexiserver 
-ls:${EPREFIX}/usr/libexec/lightdm/: \
configure{,.in} || die
fi

epatch \
${FILESDIR}/${PN}-5.21-gentoo.patch \
${FILESDIR}/${PN}-5.05-interix.patch \
${FILESDIR}/${PN}-5.20-blurb-hndl-test-passwd.patch \
${FILESDIR}/${PN}-5.20-test-passwd-segv-tty.patch \
${FILESDIR}/${PN}-5.20-tests-miscfix.patch \
${FILESDIR}/${PN}-5.28-comment-style.patch \
${FILESDIR}/${PN}-5.31-pragma.patch \
${FILESDIR}/${PN}-5.31-uint32_t.patch

epatch_user

eautoconf

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

2014-11-17 Thread Lars Wendler (polynomial-c)
polynomial-c14/11/17 12:47:47

  Modified: ChangeLog
  Added:fish-2.1.1.ebuild
  Removed:  fish-2.0.0.ebuild
  Log:
  Security bump (bug #509044). Removed old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.69 app-shells/fish/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   9 Aug 2014 12:12:09 -   1.68
+++ ChangeLog   17 Nov 2014 12:47:47 -  1.69
@@ -1,6 +1,12 @@
 # ChangeLog for app-shells/fish
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.68 2014/08/09 
12:12:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/ChangeLog,v 1.69 2014/11/17 
12:47:47 polynomial-c Exp $
+
+*fish-2.1.1 (17 Nov 2014)
+
+  17 Nov 2014; Lars Wendler polynomia...@gentoo.org -fish-2.0.0.ebuild,
+  +fish-2.1.1.ebuild:
+  Security bump (bug #509044). Removed old.
 
   09 Aug 2014; Agostino Sarubbo a...@gentoo.org fish-2.1.0-r2.ebuild:
   Stable for ppc, wrt bug #493316



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

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

Index: fish-2.1.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/fish-2.1.1.ebuild,v 1.1 
2014/11/17 12:47:47 polynomial-c Exp $

EAPI=5

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

inherit base autotools

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

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

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

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

src_prepare() {
epatch ${FILESDIR}/${PN}-2.1.0-tinfo.patch #459768

eautoreconf
}

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

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

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






[gentoo-commits] proj/hardened-dev:musl commit in: app-portage/portage-utils/files/, app-portage/portage-utils/

2014-11-17 Thread Anthony G. Basile
commit: 669b5366ed0cdb32bc941066651a2ff7524ed649
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Mon Nov 17 13:06:37 2014 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Mon Nov 17 13:06:37 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=669b5366

app-portage/portage-utils: fix missing S_BLKSIZE

---
 app-portage/portage-utils/ChangeLog| 745 +
 .../portage-utils-0.53-fallback-S_BLKSIZE.patch|  13 +
 app-portage/portage-utils/files/post_sync  |   8 +
 app-portage/portage-utils/files/q-reinitialize |   3 +
 app-portage/portage-utils/metadata.xml |   7 +
 .../portage-utils/portage-utils-0.53-r99.ebuild|  77 +++
 6 files changed, 853 insertions(+)

diff --git a/app-portage/portage-utils/ChangeLog 
b/app-portage/portage-utils/ChangeLog
new file mode 100644
index 000..039bc91
--- /dev/null
+++ b/app-portage/portage-utils/ChangeLog
@@ -0,0 +1,745 @@
+# ChangeLog for app-portage/portage-utils
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-portage/portage-utils/ChangeLog,v 1.157 
2014/04/26 21:32:12 vapier Exp $
+
+  26 Apr 2014; Mike Frysinger vap...@gentoo.org portage-utils-0.53.ebuild:
+  Stabilize for all.
+
+*portage-utils-0.53 (22 Mar 2014)
+
+  22 Mar 2014; Mike Frysinger vap...@gentoo.org +portage-utils-0.53.ebuild:
+  Fix crash in `qdepends -q` #504636 via Chromium OS.
+
+*portage-utils-0.52 (15 Mar 2014)
+
+  15 Mar 2014; Mike Frysinger vap...@gentoo.org +portage-utils-0.52.ebuild:
+  Fix crash in `qdepends -Q` #504636 by josef.95.
+
+*portage-utils-0.51 (11 Mar 2014)
+
+  11 Mar 2014; Mike Frysinger vap...@gentoo.org +portage-utils-0.51.ebuild:
+  Bug fix release.
+
+*portage-utils-0.50 (10 Mar 2014)
+
+  10 Mar 2014; Mike Frysinger vap...@gentoo.org +portage-utils-0.50.ebuild:
+  Version bump.
+
+  18 Jan 2014; Mike Frysinger vap...@gentoo.org portage-utils-0.41.ebuild:
+  Add arm64 love.
+
+  10 Jan 2014; Mike Frysinger vap...@gentoo.org portage-utils-0.41.ebuild:
+  Stabilize for all.
+
+  07 Jan 2014; Mike Frysinger vap...@gentoo.org portage-utils-0.41.ebuild:
+  Add epatch_user support.
+
+  17 Nov 2013; Fabian Groffen grob...@gentoo.org
+  +files/portage-utils-0.41-scandirat.patch, portage-utils-0.41.ebuild:
+  Add patch to fix e.g. qlist on Solaris
+
+  31 Oct 2013; Mike Gilbert flop...@gentoo.org portage-utils-0.41.ebuild:
+  Add vapier's devspace as a distfile fallback to prevent fetch failures.
+
+*portage-utils-0.41 (31 Oct 2013)
+
+  31 Oct 2013; Mike Frysinger vap...@gentoo.org +portage-utils-0.41.ebuild:
+  Fix minor profile var parsing bug.
+
+*portage-utils-0.40 (29 Sep 2013)
+
+  29 Sep 2013; Mike Frysinger vap...@gentoo.org +portage-utils-0.40.ebuild:
+  Version bump.
+
+  29 Sep 2013; Mike Frysinger vap...@gentoo.org portage-utils-0.30.ebuild:
+  Stabilize for all.
+
+  24 Aug 2013; Mike Frysinger vap...@gentoo.org portage-utils-0.30.ebuild:
+  Update HOMEPAGE #479006 by Alexander Berntsen.
+
+*portage-utils-0.30 (30 Apr 2013)
+
+  30 Apr 2013; Mike Frysinger vap...@gentoo.org +portage-utils-0.30.ebuild,
+  portage-utils-0.21.ebuild:
+  Version bump.
+
+  30 Apr 2013; Mike Frysinger vap...@gentoo.org portage-utils-0.21.ebuild:
+  Stabilize for all
+
+  29 Apr 2013; Mike Frysinger vap...@gentoo.org portage-utils-0.21.ebuild:
+  Show init messages on first install only #440420 by poletti.marco.
+
+  18 Feb 2013; Mike Frysinger vap...@gentoo.org portage-utils-0.21.ebuild:
+  Pull in xz-utils to unpack tarball #456740 by Brian Dolbec.
+
+  17 Feb 2013; Zac Medico zmed...@gentoo.org portage-utils-0.21.ebuild:
+  Add ~arm-linux keyword.
+
+*portage-utils-0.21 (19 Dec 2012)
+
+  19 Dec 2012; Mike Frysinger vap...@gentoo.org +portage-utils-0.21.ebuild:
+  Version bump.
+
+*portage-utils-0.20 (28 Oct 2012)
+
+  28 Oct 2012; Mike Frysinger vap...@gentoo.org +portage-utils-0.20.ebuild:
+  Version bump.
+
+*portage-utils-0.11 (14 Aug 2012)
+
+  14 Aug 2012; Mike Frysinger vap...@gentoo.org +portage-utils-0.11.ebuild:
+  Version bump.
+
+  03 Jul 2012; Brent Baude ran...@gentoo.org portage-utils-0.10.ebuild:
+  Marking portage-utils-0.10 ppc for bug 419663
+
+  01 Jul 2012; RaĂºl Porcel armi...@gentoo.org portage-utils-0.10.ebuild:
+  alpha/ia64/m68k/s390/sh/sparc stable wrt #419663
+
+  09 Jun 2012; Markus Meier mae...@gentoo.org portage-utils-0.10.ebuild:
+  arm stable, bug #419663
+
+  09 Jun 2012; Jeff Horelick jdh...@gentoo.org portage-utils-0.10.ebuild:
+  marked x86 per bug 419663
+
+  08 Jun 2012; Mike Frysinger vap...@gentoo.org
+  +files/portage-utils-0.10-x86-test.patch, portage-utils-0.10.ebuild:
+  Fix tests failing on x86 #412067 by Toralf Förster.
+
+  06 Jun 2012; Jeroen Roovers j...@gentoo.org portage-utils-0.10.ebuild:
+  Stable for HPPA (bug #419663).
+
+  05 Jun 2012; Brent Baude ran...@gentoo.org portage-utils-0.10.ebuild:
+  Marking 

[gentoo-commits] gentoo-x86 commit in x11-terms/guake: guake-0.5.1.ebuild guake-9999.ebuild ChangeLog

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 13:37:33

  Modified: guake-.ebuild ChangeLog
  Added:guake-0.5.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.2  x11-terms/guake/guake-.ebuild

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

Index: guake-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- guake-.ebuild   13 Sep 2014 08:23:09 -  1.1
+++ guake-.ebuild   17 Nov 2014 13:37:33 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-.ebuild,v 1.1 
2014/09/13 08:23:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-.ebuild,v 1.2 
2014/11/17 13:37:33 jer Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 inherit autotools git-r3 gnome2 python-single-r1
 
 DESCRIPTION=Drop-down terminal for GTK+ desktops
-HOMEPAGE=http://guake.org/;
+HOMEPAGE=https://github.com/Guake/guake;
 # override gnome.org.eclass SRC_URI
 SRC_URI=''
 EGIT_REPO_URI=https://github.com/Guake/guake.git;
@@ -46,9 +46,6 @@
 src_prepare() {
eautoreconf
 
-   # python_fix_shebang does not handle this?
-   sed -i -e '/^PYTHON=/s|python|'${EPYTHON}'|' src/guake-prefs || die
-
gnome2_src_prepare
 
G2CONF=--disable-static



1.32 x11-terms/guake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/guake/ChangeLog?rev=1.32view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/guake/ChangeLog?rev=1.32content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/guake/ChangeLog?r1=1.31r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/guake/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   13 Sep 2014 08:23:09 -  1.31
+++ ChangeLog   17 Nov 2014 13:37:33 -  1.32
@@ -1,6 +1,12 @@
 # ChangeLog for x11-terms/guake
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/ChangeLog,v 1.31 2014/09/13 
08:23:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/ChangeLog,v 1.32 2014/11/17 
13:37:33 jer Exp $
+
+*guake-0.5.1 (17 Nov 2014)
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org +guake-0.5.1.ebuild,
+  guake-.ebuild:
+  Version bump.
 
 *guake- (13 Sep 2014)
 



1.1  x11-terms/guake/guake-0.5.1.ebuild

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

Index: guake-0.5.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-0.5.1.ebuild,v 1.1 
2014/11/17 13:37:33 jer Exp $

EAPI=5

GCONF_DEBUG=no
GNOME2_LA_PUNT=yes
PYTHON_COMPAT=( python2_7 )

inherit autotools gnome2 python-single-r1

DESCRIPTION=Drop-down terminal for GTK+ desktops
HOMEPAGE=https://github.com/Guake/guake;
SRC_URI=https://github.com/${PN^}/${PN}/archive/${PV}.tar.gz - ${P}.tar.gz

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

RDEPEND=
dev-python/dbus-python
dev-python/gconf-python
dev-python/notify-python
dev-python/pygtk
dev-python/pyxdg
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/vte:0[python]

DEPEND=
${RDEPEND}
dev-util/intltool
virtual/pkgconfig


DOCS=( AUTHORS ChangeLog NEWS README.rst )

src_prepare() {
eautoreconf

gnome2_src_prepare

G2CONF=--disable-static
}

pkg_postinst() {
gnome2_pkg_postinst
}

pkg_postrm() {
gnome2_pkg_postrm
}






[gentoo-commits] gentoo-x86 commit in sys-firmware/iwl3160-7260-bt-ucode: iwl3160-7260-bt-ucode-37.8.10_p1.ebuild ChangeLog

2014-11-17 Thread Mark Wright (gienah)
gienah  14/11/17 13:44:23

  Modified: ChangeLog
  Added:iwl3160-7260-bt-ucode-37.8.10_p1.ebuild
  Log:
  Update Intel 3160 7260 bluetooth microcode
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.6  sys-firmware/iwl3160-7260-bt-ucode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/ChangeLog?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/ChangeLog?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/ChangeLog?r1=1.5r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   1 Jul 2014 05:12:42 -   1.5
+++ ChangeLog   17 Nov 2014 13:44:23 -  1.6
@@ -1,6 +1,12 @@
 # ChangeLog for sys-firmware/iwl3160-7260-bt-ucode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/ChangeLog,v 1.5 
2014/07/01 05:12:42 gienah Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/ChangeLog,v 1.6 
2014/11/17 13:44:23 gienah Exp $
+
+*iwl3160-7260-bt-ucode-37.8.10_p1 (17 Nov 2014)
+
+  17 Nov 2014; Mark Wright gie...@gentoo.org
+  +iwl3160-7260-bt-ucode-37.8.10_p1.ebuild:
+  Update Intel 3160 7260 bluetooth microcode
 
 *iwl3160-7260-bt-ucode-37.8.10 (01 Jul 2014)
 



1.1  
sys-firmware/iwl3160-7260-bt-ucode/iwl3160-7260-bt-ucode-37.8.10_p1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/iwl3160-7260-bt-ucode-37.8.10_p1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/iwl3160-7260-bt-ucode-37.8.10_p1.ebuild?rev=1.1content-type=text/plain

Index: iwl3160-7260-bt-ucode-37.8.10_p1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/iwl3160-7260-bt-ucode/iwl3160-7260-bt-ucode-37.8.10_p1.ebuild,v
 1.1 2014/11/17 13:44:23 gienah Exp $

EAPI=5
inherit linux-info

DESCRIPTION=Firmware for Intel (R) Wireless 3160, 7260, 7265 Bluetooth
HOMEPAGE=http://wireless.kernel.org/en/users/Drivers/iwlwifi;
SRC_URI=mirror://gentoo/${P}.tgz

LICENSE=ipw3945
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

DEPEND=
RDEPEND=!sys-kernel/linux-firmware[-savedconfig]

S=${WORKDIR}

CONFIG_CHECK=~IWLMVM
ERROR_IWLMVM=CONFIG_IWLMVM is required to be enabled in /usr/src/linux/.config 
for the kernel to be able to load the Intel (R) Wireless 3160, 7260, 7265 
firmware

pkg_pretend() {
if kernel_is lt 3 10 0; then
ewarn Your kernel version is 
${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.
ewarn This microcode image requires a kernel = 3.10.0.
fi
}

src_install() {
insinto /lib/firmware/intel
doins ${S}/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
doins ${S}/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq
doins ${S}/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq
doins ${S}/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
doins ${S}/ibt-hw-37.7.bseq
doins ${S}/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq
doins ${S}/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
doins ${S}/ibt-hw-37.8.bseq
}






[gentoo-commits] gentoo-x86 commit in sys-firmware/iwl7260-ucode: iwl7260-ucode-25.228.9.0.ebuild ChangeLog

2014-11-17 Thread Mark Wright (gienah)
gienah  14/11/17 13:47:19

  Modified: ChangeLog
  Added:iwl7260-ucode-25.228.9.0.ebuild
  Log:
  Thanks to Julian Simioni and David Flogeras for providing the update to 
25.228.9.0, testing and reporting. Fixes bug 528650.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.7  sys-firmware/iwl7260-ucode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl7260-ucode/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl7260-ucode/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl7260-ucode/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-firmware/iwl7260-ucode/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   16 Jun 2014 14:07:54 -  1.6
+++ ChangeLog   17 Nov 2014 13:47:19 -  1.7
@@ -1,6 +1,12 @@
 # ChangeLog for sys-firmware/iwl7260-ucode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-firmware/iwl7260-ucode/ChangeLog,v 1.6 
2014/06/16 14:07:54 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-firmware/iwl7260-ucode/ChangeLog,v 1.7 
2014/11/17 13:47:19 gienah Exp $
+
+*iwl7260-ucode-25.228.9.0 (17 Nov 2014)
+
+  17 Nov 2014; Mark Wright gie...@gentoo.org 
+iwl7260-ucode-25.228.9.0.ebuild:
+  Thanks to Julian Simioni and David Flogeras for providing the update to
+  25.228.9.0, testing and reporting. Fixes bug 528650.
 
 *iwl7260-ucode-23.214.9.0 (16 Jun 2014)
 



1.1  sys-firmware/iwl7260-ucode/iwl7260-ucode-25.228.9.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl7260-ucode/iwl7260-ucode-25.228.9.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl7260-ucode/iwl7260-ucode-25.228.9.0.ebuild?rev=1.1content-type=text/plain

Index: iwl7260-ucode-25.228.9.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/iwl7260-ucode/iwl7260-ucode-25.228.9.0.ebuild,v
 1.1 2014/11/17 13:47:19 gienah Exp $

EAPI=5
inherit linux-info

DEV_N=${PN:3:4}
MY_PN=iwlwifi-${DEV_N}-ucode

DESCRIPTION=Firmware for Intel (R) Dual Band Wireless-AC ${DEV_N}
HOMEPAGE=http://wireless.kernel.org/en/users/Drivers/iwlwifi;
SRC_URI=http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFiledo=gettarget=${MY_PN}-${PV}.tgz
 - ${P}.tgz

LICENSE=ipw3945
SLOT=2
KEYWORDS=~amd64 ~x86
IUSE=bluetooth

DEPEND=
RDEPEND=bluetooth? ( sys-firmware/iwl3160-7260-bt-ucode )
!sys-kernel/linux-firmware[-savedconfig]

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

CONFIG_CHECK=IWLMVM
ERROR_IWLMVM=CONFIG_IWLMVM is required to be enabled in /usr/src/linux/.config 
for the kernel to be able to load the ${DEV_N} firmware

pkg_pretend() {
if kernel_is lt 3 14 9; then
ewarn Your kernel version is 
${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.
ewarn This microcode image requires a kernel = 3.14.9.
ewarn For kernel versions  3.14.9, you may install older 
SLOTS
fi
}

src_install() {
insinto /lib/firmware
doins ${S}/iwlwifi-${DEV_N}-9.ucode
dodoc README*
}






[gentoo-commits] gentoo-x86 commit in sys-firmware/iwl3160-ucode: iwl3160-ucode-25.228.9.0.ebuild ChangeLog

2014-11-17 Thread Mark Wright (gienah)
gienah  14/11/17 13:52:01

  Modified: ChangeLog
  Added:iwl3160-ucode-25.228.9.0.ebuild
  Log:
  Thanks to Julian Simioni and David Flogeras for providing the update to 
25.228.9.0, testing and reporting. The fix for bug 528650 also applies to 
iwl3160-ucode.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
618E971F)

Revision  ChangesPath
1.4  sys-firmware/iwl3160-ucode/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-ucode/ChangeLog?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-ucode/ChangeLog?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-ucode/ChangeLog?r1=1.3r2=1.4

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-firmware/iwl3160-ucode/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   16 Jun 2014 14:05:55 -  1.3
+++ ChangeLog   17 Nov 2014 13:52:01 -  1.4
@@ -1,6 +1,13 @@
 # ChangeLog for sys-firmware/iwl3160-ucode
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-firmware/iwl3160-ucode/ChangeLog,v 1.3 
2014/06/16 14:05:55 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-firmware/iwl3160-ucode/ChangeLog,v 1.4 
2014/11/17 13:52:01 gienah Exp $
+
+*iwl3160-ucode-25.228.9.0 (17 Nov 2014)
+
+  17 Nov 2014; Mark Wright gie...@gentoo.org 
+iwl3160-ucode-25.228.9.0.ebuild:
+  Thanks to Julian Simioni and David Flogeras for providing the update to
+  25.228.9.0, testing and reporting. The fix for bug 528650 also applies to
+  iwl3160-ucode.
 
 *iwl3160-ucode-23.214.9.0 (16 Jun 2014)
 



1.1  sys-firmware/iwl3160-ucode/iwl3160-ucode-25.228.9.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-ucode/iwl3160-ucode-25.228.9.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-firmware/iwl3160-ucode/iwl3160-ucode-25.228.9.0.ebuild?rev=1.1content-type=text/plain

Index: iwl3160-ucode-25.228.9.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-firmware/iwl3160-ucode/iwl3160-ucode-25.228.9.0.ebuild,v
 1.1 2014/11/17 13:52:01 gienah Exp $

EAPI=5
inherit linux-info

DEV_N=${PN:3:4}
MY_PN=iwlwifi-${DEV_N}-ucode

DESCRIPTION=Firmware for Intel (R) Dual Band Wireless-AC ${DEV_N}
HOMEPAGE=http://wireless.kernel.org/en/users/Drivers/iwlwifi;
SRC_URI=http://wireless.kernel.org/en/users/Drivers/iwlwifi?action=AttachFiledo=gettarget=${MY_PN}-${PV}.tgz
 - ${P}.tgz

LICENSE=ipw3945
SLOT=2
KEYWORDS=~amd64 ~x86
IUSE=bluetooth

DEPEND=
RDEPEND=bluetooth? ( sys-firmware/iwl3160-7260-bt-ucode )
!sys-kernel/linux-firmware[-savedconfig]

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

CONFIG_CHECK=IWLMVM
ERROR_IWLMVM=CONFIG_IWLMVM is required to be enabled in /usr/src/linux/.config 
for the kernel to be able to load the ${DEV_N} firmware

pkg_pretend() {
if kernel_is lt 3 14 9; then
ewarn Your kernel version is 
${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.
ewarn This microcode image requires a kernel = 3.14.9.
ewarn For kernel versions  3.14.9, you may install older 
SLOTS
fi
}

src_install() {
insinto /lib/firmware
doins ${S}/iwlwifi-${DEV_N}-9.ucode
dodoc README*
}






[gentoo-commits] gentoo-x86 commit in dev-libs/liblinear: liblinear-196.ebuild ChangeLog

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 14:06:30

  Modified: ChangeLog
  Added:liblinear-196.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.7  dev-libs/liblinear/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/liblinear/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   21 Aug 2014 12:45:10 -  1.6
+++ ChangeLog   17 Nov 2014 14:06:30 -  1.7
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/liblinear
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblinear/ChangeLog,v 1.6 
2014/08/21 12:45:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblinear/ChangeLog,v 1.7 
2014/11/17 14:06:30 jer Exp $
+
+*liblinear-196 (17 Nov 2014)
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org +liblinear-196.ebuild:
+  Version bump.
 
   21 Aug 2014; RaĂºl Porcel armi...@gentoo.org liblinear-194.ebuild:
   Add ~alpha/~ia64/~s390/~sh/~sparc wrt #512546



1.1  dev-libs/liblinear/liblinear-196.ebuild

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

Index: liblinear-196.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblinear/liblinear-196.ebuild,v 
1.1 2014/11/17 14:06:30 jer Exp $

EAPI=5
inherit multilib toolchain-funcs

DESCRIPTION=A Library for Large Linear Classification
HOMEPAGE=http://www.csie.ntu.edu.tw/~cjlin/liblinear/ 
https://github.com/cjlin1/liblinear;
SRC_URI=https://github.com/cjlin1/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

LICENSE=BSD
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~s390 ~sh ~sparc ~x86

# /usr/bin/predict collision
RDEPEND=!sci-astronomy/predict

src_prepare() {
sed -i \
-e '/^AR/s|=|?=|g' \
-e '/^RANLIB/s|=|?=|g' \
-e '/^CFLAGS/d;/^CXXFLAGS/d' \
blas/Makefile || die
sed -i \
-e 's|make|$(MAKE)|g' \
-e '/$(LIBS)/s|$(CFLAGS)| $(LDFLAGS)|g' \
-e '/^CFLAGS/d;/^CXXFLAGS/d' \
-e 's|$${SHARED_LIB_FLAG}| $(LDFLAGS)|g' \
Makefile || die
}

src_compile() {
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
CFLAGS=${CFLAGS} -fPIC \
CXXFLAGS=${CXXFLAGS} -fPIC \
AR=$(tc-getAR) rcv \
RANLIB=$(tc-getRANLIB) \
emake lib all
}

src_install() {
dolib ${PN}.so.2
dosym ${PN}.so.2 /usr/$(get_libdir)/${PN}.so

dobin predict train

insinto /usr/include
doins linear.h

dodoc README
}






[gentoo-commits] gentoo-x86 commit in dev-python/gmpy: gmpy-2.0.4.ebuild ChangeLog

2014-11-17 Thread Ian Delaney (idella4)
idella4 14/11/17 14:13:22

  Modified: gmpy-2.0.4.ebuild ChangeLog
  Log:
  switch dep for doc build to DEPEND
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-python/gmpy/gmpy-2.0.4.ebuild

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

Index: gmpy-2.0.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/gmpy/gmpy-2.0.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gmpy-2.0.4.ebuild   22 Oct 2014 10:03:39 -  1.1
+++ gmpy-2.0.4.ebuild   17 Nov 2014 14:13:22 -  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/gmpy/gmpy-2.0.4.ebuild,v 1.1 
2014/10/22 10:03:39 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gmpy/gmpy-2.0.4.ebuild,v 1.2 
2014/11/17 14:13:22 idella4 Exp $
 
 EAPI=5
 
@@ -24,10 +24,10 @@
=dev-libs/mpc-1.0.2
=dev-libs/mpfr-3.1.2
!mpir? ( dev-libs/gmp )
-   mpir? ( sci-libs/mpir )
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   mpir? ( sci-libs/mpir )
 DEPEND=${RDEPEND}
-   app-arch/unzip
+   app-arch/unzip
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
 
 S=${WORKDIR}/${MY_P}
 



1.48 dev-python/gmpy/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/gmpy/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   1 Nov 2014 17:53:36 -   1.47
+++ ChangeLog   17 Nov 2014 14:13:22 -  1.48
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/gmpy
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gmpy/ChangeLog,v 1.47 2014/11/01 
17:53:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gmpy/ChangeLog,v 1.48 2014/11/17 
14:13:22 idella4 Exp $
+
+  17 Nov 2014; Ian Delaney idel...@gentoo.org gmpy-2.0.4.ebuild:
+  switch dep for doc build to DEPEND
 
   01 Nov 2014; Agostino Sarubbo a...@gentoo.org gmpy-2.0.3.ebuild:
   Stable for ppc, wrt bug #526460






[gentoo-commits] gentoo-x86 commit in dev-ruby/sprockets-rails: ChangeLog sprockets-rails-2.2.0.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 14:17:16

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

Revision  ChangesPath
1.9  dev-ruby/sprockets-rails/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sprockets-rails/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   4 Sep 2014 05:46:43 -   1.8
+++ ChangeLog   17 Nov 2014 14:17:16 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/sprockets-rails
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets-rails/ChangeLog,v 1.8 
2014/09/04 05:46:43 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets-rails/ChangeLog,v 1.9 
2014/11/17 14:17:16 graaff Exp $
+
+*sprockets-rails-2.2.0 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org
+  +sprockets-rails-2.2.0.ebuild:
+  Version bump.
 
   04 Sep 2014; Hans de Graaff gra...@gentoo.org
   -sprockets-rails-2.1.1.ebuild:



1.1  dev-ruby/sprockets-rails/sprockets-rails-2.2.0.ebuild

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

Index: sprockets-rails-2.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-ruby/sprockets-rails/sprockets-rails-2.2.0.ebuild,v 
1.1 2014/11/17 14:17:16 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=

RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Sprockets implementation for Rails 4.x (and beyond) Asset Pipeline
HOMEPAGE=https://github.com/rails/sprockets-rails;
SRC_URI=https://github.com/rails/sprockets-rails/archive/v${PV}.tar.gz - 
${P}.tar.gz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~x86

IUSE=test

ruby_add_rdepend 
=dev-ruby/actionpack-3.0
=dev-ruby/activesupport-3.0
=dev-ruby/sprockets-2.8:2

ruby_add_bdepend 
test? (
=dev-ruby/actionpack-4
=dev-ruby/railties-4
dev-ruby/test-unit:2
)

all_ruby_prepare() {
# Avoid tests that fail on a custom manifest name. It is not clear
# if this is related to Rails 4.2, and the current sprockets
# version already in the tree only works with this newer 
# sprockets-rails version.
rm test/test_task.rb || die
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/openvz-sources: openvz-sources-2.6.32.94.7.ebuild ChangeLog

2014-11-17 Thread Peter Volkov (pva)
pva 14/11/17 14:42:54

  Modified: ChangeLog
  Added:openvz-sources-2.6.32.94.7.ebuild
  Log:
  Version bump, thank slepnoga for report
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
F1989B07)

Revision  ChangesPath
1.237sys-kernel/openvz-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v
retrieving revision 1.236
retrieving revision 1.237
diff -u -r1.236 -r1.237
--- ChangeLog   17 Oct 2014 09:52:20 -  1.236
+++ ChangeLog   17 Nov 2014 14:42:54 -  1.237
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/openvz-sources
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v 1.236 
2014/10/17 09:52:20 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/ChangeLog,v 1.237 
2014/11/17 14:42:54 pva Exp $
+
+*openvz-sources-2.6.32.94.7 (17 Nov 2014)
+
+  17 Nov 2014; Peter Volkov p...@gentoo.org
+  +openvz-sources-2.6.32.94.7.ebuild:
+  Version bump, thank slepnoga for report
 
 *openvz-sources-2.6.32.93.5 (17 Oct 2014)
 



1.1  sys-kernel/openvz-sources/openvz-sources-2.6.32.94.7.ebuild

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

Index: openvz-sources-2.6.32.94.7.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/openvz-sources/openvz-sources-2.6.32.94.7.ebuild,v
 1.1 2014/11/17 14:42:54 pva Exp $

EAPI=5

inherit versionator

OVZ_KV=0$(get_version_component_range 4).$(get_version_component_range 5)

CKV=$(get_version_component_range 1-3)
OKV=${OKV:-${CKV}}
EXTRAVERSION=-${PN/-*}-${OVZ_KV}
ETYPE=sources
KV_FULL=${CKV}${EXTRAVERSION}
if [[ ${PR} != r0 ]]; then
KV_FULL+=-${PR}
EXTRAVERSION+=-${PR}
fi
S=${WORKDIR}/linux-${KV_FULL}

# ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH} should succeed.
KV_MAJOR=$(get_version_component_range 1 ${OKV})
KV_MINOR=$(get_version_component_range 2 ${OKV})
KV_PATCH=$(get_version_component_range 3 ${OKV})

KERNEL_URI=mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.xz

inherit kernel-2
#detect_version

KEYWORDS=~amd64 ~ppc64 ~sparc ~x86
IUSE=

DESCRIPTION=Kernel sources with OpenVZ patchset
HOMEPAGE=http://www.openvz.org;
SRC_URI=${KERNEL_URI} ${ARCH_URI}

http://download.openvz.org/kernel/branches/rhel6-${CKV}/042stab${OVZ_KV}/patches/patch-042stab${OVZ_KV}-combined.gz;

UNIPATCH_STRICTORDER=1
UNIPATCH_LIST=${DISTDIR}/patch-042stab${OVZ_KV}-combined.gz

K_EXTRAEINFO=This openvz kernel uses RHEL6 patchset instead of vanilla kernel.
This patchset considered to be more stable and security supported by upstream,
but for us RHEL6 patchset is very fragile and fails to build in many
configurations so if you have problems use config files from openvz team
http://wiki.openvz.org/Download/kernel/rhel6/042stab${OVZ_KV};






[gentoo-commits] proj/kde:master commit in: sys-auth/polkit-kde-agent/

2014-11-17 Thread Manuel RĂ¼ger
commit: cfe540711a25d7d5377ff1c6059720c93ef92ded
Author: Manuel RĂ¼ger manuel AT rueg DOT eu
AuthorDate: Mon Nov 17 14:45:07 2014 +
Commit: Manuel RĂ¼ger mrueg AT gentoo DOT org
CommitDate: Mon Nov 17 14:45:07 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=cfe54071

[sys-auth/polkit-kde-agent] Add live ebuild for kde5, move kde4 live ebuild to 
4.

Package-Manager: portage-2.2.14

---
 ...nt-.ebuild = polkit-kde-agent-4..ebuild} |  0
 .../polkit-kde-agent/polkit-kde-agent-.ebuild| 20 +---
 2 files changed, 5 insertions(+), 15 deletions(-)

diff --git a/sys-auth/polkit-kde-agent/polkit-kde-agent-.ebuild 
b/sys-auth/polkit-kde-agent/polkit-kde-agent-4..ebuild
similarity index 100%
copy from sys-auth/polkit-kde-agent/polkit-kde-agent-.ebuild
copy to sys-auth/polkit-kde-agent/polkit-kde-agent-4..ebuild

diff --git a/sys-auth/polkit-kde-agent/polkit-kde-agent-.ebuild 
b/sys-auth/polkit-kde-agent/polkit-kde-agent-.ebuild
index fed54ca..70888d6 100644
--- a/sys-auth/polkit-kde-agent/polkit-kde-agent-.ebuild
+++ b/sys-auth/polkit-kde-agent/polkit-kde-agent-.ebuild
@@ -5,31 +5,21 @@
 EAPI=5
 
 MY_PN=${PN}-1
-MY_P=${MY_PN}-${PV}
 EGIT_REPONAME=${MY_PN}
-KDE_LINGUAS=ca ca@valencia cs da de en_GB eo es et fi fr ga
-   gl hr hu is it ja km lt nb mai ms nds nl pa pt pt_BR ro ru
-   sk sr sr@ijekavian sr@ijekavianlatin sr@latin sv th tr uk zh_TW
-inherit kde4-base
+EGIT_BRANCH=frameworks
+inherit kde5
 
 DESCRIPTION=PolKit agent module for KDE
 HOMEPAGE=http://www.kde.org;
-if [[ ${KDE_BUILD_TYPE} != live ]] ; then
-   SRC_URI=mirror://kde/stable/apps/KDE4.x/admin/${MY_P}.tar.bz2
-fi
 
 LICENSE=GPL-2
 KEYWORDS=
-SLOT=4
-IUSE=debug
+SLOT=5
+IUSE=
 
 DEPEND=
-   =sys-auth/polkit-qt-0.103.0
+   =sys-auth/polkit-qt-0.112.0
 
 RDEPEND=${DEPEND}
!sys-auth/polkit-kde
 
-
-if [[ ${KDE_BUILD_TYPE} != live ]] ; then
-   S=${WORKDIR}/${MY_P}
-fi



[gentoo-commits] proj/portage:master commit in: pym/portage/, pym/portage/util/, pym/portage/package/ebuild/

2014-11-17 Thread Zac Medico
commit: acf5d6bee0c99dd50d13a963243933fca1d8120c
Author: Zac Medico zmedico AT gentoo DOT org
AuthorDate: Sat Nov 15 06:22:15 2014 +
Commit: Zac Medico zmedico AT gentoo DOT org
CommitDate: Mon Nov 17 14:56:24 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=acf5d6be

unprivileged mode: use first_existing helper func

Split out a first_existing function, in order to improve logic related
to the _unprivileged_mode function so that it checks whether it's
possible to create the specified target root (instead of requiring that
the target root already exists).

Acked-by: Alexander Berntsen bernalex AT gentoo.org

---
 pym/portage/data.py  | 20 +--
 pym/portage/package/ebuild/config.py | 23 ++---
 pym/portage/util/path.py | 48 
 3 files changed, 67 insertions(+), 24 deletions(-)

diff --git a/pym/portage/data.py b/pym/portage/data.py
index 3e03eef..d9b36ee 100644
--- a/pym/portage/data.py
+++ b/pym/portage/data.py
@@ -8,6 +8,7 @@ import portage
 portage.proxy.lazyimport.lazyimport(globals(),
'portage.output:colorize',
'portage.util:writemsg',
+   'portage.util.path:first_existing',
'subprocess'
 )
 from portage.localization import _
@@ -94,14 +95,16 @@ def _get_global(k):
else:
# The config class has equivalent code, but we also 
need to
# do it here if _disable_legacy_globals() has been 
called.
-   eroot = os.path.join(os.environ.get('ROOT', os.sep),
-   portage.const.EPREFIX.lstrip(os.sep))
+   eroot_or_parent = first_existing(os.path.join(
+   os.environ.get('ROOT', os.sep),
+   portage.const.EPREFIX.lstrip(os.sep)))
try:
-   eroot_st = os.stat(eroot)
+   eroot_st = os.stat(eroot_or_parent)
except OSError:
pass
else:
-   unprivileged = _unprivileged_mode(eroot, 
eroot_st)
+   unprivileged = _unprivileged_mode(
+   eroot_or_parent, eroot_st)
 
v = 0
if uid == 0:
@@ -206,14 +209,15 @@ def _get_global(k):
else:
# The config class has equivalent code, but we also 
need to
# do it here if _disable_legacy_globals() has been 
called.
-   eroot = os.path.join(os.environ.get('ROOT', os.sep),
-   portage.const.EPREFIX.lstrip(os.sep))
+   eroot_or_parent = first_existing(os.path.join(
+   os.environ.get('ROOT', os.sep),
+   portage.const.EPREFIX.lstrip(os.sep)))
try:
-   eroot_st = os.stat(eroot)
+   eroot_st = os.stat(eroot_or_parent)
except OSError:
pass
else:
-   if _unprivileged_mode(eroot, eroot_st):
+   if _unprivileged_mode(eroot_or_parent, 
eroot_st):
if k == '_portage_grpname':
try:
grp_struct = 
grp.getgrgid(eroot_st.st_gid)

diff --git a/pym/portage/package/ebuild/config.py 
b/pym/portage/package/ebuild/config.py
index c7308a4..bf39487 100644
--- a/pym/portage/package/ebuild/config.py
+++ b/pym/portage/package/ebuild/config.py
@@ -48,6 +48,7 @@ from portage.util import ensure_dirs, getconfig, grabdict, \
grabdict_package, grabfile, grabfile_package, LazyItemsDict, \
normalize_path, shlex_split, stack_dictlist, stack_dicts, stack_lists, \
writemsg, writemsg_level, _eapi_cache
+from portage.util.path import first_existing
 from portage.util._path import exists_raise_eaccess, isdir_raise_eaccess
 from portage.versions import catpkgsplit, catsplit, cpv_getkey, _pkg_str
 
@@ -848,14 +849,16 @@ class config(object):
PORTAGE_INST_UID: 0,
}
 
+   eroot_or_parent = first_existing(eroot)
unprivileged = False
try:
-   eroot_st = os.stat(eroot)
+   eroot_st = os.stat(eroot_or_parent)
except OSError:
pass
else:
 
-   if portage.data._unprivileged_mode(eroot, 
eroot_st):
+   if portage.data._unprivileged_mode(
+ 

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

2014-11-17 Thread Tomas Chvatal (scarabeus)
scarabeus14/11/17 15:46:04

  Modified: libreoffice-4.3.4.1.ebuild ChangeLog
  Log:
  Remove ppc
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 8EEE3BE8)

Revision  ChangesPath
1.2  app-office/libreoffice/libreoffice-4.3.4.1.ebuild

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

Index: libreoffice-4.3.4.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libreoffice-4.3.4.1.ebuild  17 Nov 2014 11:23:04 -  1.1
+++ libreoffice-4.3.4.1.ebuild  17 Nov 2014 15:46:03 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3.4.1.ebuild,v 1.1 
2014/11/17 11:23:04 scarabeus Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3.4.1.ebuild,v 1.2 
2014/11/17 15:46:03 scarabeus Exp $
 
 EAPI=5
 
@@ -89,7 +89,7 @@
 LICENSE=|| ( LGPL-3 MPL-1.1 )
 SLOT=0
 [[ ${PV} == ** ]] || \
-KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
 
 COMMON_DEPEND=
${PYTHON_DEPS}



1.592app-office/libreoffice/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v
retrieving revision 1.591
retrieving revision 1.592
diff -u -r1.591 -r1.592
--- ChangeLog   17 Nov 2014 11:23:04 -  1.591
+++ ChangeLog   17 Nov 2014 15:46:03 -  1.592
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/libreoffice
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.591 
2014/11/17 11:23:04 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.592 
2014/11/17 15:46:03 scarabeus Exp $
+
+  17 Nov 2014; TomĂ¡Å¡ ChvĂ¡tal scarab...@gentoo.org libreoffice-4.3.4.1.ebuild:
+  Remove ppc
 
 *libreoffice-4.3.4.1 (17 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/sprockets: sprockets-2.11.3.ebuild ChangeLog

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 15:47:30

  Modified: ChangeLog
  Added:sprockets-2.11.3.ebuild
  Log:
  Add a 2.11 version of sprockets because it turns out 2.12 is not compatible 
with 2.11.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.30 dev-ruby/sprockets/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   7 Nov 2014 10:11:55 -   1.29
+++ ChangeLog   17 Nov 2014 15:47:30 -  1.30
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/sprockets
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v 1.29 
2014/11/07 10:11:55 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v 1.30 
2014/11/17 15:47:30 graaff Exp $
+
+*sprockets-2.11.3 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +sprockets-2.11.3.ebuild:
+  Add a 2.11 version of sprockets because it turns out 2.12 is not compatible
+  with 2.11.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -sprockets-2.1.3.ebuild,
   -sprockets-2.2.2-r1.ebuild, -sprockets-2.11.0.ebuild,



1.1  dev-ruby/sprockets/sprockets-2.11.3.ebuild

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

Index: sprockets-2.11.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild,v 
1.1 2014/11/17 15:47:30 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=README.md

RUBY_FAKEGEM_GEMSPEC=sprockets.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Ruby library for compiling and serving web assets
HOMEPAGE=https://github.com/sstephenson/sprockets;
SRC_URI=https://github.com/sstephenson/sprockets/archive/v${PV}.tar.gz - 
${P}-git.tgz

LICENSE=MIT
SLOT=2.11
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=

ruby_add_rdepend 
=dev-ruby/hike-1* =dev-ruby/hike-1.2
=dev-ruby/multi_json-1*
=dev-ruby/rack-1*
=dev-ruby/tilt-1* =dev-ruby/tilt-1.3.1
!!dev-ruby/sprockets-2.2.2-r1:2.2

ruby_add_bdepend test? (
dev-ruby/json
dev-ruby/rack-test
=dev-ruby/coffee-script-2*
=dev-ruby/execjs-2*
=dev-ruby/sass-3* =dev-ruby/sass-3.1
)

all_ruby_prepare() {
# Avoid tests for template types that we currently don't package:
# eco and ejs.
sed -i -e '/eco templates/,/end/ s:^:#:' \
-e '/ejs templates/,/end/ s:^:#:' test/test_environment.rb || 
die

# Add missing 'json' require
sed -i -e '4irequire json' test/test_manifest.rb || die

# Avoid test breaking on specific javascript error being thrown,
# most likely due to using node instead of v8.
sed -i -e '/bundled asset cached if theres an error/,/^  end/ s:^:#:' 
test/test_environment.rb || die

# Require a newer version of execjs since we do not have this slotted.
sed -i -e '/execjs/ s/1.0/2.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
}

each_ruby_prepare() {
sed -i -e s:ruby:${RUBY}: test/test_sprocketize.rb || die
}

each_ruby_test() {
# Make sure we have completely separate copies. Hardlinks won't work
# for this test suite.
cp -R test test-new || die
rm -rf test || die
mv test-new test || die

each_fakegem_test
}






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

2014-11-17 Thread Zac Medico
commit: 77c4a4d2cb63d8e7c95840c44f5bf9b597316120
Author: Zac Medico zmedico AT gentoo DOT org
AuthorDate: Mon Nov 17 16:57:23 2014 +
Commit: Zac Medico zmedico AT gentoo DOT org
CommitDate: Mon Nov 17 17:41:15 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=77c4a4d2

unprivileged mode: fix cross-prefix support

In commit 1364fcd89384c9f60e6d72d7057dc00d8caba175, EROOT calculation
in portage.data did not account for cross-prefix support. This is
fixed by using new _target_root and _target_eprefix functions to
perform the calculation. The _target_eprefix function is also useful
in portageq, where the target EPREFIX needs to be known before
portage.settings is instantiated.

Fixes 1364fcd89384 (Support unprivileged mode for bug #433453.)
Acked-by: Brian Dolbec dolsen AT gentoo.org

---
 bin/portageq|  4 +---
 pym/portage/data.py | 35 +++
 2 files changed, 32 insertions(+), 7 deletions(-)

diff --git a/bin/portageq b/bin/portageq
index ef565d1..6a42bfd 100755
--- a/bin/portageq
+++ b/bin/portageq
@@ -1397,9 +1397,7 @@ def main(argv):
# portage.settings[EPREFIX] here, but that would force
# instantiation of portage.settings, which we don't want to do
# until after we've calculated ROOT (see bug #529200).
-   eprefix = os.environ.get(EPREFIX, portage.const.EPREFIX)
-   if eprefix:
-   eprefix = portage.util.normalize_path(eprefix)
+   eprefix = portage.data._target_eprefix()
eroot = portage.util.normalize_path(argv[2])
 
if eprefix:

diff --git a/pym/portage/data.py b/pym/portage/data.py
index d9b36ee..2fd287d 100644
--- a/pym/portage/data.py
+++ b/pym/portage/data.py
@@ -35,6 +35,35 @@ if not lchown:
 
 lchown = portage._unicode_func_wrapper(lchown)
 
+def _target_eprefix():
+   
+   Calculate the target EPREFIX, which may be different from
+   portage.const.EPREFIX due to cross-prefix support. The result
+   is equivalent to portage.settings[EPREFIX], but the calculation
+   is done without the expense of instantiating portage.settings.
+   @rtype: str
+   @return: the target EPREFIX
+   
+   eprefix = os.environ.get(EPREFIX, portage.const.EPREFIX)
+   if eprefix:
+   eprefix = portage.util.normalize_path(eprefix)
+   return eprefix
+
+def _target_root():
+   
+   Calculate the target ROOT. The result is equivalent to
+   portage.settings[ROOT], but the calculation
+   is done without the expense of instantiating portage.settings.
+   @rtype: str
+   @return: the target ROOT (always ends with a slash)
+   
+   root = os.environ.get(ROOT)
+   if not root:
+   # Handle either empty or unset ROOT.
+   root = os.sep
+   root = portage.util.normalize_path(root)
+   return root.rstrip(os.sep) + os.sep
+
 def portage_group_warning():
warn_prefix = colorize(BAD, *** WARNING ***  )
mylines = [
@@ -96,8 +125,7 @@ def _get_global(k):
# The config class has equivalent code, but we also 
need to
# do it here if _disable_legacy_globals() has been 
called.
eroot_or_parent = first_existing(os.path.join(
-   os.environ.get('ROOT', os.sep),
-   portage.const.EPREFIX.lstrip(os.sep)))
+   _target_root(), 
_target_eprefix().lstrip(os.sep)))
try:
eroot_st = os.stat(eroot_or_parent)
except OSError:
@@ -210,8 +238,7 @@ def _get_global(k):
# The config class has equivalent code, but we also 
need to
# do it here if _disable_legacy_globals() has been 
called.
eroot_or_parent = first_existing(os.path.join(
-   os.environ.get('ROOT', os.sep),
-   portage.const.EPREFIX.lstrip(os.sep)))
+   _target_root(), 
_target_eprefix().lstrip(os.sep)))
try:
eroot_st = os.stat(eroot_or_parent)
except OSError:



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

2014-11-17 Thread Nicolas Bock (nicolasbock)
nicolasbock14/11/17 18:13:36

  Modified: ChangeLog
  Added:lammps-20141030.ebuild
  Log:
  sci-physics/lammps: Added new version lammps-20141030
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
AC91CA52)

Revision  ChangesPath
1.48 sci-physics/lammps/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   8 Nov 2014 14:00:39 -   1.47
+++ ChangeLog   17 Nov 2014 18:13:36 -  1.48
@@ -1,6 +1,11 @@
 # 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.47 
2014/11/08 14:00:39 nicolasbock Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/lammps/ChangeLog,v 1.48 
2014/11/17 18:13:36 nicolasbock Exp $
+
+*lammps-20141030 (17 Nov 2014)
+
+  17 Nov 2014; Nicolas Bock nicolasb...@gentoo.org +lammps-20141030.ebuild:
+  sci-physics/lammps: Added new version lammps-20141030
 
 *lammps-20141105 (08 Nov 2014)
 



1.1  sci-physics/lammps/lammps-20141030.ebuild

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

Index: lammps-20141030.ebuild
===
# 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-20141030.ebuild,v 
1.1 2014/11/17 18:13:36 nicolasbock Exp $

EAPI=5

inherit eutils flag-o-matic fortran-2 multilib

convert_month() {
case $1 in
01) echo Jan
;;
02) echo Feb
;;
03) echo Mar
;;
04) echo Apr
;;
05) echo May
;;
06) echo Jun
;;
07) echo Jul
;;
08) echo Aug
;;
09) echo Sep
;;
10) echo Oct
;;
11) echo Nov
;;
12) echo Dec
;;
*)  echo unknown
;;
esac
}

MY_P=${PN}-$((10#${PV:6:2}))$(convert_month ${PV:4:2})${PV:2:2}

DESCRIPTION=Large-scale Atomic/Molecular Massively Parallel Simulator
HOMEPAGE=http://lammps.sandia.gov/;
SRC_URI=http://lammps.sandia.gov/tars/${MY_P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=doc examples gzip lammps-memalign mpi static-libs

DEPEND=
mpi? (
virtual/blas
virtual/lapack
virtual/mpi
)
sci-libs/voro++

RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}

lmp_emake() {
local LAMMPS_INCLUDEFLAGS
LAMMPS_INCLUDEFLAGS=$(usex gzip '-DLAMMPS_GZIP' '')
LAMMPS_INCLUDEFLAGS+=$(usex lammps-memalign ' -DLAMMPS_MEMALIGN' '')

# The lammps makefile uses CC to indicate the C++ compiler.
emake \
ARCHIVE=$(tc-getAR) \
CC=$(usex mpi mpic++ $(tc-getCXX)) \
F90=$(usex mpi mpif90 $(tc-getFC)) \
LINK=$(usex mpi mpic++ $(tc-getCXX)) \
CCFLAGS=${CXXFLAGS} \
F90FLAGS=${FCFLAGS} \
LINKFLAGS=${LDFLAGS} \
LMP_INC=${LAMMPS_INCLUDEFLAGS} \
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) '')\
$@
}

src_prepare() {
# Fix inconsistent use of SHFLAGS.
sed -i \
-e 's:voronoi_SYSINC\s\+=.*$:voronoi_SYSINC = 
-I/usr/include/voro++:' \
-e 's:voronoi_SYSPATH\s\+=.*$:voronoi_SYSPATH =:' \
src/VORONOI/Makefile.lammps || die

# Fix missing .so name.
sed -i \
-e 's:SHLIBFLAGS\s\+=\s\+:SHLIBFLAGS = 
-Wl,-soname,liblammps.so.0 :' \
src/MAKE/Makefile.serial || die

# Fix makefile in tools.
   

[gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.12.2.ebuild

2014-11-17 Thread Tobias Klausmann (klausman)
klausman14/11/17 18:14:15

  Modified: ChangeLog wireshark-1.12.2.ebuild
  Log:
  Stable on alpha, bug 529100
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
CE5D54E8)

Revision  ChangesPath
1.672net-analyzer/wireshark/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.671
retrieving revision 1.672
diff -u -r1.671 -r1.672
--- ChangeLog   13 Nov 2014 11:19:36 -  1.671
+++ ChangeLog   17 Nov 2014 18:14:15 -  1.672
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/wireshark
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.671 
2014/11/13 11:19:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.672 
2014/11/17 18:14:15 klausman Exp $
+
+  17 Nov 2014; Tobias Klausmann klaus...@gentoo.org wireshark-1.12.2.ebuild:
+  Stable on alpha, bug 529100
 
   13 Nov 2014; Jeroen Roovers j...@gentoo.org wireshark-1.12.2.ebuild:
   Stable for HPPA (bug #529100).



1.6  net-analyzer/wireshark/wireshark-1.12.2.ebuild

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

Index: wireshark-1.12.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.12.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wireshark-1.12.2.ebuild 13 Nov 2014 11:19:36 -  1.5
+++ wireshark-1.12.2.ebuild 17 Nov 2014 18:14:15 -  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-analyzer/wireshark/wireshark-1.12.2.ebuild,v 1.5 
2014/11/13 11:19:36 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.12.2.ebuild,v 1.6 
2014/11/17 18:14:15 klausman Exp $
 
 EAPI=5
 inherit autotools eutils fcaps multilib qt4-r2 user
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0/${PV}
-KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd
+KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd
 IUSE=
adns +caps crypt doc doc-pdf geoip +gtk3 ipv6 kerberos lua +netlink 
+pcap
portaudio +qt4 qt5 selinux smi ssl zlib






[gentoo-commits] gentoo-x86 commit in net-wireless/dump1090/files: - New directory

2014-11-17 Thread Richard Farina (zerochaos)
zerochaos14/11/17 18:31:29

  Log:
  Directory /var/cvsroot/gentoo-x86/net-wireless/dump1090/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-wireless/dump1090: dump1090-9999.ebuild metadata.xml dump1090-0.0_p20140919.ebuild ChangeLog

2014-11-17 Thread Richard Farina (zerochaos)
zerochaos14/11/17 18:34:17

  Modified: dump1090-.ebuild metadata.xml ChangeLog
  Added:dump1090-0.0_p20140919.ebuild
  Log:
  add in patch and files needed for web interface, add in snapshot, add radio 
herd to maintainer
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.2  net-wireless/dump1090/dump1090-.ebuild

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

Index: dump1090-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/dump1090/dump1090-.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dump1090-.ebuild8 Feb 2013 17:23:51 -   1.1
+++ dump1090-.ebuild17 Nov 2014 18:34:17 -  1.2
@@ -1,23 +1,35 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/dump1090/dump1090-.ebuild,v 1.1 
2013/02/08 17:23:51 xmw Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/dump1090/dump1090-.ebuild,v 1.2 
2014/11/17 18:34:17 zerochaos Exp $
 
 EAPI=5
 
-inherit git-2 toolchain-funcs
+inherit toolchain-funcs eutils
 
 DESCRIPTION=simple Mode S decoder for RTLSDR devices
 HOMEPAGE=https://github.com/antirez/dump1090;
-EGIT_REPO_URI=git://github.com/antirez/dump1090.git
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI=git://github.com/antirez/dump1090.git
+   KEYWORDS=
+else
+   KEYWORDS=~amd64 ~x86
+   SRC_URI=https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz;
+   S=${WORKDIR}/${PN}
+fi
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=
 IUSE=
 
 RDEPEND=net-wireless/rtl-sdr
 DEPEND=${RDEPEND}
 
+src_prepare() {
+   epatch ${FILESDIR}/gmap_usr_share_mv.patch
+}
+
 src_compile() {
emake CC=$(tc-getCC) \
CFLAGS=$(pkg-config --cflags librtlsdr) \
@@ -28,4 +40,8 @@
 src_install() {
dobin ${PN}
dodoc TODO README.md
+
+   insinto /usr/share/${PN}
+   doins gmap.html
+   doins tools/debug.html
 }



1.2  net-wireless/dump1090/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/metadata.xml?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/metadata.xml?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/metadata.xml?r1=1.1r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/dump1090/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml8 Feb 2013 17:23:51 -   1.1
+++ metadata.xml17 Nov 2014 18:34:17 -  1.2
@@ -1,6 +1,7 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
+herdradio/herd
 maintainer
 emailx...@gentoo.org/email
 nameMichael Weber/name



1.2  net-wireless/dump1090/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/dump1090/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   8 Feb 2013 17:23:51 -   1.1
+++ ChangeLog   17 Nov 2014 18:34:17 -  1.2
@@ -1,10 +1,17 @@
 # ChangeLog for net-wireless/dump1090
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/dump1090/ChangeLog,v 1.1 
2013/02/08 17:23:51 xmw Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/dump1090/ChangeLog,v 1.2 
2014/11/17 18:34:17 zerochaos Exp $
+
+*dump1090-0.0_p20140919 (17 Nov 2014)
+
+  17 Nov 2014; Rick Farina zeroch...@gentoo.org
+  +dump1090-0.0_p20140919.ebuild, +files/gmap_usr_share_mv.patch,
+  dump1090-.ebuild, metadata.xml:
+  add in patch and files needed for web interface, add in snapshot, add radio
+  herd to maintainer
 
 *dump1090- (08 Feb 2013)
 
   08 Feb 2013; Michael Weber 

[gentoo-commits] gentoo-x86 commit in net-wireless/dump1090/files: gmap_usr_share_mv.patch

2014-11-17 Thread Richard Farina (zerochaos)
zerochaos14/11/17 18:34:17

  Added:gmap_usr_share_mv.patch
  Log:
  add in patch and files needed for web interface, add in snapshot, add radio 
herd to maintainer
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.1  net-wireless/dump1090/files/gmap_usr_share_mv.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/files/gmap_usr_share_mv.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/dump1090/files/gmap_usr_share_mv.patch?rev=1.1content-type=text/plain

Index: gmap_usr_share_mv.patch
===
diff -Naur dump1090-orig/dump1090.c dump1090/dump1090.c
--- dump1090-orig/dump1090.c2014-11-17 13:23:59.518047332 -0500
+++ dump1090/dump1090.c 2014-11-17 13:24:33.876048252 -0500
@@ -2233,8 +2233,8 @@
 struct stat sbuf;
 int fd = -1;
 
-if (stat(gmap.html,sbuf) != -1 
-(fd = open(gmap.html,O_RDONLY)) != -1)
+if (stat(/usr/share/dump1090/gmap.html,sbuf) != -1 
+(fd = open(/usr/share/dump1090/gmap.html,O_RDONLY)) != -1)
 {
 content = malloc(sbuf.st_size);
 if (read(fd,content,sbuf.st_size) == -1) {






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/qa/treecleaners: maintainer-needed.xml

2014-11-17 Thread Markos Chandras (hwoarang)
hwoarang14/11/17 19:02:05

  Modified: maintainer-needed.xml
  Log:
  Automated update of maintainer-needed package list

Revision  ChangesPath
1.455xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml?rev=1.455view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml?rev=1.455content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml?r1=1.454r2=1.455

Index: maintainer-needed.xml
===
RCS file: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml,v
retrieving revision 1.454
retrieving revision 1.455
diff -u -r1.454 -r1.455
--- maintainer-needed.xml   14 Nov 2014 18:16:47 -  1.454
+++ maintainer-needed.xml   17 Nov 2014 19:02:05 -  1.455
@@ -1,6 +1,6 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE guide SYSTEM /dtd/guide.dtd
-!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml,v 
1.454 2014/11/14 18:16:47 hwoarang Exp $ --
+!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/qa/treecleaners/maintainer-needed.xml,v 
1.455 2014/11/17 19:02:05 hwoarang Exp $ --
 
 
 
@@ -23,7 +23,7 @@
   license/
 
   version1.2/version
-  date2014-11-14/date
+  date2014-11-17/date
   chapter
   titleMaintainer-Needed packages/title
   section
@@ -38,7 +38,7 @@
 section
 titlePackage List/title
 body
-pThe following 1171 packages are marked as maintainer-needed
+pThe following 1170 packages are marked as maintainer-needed
 /p
 table
 trthPackage Name/ththDescription/ththBugs/th/tr
@@ -1851,9 +1851,6 @@
 trtiuri 
link=http://packages.gentoo.org/package/dev-util/nsis;dev-util/nsis/uri/ti
 tiNullsoft Scriptable Install System/ti
 tiuri 
link=https://bugs.gentoo.org/buglist.cgi?quicksearch=dev-util/nsis;Open 
Bugs/uri/ti/tr
-trtiuri 
link=http://packages.gentoo.org/package/dev-util/oprofile;dev-util/oprofile/uri/ti
-tiA transparent low-overhead system-wide profiler/ti
-tiuri 
link=https://bugs.gentoo.org/buglist.cgi?quicksearch=dev-util/oprofile;Open 
Bugs/uri/ti/tr
 trtiuri 
link=http://packages.gentoo.org/package/dev-util/osdt;dev-util/osdt/uri/ti
 titools for Open Source software distribution/ti
 tiuri 
link=https://bugs.gentoo.org/buglist.cgi?quicksearch=dev-util/osdt;Open 
Bugs/uri/ti/tr






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

2014-11-17 Thread Markos Chandras (hwoarang)
hwoarang14/11/17 19:08:36

  Modified: buildbot-.ebuild ChangeLog
  Log:
  Do not try to enter the master directory on pkg_postinst.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  ChangesPath
1.9  dev-util/buildbot/buildbot-.ebuild

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

Index: buildbot-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- buildbot-.ebuild9 Nov 2014 10:12:20 -   1.8
+++ buildbot-.ebuild17 Nov 2014 19:08:36 -  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-util/buildbot/buildbot-.ebuild,v 
1.8 2014/11/09 10:12:20 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-.ebuild,v 
1.9 2014/11/17 19:08:36 hwoarang Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -96,7 +96,6 @@
 }
 
 pkg_postinst() {
-   [[ ${PV} =  ]]  cd master/
readme.gentoo_print_elog
elog
elog Upstream recommends the following when upgrading:



1.160dev-util/buildbot/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog   9 Nov 2014 10:12:20 -   1.159
+++ ChangeLog   17 Nov 2014 19:08:36 -  1.160
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/buildbot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.159 
2014/11/09 10:12:20 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/ChangeLog,v 1.160 
2014/11/17 19:08:36 hwoarang Exp $
+
+  17 Nov 2014; Markos Chandras hwoar...@gentoo.org buildbot-.ebuild:
+  Do not try to enter the master directory on pkg_postinst.
 
   09 Nov 2014; Markos Chandras hwoar...@gentoo.org buildbot-0.8.9-r1.ebuild,
   buildbot-.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/libcgroup: libcgroup-0.41.ebuild ChangeLog

2014-11-17 Thread Markos Chandras (hwoarang)
hwoarang14/11/17 19:22:03

  Modified: ChangeLog
  Added:libcgroup-0.41.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  ChangesPath
1.16 dev-libs/libcgroup/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   25 May 2013 08:50:55 -  1.15
+++ ChangeLog   17 Nov 2014 19:22:03 -  1.16
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libcgroup
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v 1.15 
2013/05/25 08:50:55 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v 1.16 
2014/11/17 19:22:03 hwoarang Exp $
+
+*libcgroup-0.41 (17 Nov 2014)
+
+  17 Nov 2014; Markos Chandras hwoar...@gentoo.org +libcgroup-0.41.ebuild:
+  Version bump
 
   25 May 2013; Agostino Sarubbo a...@gentoo.org libcgroup-0.39_rc1-r1.ebuild:
   Add ~ppc64, wrt bug #414531



1.1  dev-libs/libcgroup/libcgroup-0.41.ebuild

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

Index: libcgroup-0.41.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/libcgroup-0.41.ebuild,v 
1.1 2014/11/17 19:22:03 hwoarang Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=1

inherit eutils linux-info pam autotools-utils versionator

MY_P=${PN}-$(replace_version_separator 2 .)

DESCRIPTION=Tools and libraries to configure and manage kernel control groups
HOMEPAGE=http://libcg.sourceforge.net/;
SRC_URI=mirror://sourceforge/project/libcg/${PN}/v0.39.rc/${MY_P}.tar.bz2

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
IUSE=+daemon debug pam static-libs +tools debug

RDEPEND=pam? ( virtual/pam )

DEPEND=
${RDEPEND}
sys-devel/bison
sys-devel/flex

REQUIRED_USE=daemon? ( tools )

S=${WORKDIR}/${MY_P}

DOCS=(README_daemon README README_systemd INSTALL)
pkg_setup() {
local CONFIG_CHECK=~CGROUPS
if use daemon; then
CONFIG_CHECK=${CONFIG_CHECK} ~CONNECTOR ~PROC_EVENTS
fi
linux-info_pkg_setup
}

src_prepare() {

# Change rules file location
sed -e 's:/etc/cgrules.conf:/etc/cgroup/cgrules.conf:' \
-i src/libcgroup-internal.h || die sed failed
sed -e 's:\(pam_cgroup_la_LDFLAGS.*\):\1\ -avoid-version:' \
-i src/pam/Makefile.am || die sed failed
sed -e 's#/var/run#/run#g' -i configure.in || die sed failed

autotools-utils_src_prepare
}

src_configure() {
local my_conf

if use pam; then
my_conf= --enable-pam-module-dir=$(getpam_mod_dir) 
fi

local myeconfargs=(
$(use_enable daemon)
$(use_enable debug)
$(use_enable pam)
$(use_enable tools)
${my_conf}
)
autotools-utils_src_configure
}

src_test() {
# Use mount cgroup to build directory
# sandbox restricted to trivial build,
# possible kill Diego tanderbox ;)
true
}

src_install() {
autotools-utils_src_install
prune_libtool_files --all

insinto /etc/cgroup
doins samples/*.conf || die

if use tools; then
newconfd ${FILESDIR}/cgconfig.confd cgconfig || die
newinitd ${FILESDIR}/cgconfig.initd cgconfig || die
fi

if use daemon; then
newconfd ${FILESDIR}/cgred.confd cgred || die
newinitd ${FILESDIR}/cgred.initd cgred || die
fi
}

pkg_postinst() {
elog Read the kernel docs on cgroups, related schedulers, and the
elog block I/O controllers.  The Redhat Resource Management Guide
elog is also helpful.  DO NOT enable the cgroup namespace subsytem
elog if you want a custom config, rule processing, etc.  This option
elog should only be enabled for a VM environment.  The UID wildcard
elog rules seem to work only without 

[gentoo-commits] gentoo-x86 commit in dev-ruby/sprockets: sprockets-2.11.3.ebuild ChangeLog

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 19:21:24

  Modified: sprockets-2.11.3.ebuild ChangeLog
  Log:
  Don't install the bin script to avoid a file collision with later slots.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.2  dev-ruby/sprockets/sprockets-2.11.3.ebuild

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

Index: sprockets-2.11.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sprockets-2.11.3.ebuild 17 Nov 2014 15:47:30 -  1.1
+++ sprockets-2.11.3.ebuild 17 Nov 2014 19:21:24 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild,v 1.1 
2014/11/17 15:47:30 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/sprockets/sprockets-2.11.3.ebuild,v 1.2 
2014/11/17 19:21:24 graaff Exp $
 
 EAPI=5
 USE_RUBY=ruby19 ruby20 ruby21
@@ -10,6 +10,8 @@
 
 RUBY_FAKEGEM_GEMSPEC=sprockets.gemspec
 
+RUBY_FAKEGEM_BINWRAP=
+
 inherit ruby-fakegem versionator
 
 DESCRIPTION=Ruby library for compiling and serving web assets



1.31 dev-ruby/sprockets/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   17 Nov 2014 15:47:30 -  1.30
+++ ChangeLog   17 Nov 2014 19:21:24 -  1.31
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/sprockets
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v 1.30 
2014/11/17 15:47:30 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sprockets/ChangeLog,v 1.31 
2014/11/17 19:21:24 graaff Exp $
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org sprockets-2.11.3.ebuild:
+  Don't install the bin script to avoid a file collision with later slots.
 
 *sprockets-2.11.3 (17 Nov 2014)
 






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

2014-11-17 Thread Markos Chandras (hwoarang)
hwoarang14/11/17 19:35:01

  Modified: ChangeLog
  Log:
  Fix default group detection by vinz meier. Bug #510802
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  ChangesPath
1.17 dev-libs/libcgroup/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   17 Nov 2014 19:22:03 -  1.16
+++ ChangeLog   17 Nov 2014 19:35:01 -  1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libcgroup
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v 1.16 
2014/11/17 19:22:03 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v 1.17 
2014/11/17 19:35:01 hwoarang Exp $
+
+  17 Nov 2014; Markos Chandras hwoar...@gentoo.org files/cgconfig.initd:
+  Fix default group detection by vinz meier. Bug #510802
 
 *libcgroup-0.41 (17 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-libs/libcgroup/files: cgconfig.initd

2014-11-17 Thread Markos Chandras (hwoarang)
hwoarang14/11/17 19:35:01

  Modified: cgconfig.initd
  Log:
  Fix default group detection by vinz meier. Bug #510802
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  ChangesPath
1.3  dev-libs/libcgroup/files/cgconfig.initd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcgroup/files/cgconfig.initd?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcgroup/files/cgconfig.initd?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcgroup/files/cgconfig.initd?r1=1.2r2=1.3

Index: cgconfig.initd
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/files/cgconfig.initd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cgconfig.initd  3 Jan 2013 20:34:21 -   1.2
+++ cgconfig.initd  17 Nov 2014 19:35:01 -  1.3
@@ -72,7 +72,7 @@
local default_cgroup
if [[ -f ${RULES_FILE} ]]; then
local user controller
-   read user controller default_cgroup  $(grep -m1 ^\* 
${RULES_FILE})
+   read user controller default_cgroup  $(grep -m1 '^\*\s' 
${RULES_FILE})
if [[ $default_cgroup == * ]]; then
ewarn ${RULES_FILE} incorrect
ewarn Overriding it






[gentoo-commits] gentoo-x86 commit in app-emulation/libvirt: libvirt-9999.ebuild libvirt-1.2.9.1.ebuild libvirt-1.2.10.ebuild ChangeLog

2014-11-17 Thread Matthias Maier (tamiko)
tamiko  14/11/17 20:02:58

  Modified: libvirt-.ebuild libvirt-1.2.10.ebuild ChangeLog
  Added:libvirt-1.2.9.1.ebuild
  Log:
  add stable release 1.2.9.1; ebuild cleanup
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
BD3A97A3)

Revision  ChangesPath
1.67 app-emulation/libvirt/libvirt-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-.ebuild?rev=1.67view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-.ebuild?rev=1.67content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-.ebuild?r1=1.66r2=1.67

Index: libvirt-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-.ebuild,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- libvirt-.ebuild 8 Nov 2014 18:00:44 -   1.66
+++ libvirt-.ebuild 17 Nov 2014 20:02:58 -  1.67
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-.ebuild,v 
1.66 2014/11/08 18:00:44 tamiko Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-.ebuild,v 
1.67 2014/11/17 20:02:58 tamiko Exp $
 
 EAPI=5
 
@@ -15,17 +15,22 @@
EGIT_REPO_URI=git://libvirt.org/libvirt.git
SRC_URI=
KEYWORDS=
+   SLOT=0/${PV}
 else
-   SRC_URI=http://libvirt.org/sources/${MY_P}.tar.gz
-   ftp://libvirt.org/libvirt/${MY_P}.tar.gz;
+   # Versions with 4 numbers are stable updates:
+   if [[ ${PV} =~ ^[0-9]+(\.[0-9]+){3} ]]; then
+   
SRC_URI=http://libvirt.org/sources/stable_updates/${MY_P}.tar.gz;
+   else
+   SRC_URI=http://libvirt.org/sources/${MY_P}.tar.gz;
+   fi
KEYWORDS=~amd64 ~x86
+   SLOT=0
 fi
 S=${WORKDIR}/${P%_rc*}
 
 DESCRIPTION=C toolkit to manipulate virtual machines
 HOMEPAGE=http://www.libvirt.org/;
 LICENSE=LGPL-2.1
-SLOT=0
 IUSE=audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc +macvtap nfs \
nls numa openvz parted pcap phyp policykit +qemu rbd sasl \
selinux +udev uml +vepa virtualbox virt-network wireshark-plugins xen \
@@ -214,7 +219,7 @@
) .git-module-status
fi
 
-   epatch ${FILESDIR}/libvirt-1.2.9-do_not_use_sysconf.patch
+   epatch ${FILESDIR}/${PN}-1.2.9-do_not_use_sysconf.patch
 
epatch_user
 



1.2  app-emulation/libvirt/libvirt-1.2.10.ebuild

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

Index: libvirt-1.2.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libvirt-1.2.10.ebuild   6 Nov 2014 22:36:08 -   1.1
+++ libvirt-1.2.10.ebuild   17 Nov 2014 20:02:58 -  1.2
@@ -1,10 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.10.ebuild,v 1.1 
2014/11/06 22:36:08 tamiko Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.10.ebuild,v 1.2 
2014/11/17 20:02:58 tamiko Exp $
 
 EAPI=5
 
-#BACKPORTS=062ad8b2
 AUTOTOOLIZE=yes
 
 MY_P=${P/_rc/-rc}
@@ -12,24 +11,26 @@
 inherit eutils user autotools linux-info systemd readme.gentoo
 
 if [[ ${PV} = ** ]]; then
-   inherit git-2
+   inherit git-r3
EGIT_REPO_URI=git://libvirt.org/libvirt.git
-   AUTOTOOLIZE=yes
SRC_URI=
KEYWORDS=
+   SLOT=0/${PV}
 else
-   SRC_URI=http://libvirt.org/sources/${MY_P}.tar.gz
-   ftp://libvirt.org/libvirt/${MY_P}.tar.gz
-   ${BACKPORTS:+
-   
http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz};
+   # Versions with 4 numbers are stable updates:
+   if [[ ${PV} =~ ^[0-9]+(\.[0-9]+){3} ]]; then
+   
SRC_URI=http://libvirt.org/sources/stable_updates/${MY_P}.tar.gz;
+   else
+   SRC_URI=http://libvirt.org/sources/${MY_P}.tar.gz;
+   fi
KEYWORDS=~amd64 ~x86
+   SLOT=0
 fi
 S=${WORKDIR}/${P%_rc*}
 
 DESCRIPTION=C toolkit to manipulate virtual machines
 HOMEPAGE=http://www.libvirt.org/;
 LICENSE=LGPL-2.1
-SLOT=0/${PV}
 IUSE=audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc 

[gentoo-commits] gentoo-x86 commit in dev-ruby/activesupport: ChangeLog activesupport-4.1.8.ebuild activesupport-4.0.12.ebuild activesupport-3.2.21.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:12:25

  Modified: ChangeLog
  Added:activesupport-4.1.8.ebuild
activesupport-4.0.12.ebuild
activesupport-3.2.21.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.273dev-ruby/activesupport/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -r1.272 -r1.273
--- ChangeLog   7 Nov 2014 10:15:46 -   1.272
+++ ChangeLog   17 Nov 2014 20:12:24 -  1.273
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/activesupport
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.272 
2014/11/07 10:15:46 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.273 
2014/11/17 20:12:24 graaff Exp $
+
+*activesupport-4.1.8 (17 Nov 2014)
+*activesupport-4.0.12 (17 Nov 2014)
+*activesupport-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +activesupport-3.2.21.ebuild,
+  +activesupport-4.0.12.ebuild, +activesupport-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -activesupport-3.2.19.ebuild,
   -activesupport-4.0.9.ebuild, -activesupport-4.0.10.ebuild,



1.1  dev-ruby/activesupport/activesupport-4.1.8.ebuild

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

Index: activesupport-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-4.1.8.ebuild,v 1.1 
2014/11/17 20:12:24 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=

RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=activesupport.gemspec

RUBY_FAKEGEM_BINWRAP=

inherit ruby-fakegem versionator

DESCRIPTION=Utility Classes and Extension to the Standard Library
HOMEPAGE=http://rubyforge.org/projects/activesupport/;
SRC_URI=https://github.com/rails/rails/archive/v${PV}.tar.gz - 
rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
IUSE=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend 
=dev-ruby/i18n-0.6.9:0.6
=dev-ruby/json-1.7.7:0
=dev-ruby/tzinfo-1.1:1
=dev-ruby/minitest-5.1:5
=dev-ruby/thread_safe-0.1:0

# memcache-client, nokogiri, and builder are not strictly
# needed, but there are tests using this code.
ruby_add_bdepend test? (
=dev-ruby/dalli-2.2.1
=dev-ruby/nokogiri-1.4.5
=dev-ruby/builder-3.1.0
=dev-ruby/libxml-2.0.0
)

all_ruby_prepare() {
# Set the secure permissions that tests expect.
chmod 0755 ${HOME} || die Failed to fix permissions on home

# Set test environment to our hand.
#   rm ${S}/../Gemfile || die Unable to remove Gemfile
sed -i -e '/load_paths/d' test/abstract_unit.rb || die Unable to 
remove load paths

# Avoid test that seems to be broken by lack of DST.
sed -i -e '369 s:^:#:' test/core_ext/string_ext_test.rb || die

# Avoid test that fails with Minitest 5.4 since that already defines
# a string E in its TestCase.
rm test/core_ext/marshal_test.rb || die
sed -i -e '/test_const_missing_in_anonymous_modules/askip gentoo 
minitest' test/dependencies_test.rb || die
}



1.1  dev-ruby/activesupport/activesupport-4.0.12.ebuild

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

Index: activesupport-4.0.12.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-4.0.12.ebuild,v 
1.1 

[gentoo-commits] gentoo-x86 commit in dev-python/libvirt-python: libvirt-python-1.2.10.ebuild libvirt-python-9999.ebuild ChangeLog

2014-11-17 Thread Matthias Maier (tamiko)
tamiko  14/11/17 20:12:56

  Modified: libvirt-python-1.2.10.ebuild
libvirt-python-.ebuild ChangeLog
  Log:
  ebuild maintenance
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
BD3A97A3)

Revision  ChangesPath
1.2  dev-python/libvirt-python/libvirt-python-1.2.10.ebuild

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

Index: libvirt-python-1.2.10.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libvirt-python-1.2.10.ebuild6 Nov 2014 22:49:45 -   1.1
+++ libvirt-python-1.2.10.ebuild17 Nov 2014 20:12:56 -  1.2
@@ -1,26 +1,32 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.10.ebuild,v
 1.1 2014/11/06 22:49:45 tamiko Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.10.ebuild,v
 1.2 2014/11/17 20:12:56 tamiko Exp $
 
 EAPI=5
 
-#BACKPORTS=062ad8b2
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+AUTOTOOLIZE=yes
 
 MY_P=${P/_rc/-rc}
 
-inherit distutils-r1
+inherit eutils distutils-r1
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI=git://libvirt.org/libvirt-python.git
+   SRC_URI=
+   KEYWORDS=
+else
+   SRC_URI=http://libvirt.org/sources/python/${MY_P}.tar.gz;
+   KEYWORDS=~amd64 ~x86
+fi
+S=${WORKDIR}/${P%_rc*}
 
 DESCRIPTION=libvirt Python bindings
 HOMEPAGE=http://www.libvirt.org;
-SRC_URI=http://libvirt.org/sources/python/${MY_P}.tar.gz
-   ${BACKPORTS:+
-   
http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz};
-
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~amd64 ~x86
 IUSE=test
 
 RDEPEND==app-emulation/libvirt-0.9.6:=[-python(-)]
@@ -28,16 +34,6 @@
virtual/pkgconfig
test? ( dev-python/lxml )
 
-S=${WORKDIR}/${P%_rc*}
-
-src_prepare() {
-   [[ -n ${BACKPORTS} ]]  \
-   EPATCH_FORCE=yes EPATCH_SUFFIX=patch 
EPATCH_SOURCE=${S}/patches \
-   epatch
-
-   distutils-r1_src_prepare
-}
-
 python_test() {
esetup.py test
 }



1.2  dev-python/libvirt-python/libvirt-python-.ebuild

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

Index: libvirt-python-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libvirt-python-.ebuild  8 Nov 2014 17:46:15 -   1.1
+++ libvirt-python-.ebuild  17 Nov 2014 20:12:56 -  1.2
@@ -1,19 +1,20 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-.ebuild,v 
1.1 2014/11/08 17:46:15 tamiko Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-.ebuild,v 
1.2 2014/11/17 20:12:56 tamiko Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
+
+AUTOTOOLIZE=yes
 
 MY_P=${P/_rc/-rc}
 
-inherit distutils-r1
+inherit eutils distutils-r1
 
 if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI=git://libvirt.org/libvirt-python.git
-   AUTOTOOLIZE=yes
SRC_URI=
KEYWORDS=
 else



1.21 dev-python/libvirt-python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/libvirt-python/ChangeLog,v
retrieving revision 1.20
retrieving 

[gentoo-commits] gentoo-x86 commit in dev-ruby/activemodel: activemodel-4.0.12.ebuild ChangeLog activemodel-4.1.8.ebuild activemodel-3.2.21.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:17:36

  Modified: ChangeLog
  Added:activemodel-4.0.12.ebuild activemodel-4.1.8.ebuild
activemodel-3.2.21.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.95 dev-ruby/activemodel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog   7 Nov 2014 10:15:27 -   1.94
+++ ChangeLog   17 Nov 2014 20:17:36 -  1.95
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/activemodel
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v 1.94 
2014/11/07 10:15:27 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/ChangeLog,v 1.95 
2014/11/17 20:17:36 graaff Exp $
+
+*activemodel-4.1.8 (17 Nov 2014)
+*activemodel-4.0.12 (17 Nov 2014)
+*activemodel-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +activemodel-3.2.21.ebuild,
+  +activemodel-4.0.12.ebuild, +activemodel-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -activemodel-3.2.19.ebuild,
   -activemodel-4.0.9.ebuild, -activemodel-4.0.10.ebuild,



1.1  dev-ruby/activemodel/activemodel-4.0.12.ebuild

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

Index: activemodel-4.0.12.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-4.0.12.ebuild,v 1.1 
2014/11/17 20:17:36 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_DOCDIR=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=activemodel.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=A toolkit for building modeling frameworks like Active Record and 
Active Resource
HOMEPAGE=http://github.com/rails/rails;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
IUSE=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend 
~dev-ruby/activesupport-${PV}
=dev-ruby/builder-3.1.0:3.1
=dev-ruby/bcrypt-ruby-3.1.7

ruby_add_bdepend 
test? (
dev-ruby/bundler
=dev-ruby/railties-4.0.0
dev-ruby/test-unit:2
=dev-ruby/mocha-0.13.0:0.13
)

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\)/d
 ../Gemfile || die
sed -i -e '/rack-ssl/d' -e 's/~ 3.4/= 3.4/' 
../railties/railties.gemspec || die

# Fix bcrypt dependency since bcrypt uses semantic versioning.
sed -i -e '/bcrypt-ruby/ s/3.0.0/3.0/' 
lib/active_model/secure_password.rb || die
}



1.1  dev-ruby/activemodel/activemodel-4.1.8.ebuild

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

Index: activemodel-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-4.1.8.ebuild,v 1.1 
2014/11/17 20:17:36 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_DOCDIR=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=activemodel.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=A toolkit for building modeling frameworks like Active Record and 
Active Resource
HOMEPAGE=http://github.com/rails/rails;

[gentoo-commits] gentoo-x86 commit in dev-ruby/activeresource: ChangeLog activeresource-3.2.21.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:18:17

  Modified: ChangeLog
  Added:activeresource-3.2.21.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.179dev-ruby/activeresource/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog   7 Nov 2014 10:15:12 -   1.178
+++ ChangeLog   17 Nov 2014 20:18:17 -  1.179
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/activeresource
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v 1.178 
2014/11/07 10:15:12 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/ChangeLog,v 1.179 
2014/11/17 20:18:17 graaff Exp $
+
+*activeresource-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org
+  +activeresource-3.2.21.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org
   -activeresource-3.2.19.ebuild:



1.1  dev-ruby/activeresource/activeresource-3.2.21.ebuild

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

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

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_DOCDIR=doc
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=activeresource.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Think Active Record for web resources
HOMEPAGE=https://github.com/rails/rails;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
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=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend ~dev-ruby/activesupport-${PV}
dev-ruby/builder:3
ruby_add_bdepend 
test? (
dev-ruby/test-unit:2
=dev-ruby/mocha-0.13.0:0.13
)

all_ruby_prepare() {
# Set test environment to our hand.
rm ${S}/../Gemfile || die Unable to remove Gemfile
sed -i -e '/load_paths/d' test/abstract_unit.rb || die Unable to 
remove load paths

# Make sure we use the test-unit gem since ruby18 does not provide
# all the test-unit features needed.
sed -i -e '1igem test-unit' test/abstract_unit.rb || die
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionview: ChangeLog actionview-4.1.8.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:18:56

  Modified: ChangeLog
  Added:actionview-4.1.8.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.13 dev-ruby/actionview/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   7 Nov 2014 10:14:54 -   1.12
+++ ChangeLog   17 Nov 2014 20:18:56 -  1.13
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/actionview
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v 1.12 
2014/11/07 10:14:54 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionview/ChangeLog,v 1.13 
2014/11/17 20:18:56 graaff Exp $
+
+*actionview-4.1.8 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +actionview-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -actionview-4.1.5.ebuild,
   -actionview-4.1.6.ebuild:



1.1  dev-ruby/actionview/actionview-4.1.8.ebuild

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

Index: actionview-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionview/actionview-4.1.8.ebuild,v 1.1 
2014/11/17 20:18:56 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_DOCDIR=doc
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Simple, battle-tested conventions and helpers for building web 
pages
HOMEPAGE=https://github.com/rails/rails/;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~ppc ~ppc64
IUSE=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend 
~dev-ruby/activesupport-${PV}
=dev-ruby/builder-3.1 =dev-ruby/builder-3*
=dev-ruby/erubis-2.7.0


ruby_add_bdepend 
test? (
dev-ruby/mocha:0.14
~dev-ruby/actionpack-${PV}
~dev-ruby/activemodel-${PV}
)

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
/\(system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|minitest\)/
 s:^:#: ../Gemfile || die

}






[gentoo-commits] gentoo-x86 commit in dev-ruby/actionpack: ChangeLog actionpack-3.2.21.ebuild actionpack-4.1.8.ebuild actionpack-4.0.12.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:19:20

  Modified: ChangeLog
  Added:actionpack-3.2.21.ebuild actionpack-4.1.8.ebuild
actionpack-4.0.12.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.295dev-ruby/actionpack/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -r1.294 -r1.295
--- ChangeLog   7 Nov 2014 10:14:40 -   1.294
+++ ChangeLog   17 Nov 2014 20:19:20 -  1.295
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/actionpack
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.294 
2014/11/07 10:14:40 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.295 
2014/11/17 20:19:20 graaff Exp $
+
+*actionpack-4.1.8 (17 Nov 2014)
+*actionpack-4.0.12 (17 Nov 2014)
+*actionpack-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +actionpack-3.2.21.ebuild,
+  +actionpack-4.0.12.ebuild, +actionpack-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -actionpack-3.2.19.ebuild,
   -actionpack-4.0.9.ebuild, -actionpack-4.0.10.ebuild,



1.1  dev-ruby/actionpack/actionpack-3.2.21.ebuild

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

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

EAPI=5

USE_RUBY=ruby19 ruby20

# The default test task tries to test activerecord with SQLite as well.
RUBY_FAKEGEM_TASK_TEST=test_action_pack

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_DOCDIR=doc
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=actionpack.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Eases web-request routing, handling, and response
HOMEPAGE=https://github.com/rails/rails;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
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=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend 
~dev-ruby/activemodel-${PV}
~dev-ruby/activesupport-${PV}
=dev-ruby/rack-cache-1.2
=dev-ruby/builder-3.0.0:3
=dev-ruby/rack-1.4.5:1.4
=dev-ruby/rack-test-0.6.1:0.6
=dev-ruby/journey-1.0.4:1.0
=dev-ruby/sprockets-2.2.1:2.2
=dev-ruby/erubis-2.7.0

ruby_add_bdepend 
test? (
dev-ruby/mocha:0.13
dev-ruby/bundler
~dev-ruby/activerecord-${PV}
~dev-ruby/actionmailer-${PV}
=dev-ruby/tzinfo-0.3.29:0
=dev-ruby/uglifier-1.0.3
)

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
/\(system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|nokogiri\)/d
 ../Gemfile || die

sed -i -e '/rack-ssl/d' -e 's/~ 3.4/= 3.4/' 
../railties/railties.gemspec || die
sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die

sed -i -e '/bcrypt/ s/3.0.0/3.0/' ../Gemfile || die

# Avoid fragile tests depending on hash ordering
sed -i -e '/cookie_3=chocolate/ s:^:#:' 
test/controller/integration_test.rb || die
sed -i -e '/test_to_s/,/end/ s:^:#:' 
test/template/html-scanner/tag_node_test.rb || die
sed -i -e '/name:david/ s:^:#:' 
test/controller/mime_responds_test.rb || die
sed -i -e '/test_option_html_attributes_with_multiple_element_hash/, / 
end/ s:^:#:' test/template/form_options_helper_test.rb || die
sed -i -e '/test_option_html_attributes_with_multiple_hashes/, / end/ 
s:^:#:' test/template/form_options_helper_test.rb || die

   

[gentoo-commits] gentoo-x86 commit in dev-ruby/actionmailer: actionmailer-3.2.21.ebuild ChangeLog actionmailer-4.1.8.ebuild actionmailer-4.0.12.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:19:39

  Modified: ChangeLog
  Added:actionmailer-3.2.21.ebuild
actionmailer-4.1.8.ebuild
actionmailer-4.0.12.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.276dev-ruby/actionmailer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v
retrieving revision 1.275
retrieving revision 1.276
diff -u -r1.275 -r1.276
--- ChangeLog   7 Nov 2014 10:14:20 -   1.275
+++ ChangeLog   17 Nov 2014 20:19:39 -  1.276
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/actionmailer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.275 
2014/11/07 10:14:20 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.276 
2014/11/17 20:19:39 graaff Exp $
+
+*actionmailer-4.1.8 (17 Nov 2014)
+*actionmailer-4.0.12 (17 Nov 2014)
+*actionmailer-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +actionmailer-3.2.21.ebuild,
+  +actionmailer-4.0.12.ebuild, +actionmailer-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -actionmailer-3.2.19.ebuild,
   -actionmailer-4.0.9.ebuild, -actionmailer-4.0.10.ebuild,



1.1  dev-ruby/actionmailer/actionmailer-3.2.21.ebuild

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

Index: actionmailer-3.2.21.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-3.2.21.ebuild,v 1.1 
2014/11/17 20:19:39 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=actionmailer.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Framework for designing email-service layers
HOMEPAGE=https://github.com/rails/rails;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
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=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend ~dev-ruby/actionpack-${PV}
=dev-ruby/mail-2.5.4:2.5
ruby_add_bdepend test? (
dev-ruby/bundler
dev-ruby/mocha:0.13
)

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
/\(system_timer\|sdoc\|w3c_validators\|pg\|mysql\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|nokogiri\|bcrypt-ruby\|rdoc\)/d
 ../Gemfile || die
sed -i -e '/rack-ssl/d' -e 's/~ 3.4/= 3.4/' 
../railties/railties.gemspec || die
}



1.1  dev-ruby/actionmailer/actionmailer-4.1.8.ebuild

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

Index: actionmailer-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-4.1.8.ebuild,v 1.1 
2014/11/17 20:19:39 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=actionmailer.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Framework for designing email-service layers
HOMEPAGE=https://github.com/rails/rails;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~ppc ~ppc64
IUSE=

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend ~dev-ruby/actionpack-${PV}
=dev-ruby/mail-2.5.4:2.5
ruby_add_bdepend test? (
 

[gentoo-commits] gentoo-x86 commit in dev-ruby/railties: railties-4.1.8.ebuild railties-4.0.12.ebuild ChangeLog railties-3.2.21.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:20:24

  Modified: ChangeLog
  Added:railties-4.1.8.ebuild railties-4.0.12.ebuild
railties-3.2.21.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.93 dev-ruby/railties/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog   7 Nov 2014 10:13:15 -   1.92
+++ ChangeLog   17 Nov 2014 20:20:24 -  1.93
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/railties
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v 1.92 
2014/11/07 10:13:15 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/ChangeLog,v 1.93 
2014/11/17 20:20:24 graaff Exp $
+
+*railties-4.1.8 (17 Nov 2014)
+*railties-4.0.12 (17 Nov 2014)
+*railties-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +railties-3.2.21.ebuild,
+  +railties-4.0.12.ebuild, +railties-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -railties-3.2.19.ebuild,
   -railties-4.0.9.ebuild, -railties-4.0.10.ebuild, -railties-4.1.5.ebuild,



1.1  dev-ruby/railties/railties-4.1.8.ebuild

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

Index: railties-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-4.1.8.ebuild,v 
1.1 2014/11/17 20:20:24 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_TEST=test:regular
RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=railties.gemspec

RUBY_FAKEGEM_BINWRAP=

inherit ruby-fakegem versionator

DESCRIPTION=Tools for creating, working with, and running Rails applications
HOMEPAGE=http://github.com/rails/rails;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~ppc ~ppc64
IUSE=

RUBY_S=rails-${PV}/${PN}

# The test suite has many failures, most likely due to a mismatch in
# exact dependencies or environment specifics. Needs further
# investigation.
RESTRICT=test

RDEPEND+==app-admin/eselect-rails-0.19

ruby_add_rdepend 
~dev-ruby/activesupport-${PV}
~dev-ruby/actionpack-${PV}
=dev-ruby/thor-0.18.1
=dev-ruby/rake-0.8.7

ruby_add_bdepend 
test? (
~dev-ruby/actionview-${PV}
dev-ruby/mocha:0.13
)

all_ruby_prepare() {
rm ${S}/../Gemfile || die Unable to remove Gemfile
sed -i -e '/load_paths/d' test/abstract_unit.rb || die Unable to 
remove load paths
sed -i -e '1igem minitest, ~4.0' test/abstract_unit.rb || die

# Also allow rdoc 4.x
sed -i -e 's/~ 3.4/= 3.4/' ${RUBY_FAKEGEM_GEMSPEC} || die
}

all_ruby_install() {
all_fakegem_install

ruby_fakegem_binwrapper rails rails-${PV}
}

pkg_postinst() {
elog To select between slots of rails, use:
elog \teselect rails

eselect rails update
}

pkg_postrm() {
eselect rails update
}



1.1  dev-ruby/railties/railties-4.0.12.ebuild

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

Index: railties-4.0.12.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/railties/railties-4.0.12.ebuild,v 
1.1 2014/11/17 20:20:24 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_TEST=test:regular
RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=railties.gemspec

RUBY_FAKEGEM_BINWRAP=

inherit ruby-fakegem versionator

DESCRIPTION=Tools for creating, 

[gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: activerecord-4.1.8.ebuild activerecord-4.0.12.ebuild ChangeLog activerecord-3.2.21.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:20:00

  Modified: ChangeLog
  Added:activerecord-4.1.8.ebuild
activerecord-4.0.12.ebuild
activerecord-3.2.21.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.282dev-ruby/activerecord/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v
retrieving revision 1.281
retrieving revision 1.282
diff -u -r1.281 -r1.282
--- ChangeLog   7 Nov 2014 10:14:03 -   1.281
+++ ChangeLog   17 Nov 2014 20:20:00 -  1.282
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/activerecord
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.281 
2014/11/07 10:14:03 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.282 
2014/11/17 20:20:00 graaff Exp $
+
+*activerecord-4.1.8 (17 Nov 2014)
+*activerecord-4.0.12 (17 Nov 2014)
+*activerecord-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +activerecord-3.2.21.ebuild,
+  +activerecord-4.0.12.ebuild, +activerecord-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -activerecord-3.2.19.ebuild,
   -activerecord-4.0.9.ebuild, -activerecord-4.0.10.ebuild,



1.1  dev-ruby/activerecord/activerecord-4.1.8.ebuild

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

Index: activerecord-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-4.1.8.ebuild,v 1.1 
2014/11/17 20:20:00 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

# this is not null so that the dependencies will actually be filled
RUBY_FAKEGEM_TASK_TEST=test

RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=CHANGELOG.md README.rdoc

RUBY_FAKEGEM_GEMSPEC=activerecord.gemspec

inherit ruby-fakegem versionator

DESCRIPTION=Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM
HOMEPAGE=http://rubyforge.org/projects/activerecord/;
SRC_URI=http://github.com/rails/rails/archive/v${PV}.tar.gz - rails-${PV}.tgz

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~ppc ~ppc64
IUSE=mysql postgres sqlite3

RUBY_S=rails-${PV}/${PN}

ruby_add_rdepend ~dev-ruby/activesupport-${PV}
~dev-ruby/activemodel-${PV}
=dev-ruby/arel-5.0.0:5.0
sqlite3? ( =dev-ruby/sqlite3-1.3.6 )
mysql? ( =dev-ruby/mysql2-0.3.13:0.3 )
postgres? ( =dev-ruby/pg-0.11.0 )

ruby_add_bdepend 
test? (
dev-ruby/bundler
~dev-ruby/actionpack-${PV}
=dev-ruby/sqlite3-1.3.5
dev-ruby/mocha:0.13
dev-ruby/minitest-5.3.4:5
)

all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e 
/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|'mysql'\|journey\|ruby-prof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\|minitest\)/
 s:^:#: ../Gemfile || die
sed -i -e '/rack-ssl/d' -e 's/~ 3.4/= 3.4/' 
../railties/railties.gemspec || die
sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die

sed -i -e '/bcrypt/ s/3.0.0/3.0/' ../Gemfile || die

# Add back json in the Gemfile because we dropped some dependencies
# earlier that implicitly required it.
sed -i -e '$agem json' ../Gemfile || die

# Avoid test depending on mysql adapter which we don't support for
# this Rails version to simplify our dependencies.
rm test/cases/connection_specification/resolver_test.rb || die

# Avoid single test using mysql dependencies.
rm test/cases/invalid_connection_test.rb || die
}

each_ruby_test() {
case ${RUBY} in
*jruby)
;;
*)
if use sqlite3; then
${RUBY} -S rake 

[gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-4.1.8.ebuild rails-4.0.12.ebuild rails-3.2.21.ebuild

2014-11-17 Thread Hans de Graaff (graaff)
graaff  14/11/17 20:20:38

  Modified: ChangeLog
  Added:rails-4.1.8.ebuild rails-4.0.12.ebuild
rails-3.2.21.ebuild
  Log:
  Version bump for security bug 529635.
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.307dev-ruby/rails/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -r1.306 -r1.307
--- ChangeLog   7 Nov 2014 10:12:56 -   1.306
+++ ChangeLog   17 Nov 2014 20:20:38 -  1.307
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.306 2014/11/07 
10:12:56 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.307 2014/11/17 
20:20:38 graaff Exp $
+
+*rails-4.1.8 (17 Nov 2014)
+*rails-4.0.12 (17 Nov 2014)
+*rails-3.2.21 (17 Nov 2014)
+
+  17 Nov 2014; Hans de Graaff gra...@gentoo.org +rails-3.2.21.ebuild,
+  +rails-4.0.12.ebuild, +rails-4.1.8.ebuild:
+  Version bump for security bug 529635.
 
   07 Nov 2014; Hans de Graaff gra...@gentoo.org -rails-3.2.19.ebuild,
   -rails-4.0.9.ebuild, -rails-4.0.10.ebuild, -rails-4.1.5.ebuild,



1.1  dev-ruby/rails/rails-4.1.8.ebuild

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

Index: rails-4.1.8.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-4.1.8.ebuild,v 1.1 
2014/11/17 20:20:38 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_BINWRAP=

# The guides are now here but we'd need to rebuilt them first.
RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_TASK_TEST=

RUBY_FAKEGEM_EXTRADOC=README.md guides/CHANGELOG.md

inherit ruby-fakegem versionator

DESCRIPTION=ruby on rails is a web-application and persistance framework
HOMEPAGE=http://www.rubyonrails.org;

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm

IUSE=+asset-pipeline

ruby_add_rdepend 
~dev-ruby/actionmailer-${PV}
~dev-ruby/actionpack-${PV}
~dev-ruby/actionview-${PV}
~dev-ruby/activemodel-${PV}
~dev-ruby/activerecord-${PV}
~dev-ruby/activesupport-${PV}
~dev-ruby/railties-${PV}
=dev-ruby/bundler-1.3 =dev-ruby/bundler-1*
=dev-ruby/sprockets-rails-2*
asset-pipeline? (
dev-ruby/jquery-rails
=dev-ruby/sass-rails-4.0.3:4.0
=dev-ruby/uglifier-1.3.0
=dev-ruby/coffee-rails-4.0.0:4.0
)

# also: turbolinks, =jbuilder-1.2:1



1.1  dev-ruby/rails/rails-4.0.12.ebuild

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

Index: rails-4.0.12.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-4.0.12.ebuild,v 1.1 
2014/11/17 20:20:38 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_BINWRAP=

# The guides are now here but we'd need to rebuilt them first.
RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_TASK_TEST=

RUBY_FAKEGEM_EXTRADOC=README.md guides/CHANGELOG.md

inherit ruby-fakegem versionator

DESCRIPTION=ruby on rails is a web-application and persistance framework
HOMEPAGE=http://www.rubyonrails.org;

LICENSE=MIT
SLOT=$(get_version_component_range 1-2)
KEYWORDS=~amd64 ~arm ~x86

IUSE=+asset-pipeline

ruby_add_rdepend 
~dev-ruby/actionmailer-${PV}
~dev-ruby/actionpack-${PV}
~dev-ruby/activerecord-${PV}
~dev-ruby/activesupport-${PV}
~dev-ruby/railties-${PV}
=dev-ruby/bundler-1.3 =dev-ruby/bundler-1*
=dev-ruby/sprockets-rails-2*
asset-pipeline? (
dev-ruby/jquery-rails
=dev-ruby/sass-rails-4.0.0:4.0
=dev-ruby/uglifier-1.3.0
=dev-ruby/coffee-rails-4.0.0:4.0
   

[gentoo-commits] gentoo-x86 commit in dev-qt/qtchooser: qtchooser-0_p20140613.ebuild ChangeLog

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 20:26:38

  Modified: qtchooser-0_p20140613.ebuild ChangeLog
  Log:
  Marked ~hppa (bug #529196).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.3  dev-qt/qtchooser/qtchooser-0_p20140613.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtchooser/qtchooser-0_p20140613.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtchooser/qtchooser-0_p20140613.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtchooser/qtchooser-0_p20140613.ebuild?r1=1.2r2=1.3

Index: qtchooser-0_p20140613.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-qt/qtchooser/qtchooser-0_p20140613.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qtchooser-0_p20140613.ebuild15 Nov 2014 17:13:08 -  1.2
+++ qtchooser-0_p20140613.ebuild17 Nov 2014 20:26:38 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-qt/qtchooser/qtchooser-0_p20140613.ebuild,v 1.2 
2014/11/15 17:13:08 pesa Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-qt/qtchooser/qtchooser-0_p20140613.ebuild,v 1.3 
2014/11/17 20:26:38 jer Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=|| ( LGPL-2.1 GPL-3 )
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=~amd64 ~hppa ~x86
 IUSE=qt5 test
 
 DEPEND=qt5? ( test? (



1.3  dev-qt/qtchooser/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtchooser/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   15 Nov 2014 17:13:08 -  1.2
+++ ChangeLog   17 Nov 2014 20:26:38 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-qt/qtchooser
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtchooser/ChangeLog,v 1.2 2014/11/15 
17:13:08 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtchooser/ChangeLog,v 1.3 2014/11/17 
20:26:38 jer Exp $
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org qtchooser-0_p20140613.ebuild:
+  Marked ~hppa (bug #529196).
 
   15 Nov 2014; Davide Pesavento p...@gentoo.org qtchooser-0_p20140613.ebuild:
   Add more blockers wrt bug 529306.






[gentoo-commits] gentoo-x86 commit in www-client/opera-beta: ChangeLog opera-beta-26.0.1656.20.ebuild opera-beta-26.0.1656.8.ebuild

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 20:31:48

  Modified: ChangeLog
  Added:opera-beta-26.0.1656.20.ebuild
  Removed:  opera-beta-26.0.1656.8.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.9  www-client/opera-beta/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/opera-beta/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   11 Nov 2014 12:03:41 -  1.8
+++ ChangeLog   17 Nov 2014 20:31:48 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for www-client/opera-beta
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/opera-beta/ChangeLog,v 1.8 
2014/11/11 12:03:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/opera-beta/ChangeLog,v 1.9 
2014/11/17 20:31:48 jer Exp $
+
+*opera-beta-26.0.1656.20 (17 Nov 2014)
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org -opera-beta-26.0.1656.8.ebuild,
+  +opera-beta-26.0.1656.20.ebuild:
+  Version bump.
 
 *opera-beta-26.0.1656.17 (11 Nov 2014)
 



1.1  www-client/opera-beta/opera-beta-26.0.1656.20.ebuild

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

Index: opera-beta-26.0.1656.20.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/opera-beta/opera-beta-26.0.1656.20.ebuild,v 
1.1 2014/11/17 20:31:48 jer Exp $

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

inherit chromium multilib unpacker

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

KEYWORDS=~amd64

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


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

src_unpack() {
unpack_deb ${A}
}

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

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

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

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

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

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






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

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 20:35:22

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

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

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v
retrieving revision 1.419
retrieving revision 1.420
diff -u -r1.419 -r1.420
--- ChangeLog   15 Nov 2014 13:13:54 -  1.419
+++ ChangeLog   17 Nov 2014 20:35:22 -  1.420
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/youtube-dl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.419 
2014/11/15 13:13:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.420 
2014/11/17 20:35:22 jer Exp $
+
+*youtube-dl-2014.11.16 (17 Nov 2014)
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org -youtube-dl-2014.11.14.ebuild,
+  +youtube-dl-2014.11.16.ebuild:
+  Version bump.
 
 *youtube-dl-2014.11.15 (15 Nov 2014)
 



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

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

Index: youtube-dl-2014.11.16.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.11.16.ebuild,v 1.1 
2014/11/17 20:35:22 jer Exp $

EAPI=5

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

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

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

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


S=${WORKDIR}/${PN}

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

src_compile() {
distutils-r1_src_compile
}

src_test() {
emake test
}

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






[gentoo-commits] gentoo-x86 commit in dev-libs/libcgroup: metadata.xml ChangeLog

2014-11-17 Thread Markos Chandras (hwoarang)
hwoarang14/11/17 20:35:59

  Modified: metadata.xml ChangeLog
  Log:
  Dropping to maintainer-needed since Andreis hasn't been maintaining it for 
quite a while
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
09BF4F54C2BA7F3C!)

Revision  ChangesPath
1.5  dev-libs/libcgroup/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcgroup/metadata.xml?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcgroup/metadata.xml?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcgroup/metadata.xml?r1=1.4r2=1.5

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml3 Jan 2013 20:37:34 -   1.4
+++ metadata.xml17 Nov 2014 20:35:59 -  1.5
@@ -1,12 +1,8 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-  herddev-tools/herd
-  herdproxy-maintainers/herd
   maintainer
-   emailandreis.vinograd...@gmail.com/email
-   nameAndreis Vinogradovs/name
-   descriptionMaintainer. Assign bugs on him/description
+  emailmaintainer-nee...@gentoo.org/email
   /maintainer
   longdescription
   This package provides configuration and command-line tools, as well as a 
rules



1.18 dev-libs/libcgroup/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   17 Nov 2014 19:35:01 -  1.17
+++ ChangeLog   17 Nov 2014 20:35:59 -  1.18
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/libcgroup
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v 1.17 
2014/11/17 19:35:01 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcgroup/ChangeLog,v 1.18 
2014/11/17 20:35:59 hwoarang Exp $
+
+  17 Nov 2014; Markos Chandras hwoar...@gentoo.org metadata.xml:
+  Dropping to maintainer-needed since Andreis hasn't been maintaining it for
+  quite a while
 
   17 Nov 2014; Markos Chandras hwoar...@gentoo.org files/cgconfig.initd:
   Fix default group detection by vinz meier. Bug #510802






[gentoo-commits] gentoo-x86 commit in dev-libs/libpwquality: ChangeLog libpwquality-1.2.4.ebuild libpwquality-1.2.3.ebuild

2014-11-17 Thread Jeroen Roovers (jer)
jer 14/11/17 22:12:24

  Modified: ChangeLog libpwquality-1.2.4.ebuild
libpwquality-1.2.3.ebuild
  Log:
  Stable for HPPA (bug #527672).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.19 dev-libs/libpwquality/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpwquality/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   4 Nov 2014 20:25:46 -   1.18
+++ ChangeLog   17 Nov 2014 22:12:24 -  1.19
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/libpwquality
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpwquality/ChangeLog,v 1.18 
2014/11/04 20:25:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpwquality/ChangeLog,v 1.19 
2014/11/17 22:12:24 jer Exp $
+
+  17 Nov 2014; Jeroen Roovers j...@gentoo.org libpwquality-1.2.3.ebuild,
+  libpwquality-1.2.4.ebuild:
+  Stable for HPPA (bug #527672).
 
   04 Nov 2014; Markus Meier mae...@gentoo.org libpwquality-1.2.3.ebuild:
   arm stable, bug #527672



1.2  dev-libs/libpwquality/libpwquality-1.2.4.ebuild

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

Index: libpwquality-1.2.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/libpwquality/libpwquality-1.2.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libpwquality-1.2.4.ebuild   2 Nov 2014 10:33:01 -   1.1
+++ libpwquality-1.2.4.ebuild   17 Nov 2014 22:12:24 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libpwquality/libpwquality-1.2.4.ebuild,v 1.1 
2014/11/02 10:33:01 eva Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libpwquality/libpwquality-1.2.4.ebuild,v 1.2 
2014/11/17 22:12:24 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -13,7 +13,7 @@
 
 LICENSE=|| ( BSD GPL-2 )
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
+KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
 IUSE=pam python static-libs
 
 RDEPEND=



1.6  dev-libs/libpwquality/libpwquality-1.2.3.ebuild

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

Index: libpwquality-1.2.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/libpwquality/libpwquality-1.2.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libpwquality-1.2.3.ebuild   4 Nov 2014 20:25:46 -   1.5
+++ libpwquality-1.2.3.ebuild   17 Nov 2014 22:12:24 -  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-libs/libpwquality/libpwquality-1.2.3.ebuild,v 1.5 
2014/11/04 20:25:46 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libpwquality/libpwquality-1.2.3.ebuild,v 1.6 
2014/11/17 22:12:24 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE=|| ( BSD GPL-2 )
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86
+KEYWORDS=~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86
 IUSE=pam python static-libs
 
 RDEPEND=






[gentoo-commits] gentoo-x86 commit in dev-libs/libntru: libntru-0.3.ebuild ChangeLog

2014-11-17 Thread Julian Ospald (hasufell)
hasufell14/11/17 22:32:35

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

Revision  ChangesPath
1.2  dev-libs/libntru/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libntru/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   16 Apr 2014 22:48:09 -  1.1
+++ ChangeLog   17 Nov 2014 22:32:35 -  1.2
@@ -1,6 +1,14 @@
 # ChangeLog for dev-libs/libntru
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libntru/ChangeLog,v 1.1 2014/04/16 
22:48:09 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libntru/ChangeLog,v 1.2 2014/11/17 
22:32:35 hasufell Exp $
+
+*libntru-0.3 (17 Nov 2014)
+
+  17 Nov 2014; Julian Ospald hasuf...@gentoo.org +libntru-0.3.ebuild,
+  +files/libntru-0.3-Allow-building-and-installing-static-lib.patch,
+  +files/libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch,
+  +files/libntru-0.3-Update-VERSION-in-Makefiles.patch:
+  version bump
 
 *libntru-0.2 (16 Apr 2014)
 



1.1  dev-libs/libntru/libntru-0.3.ebuild

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

Index: libntru-0.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libntru/libntru-0.3.ebuild,v 1.1 
2014/11/17 22:32:35 hasufell Exp $

EAPI=5

inherit eutils toolchain-funcs multilib multilib-minimal

DESCRIPTION=C Implementation of NTRUEncrypt
HOMEPAGE=https://github.com/tbuktu/libntru;
SRC_URI=https://github.com/tbuktu/libntru/archive/${PV}.tar.gz - ${P}.tar.gz

LICENSE=BSD-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=examples static-libs

src_prepare() {
epatch 
${FILESDIR}/${P}-Make-the-lib-target-depend-on-the-libntru.so-target.patch \

${FILESDIR}/${P}-Allow-building-and-installing-static-lib.patch \
${FILESDIR}/${P}-Update-VERSION-in-Makefiles.patch

multilib_copy_sources

_copy_test_dir() {
cp -pr ${BUILD_DIR} ${BUILD_DIR}-test || die
}
multilib_foreach_abi _copy_test_dir
}

multilib_src_compile() {
CFLAGS=${CFLAGS} emake CC=$(tc-getCC) $(usex static-libs 
libntru.a )
}

src_test() {
_test() {
CFLAGS=${CFLAGS} emake CC=$(tc-getCC) test -j1 -C 
${BUILD_DIR}-test
}

multilib_foreach_abi _test
}

multilib_src_install() {
emake \
DESTDIR=${ED} \
INST_LIBDIR=/usr/$(get_libdir) \
INST_DOCDIR=/usr/share/doc/${PF} \
install $(usex static-libs install-static-lib )
}

multilib_src_install_all() {
einstalldocs
if use examples ; then
docinto examples
dodoc src/hybrid.c
fi
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libntru/files: libntru-0.3-Allow-building-and-installing-static-lib.patch libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch libntru-0

2014-11-17 Thread Julian Ospald (hasufell)
hasufell14/11/17 22:32:35

  Added:   

libntru-0.3-Allow-building-and-installing-static-lib.patch

libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch
libntru-0.3-Update-VERSION-in-Makefiles.patch
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.1  
dev-libs/libntru/files/libntru-0.3-Allow-building-and-installing-static-lib.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libntru/files/libntru-0.3-Allow-building-and-installing-static-lib.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libntru/files/libntru-0.3-Allow-building-and-installing-static-lib.patch?rev=1.1content-type=text/plain

Index: libntru-0.3-Allow-building-and-installing-static-lib.patch
===
From 5cb48a5a1bf43c5d4811295aa3fb25744c4c254d Mon Sep 17 00:00:00 2001
From: Julian Ospald hasuf...@hasufell.de
Date: Mon, 17 Nov 2014 23:25:31 +0100
Subject: [PATCH 3/6] Allow building and installing static lib

Refactored the install rules a bit, so that installing the static
lib optionally becomes a bit more convenient.
---
 Makefile.linux | 36 ++--
 1 file changed, 30 insertions(+), 6 deletions(-)

diff --git a/Makefile.linux b/Makefile.linux
index dbc4957..218162c 100644
--- a/Makefile.linux
+++ b/Makefile.linux
@@ -1,4 +1,5 @@
 CC?=gcc
+AR?=ar
 CFLAGS?=-g -O2
 CFLAGS+=-Wall -Wextra -Wno-unused-parameter
 LIBS+=-lrt
@@ -24,24 +25,47 @@ all: lib
 
 lib: libntru.so
 
+static-lib: libntru.a
+
 libntru.so: $(LIB_OBJS_PATHS)
$(CC) $(CFLAGS) $(CPPFLAGS) -shared -Wl,-soname,libntru.so -o 
libntru.so $(LIB_OBJS_PATHS) $(LDFLAGS) $(LIBS)
 
-install: lib
-   test -d $(DESTDIR)$(INST_PFX) || mkdir -p $(DESTDIR)$(INST_PFX)
-   test -d $(DESTDIR)$(INST_LIBDIR) || mkdir $(DESTDIR)$(INST_LIBDIR)
-   test -d $(DESTDIR)$(INST_INCLUDE) || mkdir -p 
$(DESTDIR)$(INST_INCLUDE)
-   test -d $(DESTDIR)$(INST_DOCDIR) || mkdir -p 
$(DESTDIR)$(INST_DOCDIR)
+libntru.a: $(LIB_OBJS_PATHS)
+   $(AR) cru libntru.a $(LIB_OBJS_PATHS)
+
+install: install-lib install-doc install-headers
+
+install-lib: lib
+   test -d $(DESTDIR)$(INST_LIBDIR) || mkdir -p 
$(DESTDIR)$(INST_LIBDIR)
install -m 0755 libntru.so $(DESTDIR)$(INST_LIBDIR)/libntru.so
+
+install-static-lib: static-lib
+   test -d $(DESTDIR)$(INST_LIBDIR) || mkdir -p 
$(DESTDIR)$(INST_LIBDIR)
+   install -m 0755 libntru.a $(DESTDIR)$(INST_LIBDIR)/libntru.a
+
+install-doc:
+   test -d $(DESTDIR)$(INST_DOCDIR) || mkdir -p 
$(DESTDIR)$(INST_DOCDIR)
install -m 0644 README.md $(DESTDIR)$(INST_DOCDIR)/README.md
+
+install-headers:
+   test -d $(DESTDIR)$(INST_INCLUDE) || mkdir -p 
$(DESTDIR)$(INST_INCLUDE)
for header in $(INST_HEADERS) ; do \
install -m 0644 $(SRCDIR)/$$header $(DESTDIR)$(INST_INCLUDE)/ ; 
\
done
 
-uninstall:
+uninstall: uninstall-lib uninstall-doc uninstall-headers
+
+uninstall-lib:
rm -f $(DESTDIR)$(INST_LIBDIR)/libntru.so
+
+uninstall-static-lib:
+   rm -f $(DESTDIR)$(INST_LIBDIR)/libntru.a
+
+uninstall-doc:
rm -f $(DESTDIR)$(INST_DOCDIR)/README.md
rmdir $(DESTDIR)$(INST_DOCDIR)/
+
+uninstall-headers:
for header in $(INST_HEADERS) ; do \
rm $(DESTDIR)$(INST_INCLUDE)/$$header ; \
done
-- 
2.1.3




1.1  
dev-libs/libntru/files/libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libntru/files/libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libntru/files/libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch?rev=1.1content-type=text/plain

Index: libntru-0.3-Make-the-lib-target-depend-on-the-libntru.so-target.patch
===
From 38e454b12c707a0d6870fb5541fad64ece17f78d Mon Sep 17 00:00:00 2001
From: Julian Ospald hasuf...@hasufell.de
Date: Mon, 17 Nov 2014 22:27:39 +0100
Subject: [PATCH 1/4] Make the lib target depend on the libntru.so target

Depending on the old lib target caused a rebuild of libntru.so on any
such target (e.g. installation), because lib is in .PHONY
and not an expected file name.

Fixing this helps with distro policies which require to not do
compilation processes during installation phase.
---
 Makefile.linux | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile.linux b/Makefile.linux
index b68..dbc4957 100644
--- a/Makefile.linux
+++ b/Makefile.linux
@@ -22,7 +22,9 @@ MAKEFILENAME=$(lastword $(MAKEFILE_LIST))
 
 all: lib
 
-lib: $(LIB_OBJS_PATHS)
+lib: libntru.so
+

[gentoo-commits] gentoo-x86 commit in www-servers/nginx: ChangeLog nginx-1.7.6.ebuild nginx-1.7.7.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:21:30

  Modified: ChangeLog nginx-1.7.6.ebuild nginx-1.7.7.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.399www-servers/nginx/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v
retrieving revision 1.398
retrieving revision 1.399
diff -u -r1.398 -r1.399
--- ChangeLog   3 Nov 2014 09:10:15 -   1.398
+++ ChangeLog   17 Nov 2014 23:21:30 -  1.399
@@ -1,6 +1,10 @@
 # ChangeLog for www-servers/nginx
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.398 
2014/11/03 09:10:15 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/ChangeLog,v 1.399 
2014/11/17 23:21:30 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org nginx-1.7.6.ebuild,
+  nginx-1.7.7.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
 *nginx-1.7.7 (03 Nov 2014)
 



1.7  www-servers/nginx/nginx-1.7.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/nginx-1.7.6.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/nginx-1.7.6.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/nginx/nginx-1.7.6.ebuild?r1=1.6r2=1.7

Index: nginx-1.7.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.7.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nginx-1.7.6.ebuild  3 Nov 2014 09:10:15 -   1.6
+++ nginx-1.7.6.ebuild  17 Nov 2014 23:21:30 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.7.6.ebuild,v 1.6 
2014/11/03 09:10:15 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.7.6.ebuild,v 1.7 
2014/11/17 23:21:30 dilfridge Exp $
 
 EAPI=5
 
@@ -557,7 +557,7 @@
if use nginx_modules_http_perl; then
cd ${S}/objs/src/http/modules/perl/
einstall DESTDIR=${D} INSTALLDIRS=vendor
-   fixlocalpod
+   perl_delete_localpod
fi
 
if use nginx_modules_http_cache_purge; then



1.2  www-servers/nginx/nginx-1.7.7.ebuild

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

Index: nginx-1.7.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.7.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nginx-1.7.7.ebuild  3 Nov 2014 09:10:15 -   1.1
+++ nginx-1.7.7.ebuild  17 Nov 2014 23:21:30 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.7.7.ebuild,v 1.1 
2014/11/03 09:10:15 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/nginx/nginx-1.7.7.ebuild,v 1.2 
2014/11/17 23:21:30 dilfridge Exp $
 
 EAPI=5
 
@@ -557,7 +557,7 @@
if use nginx_modules_http_perl; then
cd ${S}/objs/src/http/modules/perl/
einstall DESTDIR=${D} INSTALLDIRS=vendor
-   fixlocalpod
+   perl_delete_localpod
fi
 
if use nginx_modules_http_cache_purge; then






[gentoo-commits] gentoo-x86 commit in sci-libs/gdal: gdal-1.10.0-r1.ebuild gdal-1.11.1-r1.ebuild gdal-1.10.1.ebuild gdal-1.9.2.ebuild ChangeLog

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:22:48

  Modified: gdal-1.10.0-r1.ebuild gdal-1.11.1-r1.ebuild
gdal-1.10.1.ebuild gdal-1.9.2.ebuild ChangeLog
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.4  sci-libs/gdal/gdal-1.10.0-r1.ebuild

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

Index: gdal-1.10.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.10.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gdal-1.10.0-r1.ebuild   3 Nov 2014 13:57:38 -   1.3
+++ gdal-1.10.0-r1.ebuild   17 Nov 2014 23:22:48 -  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/sci-libs/gdal/gdal-1.10.0-r1.ebuild,v 1.3 
2014/11/03 13:57:38 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.10.0-r1.ebuild,v 1.4 
2014/11/17 23:22:48 dilfridge Exp $
 
 EAPI=5
 
@@ -269,7 +269,7 @@
popd  /dev/null
fi
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 
dodoc Doxyfile HOWTO-RELEASE NEWS
 



1.2  sci-libs/gdal/gdal-1.11.1-r1.ebuild

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

Index: gdal-1.11.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.11.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gdal-1.11.1-r1.ebuild   5 Nov 2014 15:58:23 -   1.1
+++ gdal-1.11.1-r1.ebuild   17 Nov 2014 23:22:48 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.11.1-r1.ebuild,v 1.1 
2014/11/05 15:58:23 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.11.1-r1.ebuild,v 1.2 
2014/11/17 23:22:48 dilfridge Exp $
 
 EAPI=5
 
@@ -311,7 +311,7 @@
popd  /dev/null
fi
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 
dodoc Doxyfile HOWTO-RELEASE NEWS
 



1.10 sci-libs/gdal/gdal-1.10.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.10.1.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.10.1.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.10.1.ebuild?r1=1.9r2=1.10

Index: gdal-1.10.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.10.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gdal-1.10.1.ebuild  3 Nov 2014 13:57:38 -   1.9
+++ gdal-1.10.1.ebuild  17 Nov 2014 23:22:48 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.10.1.ebuild,v 1.9 
2014/11/03 13:57:38 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.10.1.ebuild,v 1.10 
2014/11/17 23:22:48 dilfridge Exp $
 
 EAPI=5
 
@@ -309,7 +309,7 @@
popd  /dev/null
fi
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 
dodoc Doxyfile HOWTO-RELEASE NEWS
 



1.8  sci-libs/gdal/gdal-1.9.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.9.2.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.9.2.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.9.2.ebuild?r1=1.7r2=1.8

Index: gdal-1.9.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.9.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gdal-1.9.2.ebuild   3 Nov 2014 13:57:38 -   1.7
+++ gdal-1.9.2.ebuild   17 Nov 2014 

[gentoo-commits] gentoo-x86 commit in sys-fs/owfs: ChangeLog owfs-2.7_p21-r2.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:23:33

  Modified: ChangeLog owfs-2.7_p21-r2.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.25 sys-fs/owfs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/owfs/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   3 Apr 2014 18:54:30 -   1.24
+++ ChangeLog   17 Nov 2014 23:23:33 -  1.25
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/owfs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/ChangeLog,v 1.24 2014/04/03 
18:54:30 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/ChangeLog,v 1.25 2014/11/17 
23:23:33 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org
+  owfs-2.7_p21-r2.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
 *owfs-2.7_p21-r2 (03 Apr 2014)
 



1.2  sys-fs/owfs/owfs-2.7_p21-r2.ebuild

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

Index: owfs-2.7_p21-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/owfs/owfs-2.7_p21-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- owfs-2.7_p21-r2.ebuild  3 Apr 2014 18:54:30 -   1.1
+++ owfs-2.7_p21-r2.ebuild  17 Nov 2014 23:23:33 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/owfs-2.7_p21-r2.ebuild,v 1.1 
2014/04/03 18:54:30 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/owfs-2.7_p21-r2.ebuild,v 1.2 
2014/11/17 23:23:33 dilfridge Exp $
 
 EAPI=5
 
@@ -128,7 +128,7 @@
newconfd ${FILESDIR}/owfs.confd owfs
fi
fi
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 
if use python; then
pushd module/ownet/python  /dev/null






[gentoo-commits] gentoo-x86 commit in dev-libs/dbxml: dbxml-2.5.16-r2.ebuild ChangeLog

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:24:19

  Modified: dbxml-2.5.16-r2.ebuild ChangeLog
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.9  dev-libs/dbxml/dbxml-2.5.16-r2.ebuild

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

Index: dbxml-2.5.16-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dbxml-2.5.16-r2.ebuild  15 Jul 2014 09:04:09 -  1.8
+++ dbxml-2.5.16-r2.ebuild  17 Nov 2014 23:24:19 -  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-libs/dbxml/dbxml-2.5.16-r2.ebuild,v 1.8 
2014/07/15 09:04:09 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild,v 1.9 
2014/11/17 23:24:19 dilfridge Exp $
 
 EAPI=5
 PYTHON_DEPEND=python? 2
@@ -169,7 +169,7 @@
if use perl ; then
cd ${S}/src/perl
emake DESTDIR=${D} install || die emake install perl module 
failed
-   fixlocalpod
+   perl_delete_localpod
fi
 
if use examples ; then



1.20 dev-libs/dbxml/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbxml/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   15 Jul 2014 09:04:09 -  1.19
+++ ChangeLog   17 Nov 2014 23:24:19 -  1.20
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/dbxml
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbxml/ChangeLog,v 1.19 2014/07/15 
09:04:09 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbxml/ChangeLog,v 1.20 2014/11/17 
23:24:19 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org
+  dbxml-2.5.16-r2.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
   15 Jul 2014; Mikle Kolyada zlog...@gentoo.org dbxml-2.5.16-r2.ebuild:
   Bump to EAPI=5






[gentoo-commits] gentoo-x86 commit in dev-libs/stfl: ChangeLog stfl-0.22-r2.ebuild stfl-0.23.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:25:14

  Modified: ChangeLog stfl-0.22-r2.ebuild stfl-0.23.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.43 dev-libs/stfl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   9 Nov 2014 17:53:47 -   1.42
+++ ChangeLog   17 Nov 2014 23:25:14 -  1.43
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/stfl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.42 2014/11/09 
17:53:47 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.43 2014/11/17 
23:25:14 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org stfl-0.22-r2.ebuild,
+  stfl-0.23.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
 *stfl-0.22-r2 (09 Nov 2014)
 



1.2  dev-libs/stfl/stfl-0.22-r2.ebuild

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

Index: stfl-0.22-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.22-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- stfl-0.22-r2.ebuild 9 Nov 2014 17:53:47 -   1.1
+++ stfl-0.22-r2.ebuild 17 Nov 2014 23:25:14 -  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-libs/stfl/stfl-0.22-r2.ebuild,v 1.1 
2014/11/09 17:53:47 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.22-r2.ebuild,v 1.2 
2014/11/17 23:25:14 dilfridge Exp $
 
 EAPI=5
 SUPPORT_PYTHON_ABIS=1
@@ -114,7 +114,7 @@
fi
fi
 
-   fixlocalpod
+   perl_delete_localpod
 }
 
 pkg_postinst() {



1.2  dev-libs/stfl/stfl-0.23.ebuild

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

Index: stfl-0.23.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.23.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- stfl-0.23.ebuild23 Oct 2014 03:24:37 -  1.1
+++ stfl-0.23.ebuild17 Nov 2014 23:25:14 -  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-libs/stfl/stfl-0.23.ebuild,v 1.1 
2014/10/23 03:24:37 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.23.ebuild,v 1.2 
2014/11/17 23:25:14 dilfridge Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -115,5 +115,5 @@
fi
fi
 
-   fixlocalpod
+   perl_delete_localpod
 }






[gentoo-commits] gentoo-x86 commit in dev-libs/libsolv: libsolv-0.6.6.ebuild ChangeLog libsolv-0.3.0.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:26:01

  Modified: libsolv-0.6.6.ebuild ChangeLog libsolv-0.3.0.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.2  dev-libs/libsolv/libsolv-0.6.6.ebuild

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

Index: libsolv-0.6.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsolv/libsolv-0.6.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libsolv-0.6.6.ebuild9 Oct 2014 07:04:11 -   1.1
+++ libsolv-0.6.6.ebuild17 Nov 2014 23:26:00 -  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-libs/libsolv/libsolv-0.6.6.ebuild,v 1.1 
2014/10/09 07:04:11 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsolv/libsolv-0.6.6.ebuild,v 1.2 
2014/11/17 23:26:00 dilfridge Exp $
 
 EAPI=5
 
@@ -88,5 +88,5 @@
 src_install() {
cmake-utils_src_install
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 }



1.6  dev-libs/libsolv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsolv/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   9 Oct 2014 07:04:11 -   1.5
+++ ChangeLog   17 Nov 2014 23:26:00 -  1.6
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/libsolv
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsolv/ChangeLog,v 1.5 2014/10/09 
07:04:11 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsolv/ChangeLog,v 1.6 2014/11/17 
23:26:00 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org libsolv-0.3.0.ebuild,
+  libsolv-0.6.6.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
 *libsolv-0.6.6 (09 Oct 2014)
 



1.5  dev-libs/libsolv/libsolv-0.3.0.ebuild

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

Index: libsolv-0.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsolv/libsolv-0.3.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libsolv-0.3.0.ebuild24 Jul 2013 20:15:37 -  1.4
+++ libsolv-0.3.0.ebuild17 Nov 2014 23:26:00 -  1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsolv/libsolv-0.3.0.ebuild,v 1.4 
2013/07/24 20:15:37 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsolv/libsolv-0.3.0.ebuild,v 1.5 
2014/11/17 23:26:00 dilfridge Exp $
 
 EAPI=5
 
@@ -88,5 +88,5 @@
 src_install() {
cmake-utils_src_install
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 }






[gentoo-commits] gentoo-x86 commit in dev-libs/clearsilver: clearsilver-0.10.5-r2.ebuild ChangeLog

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:26:59

  Modified: clearsilver-0.10.5-r2.ebuild ChangeLog
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.2  dev-libs/clearsilver/clearsilver-0.10.5-r2.ebuild

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

Index: clearsilver-0.10.5-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.5-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clearsilver-0.10.5-r2.ebuild25 Oct 2014 22:08:39 -  1.1
+++ clearsilver-0.10.5-r2.ebuild17 Nov 2014 23:26:59 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.5-r2.ebuild,v 1.1 
2014/10/25 22:08:39 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.5-r2.ebuild,v 1.2 
2014/11/17 23:26:59 dilfridge Exp $
 
 # Please note: apache, java, mono and ruby support disabled for now.
 # Fill a bug if you need it.
@@ -71,6 +71,6 @@
default
 
if use perl ; then
-   fixlocalpod || die fixlocalpod failed
+   perl_delete_localpod || die perl_delete_localpod failed
fi
 }



1.47 dev-libs/clearsilver/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   25 Oct 2014 22:08:39 -  1.46
+++ ChangeLog   17 Nov 2014 23:26:59 -  1.47
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/clearsilver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/ChangeLog,v 1.46 
2014/10/25 22:08:39 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/ChangeLog,v 1.47 
2014/11/17 23:26:59 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org
+  clearsilver-0.10.5-r2.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
 *clearsilver-0.10.5-r2 (25 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in app-arch/rpm: rpm-4.11.0.1.ebuild rpm-4.11.2-r1.ebuild rpm-4.12.0.1.ebuild ChangeLog rpm-4.11.2.ebuild rpm-4.11.1.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:28:00

  Modified: rpm-4.11.0.1.ebuild rpm-4.11.2-r1.ebuild
rpm-4.12.0.1.ebuild ChangeLog rpm-4.11.2.ebuild
rpm-4.11.1.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.15 app-arch/rpm/rpm-4.11.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild?r1=1.14r2=1.15

Index: rpm-4.11.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- rpm-4.11.0.1.ebuild 2 Nov 2014 07:57:12 -   1.14
+++ rpm-4.11.0.1.ebuild 17 Nov 2014 23:28:00 -  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/app-arch/rpm/rpm-4.11.0.1.ebuild,v 1.14 
2014/11/02 07:57:12 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild,v 1.15 
2014/11/17 23:28:00 dilfridge Exp $
 
 EAPI=5
 
@@ -104,7 +104,7 @@
fi
 
# Fix perllocal.pod file collision
-   fixlocalpod
+   perl_delete_localpod
 }
 
 pkg_postinst() {



1.3  app-arch/rpm/rpm-4.11.2-r1.ebuild

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

Index: rpm-4.11.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rpm-4.11.2-r1.ebuild2 Nov 2014 07:57:12 -   1.2
+++ rpm-4.11.2-r1.ebuild17 Nov 2014 23:28:00 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.2-r1.ebuild,v 1.2 
2014/11/02 07:57:12 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.2-r1.ebuild,v 1.3 
2014/11/17 23:28:00 dilfridge Exp $
 
 EAPI=5
 
@@ -106,7 +106,7 @@
fi
 
# Fix perllocal.pod file collision
-   fixlocalpod
+   perl_delete_localpod
 }
 
 pkg_postinst() {



1.4  app-arch/rpm/rpm-4.12.0.1.ebuild

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

Index: rpm-4.12.0.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.12.0.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rpm-4.12.0.1.ebuild 2 Nov 2014 07:57:12 -   1.3
+++ rpm-4.12.0.1.ebuild 17 Nov 2014 23:28:00 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.12.0.1.ebuild,v 1.3 
2014/11/02 07:57:12 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.12.0.1.ebuild,v 1.4 
2014/11/17 23:28:00 dilfridge Exp $
 
 EAPI=5
 
@@ -109,7 +109,7 @@
fi
 
# Fix perllocal.pod file collision
-   fixlocalpod
+   perl_delete_localpod
 }
 
 pkg_postinst() {



1.193app-arch/rpm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/rpm/ChangeLog?rev=1.193view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/rpm/ChangeLog?rev=1.193content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/rpm/ChangeLog?r1=1.192r2=1.193

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/rpm/ChangeLog,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -r1.192 -r1.193
--- ChangeLog   2 Nov 2014 07:57:12 -   1.192
+++ ChangeLog   17 Nov 2014 23:28:00 -  1.193
@@ -1,6 +1,11 @@
 # ChangeLog for app-arch/rpm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 

[gentoo-commits] gentoo-x86 commit in app-admin/collectd: collectd-5.4.0.ebuild ChangeLog collectd-5.4.1.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:29:28

  Modified: collectd-5.4.0.ebuild ChangeLog
collectd-5.4.1.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.8  app-admin/collectd/collectd-5.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/collectd-5.4.0.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/collectd-5.4.0.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/collectd-5.4.0.ebuild?r1=1.7r2=1.8

Index: collectd-5.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/collectd/collectd-5.4.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- collectd-5.4.0.ebuild   3 Nov 2014 11:00:51 -   1.7
+++ collectd-5.4.0.ebuild   17 Nov 2014 23:29:28 -  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/app-admin/collectd/collectd-5.4.0.ebuild,v 
1.7 2014/11/03 11:00:51 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/collectd/collectd-5.4.0.ebuild,v 
1.8 2014/11/17 23:29:28 dilfridge Exp $
 
 EAPI=5
 
@@ -311,7 +311,7 @@
 src_install() {
emake DESTDIR=${D} install
 
-   fixlocalpod
+   perl_delete_localpod
 
find ${D}/usr/ -name *.la -exec rm -f {} +
 



1.66 app-admin/collectd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/collectd/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   3 Nov 2014 11:00:51 -   1.65
+++ ChangeLog   17 Nov 2014 23:29:28 -  1.66
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/collectd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/collectd/ChangeLog,v 1.65 
2014/11/03 11:00:51 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/collectd/ChangeLog,v 1.66 
2014/11/17 23:29:28 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org collectd-5.4.0.ebuild,
+  collectd-5.4.1.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
   03 Nov 2014; Aaron W. Swenson titanof...@gentoo.org collectd-5.4.0.ebuild,
   collectd-5.4.1.ebuild:



1.6  app-admin/collectd/collectd-5.4.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/collectd-5.4.1.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/collectd-5.4.1.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/collectd-5.4.1.ebuild?r1=1.5r2=1.6

Index: collectd-5.4.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/collectd/collectd-5.4.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- collectd-5.4.1.ebuild   3 Nov 2014 11:00:51 -   1.5
+++ collectd-5.4.1.ebuild   17 Nov 2014 23:29:28 -  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/app-admin/collectd/collectd-5.4.1.ebuild,v 
1.5 2014/11/03 11:00:51 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/collectd/collectd-5.4.1.ebuild,v 
1.6 2014/11/17 23:29:28 dilfridge Exp $
 
 EAPI=5
 
@@ -309,7 +309,7 @@
 src_install() {
emake DESTDIR=${D} install
 
-   fixlocalpod
+   perl_delete_localpod
 
find ${D}/usr/ -name *.la -exec rm -f {} +
 






[gentoo-commits] gentoo-x86 commit in app-emulation/libguestfs: ChangeLog libguestfs-1.24.0.ebuild libguestfs-1.26.1.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:30:21

  Modified: ChangeLog libguestfs-1.24.0.ebuild
libguestfs-1.26.1.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.37 app-emulation/libguestfs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libguestfs/ChangeLog?rev=1.37view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libguestfs/ChangeLog?rev=1.37content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libguestfs/ChangeLog?r1=1.36r2=1.37

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libguestfs/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   8 Nov 2014 18:55:30 -   1.36
+++ ChangeLog   17 Nov 2014 23:30:21 -  1.37
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/libguestfs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/libguestfs/ChangeLog,v 1.36 
2014/11/08 18:55:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libguestfs/ChangeLog,v 1.37 
2014/11/17 23:30:21 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org
+  libguestfs-1.24.0.ebuild, libguestfs-1.26.1.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
   08 Nov 2014; Mike Frysinger vap...@gentoo.org
   +files/1.26/0020_all_qemu_configure.patch:



1.3  app-emulation/libguestfs/libguestfs-1.24.0.ebuild

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

Index: libguestfs-1.24.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/libguestfs/libguestfs-1.24.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libguestfs-1.24.0.ebuild20 Jan 2014 17:22:50 -  1.2
+++ libguestfs-1.24.0.ebuild17 Nov 2014 23:30: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/app-emulation/libguestfs/libguestfs-1.24.0.ebuild,v 1.2 
2014/01/20 17:22:50 maksbotan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/libguestfs/libguestfs-1.24.0.ebuild,v 1.3 
2014/11/17 23:30:21 dilfridge Exp $
 
 EAPI=5
 
@@ -147,7 +147,7 @@
strip-linguas -i po
autotools-utils_src_install LINGUAS=${LINGUAS}
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 }
 
 pkg_postinst() {



1.2  app-emulation/libguestfs/libguestfs-1.26.1.ebuild

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

Index: libguestfs-1.26.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/libguestfs/libguestfs-1.26.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libguestfs-1.26.1.ebuild1 May 2014 19:23:28 -   1.1
+++ libguestfs-1.26.1.ebuild17 Nov 2014 23:30: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/app-emulation/libguestfs/libguestfs-1.26.1.ebuild,v 1.1 
2014/05/01 19:23:28 maksbotan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/libguestfs/libguestfs-1.26.1.ebuild,v 1.2 
2014/11/17 23:30:21 dilfridge Exp $
 
 EAPI=5
 
@@ -147,7 +147,7 @@
strip-linguas -i po
autotools-utils_src_install LINGUAS=${LINGUAS}
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 }
 
 pkg_postinst() {






[gentoo-commits] gentoo-x86 commit in net-irc/irssi: irssi-0.8.17.ebuild ChangeLog irssi-0.8.16.ebuild irssi-9999.ebuild

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:31:36

  Modified: irssi-0.8.17.ebuild ChangeLog irssi-0.8.16.ebuild
irssi-.ebuild
  Log:
  Replace fixlocalpod with perl_delete_localpod
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.3  net-irc/irssi/irssi-0.8.17.ebuild

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

Index: irssi-0.8.17.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.17.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- irssi-0.8.17.ebuild 1 Nov 2014 11:45:19 -   1.2
+++ irssi-0.8.17.ebuild 17 Nov 2014 23:31:36 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.17.ebuild,v 1.2 
2014/11/01 11:45:19 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.17.ebuild,v 1.3 
2014/11/17 23:31:36 dilfridge Exp $
 
 EAPI=5
 
@@ -57,7 +57,7 @@
docdir=${EPREFIX}/usr/share/doc/${PF} \
install
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 
prune_libtool_files --modules
 



1.208net-irc/irssi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog   2 Nov 2014 09:38:31 -   1.207
+++ ChangeLog   17 Nov 2014 23:31:36 -  1.208
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/irssi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.207 2014/11/02 
09:38:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.208 2014/11/17 
23:31:36 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org irssi-0.8.16.ebuild,
+  irssi-0.8.17.ebuild, irssi-.ebuild:
+  Replace fixlocalpod with perl_delete_localpod
 
   02 Nov 2014; Agostino Sarubbo a...@gentoo.org -irssi-0.8.15-r1.ebuild,
   -irssi-0.8.15-r2.ebuild:



1.13 net-irc/irssi/irssi-0.8.16.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irssi/irssi-0.8.16.ebuild?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irssi/irssi-0.8.16.ebuild?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irssi/irssi-0.8.16.ebuild?r1=1.12r2=1.13

Index: irssi-0.8.16.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.16.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- irssi-0.8.16.ebuild 2 Nov 2014 09:07:07 -   1.12
+++ irssi-0.8.16.ebuild 17 Nov 2014 23:31:36 -  1.13
@@ -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-irc/irssi/irssi-0.8.16.ebuild,v 1.12 
2014/11/02 09:07:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.16.ebuild,v 1.13 
2014/11/17 23:31:36 dilfridge Exp $
 
 EAPI=5
 
@@ -58,7 +58,7 @@
docdir=${EPREFIX}/usr/share/doc/${PF} \
install
 
-   use perl  fixlocalpod
+   use perl  perl_delete_localpod
 
prune_libtool_files --modules
 



1.14 net-irc/irssi/irssi-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irssi/irssi-.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irssi/irssi-.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irssi/irssi-.ebuild?r1=1.13r2=1.14

Index: irssi-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- irssi-.ebuild   1 Nov 2014 11:45:19 -   1.13
+++ irssi-.ebuild   17 Nov 2014 23:31:36 -  

[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog perl-module.eclass

2014-11-17 Thread Andreas HAttel (dilfridge)
dilfridge14/11/17 23:34:19

  Modified: ChangeLog perl-module.eclass
  Log:
  Make calling fixlocalpod trigger a real warning

Revision  ChangesPath
1.1426   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1425
retrieving revision 1.1426
diff -u -r1.1425 -r1.1426
--- ChangeLog   17 Nov 2014 02:15:42 -  1.1425
+++ ChangeLog   17 Nov 2014 23:34:19 -  1.1426
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1425 2014/11/17 
02:15:42 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1426 2014/11/17 
23:34:19 dilfridge Exp $
+
+  17 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org perl-module.eclass:
+  Make calling fixlocalpod trigger a real warning
 
   17 Nov 2014; Davide Pesavento p...@gentoo.org qmake-utils.eclass:
   Stop setting QTDIR. It's only relevant when building qt itself, and in any



1.152eclass/perl-module.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?rev=1.152view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?rev=1.152content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-module.eclass?r1=1.151r2=1.152

Index: perl-module.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- perl-module.eclass  16 Nov 2014 20:22:40 -  1.151
+++ perl-module.eclass  17 Nov 2014 23:34:19 -  1.152
@@ -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/eclass/perl-module.eclass,v 1.151 
2014/11/16 20:22:40 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.152 
2014/11/17 23:34:19 dilfridge Exp $
 
 # @ECLASS: perl-module.eclass
 # @MAINTAINER:
@@ -419,7 +419,7 @@
 # Please use the function above instead, perl_delete_localpod().
 fixlocalpod() {
debug-print-function $FUNCNAME $@
-   eqawarn perl-modules.eclass: fixlocalpod is deprecated and will be 
removed. Please use perl_delete_localpod instead.
+   ewarn perl-modules.eclass: fixlocalpod is deprecated and will be 
removed. Please use perl_delete_localpod instead.
perl_delete_localpod
 }
 






  1   2   >