[gentoo-commits] gentoo-x86 commit in games-action/teeworlds/files/0.6.3: - New directory

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 09:25:50

  Log:
  Directory /var/cvsroot/gentoo-x86/games-action/teeworlds/files/0.6.3 added to 
the repository



[gentoo-commits] gentoo-x86 commit in games-action/teeworlds: teeworlds-0.6.3.ebuild ChangeLog teeworlds-0.6.2-r1.ebuild

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 09:27:01

  Modified: ChangeLog
  Added:teeworlds-0.6.3.ebuild
  Removed:  teeworlds-0.6.2-r1.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.16 games-action/teeworlds/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-action/teeworlds/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   15 May 2014 16:25:24 -  1.15
+++ ChangeLog   6 Jan 2015 09:27:01 -   1.16
@@ -1,6 +1,16 @@
 # ChangeLog for games-action/teeworlds
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/teeworlds/ChangeLog,v 1.15 
2014/05/15 16:25:24 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/teeworlds/ChangeLog,v 1.16 
2015/01/06 09:27:01 mr_bones_ Exp $
+
+*teeworlds-0.6.3 (06 Jan 2015)
+
+  06 Jan 2015; Michael Sterrett mr_bon...@gentoo.org
+  +files/0.6.3/01-use-system-wavpack.patch,
+  +files/0.6.3/02-fixed-wavpack-sound-loading.patch,
+  +files/0.6.3/03-use-system-pnglite.patch, +files/0.6.3/04-dedicated.patch,
+  +files/0.6.3/05-cc-cflags.patch, +teeworlds-0.6.3.ebuild,
+  -teeworlds-0.6.2-r1.ebuild:
+  version bump
 
   15 May 2014; Ulrich Müller u...@gentoo.org teeworlds-0.6.2-r1.ebuild:
   Fix USE dependency on media-libs/libsdl, audio USE flag was renamed to



1.1  games-action/teeworlds/teeworlds-0.6.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/teeworlds/teeworlds-0.6.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/teeworlds/teeworlds-0.6.3.ebuild?rev=1.1content-type=text/plain

Index: teeworlds-0.6.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/games-action/teeworlds/teeworlds-0.6.3.ebuild,v 1.1 
2015/01/06 09:27:01 mr_bones_ Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit eutils multiprocessing python-any-r1 toolchain-funcs games

REVISION=b177-r50edfd37

DESCRIPTION=Online multi-player platform 2D shooter
HOMEPAGE=http://www.teeworlds.com/;
SRC_URI=https://downloads.teeworlds.com/${P}-src.tar.gz;

LICENSE=ZLIB
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug dedicated

RDEPEND=
!dedicated? ( media-libs/pnglite
media-libs/libsdl[X,sound,opengl,video]
media-sound/wavpack
virtual/opengl
app-arch/bzip2
media-libs/freetype
virtual/glu
x11-libs/libX11 )
sys-libs/zlib
DEPEND=${RDEPEND}
${PYTHON_DEPS}
~dev-util/bam-0.4.0

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

pkg_setup() {
python-any-r1_pkg_setup
games_pkg_setup
}

src_prepare() {
rm -r src/engine/external/* || die

# 01  02 from pull request: https://github.com/oy/teeworlds/pull/493
EPATCH_SOURCE=${FILESDIR}/${PV} EPATCH_SUFFIX=patch 
EPATCH_FORCE=yes \
epatch

cat - __EOF__  ${S}/gentoo.lua
function addSettings(settings)
print(Adding Gentoo settings)
settings.optimize = 0
settings.cc.exe_c = $(tc-getCC)
settings.cc.exe_cxx = $(tc-getCXX)
settings.cc.flags_c:Add(${CFLAGS})
settings.cc.flags_cxx:Add(${CXXFLAGS})
settings.link.exe = $(tc-getCXX)
settings.link.flags:Add(${LDFLAGS})
end
__EOF__

sed -i \
-e 
s#/usr/share/games/teeworlds/data#${GAMES_DATADIR}/${PN}/data# \
src/engine/shared/storage.cpp || die
}

src_configure() {
bam -v config || die
}

src_compile() {
local myopt

if use debug; then
myopt= server_debug
else
myopt= server_release
fi
if ! use dedicated; then
if use debug; then
myopt+= client_debug
else
myopt+= client_release
fi
fi

bam -v -a -j $(makeopts_jobs) ${myopt} || die
}

src_install() {
if use debug; then
newgamesbin ${PN}_srv_d ${PN}_srv
else
 

[gentoo-commits] gentoo-x86 commit in games-action/teeworlds/files/0.6.3: 01-use-system-wavpack.patch 02-fixed-wavpack-sound-loading.patch 05-cc-cflags.patch 03-use-system-pnglite.patch 04-dedicated.p

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 09:27:01

  Added:01-use-system-wavpack.patch
02-fixed-wavpack-sound-loading.patch
05-cc-cflags.patch 03-use-system-pnglite.patch
04-dedicated.patch
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  
games-action/teeworlds/files/0.6.3/01-use-system-wavpack.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/teeworlds/files/0.6.3/01-use-system-wavpack.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/teeworlds/files/0.6.3/01-use-system-wavpack.patch?rev=1.1content-type=text/plain

Index: 01-use-system-wavpack.patch
===
commit 7202b142891ee10771af9f1f3063664d75a38bbc
Author: hasufell hasuf...@gentoo.org
Date:   Thu Sep 5 12:28:30 2013 +0200

Use system wavpack. Based on patch from Gentoo Bugzilla

From: Azamat H. Hackimov azamat.hacki...@gmail.com

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

diff --git a/bam.lua b/bam.lua
index 11ac7b9..35c1d8d 100644
--- a/bam.lua
+++ b/bam.lua
@@ -11,6 +11,7 @@ config:Add(OptTestCompileC(stackprotector, int 
main(){return 0;}, -fstack-p
 config:Add(OptTestCompileC(minmacosxsdk, int main(){return 0;}, 
-mmacosx-version-min=10.5 -isysroot /Developer/SDKs/MacOSX10.5.sdk))
 config:Add(OptTestCompileC(macosxppc, int main(){return 0;}, -arch ppc))
 config:Add(OptLibrary(zlib, zlib.h, false))
+config:Add(OptLibrary(wavpack, wavpack/wavpack.h, false))
 config:Add(SDL.OptFind(sdl, true))
 config:Add(FreeType.OptFind(freetype, true))
 config:Finalize(config.lua)
@@ -187,7 +188,7 @@ function build(settings)
end
 
-- compile zlib if needed
-   if config.zlib.value == 1 then
+   if config.zlib.value == true then
settings.link.libs:Add(z)
if config.zlib.include_path then
settings.cc.includes:Add(config.zlib.include_path)
@@ -198,8 +199,18 @@ function build(settings)
settings.cc.includes:Add(src/engine/external/zlib)
end
 
+   if config.wavpack.value == true then
+   settings.link.libs:Add(wavpack)
+   if config.wavpack.include_path then
+   settings.cc.includes:Add(config.wavpack.include_path)
+   end
+   wavpack = {}
+   else
+   wavpack = Compile(settings, 
Collect(src/engine/external/wavpack/*.c))
+   settings.cc.includes:Add(src/engine/external/) --The header 
is wavpack/wavpack.h so include the external folder
+   end
+
-- build the small libraries
-   wavpack = Compile(settings, Collect(src/engine/external/wavpack/*.c))
pnglite = Compile(settings, Collect(src/engine/external/pnglite/*.c))
 
-- build game components
diff --git a/src/engine/client/sound.cpp b/src/engine/client/sound.cpp
index 343fa2e..e32cac9 100644
--- a/src/engine/client/sound.cpp
+++ b/src/engine/client/sound.cpp
@@ -13,7 +13,7 @@
 #include sound.h
 
 extern C { // wavpack
-   #include engine/external/wavpack/wavpack.h
+   #include wavpack/wavpack.h
 }
 #include math.h
 
@@ -351,19 +351,25 @@ int CSound::LoadWV(const char *pFilename)
if(!m_pStorage)
return -1;
 
+   #ifndef WAVPACK_H
ms_File = m_pStorage-OpenFile(pFilename, IOFLAG_READ, 
IStorage::TYPE_ALL);
if(!ms_File)
{
dbg_msg(sound/wv, failed to open file. filename='%s', 
pFilename);
return -1;
}
+   #endif
 
SampleID = AllocID();
if(SampleID  0)
return -1;
pSample = m_aSamples[SampleID];
 
+   #ifndef WAVPACK_H
pContext = WavpackOpenFileInput(ReadData, aError);
+   #else
+   pContext = WavpackOpenFileInput(pFilename, aError, 0, 0);
+   #endif
if (pContext)
{
int m_aSamples = WavpackGetNumSamples(pContext);
@@ -419,8 +425,10 @@ int CSound::LoadWV(const char *pFilename)
dbg_msg(sound/wv, failed to open %s: %s, pFilename, aError);
}
 
+   #ifndef WAVPACK_H
io_close(ms_File);
ms_File = NULL;
+   #endif
 
if(g_Config.m_Debug)
dbg_msg(sound/wv, loaded %s, pFilename);



1.1  
games-action/teeworlds/files/0.6.3/02-fixed-wavpack-sound-loading.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/teeworlds/files/0.6.3/02-fixed-wavpack-sound-loading.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/teeworlds/files/0.6.3/02-fixed-wavpack-sound-loading.patch?rev=1.1content-type=text/plain

Index: 02-fixed-wavpack-sound-loading.patch
===
commit 

[gentoo-commits] gentoo-x86 commit in games-arcade/xscavenger: xscavenger-1.4.4.ebuild ChangeLog

2015-01-06 Thread Alfredo Tupone (tupone)
tupone  15/01/06 09:38:29

  Modified: xscavenger-1.4.4.ebuild ChangeLog
  Log:
  EAPI 5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.10 games-arcade/xscavenger/xscavenger-1.4.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild?r1=1.9r2=1.10

Index: xscavenger-1.4.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xscavenger-1.4.4.ebuild 6 Aug 2012 16:42:10 -   1.9
+++ xscavenger-1.4.4.ebuild 6 Jan 2015 09:38:29 -   1.10
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild,v 1.9 
2012/08/06 16:42:10 mr_bones_ Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild,v 1.10 
2015/01/06 09:38:29 tupone Exp $
 
-EAPI=2
+EAPI=5
 inherit eutils toolchain-funcs games
 
 DESCRIPTION=Lode-Runner-like arcade game
@@ -37,12 +37,11 @@
emake \
CC=$(tc-getCC) \
CDEBUGFLAGS=${CFLAGS} \
-   EXTRA_LDOPTIONS=${LDFLAGS} \
-   || die
+   EXTRA_LDOPTIONS=${LDFLAGS}
 }
 
 src_install() {
-   emake DESTDIR=${D} install || die
+   emake DESTDIR=${D} install
dodoc ../{CREDITS,DOC,README,TODO,changelog}
prepgamesdirs
 }



1.9  games-arcade/xscavenger/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/xscavenger/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   6 Aug 2012 16:42:10 -   1.8
+++ ChangeLog   6 Jan 2015 09:38:29 -   1.9
@@ -1,6 +1,9 @@
 # ChangeLog for games-arcade/xscavenger
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/xscavenger/ChangeLog,v 1.8 
2012/08/06 16:42:10 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/xscavenger/ChangeLog,v 1.9 
2015/01/06 09:38:29 tupone Exp $
+
+  06 Jan 2015; Tupone Alfredo tup...@gentoo.org xscavenger-1.4.4.ebuild:
+  EAPI 5
 
   06 Aug 2012; Michael Sterrett mr_bon...@gentoo.org xscavenger-1.4.4.ebuild:
   respect flags with patch from Julian Ospald (bug #430020)






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

2015-01-06 Thread Alexis Ballier (aballier)
aballier15/01/06 09:44:59

  Modified: ChangeLog package.use.mask
  Log:
  mask vtk[kaapi] as xkaapi doesnt build here

Revision  ChangesPath
1.336profiles/arch/arm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v
retrieving revision 1.335
retrieving revision 1.336
diff -u -r1.335 -r1.336
--- ChangeLog   3 Jan 2015 14:22:39 -   1.335
+++ ChangeLog   6 Jan 2015 09:44:58 -   1.336
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ARM profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.335 
2015/01/03 14:22:39 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.336 
2015/01/06 09:44:58 aballier Exp $
+
+  06 Jan 2015; Alexis Ballier aball...@gentoo.org package.use.mask:
+  mask vtk[kaapi] as xkaapi doesnt build here
 
   03 Jan 2015; Benda Xu hero...@gentoo.org package.use.mask:
   Mask anthy[kasumi] and scim-anthy[canna-2ch] use flags: not tested.



1.235profiles/arch/arm/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v
retrieving revision 1.234
retrieving revision 1.235
diff -u -r1.234 -r1.235
--- package.use.mask3 Jan 2015 14:22:39 -   1.234
+++ package.use.mask6 Jan 2015 09:44:58 -   1.235
@@ -1,6 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.234 
2015/01/03 14:22:39 heroxbd Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.235 
2015/01/06 09:44:58 aballier Exp $
+
+# Alexis Ballier aball...@gentoo.org (06 Jan 2015)
+# sci-libs/xkaapi does not build here on armv7
+sci-libs/vtk kaapi
 
 # Benda Xu hero...@gentoo.org (03 Jan 2015)
 # not tested






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

2015-01-06 Thread Alexis Ballier (aballier)
aballier15/01/06 09:45:16

  Modified: vtk-6.1.0-r1.ebuild ChangeLog
  Log:
  rekeyword ~arm
  
  Signed-off-by: aball...@gentoo.org
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  ChangesPath
1.2  sci-libs/vtk/vtk-6.1.0-r1.ebuild

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

Index: vtk-6.1.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-6.1.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vtk-6.1.0-r1.ebuild 5 Jan 2015 15:02:43 -   1.1
+++ vtk-6.1.0-r1.ebuild 6 Jan 2015 09:45:16 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-6.1.0-r1.ebuild,v 1.1 
2015/01/05 15:02:43 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-6.1.0-r1.ebuild,v 1.2 
2015/01/06 09:45:16 aballier Exp $
 
 EAPI=5
 
@@ -26,7 +26,7 @@

 
 LICENSE=BSD LGPL-2
-KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
 SLOT=0
 IUSE=
all-modules aqua boost cg doc examples imaging ffmpeg gdal java json 
kaapi mpi



1.124sci-libs/vtk/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/vtk/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog   5 Jan 2015 15:02:43 -   1.123
+++ ChangeLog   6 Jan 2015 09:45:16 -   1.124
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/vtk
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/ChangeLog,v 1.123 2015/01/05 
15:02:43 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/ChangeLog,v 1.124 2015/01/06 
09:45:16 aballier Exp $
+
+  06 Jan 2015; Alexis Ballier aball...@gentoo.org vtk-6.1.0-r1.ebuild:
+  keyword ~arm
 
 *vtk-6.1.0-r1 (05 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in games-arcade/xsfcave: ChangeLog xsfcave-0.5.ebuild

2015-01-06 Thread Alfredo Tupone (tupone)
tupone  15/01/06 09:46:55

  Modified: ChangeLog xsfcave-0.5.ebuild
  Log:
  EAPI 5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.7  games-arcade/xsfcave/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   31 May 2009 02:14:29 -  1.6
+++ ChangeLog   6 Jan 2015 09:46:55 -   1.7
@@ -1,6 +1,9 @@
 # ChangeLog for games-arcade/xsfcave
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/ChangeLog,v 1.6 
2009/05/31 02:14:29 nyhm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/ChangeLog,v 1.7 
2015/01/06 09:46:55 tupone Exp $
+
+  06 Jan 2015; Tupone Alfredo tup...@gentoo.org xsfcave-0.5.ebuild:
+  EAPI 5
 
   31 May 2009; Tristan Heaven n...@gentoo.org xsfcave-0.5.ebuild:
   Fix LICENSE: as-is - public-domain



1.6  games-arcade/xsfcave/xsfcave-0.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild?r1=1.5r2=1.6

Index: xsfcave-0.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xsfcave-0.5.ebuild  31 May 2009 02:14:29 -  1.5
+++ xsfcave-0.5.ebuild  6 Jan 2015 09:46:55 -   1.6
@@ -1,7 +1,7 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild,v 
1.5 2009/05/31 02:14:29 nyhm Exp $
-
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild,v 
1.6 2015/01/06 09:46:55 tupone Exp $
+EAPI=5
 inherit games
 
 DESCRIPTION=A X11 sfcave clone
@@ -15,9 +15,9 @@
 
 DEPEND=x11-libs/libXext
x11-libs/libSM
+RDEPEND=${DEPEND}
 
 src_install() {
-   emake DESTDIR=${D} install || die emake install failed
-   dodoc AUTHORS ChangeLog THANKS TODO
+   default
prepgamesdirs
 }






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

2015-01-06 Thread Agostino Sarubbo (ago)
ago 15/01/06 09:48:33

  Modified: ChangeLog
  Added:git-sources-3.19_rc3.ebuild
  Log:
  Automated version bump to 3.19_rc3
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
7194459F)

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

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v
retrieving revision 1.1413
retrieving revision 1.1414
diff -u -r1.1413 -r1.1414
--- ChangeLog   29 Dec 2014 11:23:29 -  1.1413
+++ ChangeLog   6 Jan 2015 09:48:33 -   1.1414
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/git-sources
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1413 
2014/12/29 11:23:29 mpagano Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1414 
2015/01/06 09:48:33 ago Exp $
+
+*git-sources-3.19_rc3 (06 Jan 2015)
+
+  06 Jan 2015; Agostino Sarubbo a...@gentoo.org +git-sources-3.19_rc3.ebuild:
+  Automated version bump to 3.19_rc3
 
 *git-sources-3.19_rc2 (29 Dec 2014)
 



1.1  sys-kernel/git-sources/git-sources-3.19_rc3.ebuild

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

Index: git-sources-3.19_rc3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/git-sources/git-sources-3.19_rc3.ebuild,v 
1.1 2015/01/06 09:48:33 ago Exp $

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

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

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

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

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

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

pkg_postinst() {
postinst_sources
}






[gentoo-commits] gentoo-x86 commit in games-arcade/xtux: xtux-20030306.ebuild ChangeLog

2015-01-06 Thread Alfredo Tupone (tupone)
tupone  15/01/06 09:52:04

  Modified: xtux-20030306.ebuild ChangeLog
  Log:
  EAPI 5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.19 games-arcade/xtux/xtux-20030306.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild?r1=1.18r2=1.19

Index: xtux-20030306.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- xtux-20030306.ebuild12 Oct 2010 04:46:28 -  1.18
+++ xtux-20030306.ebuild6 Jan 2015 09:52:04 -   1.19
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild,v 
1.18 2010/10/12 04:46:28 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/xtux-20030306.ebuild,v 
1.19 2015/01/06 09:52:04 tupone Exp $
 
-EAPI=2
+EAPI=5
 inherit eutils games
 
 DESCRIPTION=Multiplayer Gauntlet-style arcade game
@@ -15,7 +15,7 @@
 IUSE=
 
 DEPEND=x11-libs/libXpm
-
+RDPENED=${DEPEND}
 S=${WORKDIR}/${PN}
 
 src_prepare() {
@@ -34,16 +34,16 @@
 
 src_compile() {
# Not parallel-make friendly (bug #247332)
-   emake DATADIR=${GAMES_DATADIR}/xtux/data common || die emake failed
-   emake DATADIR=${GAMES_DATADIR}/xtux/data ggz|| die emake failed
-   emake DATADIR=${GAMES_DATADIR}/xtux/data server || die emake failed
-   emake DATADIR=${GAMES_DATADIR}/xtux/data client || die emake failed
+   emake DATADIR=${GAMES_DATADIR}/xtux/data common
+   emake DATADIR=${GAMES_DATADIR}/xtux/data ggz
+   emake DATADIR=${GAMES_DATADIR}/xtux/data server
+   emake DATADIR=${GAMES_DATADIR}/xtux/data client
 }
 
 src_install () {
-   dogamesbin xtux tux_serv || die dogamesbin failed
+   dogamesbin xtux tux_serv
insinto ${GAMES_DATADIR}/xtux
-   doins -r data/ || die doins failed
+   doins -r data/
dodoc AUTHORS CHANGELOG README README.GGZ doc/*
newicon data/images/icon.xpm ${PN}.xpm
make_desktop_entry xtux Xtux



1.15 games-arcade/xtux/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xtux/ChangeLog?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xtux/ChangeLog?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/xtux/ChangeLog?r1=1.14r2=1.15

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/xtux/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   30 Sep 2010 16:13:45 -  1.14
+++ ChangeLog   6 Jan 2015 09:52:04 -   1.15
@@ -1,6 +1,9 @@
 # ChangeLog for games-arcade/xtux
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/ChangeLog,v 1.14 
2010/09/30 16:13:45 tupone Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/xtux/ChangeLog,v 1.15 
2015/01/06 09:52:04 tupone Exp $
+
+  06 Jan 2015; Tupone Alfredo tup...@gentoo.org xtux-20030306.ebuild:
+  EAPI 5
 
   30 Sep 2010; Tupone Alfredo tup...@gentoo.org xtux-20030306.ebuild,
   +files/xtux-20030306-ldflags.patch:






[gentoo-commits] gentoo-x86 commit in media-gfx/inkscape: metadata.xml ChangeLog inkscape-0.48.5-r1.ebuild

2015-01-06 Thread Justin Lecher (jlec)
jlec15/01/06 09:57:11

  Modified: metadata.xml ChangeLog
  Added:inkscape-0.48.5-r1.ebuild
  Log:
  media-gfx/inkscape: Backport fix for API changes in app-text/poppler-0.29.0, 
#534392
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.10 media-gfx/inkscape/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/metadata.xml?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/metadata.xml?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/metadata.xml?r1=1.9r2=1.10

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml14 Dec 2014 20:08:56 -  1.9
+++ metadata.xml6 Jan 2015 09:57:11 -   1.10
@@ -1,12 +1,12 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdgraphics/herd
-   use
-   flag name='cdr'Enable support for CorelDRAW Diagrams/flag
-   flag name='dia'pull in pkgapp-office/dia/pkg for dia 
import extension/flag
-   flag name='inkjar'Enable support for OpenOffice.org SVG jar 
files/flag
-   flag name='visio'Enable support for Microsoft Visio 
Diagrams/flag
-   flag name='wpg'Enable support for WordPerfect Graphics/flag
-   /use
+  herdgraphics/herd
+  use
+flag name=cdrEnable support for CorelDRAW Diagrams/flag
+flag name=diapull in pkgapp-office/dia/pkg for dia import 
extension/flag
+flag name=inkjarEnable support for OpenOffice.org SVG jar files/flag
+flag name=visioEnable support for Microsoft Visio Diagrams/flag
+flag name=wpgEnable support for WordPerfect Graphics/flag
+  /use
 /pkgmetadata



1.220media-gfx/inkscape/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/ChangeLog?rev=1.220view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/ChangeLog?rev=1.220content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/ChangeLog?r1=1.219r2=1.220

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- ChangeLog   3 Jan 2015 17:14:41 -   1.219
+++ ChangeLog   6 Jan 2015 09:57:11 -   1.220
@@ -1,6 +1,12 @@
 # ChangeLog for media-gfx/inkscape
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.219 
2015/01/03 17:14:41 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.220 
2015/01/06 09:57:11 jlec Exp $
+
+*inkscape-0.48.5-r1 (06 Jan 2015)
+
+  06 Jan 2015; Justin Lecher j...@gentoo.org +inkscape-0.48.5-r1.ebuild,
+  +files/inkscape-0.48.4-poppler-0.29.0.patch, metadata.xml:
+  Backport fix for API changes in app-text/poppler-0.29.0, #534392
 
 *inkscape-0.91_pre3-r2 (03 Jan 2015)
 



1.1  media-gfx/inkscape/inkscape-0.48.5-r1.ebuild

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

Index: inkscape-0.48.5-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.48.5-r1.ebuild,v 1.1 
2015/01/06 09:57:11 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=xml
GCONF_DEBUG=no

inherit autotools eutils flag-o-matic gnome2 toolchain-funcs python-single-r1

MY_P=${P/_/}

DESCRIPTION=A SVG based generic vector-drawing program
HOMEPAGE=http://www.inkscape.org/;
SRC_URI=mirror://sourceforge/${PN}/${MY_P}.tar.bz2

LICENSE=GPL-2 LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris
IUSE=dia gnome postscript inkjar lcms nls spell wmf

REQUIRED_USE=${PYTHON_REQUIRED_USE}

COMMON_DEPEND=
${PYTHON_DEPS}
app-text/libwpd:0.9
app-text/libwpg:0.2
=app-text/poppler-0.12.3-r3:=[cairo,xpdf-headers(+)]
dev-cpp/glibmm
=dev-cpp/gtkmm-2.18.0:2.4
=dev-libs/boehm-gc-6.4
=dev-libs/glib-2.6.5
=dev-libs/libsigc++-2.0.12
=dev-libs/libxml2-2.6.20
=dev-libs/libxslt-1.0.15
dev-libs/popt

[gentoo-commits] gentoo-x86 commit in media-gfx/inkscape/files: inkscape-0.48.4-poppler-0.29.0.patch

2015-01-06 Thread Justin Lecher (jlec)
jlec15/01/06 09:57:11

  Added:inkscape-0.48.4-poppler-0.29.0.patch
  Log:
  media-gfx/inkscape: Backport fix for API changes in app-text/poppler-0.29.0, 
#534392
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.1  
media-gfx/inkscape/files/inkscape-0.48.4-poppler-0.29.0.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/files/inkscape-0.48.4-poppler-0.29.0.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/files/inkscape-0.48.4-poppler-0.29.0.patch?rev=1.1content-type=text/plain

Index: inkscape-0.48.4-poppler-0.29.0.patch
===
 configure.ac   |  5 
 src/extension/internal/pdfinput/pdf-parser.cpp | 32 +-
 2 files changed, 31 insertions(+), 6 deletions(-)

diff --git a/configure.ac b/configure.ac
index c8e1ae2..d62c989 100644
--- a/configure.ac
+++ b/configure.ac
@@ -593,6 +593,11 @@ if test x$popplernewercolorspaceapi = xyes; then
AC_DEFINE(POPPLER_EVEN_NEWER_COLOR_SPACE_API, 1, [Use even newer color 
space API from Poppler = 0.26.0])
 fi
 
+PKG_CHECK_MODULES(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API, poppler = 0.29.0, 
popplernewernewcolorspaceapi=yes, popplernewernewcolorspaceapi=no)
+if test x$popplernewernewcolorspaceapi = xyes; then
+   AC_DEFINE(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API, 1, [Use even newer 
new color space API from Poppler = 0.29.0])
+fi
+
 # Poppler's b604a008 commit changes this
 AC_MSG_CHECKING([whether Poppler's GfxPatch no longer uses GfxColor])
 popplergfxcolor=no
diff --git a/src/extension/internal/pdfinput/pdf-parser.cpp 
b/src/extension/internal/pdfinput/pdf-parser.cpp
index b6edbfb..3fbf237 100644
--- a/src/extension/internal/pdfinput/pdf-parser.cpp
+++ b/src/extension/internal/pdfinput/pdf-parser.cpp
@@ -860,7 +860,9 @@ void PdfParser::opSetExtGState(Object args[], int numArgs) {
  blendingColorSpace = NULL;
  isolated = knockout = gFalse;
  if (!obj4.dictLookup(const_castchar*(CS), obj5)-isNull()) {
-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
+   blendingColorSpace = GfxColorSpace::parse(NULL, obj5, NULL, NULL);
+#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
blendingColorSpace = GfxColorSpace::parse(obj5, NULL, NULL);
 #elif defined(POPPLER_NEW_COLOR_SPACE_API) || defined(POPPLER_NEW_ERRORAPI)
blendingColorSpace = GfxColorSpace::parse(obj5, NULL);
@@ -1085,7 +1087,13 @@ void PdfParser::opSetFillColorSpace(Object args[], int 
numArgs) {
 
   state-setFillPattern(NULL);
   res-lookupColorSpace(args[0].getName(), obj);
-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
+  if (obj.isNull()) {
+colorSpace = GfxColorSpace::parse(NULL, args[0], NULL, NULL);
+  } else {
+colorSpace = GfxColorSpace::parse(NULL, obj, NULL, NULL);
+  }
+#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
   if (obj.isNull()) {
 colorSpace = GfxColorSpace::parse(args[0], NULL, NULL);
   } else {
@@ -1126,7 +1134,13 @@ void PdfParser::opSetStrokeColorSpace(Object args[], int 
numArgs) {
 
   state-setStrokePattern(NULL);
   res-lookupColorSpace(args[0].getName(), obj);
-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
+  if (obj.isNull()) {
+colorSpace = GfxColorSpace::parse(NULL, args[0], NULL, NULL);
+  } else {
+colorSpace = GfxColorSpace::parse(NULL, obj, NULL, NULL);
+  }
+#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
   if (obj.isNull()) {
 colorSpace = GfxColorSpace::parse(args[0], NULL, NULL);
   } else {
@@ -2756,7 +2770,9 @@ void PdfParser::doImage(Object *ref, Stream *str, GBool 
inlineImg) {
   }
 }
 if (!obj1.isNull()) {
-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
+colorSpace = GfxColorSpace::parse(NULL, obj1, NULL, NULL);
+#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
 colorSpace = GfxColorSpace::parse(obj1, NULL, NULL);
 #elif defined(POPPLER_NEW_COLOR_SPACE_API) || defined(POPPLER_NEW_ERRORAPI)
   colorSpace = GfxColorSpace::parse(obj1, NULL);
@@ -2847,7 +2863,9 @@ void PdfParser::doImage(Object *ref, Stream *str, GBool 
inlineImg) {
  obj2.free();
}
   }
-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
+GfxColorSpace *maskColorSpace = GfxColorSpace::parse(NULL, obj1, 
NULL, NULL);
+#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
 GfxColorSpace *maskColorSpace = GfxColorSpace::parse(obj1, NULL, 
NULL);
 #elif defined(POPPLER_NEW_COLOR_SPACE_API) || defined(POPPLER_NEW_ERRORAPI)
   maskColorSpace = 

[gentoo-commits] gentoo-x86 commit in games-arcade/yarsrevenge: ChangeLog yarsrevenge-0.99.ebuild

2015-01-06 Thread Alfredo Tupone (tupone)
tupone  15/01/06 09:58:33

  Modified: ChangeLog yarsrevenge-0.99.ebuild
  Log:
  EAPI 5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.13 games-arcade/yarsrevenge/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/yarsrevenge/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   15 May 2014 16:34:33 -  1.12
+++ ChangeLog   6 Jan 2015 09:58:33 -   1.13
@@ -1,6 +1,9 @@
 # ChangeLog for games-arcade/yarsrevenge
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/yarsrevenge/ChangeLog,v 1.12 
2014/05/15 16:34:33 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/yarsrevenge/ChangeLog,v 1.13 
2015/01/06 09:58:33 tupone Exp $
+
+  06 Jan 2015; Tupone Alfredo tup...@gentoo.org yarsrevenge-0.99.ebuild:
+  EAPI 5
 
   15 May 2014; Ulrich Müller u...@gentoo.org yarsrevenge-0.99.ebuild:
   Fix USE dependency on media-libs/libsdl, audio USE flag was renamed to



1.14 games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild?r1=1.13r2=1.14

Index: yarsrevenge-0.99.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- yarsrevenge-0.99.ebuild 15 May 2014 16:34:33 -  1.13
+++ yarsrevenge-0.99.ebuild 6 Jan 2015 09:58:33 -   1.14
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild,v 1.13 
2014/05/15 16:34:33 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-arcade/yarsrevenge/yarsrevenge-0.99.ebuild,v 1.14 
2015/01/06 09:58:33 tupone Exp $
 
-EAPI=2
+EAPI=5
 inherit eutils games
 
 DESCRIPTION=remake of the Atari 2600 classic Yar's Revenge
@@ -15,7 +15,7 @@
 IUSE=
 
 DEPEND=media-libs/libsdl[sound,joystick,video]
-
+RDEPEND=${DEPEND}
 S=${WORKDIR}/yar-${PV}
 
 PATCHES=(
@@ -25,7 +25,6 @@
 )
 
 src_install() {
-   emake DESTDIR=${D} install || die emake install failed
-   dodoc AUTHORS ChangeLog README TODO
+   default
prepgamesdirs
 }






[gentoo-commits] gentoo-x86 commit in media-libs/jasper: jasper-1.900.1-r8.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 10:09:09

  Modified: jasper-1.900.1-r8.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #533744).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.4  media-libs/jasper/jasper-1.900.1-r8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/jasper-1.900.1-r8.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/jasper-1.900.1-r8.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/jasper-1.900.1-r8.ebuild?r1=1.3r2=1.4

Index: jasper-1.900.1-r8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/jasper/jasper-1.900.1-r8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jasper-1.900.1-r8.ebuild5 Jan 2015 15:13:07 -   1.3
+++ jasper-1.900.1-r8.ebuild6 Jan 2015 10:09:09 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/jasper/jasper-1.900.1-r8.ebuild,v 1.3 
2015/01/05 15:13:07 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/jasper/jasper-1.900.1-r8.ebuild,v 1.4 
2015/01/06 10:09:09 jer Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 
 LICENSE=JasPer2.0
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
 IUSE=jpeg opengl static-libs
 
 RDEPEND=



1.108media-libs/jasper/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/ChangeLog?rev=1.108view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/ChangeLog?rev=1.108content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jasper/ChangeLog?r1=1.107r2=1.108

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/jasper/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog   5 Jan 2015 15:13:07 -   1.107
+++ ChangeLog   6 Jan 2015 10:09:09 -   1.108
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/jasper
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/jasper/ChangeLog,v 1.107 
2015/01/05 15:13:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/jasper/ChangeLog,v 1.108 
2015/01/06 10:09:09 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org jasper-1.900.1-r8.ebuild:
+  Stable for HPPA (bug #533744).
 
   05 Jan 2015; Agostino Sarubbo a...@gentoo.org jasper-1.900.1-r8.ebuild:
   Stable for x86, wrt bug #533744






[gentoo-commits] gentoo-x86 commit in dev-python/carbon: carbon-0.9.13.ebuild ChangeLog carbon-0.9.9-r2.ebuild carbon-0.9.10-r1.ebuild carbon-0.9.10.ebuild carbon-0.9.12.ebuild

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/06 10:29:15

  Modified: ChangeLog
  Added:carbon-0.9.13.ebuild
  Removed:  carbon-0.9.9-r2.ebuild carbon-0.9.10-r1.ebuild
carbon-0.9.10.ebuild carbon-0.9.12.ebuild
  Log:
  bump, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.8  dev-python/carbon/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/carbon/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   19 Feb 2014 16:27:36 -  1.7
+++ ChangeLog   6 Jan 2015 10:29:15 -   1.8
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/carbon
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/carbon/ChangeLog,v 1.7 
2014/02/19 16:27:36 ultrabug Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/carbon/ChangeLog,v 1.8 
2015/01/06 10:29:15 idella4 Exp $
+
+*carbon-0.9.13 (06 Jan 2015)
+
+  06 Jan 2015; Ian Delaney idel...@gentoo.org +carbon-0.9.13.ebuild,
+  -carbon-0.9.10-r1.ebuild, -carbon-0.9.10.ebuild, -carbon-0.9.12.ebuild,
+  -carbon-0.9.9-r2.ebuild:
+  bump, rm old
 
 *carbon-0.9.12-r1 (19 Feb 2014)
 



1.1  dev-python/carbon/carbon-0.9.13.ebuild

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

Index: carbon-0.9.13.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/carbon/carbon-0.9.13.ebuild,v 1.1 
2015/01/06 10:29:15 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Backend data caching and persistence daemon for Graphite
HOMEPAGE=http://graphite.wikidot.com/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

SLOT=0
LICENSE=Apache-2.0
KEYWORDS=~amd64 ~x86
IUSE=

DEPEND=
RDEPEND=
dev-python/twisted-core[${PYTHON_USEDEP}]
dev-python/whisper[${PYTHON_USEDEP}]
dev-python/txAMQP[${PYTHON_USEDEP}]

PATCHES=(
# Do not install the configuration and data files. We install them
# somewhere sensible by hand.
${FILESDIR}/${PN}-0.9.12-no-data-files.patch
)

python_prepare_all() {
# This sets prefix to /opt/graphite. We want FHS-style paths instead.
rm setup.cfg || die
distutils-r1_python_prepare_all
}

python_install_all() {
distutils-r1_python_install_all

insinto /etc/carbon
doins conf/*

dodir /var/log/carbon /var/lib/carbon/{whisper,lists,rrd}

newinitd ${FILESDIR}/carbon.initd carbon-cache
newinitd ${FILESDIR}/carbon.initd carbon-relay
newinitd ${FILESDIR}/carbon.initd carbon-aggregator

newconfd ${FILESDIR}/carbon.confd carbon-cache
newconfd ${FILESDIR}/carbon.confd carbon-relay
newconfd ${FILESDIR}/carbon.confd carbon-aggregator
}

pkg_postinst() {
einfo 'This ebuild installs carbon into FHS-style paths.'
einfo 'You will probably have to set GRAPHITE_CONF_DIR to /etc/carbon'
einfo 'and GRAPHITE_STORAGE_DIR to /var/lib/carbon to make use of this'
einfo '(see /etc/carbon/carbon.conf.example).'
einfo ' '
einfo 'OpenRC init script supports multiple instances !'
einfo 'Example to run an instance b of carbon-cache :'
einfo 'ln -s /etc/init.d/carbon-cache /etc/init.d/carbon-cache.b'
einfo 'cp /etc/conf.d/carbon-cache /etc/conf.d/carbon-cache.b'
}






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

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 08:59:57

  Modified: ChangeLog metadata.xml
  Log:
  Update longdescription with upstream blurb (bug #535718 by Jonas Stein).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.25 x11-misc/zim/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/zim/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   4 Oct 2014 08:35:15 -   1.24
+++ ChangeLog   6 Jan 2015 08:59:57 -   1.25
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/zim
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/zim/ChangeLog,v 1.24 2014/10/04 
08:35:15 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/zim/ChangeLog,v 1.25 2015/01/06 
08:59:57 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org metadata.xml:
+  Update longdescription with upstream blurb (bug #535718 by Jonas Stein).
 
 *zim-0.62 (04 Oct 2014)
 



1.7  x11-misc/zim/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/zim/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml13 Apr 2012 19:51:48 -  1.6
+++ metadata.xml6 Jan 2015 08:59:57 -   1.7
@@ -1,14 +1,14 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-  herddesktop-misc/herd
-  longdescription lang=en
-Zim is a WYSIWYG text editor written in Gtk2-Perl which aims to bring
-the concept of a wiki to your desktop. Every page is saved as a text
-file with wiki markup. Pages can contain links to other pages, and are
-saved automatically. Creating a new page is as easy as linking to a
-non-existing page. Pages are ordered in a hierarchical structure that
-gives it the look and feel of an outliner. This tool is intended to keep
-track of TODO lists or to serve as a personal scratch book.
-  /longdescription
+herddesktop-misc/herd
+longdescription lang=en
+Zim is a graphical text editor used to maintain a collection of wiki pages.
+Each page can contain links to other pages, simple formatting and images. Pages
+are stored in a folder structure, like in an outliner, and can have
+attachments. Creating a new page is as easy as linking to a nonexistent page.
+All data is stored in plain text files with wiki formatting. Various plugins
+provide additional functionality, like a task list manager, an equation editor,
+a tray icon, and support for version control.
+/longdescription
 /pkgmetadata






[gentoo-commits] dev/ago:master commit in: app-portage/arch-tools/

2015-01-06 Thread Agostino Sarubbo
commit: 21c1b8f025c689cf62224dd778c5efcebaa111f5
Author: Agostino Sarubbo ago AT gentoo DOT org
AuthorDate: Tue Jan  6 09:05:48 2015 +
Commit: Agostino Sarubbo ago AT gentoo DOT org
CommitDate: Tue Jan  6 09:05:48 2015 +
URL:http://sources.gentoo.org/gitweb/?p=dev/ago.git;a=commit;h=21c1b8f0

Add python3 support

Package-Manager: portage-2.2.14
Manifest-Sign-Key: 7194459F

---
 app-portage/arch-tools/ChangeLog  |  3 +++
 app-portage/arch-tools/Manifest   | 30 +--
 app-portage/arch-tools/arch-tools-.ebuild |  4 ++--
 3 files changed, 20 insertions(+), 17 deletions(-)

diff --git a/app-portage/arch-tools/ChangeLog b/app-portage/arch-tools/ChangeLog
index 6e57738..f31b23f 100644
--- a/app-portage/arch-tools/ChangeLog
+++ b/app-portage/arch-tools/ChangeLog
@@ -1,3 +1,6 @@
+  06 Jan 2015; Agostino Sarubbo a...@gentoo.org arch-tools-.ebuild:
+  Add python3 support
+
   11 Dec 2014; Agostino Sarubbo a...@gentoo.org arch-tools-.ebuild:
   Install common.py properly
 

diff --git a/app-portage/arch-tools/Manifest b/app-portage/arch-tools/Manifest
index d49b164..ea816a0 100644
--- a/app-portage/arch-tools/Manifest
+++ b/app-portage/arch-tools/Manifest
@@ -1,23 +1,23 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-EBUILD arch-tools-.ebuild 870 SHA256 
a681d290ea67783399ba26a6f85156d6c1d079a4905aab9ae45c11ea9776d9dd SHA512 
ae80c57a6bb28c9fe13bd0a0c603cbfee1cd990393b440ae4b377f5ce177ca3ce757da46df581c2802e5eaebae15f41d9cef8d3c37d13198df7b9548ec40f0d7
 WHIRLPOOL 
c3d0cee9fab03c449e57decb944f44eae3948bee855383171e5eccaac2d27f19bc0f796e7fee3dfdb017797faca855619a69126ed0290fca02b505ab580ad3d8
-MISC ChangeLog 316 SHA256 
34881a3165ee4c862cae9654fad857215fe8bd934d0f581bf2fec6839eb3f852 SHA512 
ff9ffd2b22749181a4ee650247654a1357073d46f1d1c81dfecd0cba46cf26fce3c3326481cb8175ec1d53040ce95f4fff34399d4a63517791873776357b910b
 WHIRLPOOL 
99679e74d8ec4179290dd513c5e8acf50c4c9be557e7cb8179f00836ddfb4311998307944ed026e8f009716cfa26bf9785ba3b689fefc2b861ac41dac223586d
+EBUILD arch-tools-.ebuild 880 SHA256 
6b9700e3279ec15cdd625c0eed996c33009f57f97d0143df4837b502c2172a4a SHA512 
9a8b3e963e9c404c936e0343ff24854b0632436eabd7475634f0c6e3661aa335093d5a05b393f07d187e4d1bbbab93bda287e38899533bc938cad5e4264b466b
 WHIRLPOOL 
51eb7486f539db481e0aadab77589622151acc1394cb8a3a21dfe816510fe473c60efefb93397dd96b18fabf2030e9b7ab4401f165f9be9065a80a448a123376
+MISC ChangeLog 412 SHA256 
081787faea8f992598bdddc5e3062ae41bf1033f32e3e74c21638ab8f5dee5c1 SHA512 
8b4f4b63b5d6049b56d5917b0b4bc71876f5cbf5d64edcd4ddbaba58741a1b4032e3534bb6c5c15e5a05e7a4dad0cd3ea0d4480e3a6ad92474e220a801cffa53
 WHIRLPOOL 
4bc7c9e7046947e377ad150d5b152ecc01fdc435fb3a989e66af78a482063a782ab0d4aa5f9cc2cdc94ea96a41a4353b276cd7c332857590e9c0e24dd86e86c0
 MISC metadata.xml 233 SHA256 
77226fe2bb71a40e1ad91e1a4ddd1bb5728012844c345b01ccffc1f5ab92270e SHA512 
7ca9cf20cfadd69ebd24e89b921aac51290d169b790507577147c823089710f730758b5a0a990311e2db5cc93c2744d85328bf9a09fbd5c75ea5df3a796de487
 WHIRLPOOL 
be83544d3c80e4db47780a2840ccfc7c82c9c0ae0ac85e15347e1e7a1591930f3140d8bbda3b9563e3543aa8c4de1f60def98fd7bafe6b4adf9bd9c259801fb8
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2
 
-iQIcBAEBCAAGBQJUibNRAAoJELp701BxlEWfdPsQAIcDsOOQGxkfcPvKDZgHqYad
-nopv77KtIOKH3y9T9Nb5vpCi1Y3oVzBuqU+e6x9YGy7EU0GT0tihkRrrbVr4+qNb
-vvYEaKUZBVkW6C5lsM5cNv7tZ9bY+U4WMK/zjRezWydjXEAJq26pZoop09Oy0+cw
-aLETEJoKxCAusHk0jGaPa8AFFnAIkQVIQQ/0iTxMrOtUzifNKXqmD+R/4PBVc9f4
-/Le0pvhq4XHySzcYTqUMD4GaclsLpl7I3GOJpB/q1N/oPEYNT51ku3a6fjAomaeH
-BubDagXFk60ecumWfZoBdAZWbMAwjHNeJMeREuUXwubgOhM20c1RC+gajcL2LhV5
-WRRE5H3XITC2yB5o5FCITTlVqWqOPjGtkQurJ7fsWrP3q/vMZyGOrkAi5ZY8eMxk
-nEk3o/+tE+cF0Yng0DRyOFIqtgmAKr5Ulxbfbu2P+KM28y07tXWtdGjnBlsD0c2c
-Ge058P37UTjjnYHY7q4eBYsD6ws3DwdMRRiMa5Ju3pQTtEoaefKHJLqPp19YlIr+
-1FfDFycs8KTMhpwE/fQiPcAbP6bC+zeBC3RvCkw+oeyfXNR4XGsXmoWJjtVV+xFW
-HeB7zsLpKIr5CSDHnv1qqgi5SounDcHuSZszFcEGBKAmQo2XzcIfU6Bahd5NQfOI
-XaDMJqLwG1cctZTA5D6l
-=ftIO
+iQIcBAEBCAAGBQJUq6VsAAoJELp701BxlEWf8h8P/jhjFK8lxny7MvmlG/MDEBw0
+IWSaw+yG3iqrxW5CKfNW6IhU+D36ZyOJc5zZChSs44HjxfmrA6ZZiZ6/p+7EI1YF
+mxSujsEsr/2YeHcJCIUa8cM4WkhWez+CBG9MQEMZelVO1C/UAO0BWQfO9rGu5j5y
+g67lqGhWltBGm5qdBLWuwq8SFlpyHZHyQ+jMYHDvQF2ZFv3T/ne/G+YEqmlLxl2v
++QnJ7F4gWDi9uCicdtG9+USg6A1+8YI/4/SsyZ8rk4WaEPn3zjKTpKK8pucUAVch
+mxORAphAU+wqnl8IuTMk9YIBJoWMxHBXTaLZOYleNRE9rX1DjvXA/gqIQR0yG27q
+MuxXeeEnXArUZxEOHFHOF3wnPry73jbl/TVyq0AbGbk06qJM6JIUTIo381JlSNNu
+sOmxnqtPFiALkK5gjWXb+/CmRV0snUH7Wo9+yAkjJIf3B881pFUG38lLTgnw5nab
+X+XqGZjOp4HN1gAvAkBlRb01KbOhQJ7SbIzyYsHXlMBd3q3BAG1/J16qqtopWS/8
+sox9nKoT6NB/vpDZidXeNjk3d6hewQa1x+5Oj3UKYrcQJpI8X9q/AcgCeg4ygxEE
+iXuhjGIvHaLOqGd1oN20Sp5NFgJiW3XfInAB08sc0IjNCpnh783Y8r6wNnJZ2oKd
+q+PIaQqr/i0Jkfl04ABA
+=o/Hq
 -END PGP SIGNATURE-

diff --git a/app-portage/arch-tools/arch-tools-.ebuild 
b/app-portage/arch-tools/arch-tools-.ebuild
index 4061953..b7825a6 100644
--- a/app-portage/arch-tools/arch-tools-.ebuild
+++ 

[gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.21-r2.ebuild libevent-2.0.22.ebuild libevent-2.0.21-r1.ebuild libevent-2.1.5.ebuild libevent-2.1.4.ebuild

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 10:39:56

  Modified: ChangeLog libevent-2.0.21-r2.ebuild
libevent-2.0.21-r1.ebuild
  Added:libevent-2.0.22.ebuild libevent-2.1.5.ebuild
  Removed:  libevent-2.1.4.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.282dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.281
retrieving revision 1.282
diff -u -r1.281 -r1.282
--- ChangeLog   26 Dec 2014 10:13:36 -  1.281
+++ ChangeLog   6 Jan 2015 10:39:56 -   1.282
@@ -1,6 +1,14 @@
 # ChangeLog for dev-libs/libevent
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.281 
2014/12/26 10:13:36 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.282 
2015/01/06 10:39:56 jer Exp $
+
+*libevent-2.1.5 (06 Jan 2015)
+*libevent-2.0.22 (06 Jan 2015)
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org libevent-2.0.21-r1.ebuild,
+  libevent-2.0.21-r2.ebuild, +libevent-2.0.22.ebuild, -libevent-2.1.4.ebuild,
+  +libevent-2.1.5.ebuild:
+  Version bump.
 
 *libevent- (26 Dec 2014)
 



1.3  dev-libs/libevent/libevent-2.0.21-r2.ebuild

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

Index: libevent-2.0.21-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libevent-2.0.21-r2.ebuild   18 Jun 2014 19:13:25 -  1.2
+++ libevent-2.0.21-r2.ebuild   6 Jan 2015 10:39:56 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r2.ebuild,v 1.2 
2014/06/18 19:13:25 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r2.ebuild,v 1.3 
2015/01/06 10:39:56 jer Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -9,7 +9,7 @@
 
 DESCRIPTION=A library to execute a function when a specific event occurs on a 
file descriptor
 HOMEPAGE=http://libevent.org/;
-SRC_URI=mirror://github/${PN}/${PN}/${MY_P}.tar.gz
+SRC_URI=mirror://sourceforge/levent/files/${MY_P}.tar.gz
 
 LICENSE=BSD
 SLOT=0



1.13 dev-libs/libevent/libevent-2.0.21-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild?r1=1.12r2=1.13

Index: libevent-2.0.21-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libevent-2.0.21-r1.ebuild   11 Oct 2014 13:38:27 -  1.12
+++ libevent-2.0.21-r1.ebuild   6 Jan 2015 10:39:56 -   1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild,v 1.12 
2014/10/11 13:38:27 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.21-r1.ebuild,v 1.13 
2015/01/06 10:39:56 jer Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -9,7 +9,7 @@
 
 DESCRIPTION=A library to execute a function when a specific event occurs on a 
file descriptor
 HOMEPAGE=http://libevent.org/;
-SRC_URI=mirror://github/${PN}/${PN}/${MY_P}.tar.gz
+SRC_URI=mirror://sourceforge/levent/files/${MY_P}.tar.gz
 
 LICENSE=BSD
 SLOT=0



1.1  dev-libs/libevent/libevent-2.0.22.ebuild

file : 

[gentoo-commits] gentoo-x86 commit in dev-perl/HTML-Mason: HTML-Mason-1.540.0.ebuild ChangeLog

2015-01-06 Thread Mikle Kolyada (zlogene)
zlogene 15/01/06 10:42:09

  Modified: HTML-Mason-1.540.0.ebuild ChangeLog
  Log:
  Stable for all
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-perl/HTML-Mason/HTML-Mason-1.540.0.ebuild

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

Index: HTML-Mason-1.540.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.540.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HTML-Mason-1.540.0.ebuild   19 Nov 2014 19:32:22 -  1.2
+++ HTML-Mason-1.540.0.ebuild   6 Jan 2015 10:42:09 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.540.0.ebuild,v 1.2 
2014/11/19 19:32:22 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.540.0.ebuild,v 1.3 
2015/01/06 10:42:09 zlogene Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 HOMEPAGE=http://www.masonhq.com/ ${HOMEPAGE}
 
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=amd64 ppc x86
 IUSE=modperl test
 
 RDEPEND=!modperl? ( virtual/perl-CGI )



1.113dev-perl/HTML-Mason/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog   19 Nov 2014 19:32:22 -  1.112
+++ ChangeLog   6 Jan 2015 10:42:09 -   1.113
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/HTML-Mason
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/ChangeLog,v 1.112 
2014/11/19 19:32:22 dilfridge Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/ChangeLog,v 1.113 
2015/01/06 10:42:09 zlogene Exp $
+
+  06 Jan 2015; Mikle Kolyada zlog...@gentoo.org HTML-Mason-1.540.0.ebuild:
+  Stable for all
 
   19 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org
   HTML-Mason-1.510.0.ebuild, HTML-Mason-1.540.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/libevent: ChangeLog libevent-2.0.21-r2.ebuild libevent-2.1.4-r1.ebuild

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 10:44:32

  Modified: ChangeLog
  Removed:  libevent-2.0.21-r2.ebuild libevent-2.1.4-r1.ebuild
  Log:
  Old (bug #535774).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.283dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.282
retrieving revision 1.283
diff -u -r1.282 -r1.283
--- ChangeLog   6 Jan 2015 10:39:56 -   1.282
+++ ChangeLog   6 Jan 2015 10:44:32 -   1.283
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.282 
2015/01/06 10:39:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.283 
2015/01/06 10:44:32 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org -libevent-2.0.21-r2.ebuild,
+  -libevent-2.1.4-r1.ebuild:
+  Old (bug #535774).
 
 *libevent-2.1.5 (06 Jan 2015)
 *libevent-2.0.22 (06 Jan 2015)






[gentoo-commits] gentoo-x86 commit in app-misc/elasticsearch: ChangeLog elasticsearch-1.4.2.ebuild

2015-01-06 Thread Tony Vroon (chainsaw)
chainsaw15/01/06 10:47:22

  Modified: ChangeLog
  Added:elasticsearch-1.4.2.ebuild
  Log:
  Version bump as per Ferenc Erci in bug #535748.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xB5058F9A)

Revision  ChangesPath
1.9  app-misc/elasticsearch/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/elasticsearch/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   5 Jan 2015 11:12:33 -   1.8
+++ ChangeLog   6 Jan 2015 10:47:22 -   1.9
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/elasticsearch
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/elasticsearch/ChangeLog,v 1.8 
2015/01/05 11:12:33 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/elasticsearch/ChangeLog,v 1.9 
2015/01/06 10:47:22 chainsaw Exp $
+
+*elasticsearch-1.4.2 (06 Jan 2015)
+
+  06 Jan 2015; Tony Vroon chain...@gentoo.org +elasticsearch-1.4.2.ebuild:
+  Version bump as per Ferenc Erci in bug #535748.
 
 *elasticsearch-1.4.0 (05 Jan 2015)
 *elasticsearch-1.3.2-r2 (05 Jan 2015)



1.1  app-misc/elasticsearch/elasticsearch-1.4.2.ebuild

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

Index: elasticsearch-1.4.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-misc/elasticsearch/elasticsearch-1.4.2.ebuild,v 1.1 
2015/01/06 10:47:22 chainsaw Exp $

EAPI=5

inherit eutils systemd user

MY_PN=${PN%-bin}
DESCRIPTION=Open Source, Distributed, RESTful, Search Engine
HOMEPAGE=http://www.elasticsearch.org/;
SRC_URI=http://download.${MY_PN}.org/${MY_PN}/${MY_PN}/${MY_PN}-${PV}.tar.gz;
LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64

RESTRICT=strip
QA_PREBUILT=usr/share/elasticsearch/lib/sigar/libsigar-*.so

RDEPEND=virtual/jre:1.7

pkg_setup() {
enewgroup ${MY_PN}
enewuser ${MY_PN} -1 /bin/bash /var/lib/${MY_PN} ${MY_PN}
}

src_prepare() {
rm -rf lib/sigar/*{solaris,winnt,freebsd,macosx}*
rm -rf bin/*.{bat,exe}
rm lib/sigar/libsigar-ia64-linux.so
rm LICENSE.txt

use amd64  {
rm lib/sigar/libsigar-x86-linux.so
}

use x86  {
rm lib/sigar/libsigar-amd64-linux.so
}
}

src_install() {
dodir /etc/${MY_PN}

insinto /usr/share/doc/${P}/examples
doins bin/${MY_PN}.in.sh
doins config/*
rm bin/${MY_PN}.in.sh
rm -rf config

insinto /usr/share/${MY_PN}
doins -r ./*
chmod +x ${D}/usr/share/${MY_PN}/bin/*

keepdir /var/{lib,log}/${MY_PN}

local rcscript=elasticsearch.init3
local eshome=/usr/share/${MY_PN}
local jarfile=${MY_PN}-${PV}.jar
local 
esclasspath=${eshome}/lib/${jarfile}:${eshome}/lib/*:${eshome}/lib/sigar/*

cp ${FILESDIR}/${rcscript} ${T} || die
sed -i \
-e s|@ES_CLASS_PATH@|${esclasspath}| \
${T}/${rcscript} \
|| die failed to filter ${rcscript}

newinitd ${T}/${rcscript} ${MY_PN}
newconfd ${FILESDIR}/${MY_PN}.conf ${MY_PN}
systemd_newunit ${FILESDIR}/${PN}.service2 ${PN}.service
}

pkg_postinst() {
elog
elog You may create multiple instances of ${MY_PN} by
elog symlinking the init script:
elog ln -sf /etc/init.d/${MY_PN} /etc/init.d/${MY_PN}.instance
elog
elog Each of the example files in /usr/share/doc/${P}/examples
elog should be extracted to the proper configuration directory:
elog /etc/${MY_PN} (for standard init)
elog /etc/${MY_PN}/instance (for symlinked init)
elog
}






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

2015-01-06 Thread Alfredo Tupone (tupone)
tupone  15/01/06 10:49:25

  Modified: gnujump-1.0.6.ebuild gnujump-1.0.8.ebuild ChangeLog
  Log:
  use mirror
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0145142D)

Revision  ChangesPath
1.3  games-arcade/gnujump/gnujump-1.0.6.ebuild

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

Index: gnujump-1.0.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnujump-1.0.6.ebuild25 Oct 2009 12:52:15 -  1.2
+++ gnujump-1.0.6.ebuild6 Jan 2015 10:49:25 -   1.3
@@ -1,13 +1,13 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.6.ebuild,v 
1.2 2009/10/25 12:52:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.6.ebuild,v 
1.3 2015/01/06 10:49:25 tupone Exp $
 
-EAPI=2
+EAPI=5
 inherit eutils games
 
 DESCRIPTION=Xjump clone with added features
 HOMEPAGE=http://gnujump.es.gnu.org;
-SRC_URI=ftp://ftp.gnu.org/gnu/gnujump/${PV}/${P}.tar.gz;
+SRC_URI=mirror://gnu/${PN}/${PV}/${P}.tar.gz
 
 LICENSE=GPL-3
 SLOT=0
@@ -19,11 +19,10 @@
media-libs/sdl-mixer[vorbis]
virtual/opengl
x11-libs/libX11
+RDEPEND=${DEPEND}
 
 src_install() {
-   emake DESTDIR=${D} install || die emake install failed
-   dodoc AUTHORS ChangeLog README
-
+   default
newicon skins/xjump/hero1.0.png ${PN}.png
make_desktop_entry ${PN} GNUjump
 



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

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

Index: gnujump-1.0.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnujump-1.0.8.ebuild12 Sep 2014 16:22:38 -  1.3
+++ gnujump-1.0.8.ebuild6 Jan 2015 10:49:25 -   1.4
@@ -1,13 +1,13 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild,v 
1.3 2014/09/12 16:22:38 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/gnujump-1.0.8.ebuild,v 
1.4 2015/01/06 10:49:25 tupone Exp $
 
 EAPI=5
 inherit eutils flag-o-matic games
 
 DESCRIPTION=Xjump clone with added features
 HOMEPAGE=http://gnujump.es.gnu.org;
-SRC_URI=ftp://ftp.gnu.org/gnu/gnujump/${P}.tar.gz;
+SRC_URI=mirror://gnu/${PN}/${P}.tar.gz
 
 LICENSE=GPL-3
 SLOT=0



1.9  games-arcade/gnujump/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-arcade/gnujump/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   12 Sep 2014 16:22:38 -  1.8
+++ ChangeLog   6 Jan 2015 10:49:25 -   1.9
@@ -1,6 +1,10 @@
 # ChangeLog for games-arcade/gnujump
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/ChangeLog,v 1.8 
2014/09/12 16:22:38 nimiux Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/gnujump/ChangeLog,v 1.9 
2015/01/06 10:49:25 tupone Exp $
+
+  06 Jan 2015; Tupone Alfredo tup...@gentoo.org gnujump-1.0.6.ebuild,
+  gnujump-1.0.8.ebuild:
+  use mirror
 
   12 Sep 2014; Chema Alonso nim...@gentoo.org gnujump-1.0.8.ebuild:
   Stable for amd64 wrt bug #517840






[gentoo-commits] gentoo-x86 commit in dev-python/gitdb: gitdb-0.6.1.ebuild ChangeLog gitdb-0.5.4.ebuild gitdb-0.5.4-r1.ebuild

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/06 10:57:58

  Modified: ChangeLog
  Added:gitdb-0.6.1.ebuild
  Removed:  gitdb-0.5.4.ebuild gitdb-0.5.4-r1.ebuild
  Log:
  bump, tidy deps, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.6  dev-python/gitdb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/gitdb/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   18 Nov 2014 10:11:54 -  1.5
+++ ChangeLog   6 Jan 2015 10:57:58 -   1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/gitdb
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gitdb/ChangeLog,v 1.5 2014/11/18 
10:11:54 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gitdb/ChangeLog,v 1.6 2015/01/06 
10:57:58 idella4 Exp $
+
+*gitdb-0.6.1 (06 Jan 2015)
+
+  06 Jan 2015; Ian Delaney idel...@gentoo.org +gitdb-0.6.1.ebuild,
+  -gitdb-0.5.4-r1.ebuild, -gitdb-0.5.4.ebuild:
+  bump, tidy deps, rm old
 
 *gitdb-0.6.0 (18 Nov 2014)
 



1.1  dev-python/gitdb/gitdb-0.6.1.ebuild

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

Index: gitdb-0.6.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gitdb/gitdb-0.6.1.ebuild,v 1.1 
2015/01/06 10:57:58 idella4 Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION=GitDB is a pure-Python git object database
HOMEPAGE=
https://github.com/gitpython-developers/gitdb
http://pypi.python.org/pypi/gitdb;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

RDEPEND=dev-vcs/git
=dev-python/smmap-0.8.3[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}






[gentoo-commits] gentoo-x86 commit in dev-python/pmw: pmw-2.0.0-r2.ebuild ChangeLog

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/06 11:18:41

  Modified: pmw-2.0.0-r2.ebuild ChangeLog
  Log:
  clean old impl
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.5  dev-python/pmw/pmw-2.0.0-r2.ebuild

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

Index: pmw-2.0.0-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pmw/pmw-2.0.0-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pmw-2.0.0-r2.ebuild 25 Nov 2014 09:57:01 -  1.4
+++ pmw-2.0.0-r2.ebuild 6 Jan 2015 11:18:41 -   1.5
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pmw/pmw-2.0.0-r2.ebuild,v 1.4 
2014/11/25 09:57:01 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pmw/pmw-2.0.0-r2.ebuild,v 1.5 
2015/01/06 11:18:41 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{3_2,3_3,3_4} )
+PYTHON_COMPAT=( python{3_3,3_4} )
 PYTHON_REQ_USE=tk
 
 inherit distutils-r1



1.47 dev-python/pmw/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pmw/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   25 Nov 2014 09:57:01 -  1.46
+++ ChangeLog   6 Jan 2015 11:18:41 -   1.47
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pmw
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pmw/ChangeLog,v 1.46 2014/11/25 
09:57:01 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pmw/ChangeLog,v 1.47 2015/01/06 
11:18:41 idella4 Exp $
+
+  06 Jan 2015; Ian Delaney idel...@gentoo.org pmw-2.0.0-r2.ebuild:
+  clean old impl
 
   25 Nov 2014; Pacho Ramos pa...@gentoo.org pmw-2.0.0-r2.ebuild:
   Support python 3.4






[gentoo-commits] gentoo-x86 commit in app-vim/automatictexplugin: automatictexplugin-12.5-r1.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 11:46:00

  Modified: ChangeLog
  Added:automatictexplugin-12.5-r1.ebuild
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.49 app-vim/automatictexplugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/automatictexplugin/ChangeLog?rev=1.49view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/automatictexplugin/ChangeLog?rev=1.49content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/automatictexplugin/ChangeLog?r1=1.48r2=1.49

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/automatictexplugin/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   12 Apr 2014 21:56:28 -  1.48
+++ ChangeLog   6 Jan 2015 11:46:00 -   1.49
@@ -1,6 +1,12 @@
 # ChangeLog for app-vim/automatictexplugin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/automatictexplugin/ChangeLog,v 1.48 
2014/04/12 21:56:28 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/automatictexplugin/ChangeLog,v 1.49 
2015/01/06 11:46:00 mgorny Exp $
+
+*automatictexplugin-12.5-r1 (06 Jan 2015)
+
+  06 Jan 2015; Michał Górny mgo...@gentoo.org
+  +automatictexplugin-12.5-r1.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
 *automatictexplugin-12.5 (12 Apr 2014)
 



1.1  
app-vim/automatictexplugin/automatictexplugin-12.5-r1.ebuild

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

Index: automatictexplugin-12.5-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-vim/automatictexplugin/automatictexplugin-12.5-r1.ebuild,v
 1.1 2015/01/06 11:46:00 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
inherit python-single-r1 vim-plugin

MY_P=AutomaticTexPlugin_${PV}
DESCRIPTION=vim plugin: a comprehensive plugin for editing LaTeX files
HOMEPAGE=http://atp-vim.sourceforge.net/;
SRC_URI=mirror://sourceforge/atp-vim/releases/${MY_P}.tar.gz
LICENSE=GPL-3
KEYWORDS=~amd64 ~x86

S=${WORKDIR}

VIM_PLUGIN_HELPFILES=automatic-tex-plugin.txt

RDEPEND=|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
!app-vim/vim-latex
app-vim/align
app-text/wdiff
dev-python/psutil[${PYTHON_USEDEP}]
dev-tex/latexmk
dev-tex/detex
virtual/tex-base
${PYTHON_DEPS}

src_prepare() {
python_fix_shebang .
}






[gentoo-commits] gentoo-x86 commit in sci-libs/htslib: ChangeLog htslib-1.1.ebuild

2015-01-06 Thread Justin Lecher (jlec)
jlec15/01/06 11:57:49

  Modified: ChangeLog
  Added:htslib-1.1.ebuild
  Log:
  sci-libs/htslib: Version BUmp
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.5  sci-libs/htslib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   20 Sep 2014 19:20:13 -  1.4
+++ ChangeLog   6 Jan 2015 11:57:49 -   1.5
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/htslib
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.4 2014/09/20 
19:20:13 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.5 2015/01/06 
11:57:49 jlec Exp $
+
+*htslib-1.1 (06 Jan 2015)
+
+  06 Jan 2015; Justin Lecher j...@gentoo.org +htslib-1.1.ebuild:
+  Version BUmp
 
   20 Sep 2014; Justin Lecher j...@gentoo.org htslib-1.0.ebuild:
   Fix pc file prefix problems



1.1  sci-libs/htslib/htslib-1.1.ebuild

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

Index: htslib-1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.1.ebuild,v 1.1 
2015/01/06 11:57:49 jlec Exp $

EAPI=5

inherit multilib toolchain-funcs

DESCRIPTION=C library for high-throughput sequencing data formats
HOMEPAGE=http://www.htslib.org/;
SRC_URI=mirror://sourceforge/samtools/${PV}/${P}.tar.bz2

SLOT=0
LICENSE=MIT
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=static-libs

src_prepare() {
sed \
-e /libdir/s:lib$:$(get_libdir):g \
-i Makefile || die
}

src_compile() {
emake \
AR=$(tc-getAR) \
CC=$(tc-getCC) \
CFLAGS=${CFLAGS} \
LDFLAGS=${LDFLAGS}
}

src_install() {
emake \
DESTDIR=${D} \
prefix=${EPREFIX}/usr \
install

rm ${ED}/usr/share/man/man1/libhts.so.1 || die

if ! use static-libs; then
find ${ED} -type f -name *.a -delete || die
fi

dodoc README
}







[gentoo-commits] gentoo-x86 commit in sci-libs/htslib: htslib-1.1.ebuild ChangeLog

2015-01-06 Thread Justin Lecher (jlec)
jlec15/01/06 12:14:13

  Modified: htslib-1.1.ebuild ChangeLog
  Log:
  sci-libs/htslib: Fix broken delete of manpage
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.2  sci-libs/htslib/htslib-1.1.ebuild

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

Index: htslib-1.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- htslib-1.1.ebuild   6 Jan 2015 11:57:49 -   1.1
+++ htslib-1.1.ebuild   6 Jan 2015 12:14:13 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.1.ebuild,v 1.1 
2015/01/06 11:57:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.1.ebuild,v 1.2 
2015/01/06 12:14:13 jlec Exp $
 
 EAPI=5
 
@@ -35,12 +35,9 @@
prefix=${EPREFIX}/usr \
install
 
-   rm ${ED}/usr/share/man/man1/libhts.so.1 || die
-
if ! use static-libs; then
find ${ED} -type f -name *.a -delete || die
fi
 
dodoc README
 }
-



1.6  sci-libs/htslib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   6 Jan 2015 11:57:49 -   1.5
+++ ChangeLog   6 Jan 2015 12:14:13 -   1.6
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/htslib
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.5 2015/01/06 
11:57:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.6 2015/01/06 
12:14:13 jlec Exp $
+
+  06 Jan 2015; Justin Lecher j...@gentoo.org htslib-1.1.ebuild:
+  Fix broken delete of manpage
 
 *htslib-1.1 (06 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in app-vim/slimv: slimv-0.9.12-r1.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 12:44:11

  Modified: ChangeLog
  Added:slimv-0.9.12-r1.ebuild
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.29 app-vim/slimv/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/slimv/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   26 Apr 2014 18:53:00 -  1.28
+++ ChangeLog   6 Jan 2015 12:44:11 -   1.29
@@ -1,6 +1,11 @@
 # ChangeLog for app-vim/slimv
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/ChangeLog,v 1.28 2014/04/26 
18:53:00 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/ChangeLog,v 1.29 2015/01/06 
12:44:11 mgorny Exp $
+
+*slimv-0.9.12-r1 (06 Jan 2015)
+
+  06 Jan 2015; Michał Górny mgo...@gentoo.org +slimv-0.9.12-r1.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
   26 Apr 2014; Agostino Sarubbo a...@gentoo.org slimv-0.9.12.ebuild:
   Stable for x86, wrt bug #502640



1.1  app-vim/slimv/slimv-0.9.12-r1.ebuild

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

Index: slimv-0.9.12-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/slimv-0.9.12-r1.ebuild,v 1.1 
2015/01/06 12:44:11 mgorny Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit python-single-r1 vim-plugin vcs-snapshot

DESCRIPTION=vim plugin: aid Lisp development by providing a SLIME-like Lisp 
and Clojure REPL
HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=2531;
SRC_URI=https://bitbucket.org/kovisoft/${PN}/get/${PV}.tar.bz2 - ${P}.tar.bz2
LICENSE=public-domain
KEYWORDS=~amd64 ~x86

RDEPEND=|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
${PYTHON_DEPS}
|| (
dev-lisp/clisp
dev-lang/clojure
dev-lisp/abcl
dev-lisp/clozurecl
dev-lisp/ecls
dev-lisp/sbcl
)

REQUIRED_USE=${PYTHON_REQUIRED_USE}

VIM_PLUGIN_HELPFILES=${PN}.txt

src_prepare() {
# remove emacs related files
rm -r slime swank-clojure || die
}






[gentoo-commits] gentoo-x86 commit in app-vim/vimcalc: vimcalc-1.3-r1.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 13:04:37

  Modified: ChangeLog
  Added:vimcalc-1.3-r1.ebuild
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  app-vim/vimcalc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   11 Dec 2011 09:15:29 -  1.4
+++ ChangeLog   6 Jan 2015 13:04:37 -   1.5
@@ -1,6 +1,11 @@
 # ChangeLog for app-vim/vimcalc
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.4 2011/12/11 
09:15:29 phajdan.jr Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.5 2015/01/06 
13:04:37 mgorny Exp $
+
+*vimcalc-1.3-r1 (06 Jan 2015)
+
+  06 Jan 2015; Michał Górny mgo...@gentoo.org +vimcalc-1.3-r1.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
   11 Dec 2011; Pawel Hajdan jr phajdan...@gentoo.org vimcalc-1.3.ebuild:
   x86 stable wrt bug #393145
@@ -16,4 +21,3 @@
   04 May 2011; Tim Harder radher...@gentoo.org +vimcalc-1.3.ebuild,
   +metadata.xml:
   Initial import.
-



1.1  app-vim/vimcalc/vimcalc-1.3-r1.ebuild

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

Index: vimcalc-1.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r1.ebuild,v 1.1 
2015/01/06 13:04:37 mgorny Exp $

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

inherit python-single-r1 vim-plugin

DESCRIPTION=vim plugin: provides an interactive calculator inside vim
HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=3329;
SRC_URI=http://www.vim.org/scripts/download_script.php?src_id=15317 - 
${P}.zip
LICENSE=vim
KEYWORDS=~amd64 ~x86
IUSE=

VIM_PLUGIN_HELPFILES=vimcalc

DEPEND=app-arch/unzip
RDEPEND=|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
${PYTHON_DEPS}
REQUIRED_USE=${PYTHON_REQUIRED_USE}

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

src_prepare() {
# Remove .DS_Store files that should not be installed
find -type f -name '.DS*' -delete
}






[gentoo-commits] gentoo-x86 commit in x11-wm/stumpwm: stumpwm-0.9.9.ebuild ChangeLog

2015-01-06 Thread JosA MarAa Alonso (nimiux)
nimiux  15/01/06 13:27:35

  Modified: stumpwm-0.9.9.ebuild ChangeLog
  Log:
  Fix bug 534592. Use require instead of asdf:load-op
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.3  x11-wm/stumpwm/stumpwm-0.9.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?r1=1.2r2=1.3

Index: stumpwm-0.9.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- stumpwm-0.9.9.ebuild24 Dec 2014 12:04:04 -  1.2
+++ stumpwm-0.9.9.ebuild6 Jan 2015 13:27:35 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.2 
2014/12/24 12:04:04 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.3 
2015/01/06 13:27:35 nimiux Exp $
 
 EAPI=5
 
@@ -12,17 +12,17 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~sparc ~x86
+KEYWORDS=~amd64 ~x86
 IUSE=doc clisp ecl +sbcl emacs
 
 RESTRICT=strip mirror
 
 RDEPEND=dev-lisp/cl-ppcre
+   sbcl?  ( =dev-lisp/sbcl-1.0.32 )
sbcl? ( =dev-lisp/clx-0.7.4 )
!sbcl? ( !clisp? ( !ecl? ( =dev-lisp/sbcl-1.0.32 ) ) )
!sbcl? ( !clisp? (  ecl? ( =dev-lisp/ecls-10.4.1 ) ) )
!sbcl? (  clisp? ( =dev-lisp/clisp-2.44[X,new-clx] ) )
-   sbcl?  ( =dev-lisp/sbcl-1.0.32 )
emacs? ( virtual/emacs app-emacs/slime )
 DEPEND=${RDEPEND}
sys-apps/texinfo
@@ -32,6 +32,7 @@
 
 get_lisp() {
local lisp
+
for lisp in $@ ; do
use ${lisp}  echo ${lisp}  return
done
@@ -41,16 +42,21 @@
local pdffile=${PN}.pdf
 
texi2pdf -o ${pdffile} ${PN}.texi.in  dodoc ${pdffile} || die
-   cp ${FILESDIR}/README.Gentoo .  sed -i s:@VERSION@:${PV}: 
README.Gentoo || die
+   cp ${FILESDIR}/README.Gentoo .  sed -i s:@VERSION@:${PV}: 
README.Gentoo || die
dodoc AUTHORS NEWS README.md README.Gentoo
-   doinfo ${PN}.info
+   doinfo ${PN}.info
docinto examples ; dodoc sample-stumpwmrc.lisp
 }
 
 src_prepare() {
# Upstream didn't change the version before packaging
sed -i ${S}/${PN}.asd -e 's/:version 0.9.8/:version 0.9.9/' || die
+   # Bug 534592. Does not build with asdf:oos, using require to load the 
package
+   sed -i ${S}/load-${PN}.lisp.in -e s/asdf:oos 'asdf:load-op/require/ 
|| die
eautoreconf
+}
+
+src_configure() {
econf --with-lisp=$(get_lisp sbcl clisp ecl)
 }
 



1.12 x11-wm/stumpwm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   24 Dec 2014 12:04:04 -  1.11
+++ ChangeLog   6 Jan 2015 13:27:35 -   1.12
@@ -1,6 +1,9 @@
 # ChangeLog for x11-wm/stumpwm
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.11 2014/12/24 
12:04:04 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.12 2015/01/06 
13:27:35 nimiux Exp $
+
+  06 Jan 2015; Chema Alonso nim...@gentoo.org stumpwm-0.9.9.ebuild:
+  Fix bug 534592. Use require instead of asdf:load-op
 
   24 Dec 2014; Ulrich Müller u...@gentoo.org stumpwm-0.9.9.ebuild:
   Fix typo in variable name.






[gentoo-commits] gentoo-x86 commit in app-vim/automatictexplugin: automatictexplugin-12.5-r1.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 12:18:44

  Modified: automatictexplugin-12.5-r1.ebuild ChangeLog
  Log:
  Add missing PYTHON_REQUIRED_USE.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  
app-vim/automatictexplugin/automatictexplugin-12.5-r1.ebuild

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

Index: automatictexplugin-12.5-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-vim/automatictexplugin/automatictexplugin-12.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- automatictexplugin-12.5-r1.ebuild   6 Jan 2015 11:46:00 -   1.1
+++ automatictexplugin-12.5-r1.ebuild   6 Jan 2015 12:18:44 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-vim/automatictexplugin/automatictexplugin-12.5-r1.ebuild,v
 1.1 2015/01/06 11:46:00 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-vim/automatictexplugin/automatictexplugin-12.5-r1.ebuild,v
 1.2 2015/01/06 12:18:44 mgorny Exp $
 
 EAPI=5
 
@@ -28,6 +28,8 @@
virtual/tex-base
${PYTHON_DEPS}
 
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
 src_prepare() {
python_fix_shebang .
 }



1.50 app-vim/automatictexplugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/automatictexplugin/ChangeLog?rev=1.50view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/automatictexplugin/ChangeLog?rev=1.50content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/automatictexplugin/ChangeLog?r1=1.49r2=1.50

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/automatictexplugin/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   6 Jan 2015 11:46:00 -   1.49
+++ ChangeLog   6 Jan 2015 12:18:44 -   1.50
@@ -1,6 +1,10 @@
 # ChangeLog for app-vim/automatictexplugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/automatictexplugin/ChangeLog,v 1.49 
2015/01/06 11:46:00 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/automatictexplugin/ChangeLog,v 1.50 
2015/01/06 12:18:44 mgorny Exp $
+
+  06 Jan 2015; Michał Górny mgo...@gentoo.org
+  automatictexplugin-12.5-r1.ebuild:
+  Add missing PYTHON_REQUIRED_USE.
 
 *automatictexplugin-12.5-r1 (06 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in app-vim/conque: conque-2.3-r1.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 12:34:46

  Modified: ChangeLog
  Added:conque-2.3-r1.ebuild
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.12 app-vim/conque/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/conque/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   27 Jul 2014 11:49:15 -  1.11
+++ ChangeLog   6 Jan 2015 12:34:46 -   1.12
@@ -1,6 +1,11 @@
 # ChangeLog for app-vim/conque
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/conque/ChangeLog,v 1.11 2014/07/27 
11:49:15 phajdan.jr Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/conque/ChangeLog,v 1.12 2015/01/06 
12:34:46 mgorny Exp $
+
+*conque-2.3-r1 (06 Jan 2015)
+
+  06 Jan 2015; Michał Górny mgo...@gentoo.org +conque-2.3-r1.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
   26 Jul 2014; Pawel Hajdan jr phajdan...@gentoo.org conque-2.3.ebuild:
   x86 stable wrt bug #513734



1.1  app-vim/conque/conque-2.3-r1.ebuild

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

Index: conque-2.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/conque/conque-2.3-r1.ebuild,v 1.1 
2015/01/06 12:34:46 mgorny Exp $

EAPI=4
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
VIM_PLUGIN_VIM_VERSION=7.1

inherit python-single-r1 vim-plugin

MY_P=${PN}_${PV}
DESCRIPTION=vim plugin: Run interactive commands inside a Vim buffer
HOMEPAGE=http://code.google.com/p/conque/;
SRC_URI=http://${PN}.googlecode.com/files/${MY_P}.tar.gz;
LICENSE=MIT
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND=|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
${PYTHON_DEPS}

REQUIRED_USE=${PYTHON_REQUIRED_USE}

VIM_PLUGIN_HELPFILES=ConqueTerm

S=${WORKDIR}/${MY_P}






[gentoo-commits] proj/x11:master commit in: x11-drivers/ati-drivers/

2015-01-06 Thread Emil Karlson
commit: 9868cd5bfacf40afbdcfa216d6a83144536b5dcb
Author: Emil Karlson jekarlson AT gmail DOT com
AuthorDate: Tue Jan  6 12:41:07 2015 +
Commit: Emil Karlson jekarlson AT gmail DOT com
CommitDate: Tue Jan  6 12:41:07 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=9868cd5b

x11-drivers/ati-drivers: misc fixes

sync portage multilib fixes by Michał Górny
534710, thanks to Marek abulak AT gmail.com
534398, thanks to Dani Church dani.church AT gmail.com

---
 4_p1-r1.ebuild = ati-drivers-14.12-r3.ebuild} | 39 +-
 1 file changed, 23 insertions(+), 16 deletions(-)

diff --git a/x11-drivers/ati-drivers/ati-drivers-14.4_p1-r1.ebuild 
b/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild
similarity index 95%
rename from x11-drivers/ati-drivers/ati-drivers-14.4_p1-r1.ebuild
rename to x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild
index f6cb383..2b31c43 100644
--- a/x11-drivers/ati-drivers/ati-drivers-14.4_p1-r1.ebuild
+++ b/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild
@@ -1,18 +1,19 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI=5
 
+MULTILIB_COMPAT=( abi_x86_{32,64} )
 inherit eutils multilib-build linux-info linux-mod toolchain-funcs versionator 
pax-utils
 
 DESCRIPTION=Ati precompiled drivers for Radeon Evergreen (HD5000 Series) and 
newer chipsets
 HOMEPAGE=http://www.amd.com;
-RUN=${WORKDIR}/fglrx-14.10.1006.1001/amd-driver-installer-14.10.1006.1001-x86.x86_64.run
+RUN=${WORKDIR}/fglrx-14.501.1003/amd-driver-installer-14.501.1003-x86.x86_64.run
 SLOT=1
 # Uses javascript for download YE
 
#DRIVERS_URI=http://www2.ati.com/drivers/linux/amd-catalyst-13.12-linux-x86.x86_64.zip;
-DRIVERS_URI=mirror://gentoo/amd-catalyst-14-4-rev2-linux-x86-x86-64-may6.zip
+DRIVERS_URI=mirror://gentoo/amd-catalyst-omega-14.12-linux-run-installers.zip
 
XVBA_SDK_URI=http://developer.amd.com/wordpress/media/2012/10/xvba-sdk-0.74-404001.tar.gz;
 SRC_URI=${DRIVERS_URI} ${XVBA_SDK_URI}
 FOLDER_PREFIX=common/
@@ -24,7 +25,7 @@ KEYWORDS=-* ~amd64 ~x86
 RESTRICT=bindist test fetch
 
 RDEPEND=
-   =x11-base/xorg-server-1.15.49[-minimal]
+   =x11-base/xorg-server-1.16.49[-minimal]
=app-admin/eselect-opengl-1.0.7
app-admin/eselect-opencl
sys-power/acpid
@@ -35,6 +36,7 @@ RDEPEND=
x11-libs/libXrandr
x11-libs/libXrender
virtual/glu
+   !x11-libs/xvba-video
abi_x86_32? (
|| (
virtual/glu[abi_x86_32]
@@ -123,6 +125,7 @@ QA_SONAME=
usr/lib\(32\|64\)\?/libaticaldd.so
usr/lib\(32\|64\)\?/libaticalrt.so
usr/lib\(32\|64\)\?/libamdocl\(32\|64\)\?.so
+   usr/lib\(32\|64\)\?/libamdhsasc\(32\|64\)\?.so
 
 
 QA_DT_HASH=
@@ -204,7 +207,7 @@ pkg_setup() {

MODULE_NAMES=fglrx(video:${S}/${FOLDER_PREFIX}/lib/modules/fglrx/build_mod/2.6.x)
BUILD_TARGETS=kmod_build
linux-mod_pkg_setup
-   BUILD_PARAMS=GCC_VER_MAJ=$(gcc-major-version) KVER=${KV_FULL} 
KDIR=${KV_DIR}
+   BUILD_PARAMS=GCC_VER_MAJ=$(gcc-major-version) KVER=${KV_FULL} 
KDIR=${KV_OUT_DIR}
BUILD_PARAMS=${BUILD_PARAMS} CFLAGS_MODULE+=\-DMODULE -DATI 
-DFGL\
if grep -q arch_compat_alloc_user_space 
${KV_DIR}/arch/x86/include/asm/compat.h ; then
BUILD_PARAMS=${BUILD_PARAMS} 
CFLAGS_MODULE+=-DCOMPAT_ALLOC_USER_SPACE=arch_compat_alloc_user_space
@@ -307,17 +310,20 @@ src_prepare() {
# compile fix for AGP-less kernel, bug #435322
epatch 
${FILESDIR}/ati-drivers-12.9-KCL_AGP_FindCapsRegisters-stub.patch
 
-   # Compile fix for kernel typesafe uid types #469160
-   epatch ${FILESDIR}/typesafe-kuid.diff
-
epatch ${FILESDIR}/ati-drivers-13.8-beta-include-seq_file.patch
 
# Fix #483400
epatch ${FILESDIR}/fgl_glxgears-do-not-include-glATI.patch
 
+   # Fix #524658
+   epatch ${FILESDIR}/fix-the-linux-3.17-no_hotplug-error.patch
+
# Compile fix, https://bugs.gentoo.org/show_bug.cgi?id=454870
use pax_kernel  epatch ${FILESDIR}/const-notifier-block.patch
 
+   # Compile fix, #526602
+   epatch ${FILESDIR}/use-kernel_fpu_begin.patch
+
cd ${MODULE_DIR}
 
# bugged fglrx build system, this file should be copied by hand
@@ -385,11 +391,6 @@ src_install() {
# amd64 are installed in src_install-libs. Everything else
# (including libraries only available in native 64bit on amd64)
# goes in here.
-
-   # There used to be some code here that tried to detect running
-   # under a native multilib portage ((precursor of)
-   # http://dev.gentoo.org/~kanaka/auto-multilib/). I removed that, it
-   # should just work (only doing some duplicate work). --marienz
multilib_foreach_abi src_install-libs
 
  

[gentoo-commits] gentoo-x86 commit in app-vim/vimpress: vimpress-3.2.0.ebuild ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 13:12:40

  Modified: vimpress-3.2.0.ebuild ChangeLog
  Log:
  Convert to python-single-r1, enforce a match on Python version used by vim.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  app-vim/vimpress/vimpress-3.2.0.ebuild

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

Index: vimpress-3.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vimpress-3.2.0.ebuild   4 Dec 2012 11:23:31 -   1.3
+++ vimpress-3.2.0.ebuild   6 Jan 2015 13:12:40 -   1.4
@@ -1,10 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild,v 
1.3 2012/12/04 11:23:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/vimpress-3.2.0.ebuild,v 
1.4 2015/01/06 13:12:40 mgorny Exp $
 
 EAPI=4
+PYTHON_COMPAT=( python2_7 )
 
-inherit vim-plugin
+inherit python-single-r1 vim-plugin
 
 DESCRIPTION=vim plugin: manage wordpress blogs from vim
 HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=3510;
@@ -12,8 +13,9 @@
 KEYWORDS=amd64 x86
 IUSE=
 
-RDEPEND=|| ( app-editors/vim[python] app-editors/gvim[python] )
-   || ( dev-lang/python:2.7 dev-lang/python:2.6 )
+RDEPEND=|| ( app-editors/vim[python,${PYTHON_USEDEP}] 
app-editors/gvim[python,${PYTHON_USEDEP}] )
+   ${PYTHON_DEPS}
dev-python/markdown
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 VIM_PLUGIN_HELPFILES=${PN}.txt



1.9  app-vim/vimpress/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-vim/vimpress/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   4 Dec 2012 11:23:31 -   1.8
+++ ChangeLog   6 Jan 2015 13:12:40 -   1.9
@@ -1,6 +1,9 @@
 # ChangeLog for app-vim/vimpress
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/ChangeLog,v 1.8 2012/12/04 
11:23:31 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimpress/ChangeLog,v 1.9 2015/01/06 
13:12:40 mgorny Exp $
+
+  06 Jan 2015; Michał Górny mgo...@gentoo.org vimpress-3.2.0.ebuild:
+  Convert to python-single-r1, enforce a match on Python version used by vim.
 
   04 Dec 2012; a...@gentoo.org vimpress-3.2.0.ebuild:
   Stable for x86, wrt bug #441132
@@ -32,4 +35,3 @@
   10 Jun 2011; Tim Harder radher...@gentoo.org +vimpress-2.1.0.ebuild,
   +metadata.xml:
   Initial import.
-






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/06 11:47:26

  Modified: ChangeLog
  Added:pythonutils-0.4.0-r1.ebuild
  Removed:  pythonutils-0.4.0.ebuild
  Log:
  revbump; conversion - distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.10 dev-python/pythonutils/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pythonutils/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   8 Jul 2010 17:36:14 -   1.9
+++ ChangeLog   6 Jan 2015 11:47:26 -   1.10
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pythonutils
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pythonutils/ChangeLog,v 1.9 
2010/07/08 17:36:14 arfrever Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pythonutils/ChangeLog,v 1.10 
2015/01/06 11:47:26 idella4 Exp $
+
+*pythonutils-0.4.0-r1 (06 Jan 2015)
+
+  06 Jan 2015; Ian Delaney idel...@gentoo.org +pythonutils-0.4.0-r1.ebuild,
+  -pythonutils-0.4.0.ebuild:
+  revbump; conversion - distutils-r1, rm old
 
 *pythonutils-0.4.0 (08 Jul 2010)
 
@@ -51,4 +57,3 @@
   03 Sep 2005; Grant Goodyear g2boo...@gentoo.org +metadata.xml,
   +pythonutils-0.2.0.ebuild:
   New package.
-



1.1  dev-python/pythonutils/pythonutils-0.4.0-r1.ebuild

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

Index: pythonutils-0.4.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/pythonutils/pythonutils-0.4.0-r1.ebuild,v 
1.1 2015/01/06 11:47:26 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Voidspace Python modules
HOMEPAGE=http://www.voidspace.org.uk/python/pythonutils.html;
SRC_URI=http://www.voidspace.org.uk/downloads/${P}.zip;

LICENSE=BSD
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=doc

DEPEND=app-arch/unzip
RDEPEND=

python_install_all() {
dodoc docs/*.txt
use doc  local HTML_DOCS=( docs/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in app-text/paperwork: ChangeLog paperwork-0.2.1.ebuild

2015-01-06 Thread Bernard Cafarelli (voyageur)
voyageur15/01/06 12:26:30

  Modified: ChangeLog
  Added:paperwork-0.2.1.ebuild
  Log:
  Version bump, thanks mrueg in bug #533718
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C74525F2)

Revision  ChangesPath
1.2  app-text/paperwork/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/paperwork/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   30 Sep 2014 11:45:41 -  1.1
+++ ChangeLog   6 Jan 2015 12:26:30 -   1.2
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/paperwork
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/paperwork/ChangeLog,v 1.1 
2014/09/30 11:45:41 voyageur Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/paperwork/ChangeLog,v 1.2 
2015/01/06 12:26:30 voyageur Exp $
+
+*paperwork-0.2.1 (06 Jan 2015)
+
+  06 Jan 2015; Bernard Cafarelli voyag...@gentoo.org +paperwork-0.2.1.ebuild:
+  Version bump, thanks mrueg in bug #533718
 
 *paperwork-0.2 (30 Sep 2014)
 



1.1  app-text/paperwork/paperwork-0.2.1.ebuild

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

Index: paperwork-0.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/paperwork/paperwork-0.2.1.ebuild,v 
1.1 2015/01/06 12:26:30 voyageur Exp $

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

inherit distutils-r1

DESCRIPTION=a personal document manager for scanned documents (and PDFs)
HOMEPAGE=https://github.com/jflesch/paperwork;
SRC_URI=https://github.com/jflesch/${PN}/archive/${PV}.tar.gz - ${P}.tar.gz

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

RDEPEND=app-text/poppler[introspection]
dev-python/joblib[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]
dev-python/pyenchant[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
=dev-python/pyinsane-1.3.8[${PYTHON_USEDEP}]
=dev-python/pyocr-0.2.3[${PYTHON_USEDEP}]
dev-python/python-levenshtein[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
dev-python/whoosh[${PYTHON_USEDEP}]
dev-python/wxpython[${PYTHON_USEDEP}]
dev-util/glade[introspection,python]
sci-libs/scikits_learn[${PYTHON_USEDEP}]
sci-libs/scikits_image[${PYTHON_USEDEP}]
virtual/python-imaging[${PYTHON_USEDEP}]
x11-libs/gtk+:3[introspection]
DEPEND=${RDEPEND}

pkg_postinst() {
elog To improve page orientation detection, you can optionally 
install:
elog  app-dicts/aspell-your language
}






[gentoo-commits] gentoo-x86 commit in sci-biology/samtools/files: samtools-1.1-buildsystem.patch

2015-01-06 Thread Justin Lecher (jlec)
jlec15/01/06 12:57:48

  Added:samtools-1.1-buildsystem.patch
  Log:
  sci-biology/samtools: Version BUmp
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.1  sci-biology/samtools/files/samtools-1.1-buildsystem.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/samtools/files/samtools-1.1-buildsystem.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/samtools/files/samtools-1.1-buildsystem.patch?rev=1.1content-type=text/plain

Index: samtools-1.1-buildsystem.patch
===
 Makefile | 76 
 1 file changed, 43 insertions(+), 33 deletions(-)

diff --git a/Makefile b/Makefile
index 43cefc3..743dd07 100644
--- a/Makefile
+++ b/Makefile
@@ -21,11 +21,12 @@
 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 # DEALINGS IN THE SOFTWARE.
 
-CC   = gcc
-CPPFLAGS = $(DFLAGS) $(INCLUDES)
-CFLAGS   = -g -Wall -O2
-LDFLAGS  =
-LDLIBS   =
+CC   ?= gcc
+CPPFLAGS += $(DFLAGS) $(INCLUDES)
+CFLAGS   ?= -g -Wall -O2
+LDFLAGS  +=
+LDLIBS   +=
+BAMLIB   ?= libbam.a
 DFLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_CURSES_LIB=1
 LOBJS=  bam_aux.o bam.o bam_import.o sam.o \
 sam_header.o bam_plbuf.o
@@ -42,6 +43,7 @@ LIBCURSES=  -lcurses # -lXCurses
 prefix  = /usr/local
 exec_prefix = $(prefix)
 bindir  = $(exec_prefix)/bin
+libdir  = $(exec_prefix)/lib
 mandir  = $(prefix)/share/man
 man1dir = $(mandir)/man1
 
@@ -115,63 +117,71 @@ version.h:
 .c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $
 
+$(LOBJS):
+   $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $
 
-lib:libbam.a
+
+lib:libbam.a libbam.so.1.0
 
 libbam.a:$(LOBJS)
$(AR) -csru $@ $(LOBJS)
 
-samtools: $(AOBJS) libbam.a $(HTSLIB)
-   $(CC) -pthread $(LDFLAGS) -o $@ $(AOBJS) libbam.a $(HTSLIB) $(LDLIBS) 
$(LIBCURSES) -lm -lz
+libbam.so.1.0:$(LOBJS)
+   $(CC) $(LDFLAGS) -shared -Wl,--soname,$@ -o $@ $(LOBJS) $(HTSLIB) -lz
+   ln -sf $@ libbam.so.0
+   ln -sf $@ libbam.so
+
+samtools: $(AOBJS) lib
+   $(CC) -pthread $(LDFLAGS) -o $@ $(AOBJS) $(BAMLIB) $(HTSLIB) $(LDLIBS) 
$(LIBCURSES) -lm -lz
 
 bam_h = bam.h $(htslib_bgzf_h) $(htslib_sam_h)
 bam2bcf_h = bam2bcf.h $(htslib_vcf_h) errmod.h
 bam_lpileup_h = bam_lpileup.h $(htslib_sam_h)
 bam_plbuf_h = bam_plbuf.h $(htslib_sam_h)
-bam_tview_h = bam_tview.h $(htslib_hts_h) $(htslib_sam_h) $(htslib_faidx_h) 
$(bam2bcf_h) $(HTSDIR)/htslib/khash.h $(bam_lpileup_h)
+bam_tview_h = bam_tview.h $(htslib_hts_h) $(htslib_sam_h) $(htslib_faidx_h) 
$(bam2bcf_h) $(bam_lpileup_h)
 sam_h = sam.h $(htslib_sam_h) $(bam_h)
-sample_h = sample.h $(HTSDIR)/htslib/kstring.h
+sample_h = sample.h
 
 bam.o: bam.c $(bam_h) sam_header.h
-bam2bcf.o: bam2bcf.c $(htslib_sam_h) $(HTSDIR)/htslib/kstring.h 
$(HTSDIR)/htslib/kfunc.h $(bam2bcf_h) errmod.h
+bam2bcf.o: bam2bcf.c $(htslib_sam_h) $(bam2bcf_h) errmod.h
 bam2bcf_indel.o: bam2bcf_indel.c bam2bcf.h
 bam2depth.o: bam2depth.c $(htslib_sam_h) samtools.h
 bam_aux.o: bam_aux.c
 bam_cat.o: bam_cat.c $(htslib_bgzf_h) $(bam_h)
 bam_color.o: bam_color.c $(bam_h)
-bam_import.o: bam_import.c $(HTSDIR)/htslib/kstring.h $(bam_h) 
$(HTSDIR)/htslib/kseq.h
-bam_index.o: bam_index.c $(htslib_hts_h) $(htslib_sam_h) 
$(HTSDIR)/htslib/khash.h
-bam_lpileup.o: bam_lpileup.c $(bam_plbuf_h) $(bam_lpileup_h) 
$(HTSDIR)/htslib/ksort.h
+bam_import.o: bam_import.c $(bam_h)
+bam_index.o: bam_index.c $(htslib_hts_h) $(htslib_sam_h)
+bam_lpileup.o: bam_lpileup.c $(bam_plbuf_h) $(bam_lpileup_h)
 bam_mate.o: bam_mate.c $(bam_h)
 bam_md.o: bam_md.c $(htslib_faidx_h) $(sam_h) kaln.h kprobaln.h
 bam_pileup.o: bam_pileup.c $(sam_h)
 bam_plbuf.o: bam_plbuf.c $(htslib_hts_h) $(htslib_sam_h) $(bam_plbuf_h)
-bam_plcmd.o: bam_plcmd.c $(htslib_sam_h) $(htslib_faidx_h) 
$(HTSDIR)/htslib/kstring.h $(HTSDIR)/htslib/khash_str2int.h sam_header.h 
samtools.h $(bam2bcf_h) $(sample_h)
+bam_plcmd.o: bam_plcmd.c $(htslib_sam_h) $(htslib_faidx_h) sam_header.h 
samtools.h $(bam2bcf_h) $(sample_h)
 bam_reheader.o: bam_reheader.c $(htslib_bgzf_h) $(bam_h)
-bam_rmdup.o: bam_rmdup.c $(sam_h) $(HTSDIR)/htslib/khash.h
-bam_rmdupse.o: bam_rmdupse.c $(sam_h) $(HTSDIR)/htslib/khash.h 
$(HTSDIR)/htslib/klist.h
-bam_sort.o: bam_sort.c $(HTSDIR)/htslib/ksort.h $(HTSDIR)/htslib/khash.h 
$(HTSDIR)/htslib/klist.h $(HTSDIR)/htslib/kstring.h $(htslib_sam_h)
+bam_rmdup.o: bam_rmdup.c $(sam_h)
+bam_rmdupse.o: bam_rmdupse.c $(sam_h)
+bam_sort.o: bam_sort.c  $(htslib_sam_h)
 bam_stat.o: bam_stat.c $(bam_h) samtools.h
 bam_tview.o: bam_tview.c $(bam_tview_h) $(htslib_faidx_h) $(htslib_sam_h) 
$(htslib_bgzf_h)
 bam_tview_curses.o: bam_tview_curses.c $(bam_tview_h)
 bam_tview_html.o: bam_tview_html.c $(bam_tview_h)
 bam_flags.o: bam_flags.c $(sam_h)
-bamshuf.o: bamshuf.c 

[gentoo-commits] gentoo-x86 commit in sci-biology/samtools: ChangeLog samtools-1.1.ebuild

2015-01-06 Thread Justin Lecher (jlec)
jlec15/01/06 12:57:48

  Modified: ChangeLog
  Added:samtools-1.1.ebuild
  Log:
  sci-biology/samtools: Version BUmp
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.21 sci-biology/samtools/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/samtools/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   25 Sep 2014 15:20:53 -  1.20
+++ ChangeLog   6 Jan 2015 12:57:48 -   1.21
@@ -1,6 +1,12 @@
 # ChangeLog for sci-biology/samtools
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/samtools/ChangeLog,v 1.20 
2014/09/25 15:20:53 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/samtools/ChangeLog,v 1.21 
2015/01/06 12:57:48 jlec Exp $
+
+*samtools-1.1 (06 Jan 2015)
+
+  06 Jan 2015; Justin Lecher j...@gentoo.org +samtools-1.1.ebuild,
+  +files/samtools-1.1-buildsystem.patch:
+  Version BUmp
 
 *samtools-1.0-r1 (25 Sep 2014)
 



1.1  sci-biology/samtools/samtools-1.1.ebuild

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

Index: samtools-1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/samtools/samtools-1.1.ebuild,v 
1.1 2015/01/06 12:57:48 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit eutils multilib python-r1 toolchain-funcs

DESCRIPTION=Utilities for SAM (Sequence Alignment/Map), a format for large 
nucleotide sequence alignments
HOMEPAGE=http://www.htslib.org/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos
IUSE=examples

REQUIRED_USE=${PYTHON_REQUIRED_USE}

CDEPEND=
sys-libs/ncurses
~sci-libs/htslib-${PV}

RDEPEND=${CDEPEND}
dev-lang/lua
dev-lang/perl
DEPEND=${CDEPEND}
virtual/pkgconfig

src_prepare() {
find htslib-* -delete || die

sed -i 's~/software/bin/python~/usr/bin/env python~' 
${S}/misc/varfilter.py || die

epatch ${FILESDIR}/${P}-buildsystem.patch

tc-export CC AR

sed \
-e '/htslib.mk/d' \
-i Makefile || die

}

src_compile() {
local mymakeargs=(
LIBCURSES=$($(tc-getPKG_CONFIG) --libs ncurses)
HTSDIR=${EPREFIX}/usr/include
HTSLIB=$($(tc-getPKG_CONFIG) --libs htslib)
BAMLIB=libbam.so
)
emake ${mymakeargs[@]}
}

src_test() {
local mymakeargs=(
LIBCURSES=$($(tc-getPKG_CONFIG) --libs ncurses)
HTSDIR=${EPREFIX}/usr/include
HTSLIB=$($(tc-getPKG_CONFIG) --libs htslib)
BAMLIB=libbam.so
)
emake ${mymakeargs[@]} test
}

src_install() {
dobin samtools $(find misc -type f -executable)

python_replicate_script ${ED}/usr/bin/varfilter.py
dolib.so libbam.so*

insinto /usr/include/bam
doins *.h

doman ${PN}.1
dodoc AUTHORS NEWS README

if use examples; then
insinto /usr/share/${PN}
doins -r examples
fi
}






[gentoo-commits] gentoo-x86 commit in x11-libs/libXaw: libXaw-1.0.12.ebuild ChangeLog

2015-01-06 Thread Pacho Ramos (pacho)
pacho   15/01/06 14:29:54

  Modified: libXaw-1.0.12.ebuild ChangeLog
  Log:
  Fix build with gcc -Werror=format-security, bug #512404
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.12 x11-libs/libXaw/libXaw-1.0.12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild?rev=1.12view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild?rev=1.12content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild?r1=1.11r2=1.12

Index: libXaw-1.0.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libXaw-1.0.12.ebuild18 Jun 2014 21:04:57 -  1.11
+++ libXaw-1.0.12.ebuild6 Jan 2015 14:29:54 -   1.12
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild,v 1.11 
2014/06/18 21:04:57 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/libXaw-1.0.12.ebuild,v 1.12 
2015/01/06 14:29:54 pacho Exp $
 
 EAPI=5
 
@@ -22,6 +22,11 @@
=x11-proto/xextproto-7.2.1-r1[${MULTILIB_USEDEP}]
 DEPEND=${RDEPEND}
 
+PATCHES=(
+   # Fix build with gcc -Werror=format-security (from 'master')
+   ${FILESDIR}/${P}-format-security.patch
+)
+
 src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable deprecated xaw6)



1.131x11-libs/libXaw/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/ChangeLog?rev=1.131view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/ChangeLog?rev=1.131content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/ChangeLog?r1=1.130r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libXaw/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   18 Jun 2014 21:04:57 -  1.130
+++ ChangeLog   6 Jan 2015 14:29:54 -   1.131
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/libXaw
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/ChangeLog,v 1.130 
2014/06/18 21:04:57 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw/ChangeLog,v 1.131 
2015/01/06 14:29:54 pacho Exp $
+
+  06 Jan 2015; Pacho Ramos pa...@gentoo.org
+  +files/libXaw-1.0.12-format-security.patch, libXaw-1.0.12.ebuild:
+  Fix build with gcc -Werror=format-security, bug #512404
 
   18 Jun 2014; Michał Górny mgo...@gentoo.org libXaw-1.0.11-r2.ebuild,
   libXaw-1.0.12.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-libs/libXaw/files: libXaw-1.0.12-format-security.patch

2015-01-06 Thread Pacho Ramos (pacho)
pacho   15/01/06 14:29:54

  Added:libXaw-1.0.12-format-security.patch
  Log:
  Fix build with gcc -Werror=format-security, bug #512404
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.1  x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch?rev=1.1content-type=text/plain

Index: libXaw-1.0.12-format-security.patch
===
From ec7d7c303385a6bdb0833a5aaae96be697cca7ab Mon Sep 17 00:00:00 2001
From: Adam Jackson a...@redhat.com
Date: Thu, 21 Nov 2013 11:43:55 -0500
Subject: Fix build with gcc -Werror=format-security

DisplayList.c:290:4: error: format not a string literal and no format
arguments [-Werror=format-security]

Signed-off-by: Adam Jackson a...@redhat.com

diff --git a/src/DisplayList.c b/src/DisplayList.c
index 3e99df4..0581bf7 100644
--- a/src/DisplayList.c
+++ b/src/DisplayList.c
@@ -287,7 +287,7 @@ _XawDisplayList *XawCreateDisplayList(String string, Screen 
*screen,
}
   if (fp)
{
- snprintf(cname, fp - fname + 1, fname);
+ snprintf(cname, fp - fname + 1, %s, fname);
  memmove(fname, fp + 1, strlen(fp));
  lc = cname[0] ? XawGetDisplayListClass(cname) : xlibc;
  if (!lc)
-- 
cgit v0.10.2







[gentoo-commits] gentoo-x86 commit in dev-python/remoteobjects: remoteobjects-99999999.ebuild ChangeLog

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/06 13:32:56

  Modified: remoteobjects-.ebuild ChangeLog
  Log:
  conversion - distutils-r1
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

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

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

Index: remoteobjects-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/remoteobjects/remoteobjects-.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- remoteobjects-.ebuild   21 Sep 2011 08:46:37 -  1.3
+++ remoteobjects-.ebuild   6 Jan 2015 13:32:56 -   1.4
@@ -1,14 +1,11 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/remoteobjects/remoteobjects-.ebuild,v
 1.3 2011/09/21 08:46:37 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/remoteobjects/remoteobjects-.ebuild,v
 1.4 2015/01/06 13:32:56 idella4 Exp $
 
-EAPI=3
-PYTHON_DEPEND=2
-SUPPORT_PYTHON_ABIS=1
-RESTRICT_PYTHON_ABIS=3.*
-DISTUTILS_SRC_TEST=nosetests
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
 
-inherit distutils
+inherit distutils-r1
 
 if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://github.com/LegNeato/${PN}.git
@@ -22,17 +19,20 @@
 LICENSE=BSD
 SLOT=0
 KEYWORDS=
-IUSE=
+IUSE=test
 
-RDEPEND=dev-python/simplejson
-   dev-python/httplib2
+RDEPEND=dev-python/simplejson[${PYTHON_USEDEP}]
+   dev-python/httplib2[${PYTHON_USEDEP}]
 DEPEND=${DEPEND}
-   dev-python/setuptools
-   test? ( dev-python/mox )
-
-src_prepare() {
-   distutils_src_prepare
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/mox[${PYTHON_USEDEP}] )
 
+python_prepare_all() {
# Disable failing tests.
sed -e s/test_get_bad_encoding/_/ -i tests/test_http.py
+   distutils-r1_python_prepare_all
+}
+
+pthon_test() {
+   nosetests || die tests failed
 }



1.4  dev-python/remoteobjects/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/remoteobjects/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   21 Sep 2011 08:46:37 -  1.3
+++ ChangeLog   6 Jan 2015 13:32:56 -   1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/remoteobjects
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/remoteobjects/ChangeLog,v 1.3 
2011/09/21 08:46:37 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/remoteobjects/ChangeLog,v 1.4 
2015/01/06 13:32:56 idella4 Exp $
+
+  06 Jan 2015; Ian Delaney idel...@gentoo.org remoteobjects-.ebuild:
+  conversion - distutils-r1
 
   21 Sep 2011; Michał Górny mgo...@gentoo.org
   remoteobjects-.ebuild:






[gentoo-commits] gentoo-x86 commit in x11-wm/stumpwm: stumpwm-0.9.9.ebuild metadata.xml ChangeLog

2015-01-06 Thread JosA MarAa Alonso (nimiux)
nimiux  15/01/06 13:42:30

  Modified: stumpwm-0.9.9.ebuild metadata.xml ChangeLog
  Log:
  Update flags in metadata
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.4  x11-wm/stumpwm/stumpwm-0.9.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild?r1=1.3r2=1.4

Index: stumpwm-0.9.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- stumpwm-0.9.9.ebuild6 Jan 2015 13:27:35 -   1.3
+++ stumpwm-0.9.9.ebuild6 Jan 2015 13:42:30 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.3 
2015/01/06 13:27:35 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/stumpwm-0.9.9.ebuild,v 1.4 
2015/01/06 13:42:30 nimiux Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 LICENSE=GPL-2
 SLOT=0
 KEYWORDS=~amd64 ~x86
-IUSE=doc clisp ecl +sbcl emacs
+IUSE=doc emacs clisp ecl +sbcl
 
 RESTRICT=strip mirror
 



1.8  x11-wm/stumpwm/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/metadata.xml?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/metadata.xml?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/stumpwm/metadata.xml?r1=1.7r2=1.8

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml23 Dec 2014 22:28:11 -  1.7
+++ metadata.xml6 Jan 2015 13:42:30 -   1.8
@@ -21,6 +21,8 @@
   while it's running. That's right. With a 100% Common Lisp window manager 
there's no stopping the hacks. Just re-eval and GO!
 /longdescription
 use
+  flag name=docInclude documentation/flag
+  flag name=emacsAdd support for GNU Emacs/flag
   flag name=clispUse CLISP for the runtime/flag
   flag name=eclUse SCL for the runtime/flag
   flag name=sbclUse SBCL for the runtime/flag



1.13 x11-wm/stumpwm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   6 Jan 2015 13:27:35 -   1.12
+++ ChangeLog   6 Jan 2015 13:42:30 -   1.13
@@ -1,6 +1,10 @@
 # ChangeLog for x11-wm/stumpwm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.12 2015/01/06 
13:27:35 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/stumpwm/ChangeLog,v 1.13 2015/01/06 
13:42:30 nimiux Exp $
+
+  06 Jan 2015; Chema Alonso nim...@gentoo.org stumpwm-0.9.9.ebuild,
+  metadata.xml:
+  Update flags in metadata
 
   06 Jan 2015; Chema Alonso nim...@gentoo.org stumpwm-0.9.9.ebuild:
   Fix bug 534592. Use require instead of asdf:load-op






[gentoo-commits] gentoo-x86 commit in dev-libs/libevent: libevent-2.0.22.ebuild ChangeLog

2015-01-06 Thread Agostino Sarubbo (ago)
ago 15/01/06 13:36:05

  Modified: libevent-2.0.22.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #535774
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=amd64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.2  dev-libs/libevent/libevent-2.0.22.ebuild

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

Index: libevent-2.0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libevent-2.0.22.ebuild  6 Jan 2015 10:39:56 -   1.1
+++ libevent-2.0.22.ebuild  6 Jan 2015 13:36:05 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.1 2015/01/06 10:39:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.2 2015/01/06 13:36:05 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -13,7 +13,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
 IUSE=debug +ssl static-libs test +threads
 
 DEPEND=ssl? ( =dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )



1.284dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.283
retrieving revision 1.284
diff -u -r1.283 -r1.284
--- ChangeLog   6 Jan 2015 10:44:32 -   1.283
+++ ChangeLog   6 Jan 2015 13:36:05 -   1.284
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.283 
2015/01/06 10:44:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.284 
2015/01/06 13:36:05 ago Exp $
+
+  06 Jan 2015; Agostino Sarubbo a...@gentoo.org libevent-2.0.22.ebuild:
+  Stable for amd64, wrt bug #535774
 
   06 Jan 2015; Jeroen Roovers j...@gentoo.org -libevent-2.0.21-r2.ebuild,
   -libevent-2.1.4-r1.ebuild:






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: c51a1996485f2836677d1a829e314e2a1fd85327
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jan  6 15:14:56 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jan  6 15:14:56 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=c51a1996

misc/elf-abi: add logic for mips abis

---
 misc/elf-abi/elf-abi.c | 147 -
 1 file changed, 85 insertions(+), 62 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 0a271ba..fb53391 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -7,25 +7,21 @@
  *
  * Supported identifiers:
  *
- * alpha_{32,64}
- * arm_{32,64}
- * hppa_{32,64}
- * ia_{32,64}
- * m68k_{32,64}
+ * alpha_64
+ * arm_{oabi,eabi}
+ * arm_64
+ * hppa_32
+ * ia_64
+ * m68k_32
  * mips_{n32,n64,o32}
  * ppc_{32,64}
  * s390_{32,64}
- * sh_{32,64}
+ * sh_32
  * sparc_{32,64}
  * x86_{32,x32,64}
  *
  * NOTES:
  *
- * * The ABIs referenced by some of the above *_32 and *_64 identifiers
- *   may be imaginary, but they are listed anyway, since the goal is to
- *   establish a naming convention that is as consistent and uniform as
- *   possible.
- *
  * * The Elf header's e_ident[EI_OSABI] byte is completely ignored,
  *   since OS-independence is one of the goals. The assumption is that,
  *   for given installation, we are only interested in tracking multilib
@@ -85,19 +81,13 @@
 #define EM_IA_64   50  /* Intel Merced */
 #define EM_X86_64  62  /* AMD x86-64 architecture */
 #define EM_AARCH64 183 /* ARM AARCH64 */
-#define EM_ALPHA   0x9026
+#define EM_ALPHA   0x9026  /* Unofficial, but needed in Gentoo */
+#define EM_HPPA0x0F00  /* Unofficial, but needed in 
Gentoo */
 
-#define EF_MIPS_ABI2   32
-#define EF_MIPS_ABI_ON32   64
-/*
-E_MIPS_ABI_O32 = 0x1000
-E_MIPS_ABI_O64 = 0x2000
-E_MIPS_ABI_EABI32  = 0x3000
-E_MIPS_ABI_EABI64  = 0x4000
-*/
+#define EF_MIPS_ABI0xF000
+#define E_MIPS_ABI_O32 0x1000
 
-#define EF_ARM_NEW_ABI 0x80
-#define EF_ARM_OLD_ABI 0x100
+#define EF_ARM_EABIMASK0XFF00
 
 
 int
@@ -117,44 +107,100 @@ get_wordsize(uint8_t ei_class)
 char *
 get_abi(uint16_t e_machine, int width, uint32_t e_flags)
 {
+   /* The following arrives at the abstract ABI name by a process of 
elimination based on the assumption
+* that we are only interested in the ABIs supported in Gentoo.  If a 
new ABIs is added, you need to
+* rethink the logic to avoid false positives/negatives.
+*/
switch(e_machine) {
+
+   /* alpha: We support only one 64-bit ABI. */
case EM_ALPHA:
case EM_FAKE_ALPHA:
-   return alpha;
+   return alpha_64;
+
+   /* amd64 + x86: We support X86-64, X86-X32, and X86-32 ABI. The 
first
+* two are 64-bit ABIs and the third is 32-bit.  All three will 
run on
+* amd64 architecture, but only the 32-bit will run on the x86 
family.
+*/
case EM_X86_64:
-   return amd64;
+   if (width == 64)
+   return x86_64;
+   else
+   return x86_x32;
+   case EM_386:
+   return x86_32;
+
+   /* arm: We support two 32-bit ABIs, eabi and oabi. */
case EM_ARM:
-   return arm;
+   if (e_flags  EF_ARM_EABIMASK)
+   return arm_eabi;
+   else
+   return arm_oabi;
+
+   /* arm64: We support only one 64-bit ABI. */
case EM_AARCH64:
-   return arm64;
+   return arm_64;
+
+   /* m68k: We support only one 32-bit ABI. */
case EM_68K:
-   return m68k;
+   return m68k_32;
+
+   /* mips: We support o32, n32 and n64.  The first is 32-bits and 
the
+* latter two are 64-bit ABIs.
+*/
case EM_MIPS_RS3_LE:
case EM_MIPS:
-   return mips;
+   if (width == 64)
+   return mips_n64;
+   else
+   if ((e_flags  EF_MIPS_ABI) == E_MIPS_ABI_O32)
+   return mips_o32;
+   else
+   return mips_n32;
+
+   /* ia64: We support only one 64-bit ABI. */
case EM_IA_64:
- 

[gentoo-commits] gentoo-x86 commit in games-puzzle/icebreaker: icebreaker-1.9.6.ebuild ChangeLog

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 18:56:45

  Modified: icebreaker-1.9.6.ebuild ChangeLog
  Log:
  use epatch
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  games-puzzle/icebreaker/icebreaker-1.9.6.ebuild

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

Index: icebreaker-1.9.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icebreaker-1.9.6.ebuild 24 Jun 2013 20:45:12 -  1.2
+++ icebreaker-1.9.6.ebuild 6 Jan 2015 18:56:45 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild,v 1.2 
2013/06/24 20:45:12 tupone Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.6.ebuild,v 1.3 
2015/01/06 18:56:45 mr_bones_ Exp $
 
 EAPI=5
 inherit eutils games
@@ -18,10 +18,13 @@
media-libs/sdl-mixer
 DEPEND=${RDEPEND}
 
-PATCHES=( ${FILESDIR}/${P}-ldflags.patch
-   ${FILESDIR}/${P}-gentoo.patch
-   ${FILESDIR}/${P}-parallell-install.patch
-   ${FILESDIR}/${P}-ovfl.patch )
+src_prepare() {
+   epatch \
+   ${FILESDIR}/${P}-ldflags.patch \
+   ${FILESDIR}/${P}-gentoo.patch \
+   ${FILESDIR}/${P}-parallell-install.patch \
+   ${FILESDIR}/${P}-ovfl.patch
+}
 
 src_compile() {
emake \



1.19 games-puzzle/icebreaker/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/icebreaker/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   24 Jun 2013 20:45:12 -  1.18
+++ ChangeLog   6 Jan 2015 18:56:45 -   1.19
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/icebreaker
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/ChangeLog,v 1.18 
2013/06/24 20:45:12 tupone Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/ChangeLog,v 1.19 
2015/01/06 18:56:45 mr_bones_ Exp $
+
+  06 Jan 2015; Michael Sterrett mr_bon...@gentoo.org icebreaker-1.9.6.ebuild:
+  use epatch
 
   24 Jun 2013; Tupone Alfredo tup...@gentoo.org icebreaker-1.9.6.ebuild,
   +files/icebreaker-1.9.6-ovfl.patch:
@@ -88,4 +91,3 @@
   files/digest-icebreaker-1.2.1 :
 
   New game
-






[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp: ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:51:39

  Modified: ChangeLog
  Log:
  One more for portability.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.23 net-analyzer/nttcp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   6 Jan 2015 19:43:48 -   1.22
+++ ChangeLog   6 Jan 2015 19:51:39 -   1.23
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/nttcp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.22 
2015/01/06 19:43:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.23 
2015/01/06 19:51:39 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org
+  files/nttcp-1.47-format-security.patch:
+  One more for portability.
 
 *nttcp-1.47-r3 (06 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop: - New directory

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:08:49

  Log:
  Directory /var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop/files: - New directory

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:08:50

  Log:
  Directory /var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop/files added 
to the repository



[gentoo-commits] gentoo-x86 commit in games-puzzle/xlogical: xlogical-1.0.7.ebuild ChangeLog

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 19:07:52

  Modified: xlogical-1.0.7.ebuild ChangeLog
  Log:
  EAPI=5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.10 games-puzzle/xlogical/xlogical-1.0.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild?r1=1.9r2=1.10

Index: xlogical-1.0.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xlogical-1.0.7.ebuild   21 Jul 2013 11:11:24 -  1.9
+++ xlogical-1.0.7.ebuild   6 Jan 2015 19:07:52 -   1.10
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v 1.9 
2013/07/21 11:11:24 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v 1.10 
2015/01/06 19:07:52 mr_bones_ Exp $
 
-EAPI=2
+EAPI=5
 inherit autotools versionator eutils games
 
 MY_PV=$(replace_version_separator 2 '-' )
@@ -17,7 +17,7 @@
 KEYWORDS=amd64 x86
 IUSE=alt_gfx
 
-RDEPEND=media-libs/libsdl
+RDEPEND=media-libs/libsdl[sound,video]
media-libs/sdl-image[jpeg]
media-libs/sdl-mixer[mod]
 DEPEND=${RDEPEND}
@@ -39,18 +39,19 @@
epatch \
${FILESDIR}/${P}-gcc41.patch \
${FILESDIR}/${P}-gcc43.patch
+   mv configure.in configure.ac
eautoreconf
 }
 
 src_install() {
-   dogamesbin ${PN} || die
+   dogamesbin ${PN}
 
insinto ${GAMES_DATADIR}/${PN}
-   doins -r ${PN}.{properties,levels} music sound images || die
+   doins -r ${PN}.{properties,levels} music sound images
find ${D} -name Makefile* -exec rm -f '{}' +
 
insinto ${GAMES_STATEDIR}/${PN}
-   doins ${PN}.scores || die
+   doins ${PN}.scores
fperms 0660 ${GAMES_STATEDIR}/${PN}/${PN}.scores
 
dodoc AUTHORS ChangeLog NEWS README TODO



1.8  games-puzzle/xlogical/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   21 Jul 2013 11:11:24 -  1.7
+++ ChangeLog   6 Jan 2015 19:07:52 -   1.8
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/xlogical
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/ChangeLog,v 1.7 
2013/07/21 11:11:24 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/ChangeLog,v 1.8 
2015/01/06 19:07:52 mr_bones_ Exp $
+
+  06 Jan 2015; Michael Sterrett mr_bon...@gentoo.org xlogical-1.0.7.ebuild:
+  EAPI=5
 
   21 Jul 2013; Agostino Sarubbo a...@gentoo.org xlogical-1.0.7.ebuild:
   Stable for amd64, wrt bug #477426






[gentoo-commits] gentoo-x86 commit in dev-db/mysql-super-smack: mysql-super-smack-1.3-r3.ebuild mysql-super-smack-1.3-r2.ebuild ChangeLog

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 19:45:14

  Modified: mysql-super-smack-1.3-r3.ebuild
mysql-super-smack-1.3-r2.ebuild ChangeLog
  Log:
  Fix parallel make for bug 425340
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.5  dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild?r1=1.4r2=1.5

Index: mysql-super-smack-1.3-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mysql-super-smack-1.3-r3.ebuild 28 Dec 2014 15:05:44 -  1.4
+++ mysql-super-smack-1.3-r3.ebuild 6 Jan 2015 19:45:14 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild,v
 1.4 2014/12/28 15:05:44 titanofold Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r3.ebuild,v
 1.5 2015/01/06 19:45:14 grknight Exp $
 
 EAPI=5
 WANT_AUTOMAKE=1.13



1.10 dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild?r1=1.9r2=1.10

Index: mysql-super-smack-1.3-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mysql-super-smack-1.3-r2.ebuild 28 Dec 2014 15:05:44 -  1.9
+++ mysql-super-smack-1.3-r2.ebuild 6 Jan 2015 19:45:14 -   1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v
 1.9 2014/12/28 15:05:44 titanofold Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v
 1.10 2015/01/06 19:45:14 grknight Exp $
 
 EAPI=2
 WANT_AUTOMAKE=1.4



1.24 dev-db/mysql-super-smack/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/ChangeLog?rev=1.24view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/ChangeLog?rev=1.24content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/ChangeLog?r1=1.23r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   28 Dec 2014 15:05:44 -  1.23
+++ ChangeLog   6 Jan 2015 19:45:14 -   1.24
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/mysql-super-smack
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/ChangeLog,v 1.23 
2014/12/28 15:05:44 titanofold Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/ChangeLog,v 1.24 
2015/01/06 19:45:14 grknight Exp $
+
+  06 Jan 2015; Brian Evans grkni...@gentoo.org
+  files/mysql-super-smack-1.3-automake-1.13.patch,
+  mysql-super-smack-1.3-r2.ebuild, mysql-super-smack-1.3-r3.ebuild:
+  Fix parallel make for bug 425340
 
   28 Dec 2014; Aaron W. Swenson titanof...@gentoo.org
   mysql-super-smack-1.3-r2.ebuild, mysql-super-smack-1.3-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-db/mysql-super-smack/files: mysql-super-smack-1.3-automake-1.13.patch

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 19:45:14

  Modified: mysql-super-smack-1.3-automake-1.13.patch
  Log:
  Fix parallel make for bug 425340
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.2  
dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch?r1=1.1r2=1.2

Index: mysql-super-smack-1.3-automake-1.13.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/files/mysql-super-smack-1.3-automake-1.13.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mysql-super-smack-1.3-automake-1.13.patch   25 Jun 2014 23:08:37 -  
1.1
+++ mysql-super-smack-1.3-automake-1.13.patch   6 Jan 2015 19:45:14 -   
1.2
@@ -231,12 +231,13 @@
 diff -aurwN a/src/Makefile.am b/src/Makefile.am
 --- a/src/Makefile.am  2014-06-20 14:37:35.266956252 -0400
 +++ b/src/Makefile.am  2014-06-20 15:12:40.278227315 -0400
-@@ -16,7 +16,7 @@
+@@ -16,7 +16,8 @@
  
  # Process this file with automake to create Makefile.in
  
 -INCLUDES = @MYSQL_INCLUDE@ @PGSQL_INCLUDE@ @ORACLE_INCLUDE@
 +AM_CPPFLAGS = @MYSQL_INCLUDE@ @PGSQL_INCLUDE@ @ORACLE_INCLUDE@
++BUILT_SOURCES = super-smack-yacc.hh
  
  noinst_PROGRAMS=test-dictionary test-client test_tcp_client
  bin_PROGRAMS=super-smack super-smack-gen-data






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

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:54:02

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

Revision  ChangesPath
1.441app-text/poppler/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v
retrieving revision 1.440
retrieving revision 1.441
diff -u -r1.440 -r1.441
--- ChangeLog   3 Jan 2015 11:24:17 -   1.440
+++ ChangeLog   6 Jan 2015 19:54:02 -   1.441
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/poppler
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.440 
2015/01/03 11:24:17 tamiko Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/ChangeLog,v 1.441 
2015/01/06 19:54:02 mrueg Exp $
+
+*poppler-0.30.0 (06 Jan 2015)
+
+  06 Jan 2015; Manuel Rüger mr...@gentoo.org +poppler-0.30.0.ebuild:
+  Version bump.
 
   03 Jan 2015; Matthias Maier tam...@gentoo.org
   +files/poppler-0.28.1-fix-multilib-configuration.patch, 
poppler-0.28.1.ebuild,



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

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

Index: poppler-0.30.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.30.0.ebuild,v 1.1 
2015/01/06 19:54:02 mrueg Exp $

EAPI=5

inherit cmake-utils toolchain-funcs

if [[ ${PV} ==  ]] ; then
inherit git-r3
EGIT_REPO_URI=git://git.freedesktop.org/git/${PN}/${PN}
KEYWORDS=
SLOT=0/
else
SRC_URI=http://poppler.freedesktop.org/${P}.tar.xz;
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
SLOT=0/49   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
fi

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

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

# No test data provided
RESTRICT=test

COMMON_DEPEND=
=media-libs/fontconfig-2.6.0
=media-libs/freetype-2.3.9
sys-libs/zlib
cairo? (
dev-libs/glib:2
=x11-libs/cairo-1.10.0
introspection? ( =dev-libs/gobject-introspection-1.32.1 )
)
curl? ( net-misc/curl )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( media-libs/openjpeg:0 )
lcms? ( media-libs/lcms:2 )
png? ( media-libs/libpng:0= )
qt4? (
dev-qt/qtcore:4
dev-qt/qtgui:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtxml:5
)
tiff? ( media-libs/tiff:0 )

DEPEND=${COMMON_DEPEND}
virtual/pkgconfig

RDEPEND=${COMMON_DEPEND}
cjk? ( =app-text/poppler-data-0.4.4 )


DOCS=(AUTHORS NEWS README README-XPDF TODO)

PATCHES=(
${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch
${FILESDIR}/${PN}-0.28.1-respect-cflags.patch
${FILESDIR}/${PN}-0.28.1-fix-multilib-configuration.patch )

src_configure() {
local mycmakeargs=(
-DBUILD_GTK_TESTS=OFF
-DBUILD_QT4_TESTS=OFF
-DBUILD_QT5_TESTS=OFF
-DBUILD_CPP_TESTS=OFF
-DENABLE_SPLASH=ON
-DENABLE_ZLIB=ON
-DENABLE_XPDF_HEADERS=ON
$(cmake-utils_use_enable curl LIBCURL)
$(cmake-utils_use_enable cxx CPP)
$(cmake-utils_use_enable jpeg2k LIBOPENJPEG)
$(cmake-utils_use_enable utils)
$(cmake-utils_use_with cairo)
$(cmake-utils_use_with introspection GObjectIntrospection)
$(cmake-utils_use_with jpeg)
$(cmake-utils_use_with png)
$(cmake-utils_use_with qt4)
$(cmake-utils_use_find_package qt5 Qt5Core)
$(cmake-utils_use_with tiff)
)
  

[gentoo-commits] gentoo-x86 commit in app-text/restview: restview-2.2.1.ebuild ChangeLog

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 20:00:07

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

Revision  ChangesPath
1.3  app-text/restview/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   10 Dec 2014 19:14:11 -  1.2
+++ ChangeLog   6 Jan 2015 20:00:07 -   1.3
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/restview
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v 1.2 
2014/12/10 19:14:11 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v 1.3 
2015/01/06 20:00:07 radhermit Exp $
+
+*restview-2.2.1 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder radher...@gentoo.org +restview-2.2.1.ebuild:
+  Version bump.
 
 *restview-2.2.0 (10 Dec 2014)
 



1.1  app-text/restview/restview-2.2.1.ebuild

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

Index: restview-2.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/restview/restview-2.2.1.ebuild,v 
1.1 2015/01/06 20:00:07 radhermit Exp $

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

inherit distutils-r1

DESCRIPTION=reStructuredText viewer
HOMEPAGE=https://mg.pov.lt/restview/;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

RDEPEND=
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/docutils[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]

DEPEND=${RDEPEND}
test? ( dev-python/mock[${PYTHON_USEDEP}] )


DOCS=( README.rst CHANGES.rst )

python_test() {
esetup.py test
}






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

2015-01-06 Thread Marc Schiffbauer (mschiff)
mschiff 15/01/06 18:49:08

  Modified: herds.xml
  Log:
  added myself to net-mail

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

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

Index: herds.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v
retrieving revision 1.1133
retrieving revision 1.1134
diff -u -r1.1133 -r1.1134
--- herds.xml   30 Dec 2014 16:14:28 -  1.1133
+++ herds.xml   6 Jan 2015 18:49:08 -   1.1134
@@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
 
-   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1133 
2014/12/30 16:14:28 mjo Exp $
+   $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1134 
2015/01/06 18:49:08 mschiff Exp $
 
 --
 herds
@@ -775,6 +775,10 @@
 emaile...@gentoo.org/email
 nameEray Aslan/name
   /maintainer
+  maintainer
+emailmsch...@gentoo.org/email
+nameMarc Schiffbauer/name
+  /maintainer
 /herd
 herd
   namewxwidgets/name






[gentoo-commits] gentoo-x86 commit in media-video/avidemux: avidemux-9999.ebuild avidemux-2.6.7.ebuild avidemux-2.6.5-r1.ebuild avidemux-2.6.5.ebuild avidemux-2.6.8.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:41:55

  Modified: avidemux-.ebuild avidemux-2.6.7.ebuild
avidemux-2.6.5-r1.ebuild avidemux-2.6.5.ebuild
avidemux-2.6.8.ebuild ChangeLog
  Log:
  Update xvba dependency to use bundled vaapi in x11-drivers/ati-drivers. See 
bug #534710
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.6  media-video/avidemux/avidemux-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-.ebuild?r1=1.5r2=1.6

Index: avidemux-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- avidemux-.ebuild10 Aug 2014 20:57:26 -  1.5
+++ avidemux-.ebuild6 Jan 2015 19:41:55 -   1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-.ebuild,v 
1.5 2014/08/10 20:57:26 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-.ebuild,v 
1.6 2015/01/06 19:41:55 mrueg Exp $
 
 EAPI=5
 
@@ -33,8 +33,10 @@
opengl? ( virtual/opengl:0 )
qt4? ( =dev-qt/qtgui-4.8.3:4 )
vaapi? ( x11-libs/libva:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-
+   video_cards_fglrx? (
+   || ( =x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )
 RDEPEND=$DEPEND
 PDEPEND=~media-libs/avidemux-plugins-${PV}:${SLOT}[opengl?,qt4?]
 



1.3  media-video/avidemux/avidemux-2.6.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild?r1=1.2r2=1.3

Index: avidemux-2.6.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avidemux-2.6.7.ebuild   10 Aug 2014 20:57:26 -  1.2
+++ avidemux-2.6.7.ebuild   6 Jan 2015 19:41:55 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild,v 1.2 
2014/08/10 20:57:26 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.7.ebuild,v 1.3 
2015/01/06 19:41:55 mrueg Exp $
 
 EAPI=5
 
@@ -33,8 +33,10 @@
opengl? ( virtual/opengl:0 )
qt4? ( =dev-qt/qtgui-4.8.3:4 )
vaapi? ( x11-libs/libva:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-
+   video_cards_fglrx? (
+   || ( =x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )
 RDEPEND=$DEPEND
 PDEPEND=~media-libs/avidemux-plugins-${PV}:${SLOT}[opengl?,qt4?]
 



1.3  media-video/avidemux/avidemux-2.6.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild?r1=1.2r2=1.3

Index: avidemux-2.6.5-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avidemux-2.6.5-r1.ebuild10 Aug 2014 20:57:26 -  1.2
+++ avidemux-2.6.5-r1.ebuild6 Jan 2015 19:41:55 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild,v 1.2 
2014/08/10 20:57:26 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.6.5-r1.ebuild,v 1.3 
2015/01/06 19:41:55 mrueg Exp $
 
 EAPI=5
 
@@ -33,8 +33,10 @@
opengl? 

[gentoo-commits] gentoo-x86 commit in net-misc/packETH: packETH-1.8.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 20:21:05

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

Revision  ChangesPath
1.23 net-misc/packETH/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/packETH/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   18 Jul 2014 20:17:37 -  1.22
+++ ChangeLog   6 Jan 2015 20:21:05 -   1.23
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/packETH
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/packETH/ChangeLog,v 1.22 
2014/07/18 20:17:37 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/packETH/ChangeLog,v 1.23 
2015/01/06 20:21:05 jer Exp $
+
+*packETH-1.8 (06 Jan 2015)
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org +packETH-1.8.ebuild:
+  Version bump.
 
 *packETH-1.7.3 (18 Jul 2014)
 



1.1  net-misc/packETH/packETH-1.8.ebuild

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

Index: packETH-1.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/packETH/packETH-1.8.ebuild,v 1.1 
2015/01/06 20:21:05 jer Exp $

EAPI=5
inherit autotools eutils

DESCRIPTION=Packet generator tool for ethernet
HOMEPAGE=http://packeth.sourceforge.net/;
SRC_URI=mirror://sourceforge/packeth/${P}.tar.bz

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

RDEPEND=
dev-libs/glib:2
x11-libs/gdk-pixbuf
x11-libs/gtk+:2

DEPEND=
virtual/pkgconfig
${RDEPEND}


src_prepare() {
epatch ${FILESDIR}/${PN}-1.7.3-libs-and-flags.patch
eautoreconf
}

DOCS=( AUTHORS CHANGELOG README )






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

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:26:12

  Modified: ChangeLog
  Added:ati-drivers-14.12-r3.ebuild
  Log:
  Proxy commit for Emil Karlson. Fixes bug #534710 and bug #534398.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.373x11-drivers/ati-drivers/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- ChangeLog   6 Jan 2015 18:37:08 -   1.372
+++ ChangeLog   6 Jan 2015 19:26:12 -   1.373
@@ -1,6 +1,11 @@
 # ChangeLog for x11-drivers/ati-drivers
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.372 
2015/01/06 18:37:08 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.373 
2015/01/06 19:26:12 mrueg Exp $
+
+*ati-drivers-14.12-r3 (06 Jan 2015)
+
+  06 Jan 2015; Manuel Rüger mr...@gentoo.org +ati-drivers-14.12-r3.ebuild:
+  Proxy commit for Emil Karlson. Fixes bug #534710 and bug #534398.
 
   06 Jan 2015; Manuel Rüger mr...@gentoo.org -ati-drivers-14.12-r1.ebuild,
   -ati-drivers-14.6_beta1.ebuild, -ati-drivers-14.9.ebuild:



1.1  x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild

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

Index: ati-drivers-14.12-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-14.12-r3.ebuild,v 
1.1 2015/01/06 19:26:12 mrueg Exp $

EAPI=5

MULTILIB_COMPAT=( abi_x86_{32,64} )
inherit eutils multilib-build linux-info linux-mod toolchain-funcs versionator 
pax-utils

DESCRIPTION=Ati precompiled drivers for Radeon Evergreen (HD5000 Series) and 
newer chipsets
HOMEPAGE=http://www.amd.com;
RUN=${WORKDIR}/fglrx-14.501.1003/amd-driver-installer-14.501.1003-x86.x86_64.run
SLOT=1
# Uses javascript for download YE
#DRIVERS_URI=http://www2.ati.com/drivers/linux/amd-catalyst-13.12-linux-x86.x86_64.zip;
DRIVERS_URI=mirror://gentoo/amd-catalyst-omega-14.12-linux-run-installers.zip
XVBA_SDK_URI=http://developer.amd.com/wordpress/media/2012/10/xvba-sdk-0.74-404001.tar.gz;
SRC_URI=${DRIVERS_URI} ${XVBA_SDK_URI}
FOLDER_PREFIX=common/
IUSE=debug +modules qt4 static-libs pax_kernel

LICENSE=AMD GPL-2 QPL-1.0
KEYWORDS=-* ~amd64 ~x86

RESTRICT=bindist test fetch

RDEPEND=
=x11-base/xorg-server-1.16.49[-minimal]
=app-admin/eselect-opengl-1.0.7
app-admin/eselect-opencl
sys-power/acpid
x11-apps/xauth
x11-libs/libX11
x11-libs/libXext
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
virtual/glu
!x11-libs/xvba-video
abi_x86_32? (
|| (
virtual/glu[abi_x86_32]
app-emulation/emul-linux-x86-opengl
)
|| (
(
x11-libs/libX11[abi_x86_32]
x11-libs/libXext[abi_x86_32]
x11-libs/libXinerama[abi_x86_32]
x11-libs/libXrandr[abi_x86_32]
x11-libs/libXrender[abi_x86_32]
)
app-emulation/emul-linux-x86-xlibs
)
)
qt4? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libXcursor
x11-libs/libXfixes
x11-libs/libXxf86vm
dev-qt/qtcore:4
dev-qt/qtgui:4[accessibility]
)

if [[ legacy != ${SLOT} ]]; then
RDEPEND=${RDEPEND}
!x11-drivers/ati-drivers:legacy
else
RDEPEND=${RDEPEND}
!x11-drivers/ati-drivers:1
fi

DEPEND=${RDEPEND}
x11-proto/inputproto
x11-proto/xf86miscproto
x11-proto/xf86vidmodeproto

[gentoo-commits] gentoo-x86 commit in media-libs/avidemux-core: avidemux-core-2.6.7.ebuild avidemux-core-2.6.8.ebuild avidemux-core-9999.ebuild avidemux-core-2.6.5.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:39:11

  Modified: avidemux-core-2.6.7.ebuild
avidemux-core-2.6.8.ebuild
avidemux-core-.ebuild
avidemux-core-2.6.5.ebuild ChangeLog
  Log:
  Update xvba dependency to use bundled vaapi in x11-drivers/ati-drivers. See 
bug #534710
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.5  media-libs/avidemux-core/avidemux-core-2.6.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild?r1=1.4r2=1.5

Index: avidemux-core-2.6.7.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- avidemux-core-2.6.7.ebuild  10 Aug 2014 21:07:42 -  1.4
+++ avidemux-core-2.6.7.ebuild  6 Jan 2015 19:39:11 -   1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild,v 
1.4 2014/08/10 21:07:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.7.ebuild,v 
1.5 2015/01/06 19:39:11 mrueg Exp $
 
 EAPI=5
 
@@ -36,8 +36,10 @@
xv? ( x11-libs/libXv:0 )
vaapi? ( x11-libs/libva:0 )
vdpau? ( x11-libs/libvdpau:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-
+   video_cards_fglrx? (
+   || ( =x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )
 RDEPEND=
nls? ( virtual/libintl:0 )
$DEPEND



1.3  media-libs/avidemux-core/avidemux-core-2.6.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild?r1=1.2r2=1.3

Index: avidemux-core-2.6.8.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avidemux-core-2.6.8.ebuild  10 Aug 2014 21:07:42 -  1.2
+++ avidemux-core-2.6.8.ebuild  6 Jan 2015 19:39:11 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild,v 
1.2 2014/08/10 21:07:42 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild,v 
1.3 2015/01/06 19:39:11 mrueg Exp $
 
 EAPI=5
 
@@ -36,8 +36,10 @@
xv? ( x11-libs/libXv:0 )
vaapi? ( x11-libs/libva:0 )
vdpau? ( x11-libs/libvdpau:0 )
-   video_cards_fglrx? ( x11-libs/xvba-video:0 )
-
+   video_cards_fglrx? (
+   || ( =x11-drivers/ati-drivers-14.12-r3
+   x11-libs/xvba-video:0 )
+   )
 RDEPEND=
$DEPEND
nls? ( virtual/libintl:0 )



1.9  media-libs/avidemux-core/avidemux-core-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild?r1=1.8r2=1.9

Index: avidemux-core-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- avidemux-core-.ebuild   10 Aug 2014 21:07:42 -  1.8
+++ avidemux-core-.ebuild   6 Jan 2015 19:39:11 -   1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-libs/avidemux-core/avidemux-core-.ebuild,v 
1.8 2014/08/10 21:07:42 slyfox Exp $
+# $Header: 

[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp/files: nttcp-1.47-format-security.patch

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:43:48

  Modified: nttcp-1.47-format-security.patch
  Log:
  Fix more format security warnings.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.3  net-analyzer/nttcp/files/nttcp-1.47-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?r1=1.2r2=1.3

Index: nttcp-1.47-format-security.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nttcp-1.47-format-security.patch21 Jul 2014 15:26:31 -  1.2
+++ nttcp-1.47-format-security.patch6 Jan 2015 19:43:48 -   1.3
@@ -9,3 +9,124 @@
  fMessage(stderr,s);
  exit(ret);
  }
+@@ -694,7 +694,7 @@
+ register int cnt;
+ if (opt.udp) {
+   struct sockaddr_in from;
+-  int len= sizeof(from);
++  socklen_t len= sizeof(from);
+cnt= recvfrom(fd, buf, count, 0, (struct sockaddr *)from, len);
+SysCalls++;
+ }
+@@ -1150,8 +1150,8 @@
+ int main(int argc, char *argv[]) {
+ 
+ struct sockaddr_in PeerAddr;
+-int  PeerAddrLeng;
+-char *DataPortFormat= dataport: %d\n;
++socklen_t  PeerAddrLeng;
++const char DataPortFormat[]= dataport: %d\n;
+ int DataPort;
+ struct sockaddr_in sinlh; /* for control socket on local host */
+ int  fd;  /* data socket to transport the data */
+@@ -1184,7 +1184,8 @@
+ } 
+ if (opt.inetd) {
+   /* we simulate inetd behaviour */
+-  int nsrv, srv, fromleng;
++  int nsrv, srv;
++  socklen_t fromleng;
+   struct sockaddr_in sinsrv;
+   struct sockaddr_in frominet;
+   if (opt.Verbose) {
+@@ -1285,7 +1286,7 @@
+   Exit(MsgBuf, 2);
+   }
+   if (OptionLine[sizeof(OptionLine)-1] != '\0') {
+-  sprintf(MsgBuf, %s: optionline longer than %d\n,
++  sprintf(MsgBuf, %s: optionline longer than %ld\n,
+ myname, sizeof(OptionLine)-1);
+   Exit(MsgBuf, 3);
+   }
+@@ -1308,7 +1309,7 @@
+   Peer[PeerCount].fin= stdin;
+   Peer[PeerCount].fout= stdout;
+   syslog(LOG_DEBUG,
+-call from %.50 (=%.30s): done remote initial processing\n,
++call from %.50s (=%.30s): done remote initial processing\n,
+ Peer[PeerCount].HostName, Peer[PeerCount].IPName);
+   PeerCount++;
+ }
+@@ -1617,7 +1618,7 @@
+   sinlh.sin_family = AF_INET;
+ #if defined(MULTICAST)
+   if (opt.MulticastChannel) {
+-  int ml, p, join_group;
++  int p, join_group;
+   struct ip_mreq mreq;
+   sinlh.sin_port = htons(opt.MulticastPort);
+   if (bind(fd, (struct sockaddr *)sinlh, sizeof(sinlh))  0) {
+@@ -1640,7 +1641,6 @@
+   sprintf(MsgBuf, DataPortFormat, DEFAULT_PORT);
+ 
+   /* tell it our clients */
+-  ml= strlen(MsgBuf);
+   for (p=0; pPeerCount; p++) {
+   fputs(MsgBuf, Peer[p].fout);
+   fflush(Peer[p].fout);
+@@ -1683,7 +1683,7 @@
+   }
+   else { /* == TCP */
+   struct sockaddr_in frominet;
+-  int fromleng;
++  socklen_t fromleng;
+   fromleng = sizeof(frominet);
+   memset(frominet, 0, fromleng);
+   AlarmMsg= accept timed out\n;
+@@ -1694,7 +1694,7 @@
+   SetItVal(0);
+   if (opt.Verbose) {
+   struct sockaddr_in peer;
+-  int peerlen = sizeof(peer);
++  socklen_t peerlen = sizeof(peer);
+   if (getpeername(fd, (struct sockaddr *)peer, peerlen)  0)
+   exitError(getpeername, 19);
+   sprintf(MsgBuf,
+@@ -1732,7 +1732,7 @@
+ 
+ /* print window sizes */
+ if (opt.Verbose) {
+-  int optlen;
++  socklen_t optlen;
+   int WinSize;
+ 
+   optlen= sizeof(WinSize);
+@@ -1899,8 +1899,8 @@
+* rcr  real call reate in Calls/s  (float)
+* ccr  cpu call rate in Calls/s(float)
+*/
+-  char *iFormat= %*.*ld;
+-  char *fFormat= %*.*f;
++  const char iFormat[]= %*.*ld;
++  const char fFormat[]= %*.*f;
+   char *fs;
+   LenStr *TitleLine, *StatLine;
+ 
+@@ -2002,7 +2002,7 @@
+   fs+= 2;
+   }
+   else if (*fs == 'l') {
+-  sprintf(MsgBuf, iFormat, fw, fp, opt.BufLen);
++  sprintf(MsgBuf, iFormat, fw, fp, (long int)opt.BufLen);
+   TitleStr= BufLen;
+   fs++;
+   }
+@@ 

[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp: ChangeLog nttcp-1.47-r3.ebuild nttcp-1.47-r2.ebuild

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:43:48

  Modified: ChangeLog
  Added:nttcp-1.47-r3.ebuild
  Removed:  nttcp-1.47-r2.ebuild
  Log:
  Fix more format security warnings.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.22 net-analyzer/nttcp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   21 Jul 2014 15:26:31 -  1.21
+++ ChangeLog   6 Jan 2015 19:43:48 -   1.22
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/nttcp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.21 
2014/07/21 15:26:31 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.22 
2015/01/06 19:43:48 jer Exp $
+
+*nttcp-1.47-r3 (06 Jan 2015)
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org -nttcp-1.47-r2.ebuild,
+  +nttcp-1.47-r3.ebuild, files/nttcp-1.47-format-security.patch:
+  Fix more format security warnings.
 
   21 Jul 2014; Jeroen Roovers j...@gentoo.org
   files/nttcp-1.47-format-security.patch:



1.1  net-analyzer/nttcp/nttcp-1.47-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/nttcp-1.47-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/nttcp-1.47-r3.ebuild?rev=1.1content-type=text/plain

Index: nttcp-1.47-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/nttcp-1.47-r3.ebuild,v 
1.1 2015/01/06 19:43:48 jer Exp $

EAPI=5
inherit eutils toolchain-funcs

DESCRIPTION=tool to test TCP and UDP throughput
HOMEPAGE=http://www.leo.org/~elmar/nttcp/;
SRC_URI=http://www.leo.org/~elmar/nttcp/${P}.tar.gz;
LICENSE=public-domain

SLOT=0
KEYWORDS=~amd64 ~mips ~ppc ~x86

src_prepare() {
epatch ${FILESDIR}/${P}-format-security.patch
}

src_compile() {
emake \
ARCH= \
CC=$(tc-getCC) \
LFLAGS=${LDFLAGS} \
OPT=${CFLAGS}
}

src_install() {
dobin ${PN}
doman ${PN}.1
}






[gentoo-commits] gentoo-x86 commit in net-misc/tor: tor-0.2.6.2_alpha-r1.ebuild ChangeLog tor-0.2.6.2_alpha.ebuild

2015-01-06 Thread Anthony G. Basile (blueness)
blueness15/01/06 19:50:52

  Modified: ChangeLog
  Added:tor-0.2.6.2_alpha-r1.ebuild
  Removed:  tor-0.2.6.2_alpha.ebuild
  Log:
  Remove libsystemd automagic, bug #535812
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.460net-misc/tor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -r1.459 -r1.460
--- ChangeLog   3 Jan 2015 15:56:35 -   1.459
+++ ChangeLog   6 Jan 2015 19:50:52 -   1.460
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/tor
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.459 2015/01/03 
15:56:35 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/ChangeLog,v 1.460 2015/01/06 
19:50:52 blueness Exp $
+
+*tor-0.2.6.2_alpha-r1 (06 Jan 2015)
+
+  06 Jan 2015; Anthony G. Basile bluen...@gentoo.org
+  +tor-0.2.6.2_alpha-r1.ebuild, -tor-0.2.6.2_alpha.ebuild:
+  Remove libsystemd automagic, bug #535812
 
   03 Jan 2015; Anthony G. Basile bluen...@gentoo.org 
tor-0.2.6.2_alpha.ebuild:
   Add epatch_user for testing alpha, bug #534244.



1.1  net-misc/tor/tor-0.2.6.2_alpha-r1.ebuild

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

Index: tor-0.2.6.2_alpha-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tor/tor-0.2.6.2_alpha-r1.ebuild,v 
1.1 2015/01/06 19:50:52 blueness Exp $

EAPI=5

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

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

LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~amd64
IUSE=-bufferevents nat-pmp scrypt seccomp selinux stats systemd tor-hardening 
transparent-proxy test upnp web

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

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

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

src_configure() {
# Upstream isn't sure of all the user provided CFLAGS that
# will break tor, but does recommend against -fstrict-aliasing.
# We'll filter-flags them here as we encounter them.
filter-flags -fstrict-aliasing

econf \
--disable-buf-freelists \
--enable-asciidoc \
--enable-mempools \
--docdir=/usr/share/doc/${PF} \
$(use_enable stats instrument-downloads) \
$(use_enable bufferevents) \
$(use_enable nat-pmp) \
$(use_enable scrypt libscrypt) \
$(use_enable seccomp) \
$(use_enable systemd) \
$(use_enable tor-hardening gcc-hardening) \
$(use_enable tor-hardening linker-hardening) \
$(use_enable transparent-proxy transparent) \
$(use_enable upnp) \
$(use_enable web tor2web-mode) \
$(use_enable test unittests) \
$(use_enable test coverage)
}

src_install() {
readme.gentoo_create_doc

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

emake DESTDIR=${D} install

keepdir /var/lib/tor

dodoc README ChangeLog ReleaseNotes doc/HACKING

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

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

pkg_postinst() {

[gentoo-commits] gentoo-x86 commit in net-analyzer/nttcp/files: nttcp-1.47-format-security.patch

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 19:51:39

  Modified: nttcp-1.47-format-security.patch
  Log:
  One more for portability.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.4  net-analyzer/nttcp/files/nttcp-1.47-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch?r1=1.3r2=1.4

Index: nttcp-1.47-format-security.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nttcp-1.47-format-security.patch6 Jan 2015 19:43:48 -   1.3
+++ nttcp-1.47-format-security.patch6 Jan 2015 19:51:39 -   1.4
@@ -44,7 +44,7 @@
}
if (OptionLine[sizeof(OptionLine)-1] != '\0') {
 -  sprintf(MsgBuf, %s: optionline longer than %d\n,
-+  sprintf(MsgBuf, %s: optionline longer than %ld\n,
++  sprintf(MsgBuf, %s: optionline longer than %zd\n,
  myname, sizeof(OptionLine)-1);
Exit(MsgBuf, 3);
}






[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop/files: chrome-remote-desktop.rc chrome-remote-desktop.conf.d

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:15:37

  Added:chrome-remote-desktop.rc
chrome-remote-desktop.conf.d
  Log:
  Initial ebuild.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.1  
net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc?rev=1.1content-type=text/plain

Index: chrome-remote-desktop.rc
===
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.rc,v
 1.1 2015/01/06 20:15:37 vapier Exp $

extra_started_commands=checkconfig reload

CRD=/opt/google/chrome-remote-desktop/chrome-remote-desktop

depend() {
need net
use logger
}

checkconfig() {
local ret=0
if [ -z ${CHROME_REMOTING_USERS} ] ; then
eerror You must set CHROME_REMOTING_USERS in 
/etc/conf.d/${SVCNAME} first
ret=1
else
local user
for user in ${CHROME_REMOTING_USERS} ; do
if ! id ${user} /dev/null ; then
eerror Invalid user found in 
CHROME_REMOTING_USERS: ${user}
ret=1
fi
done
fi
return ${ret}
}

for_users() {
local user ret msg log
msg=$1; shift

set -- -- $@
[ ${CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES+set} = set ] \
 set -- -e 
CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES=${CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES}
 $@
: ${CHROME_REMOTE_DESKTOP_LOG_DIR:=/var/log}

for user in ${CHROME_REMOTING_USERS} ; do
ebegin ${msg} ${SVCNAME} for ${user}

log=${CHROME_REMOTE_DESKTOP_LOG_DIR}/${SVCNAME}.${user}.log
checkpath -f -m 0600 -o ${user} ${log}

# We need to background the app as it won't fork until the 
network
# (including DNS) is available.
start-stop-daemon \
-b \
-u ${user} \
-x ${CRD} \
-e CHROME_REMOTE_DESKTOP_LOG_FILE=${log} \
$@
eend $?
: $(( ret += $? ))
done

return ${ret}
}

start() {
checkconfig || return
for_users Starting --start
}

stop() {
for_users Stopping --stop
}

reload() {
for_users Reloading --reload
}



1.1  
net-misc/chrome-remote-desktop/files/chrome-remote-desktop.conf.d

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.conf.d?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/files/chrome-remote-desktop.conf.d?rev=1.1content-type=text/plain

Index: chrome-remote-desktop.conf.d
===
# /etc/conf.d/chrome-remote-desktop: config file for 
/etc/init.d/chrome-remote-desktop

# List of users to start Chrome Remote Desktop for.
CHROME_REMOTING_USERS=''

# Default resolutions to make available to the session.
#CHROME_REMOTE_DESKTOP_DEFAULT_DESKTOP_SIZES='1600x1200,3840x1600'

# Directory to use for storing log files.
#CHROME_REMOTE_DESKTOP_LOG_DIR='/var/log'






[gentoo-commits] gentoo-x86 commit in net-misc/chrome-remote-desktop: metadata.xml chrome-remote-desktop-40.0.2214.44.ebuild ChangeLog

2015-01-06 Thread Mike Frysinger (vapier)
vapier  15/01/06 20:15:37

  Added:metadata.xml
chrome-remote-desktop-40.0.2214.44.ebuild ChangeLog
  Log:
  Initial ebuild.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.1  net-misc/chrome-remote-desktop/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
 emailvap...@gentoo.org/email
/maintainer
/pkgmetadata



1.1  
net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild?rev=1.1content-type=text/plain

Index: chrome-remote-desktop-40.0.2214.44.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/chrome-remote-desktop/chrome-remote-desktop-40.0.2214.44.ebuild,v
 1.1 2015/01/06 20:15:37 vapier Exp $

# Base URL: https://dl.google.com/linux/chrome-remote-desktop/deb/
# Fetch the Release file:
#  https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/Release
# Which gives you the Packages file:
#  
https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/main/binary-i386/Packages
#  
https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/main/binary-amd64/Packages
# And finally gives you the file name:
#  
pool/main/c/chrome-remote-desktop/chrome-remote-desktop_29.0.1547.32_amd64.deb
#
# Use curl to find the answer:
#  curl -q 
https://dl.google.com/linux/chrome-remote-desktop/deb/dists/stable/main/binary-i386/Packages
 | grep ^Filename

EAPI=4

inherit unpacker

DESCRIPTION=access remote computers via Chrome!
PLUGIN_URL=https://chrome.google.com/remotedesktop;
HOMEPAGE=https://support.google.com/chrome/answer/1649523 ${PLUGIN_URL}
BASE_URI=https://dl.google.com/linux/chrome-remote-desktop/deb/pool/main/c/${PN}/${PN}_${PV};
SRC_URI=amd64? ( ${BASE_URI}_amd64.deb )
x86? ( ${BASE_URI}_i386.deb )

LICENSE=google-chrome
SLOT=0
KEYWORDS=-* ~amd64 ~x86
IUSE=

# All the libs this package links against.
RDEPEND=app-admin/sudo
dev-lang/python
=dev-libs/expat-2
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
dev-python/psutil
gnome-base/gconf:2
media-libs/fontconfig
media-libs/freetype:2
sys-devel/gcc
sys-libs/glibc
sys-libs/pam
x11-libs/cairo
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXtst
x11-libs/pango
# Settings we just need at runtime.
RDEPEND+=
x11-base/xorg-server[xvfb]
DEPEND=

S=${WORKDIR}

QA_PREBUILT=/opt/google/chrome-remote-desktop/*

src_install() {
insinto /etc
doins -r etc/opt

insinto /opt
doins -r opt/google
chmod a+rx ${ED}/opt/google/${PN}/* || die

dodir /etc/pam.d
dosym system-remote-login /etc/pam.d/${PN}

dodoc usr/share/doc/${PN}/changelog*

newinitd ${FILESDIR}/${PN}.rc ${PN}
newconfd ${FILESDIR}/${PN}.conf.d ${PN}
}

pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]] ; then
elog Two ways to launch the server:
elog (1) access an existing desktop
elog (a) install the Chrome plugin on the server  client:
elog ${PLUGIN_URL}
elog (b) on the server, run the Chrome plugin  enable 
remote access
elog (c) on the client, connect to the server
elog (2) headless system
elog (a) install the Chrome plugin on the client:
elog ${PLUGIN_URL}
elog (b) visit 
https://accounts.google.com/o/oauth2/auth?response_type=codescope=https://www.googleapis.com/auth/chromoting+https://www.googleapis.com/auth/googletalk+https://www.googleapis.com/auth/userinfo.emailaccess_type=offlineredirect_uri=https://chromoting-auth.googleplex.com/authapproval_prompt=forceclient_id=440925447803-avn2sj1kc099s0r7v62je5s339mu0am1.apps.googleusercontent.comhl=enfrom_login=1as=-760f476eeaec11b8pli=1authuser=0;

[gentoo-commits] gentoo-x86 commit in games-puzzle/xwelltris: xwelltris-1.0.1.ebuild ChangeLog

2015-01-06 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/06 19:17:09

  Modified: xwelltris-1.0.1.ebuild ChangeLog
  Log:
  EAPI=5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.16 games-puzzle/xwelltris/xwelltris-1.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild?rev=1.16view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild?rev=1.16content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild?r1=1.15r2=1.16

Index: xwelltris-1.0.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- xwelltris-1.0.1.ebuild  15 Mar 2008 04:34:31 -  1.15
+++ xwelltris-1.0.1.ebuild  6 Jan 2015 19:17:09 -   1.16
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v 1.15 
2008/03/15 04:34:31 mr_bones_ Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v 1.16 
2015/01/06 19:17:09 mr_bones_ Exp $
 
+EAPI=5
 inherit games
 
 DESCRIPTION=2.5D tetris like game
@@ -13,26 +14,25 @@
 KEYWORDS=amd64 ppc x86
 IUSE=
 
-DEPEND=media-libs/libsdl
-   media-libs/sdl-image
+DEPEND=media-libs/libsdl[video]
+   media-libs/sdl-image[gif]
 
-src_unpack() {
-   unpack ${A}
-   cd ${S}
+src_prepare() {
sed -i \
-e '/INSTALL_PROGRAM/s/-s //' \
-   src/Make.common.in \
-   || die sed Make.common.in failed
+   src/Make.common.in || die
sed -i \
-e /GLOBAL_SEARCH/s:\.*\:\${GAMES_DATADIR}/${PN}\: \
-   src/include/globals.h.in \
-   || die sed globals.h.in failed
+   src/include/globals.h.in || die
 }
 
-src_compile() {
+src_configure() {
# configure/build process is pretty messed up
-   egamesconf --with-sdl || die
-   emake -C src || die emake failed
+   egamesconf --with-sdl
+}
+
+src_compile() {
+   emake -C src
 }
 
 src_install() {
@@ -40,8 +40,7 @@
emake install \
INSTDIR=${D}/${GAMES_BINDIR} \
INSTLIB=${D}/${GAMES_DATADIR}/${PN} \
-   INSTMAN=/usr/share/man \
-   || die emake install failed
+   INSTMAN=/usr/share/man
dodoc AUTHORS Changelog README*
prepgamesdirs
 }



1.14 games-puzzle/xwelltris/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/xwelltris/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   15 Mar 2008 04:34:31 -  1.13
+++ ChangeLog   6 Jan 2015 19:17:09 -   1.14
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/xwelltris
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/ChangeLog,v 1.13 
2008/03/15 04:34:31 mr_bones_ Exp $
+# Copyright 2000-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/ChangeLog,v 1.14 
2015/01/06 19:17:09 mr_bones_ Exp $
+
+  06 Jan 2015; Michael Sterrett mr_bon...@gentoo.org xwelltris-1.0.1.ebuild:
+  EAPI=5
 
   15 Mar 2008; Michael Sterrett mr_bon...@gentoo.org
   xwelltris-1.0.1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-java/appframework: appframework-1.03-r3.ebuild ChangeLog appframework-1.03-r2.ebuild

2015-01-06 Thread Mikle Kolyada (zlogene)
zlogene 15/01/06 20:27:03

  Modified: appframework-1.03-r3.ebuild ChangeLog
  Removed:  appframework-1.03-r2.ebuild
  Log:
  amd64/x86 stable wrt bug #525010; Drop old.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.3  dev-java/appframework/appframework-1.03-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild?r1=1.2r2=1.3

Index: appframework-1.03-r3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- appframework-1.03-r3.ebuild 10 Aug 2014 20:07:54 -  1.2
+++ appframework-1.03-r3.ebuild 6 Jan 2015 20:27:03 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild,v 1.2 
2014/08/10 20:07:54 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-java/appframework/appframework-1.03-r3.ebuild,v 1.3 
2015/01/06 20:27:03 zlogene Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 
 LICENSE=LGPL-2.1
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=amd64 x86
 
 COMMON_DEP=dev-java/swing-worker:0
 



1.10 dev-java/appframework/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/appframework/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   10 Aug 2014 20:07:55 -  1.9
+++ ChangeLog   6 Jan 2015 20:27:03 -   1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/appframework
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/appframework/ChangeLog,v 1.9 
2014/08/10 20:07:55 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/appframework/ChangeLog,v 1.10 
2015/01/06 20:27:03 zlogene Exp $
+
+  06 Jan 2015; Mikle Kolyada zlog...@gentoo.org -appframework-1.03-r2.ebuild,
+  appframework-1.03-r3.ebuild:
+  amd64/x86 stable wrt bug #525010; Drop old.
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org
   appframework-1.03-r2.ebuild, appframework-1.03-r3.ebuild:






[gentoo-commits] gentoo-x86 commit in media-gfx/imagemagick: imagemagick-6.9.0.3.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 21:14:32

  Modified: imagemagick-6.9.0.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #534106).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.4  media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild?r1=1.3r2=1.4

Index: imagemagick-6.9.0.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- imagemagick-6.9.0.3.ebuild  5 Jan 2015 15:13:12 -   1.3
+++ imagemagick-6.9.0.3.ebuild  6 Jan 2015 21:14:32 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild,v 1.3 
2015/01/05 15:13:12 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.3.ebuild,v 1.4 
2015/01/06 21:14:32 jer Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=imagemagick
 SLOT=0/${PV}
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri 
jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript 
q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib
 
 RESTRICT=perl? ( userpriv )



1.582media-gfx/imagemagick/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/ChangeLog?rev=1.582view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/ChangeLog?rev=1.582content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imagemagick/ChangeLog?r1=1.581r2=1.582

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v
retrieving revision 1.581
retrieving revision 1.582
diff -u -r1.581 -r1.582
--- ChangeLog   5 Jan 2015 15:13:12 -   1.581
+++ ChangeLog   6 Jan 2015 21:14:32 -   1.582
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/imagemagick
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.581 
2015/01/05 15:13:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.582 
2015/01/06 21:14:32 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org imagemagick-6.9.0.3.ebuild:
+  Stable for HPPA (bug #534106).
 
   05 Jan 2015; Agostino Sarubbo a...@gentoo.org imagemagick-6.9.0.3.ebuild:
   Stable for x86, wrt bug #534106






[gentoo-commits] gentoo-x86 commit in app-admin/systemrescuecd-x86: - New directory

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 23:06:31

  Log:
  Directory /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86 added to the 
repository



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

2015-01-06 Thread Manuel Rüger
commit: b180ea0e40a6ff2ef03b105a5a571588d1d637fe
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Tue Jan  6 21:14:40 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Tue Jan  6 21:14:40 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b180ea0e

[sets] Update sets for frameworks 5.6

---
 sets/kde-frameworks |  2 ++
 sets/kde-frameworks-5.6 | 61 +
 2 files changed, 63 insertions(+)

diff --git a/sets/kde-frameworks b/sets/kde-frameworks
index aa4677c..3709d2c 100644
--- a/sets/kde-frameworks
+++ b/sets/kde-frameworks
@@ -42,6 +42,7 @@ kde-frameworks/knewstuff:5
 kde-frameworks/knotifications:5
 kde-frameworks/knotifyconfig:5
 kde-frameworks/kparts:5
+kde-frameworks/kpackage:5
 kde-frameworks/kplotting:5
 kde-frameworks/kpty:5
 kde-frameworks/kross:5
@@ -54,6 +55,7 @@ kde-frameworks/kwallet:5
 kde-frameworks/kwidgetsaddons:5
 kde-frameworks/kwindowsystem:5
 kde-frameworks/kxmlgui:5
+kde-frameworks/networkmanager-qt:5
 kde-frameworks/plasma:5
 kde-frameworks/solid:5
 kde-frameworks/sonnet:5

diff --git a/sets/kde-frameworks-5.6 b/sets/kde-frameworks-5.6
new file mode 100644
index 000..0042c0c
--- /dev/null
+++ b/sets/kde-frameworks-5.6
@@ -0,0 +1,61 @@
+kde-frameworks/attica-5.6.50:5
+kde-frameworks/frameworkintegration-5.6.50:5
+kde-frameworks/kactivities-5.6.50:5
+kde-frameworks/kapidox-5.6.50:5
+kde-frameworks/karchive-5.6.50:5
+kde-frameworks/kauth-5.6.50:5
+kde-frameworks/kbookmarks-5.6.50:5
+kde-frameworks/kcmutils-5.6.50:5
+kde-frameworks/kcodecs-5.6.50:5
+kde-frameworks/kcompletion-5.6.50:5
+kde-frameworks/kconfig-5.6.50:5
+kde-frameworks/kconfigwidgets-5.6.50:5
+kde-frameworks/kcoreaddons-5.6.50:5
+kde-frameworks/kcrash-5.6.50:5
+kde-frameworks/kdbusaddons-5.6.50:5
+kde-frameworks/kdeclarative-5.6.50:5
+kde-frameworks/kded-5.6.50:5
+kde-frameworks/kdelibs4support-5.6.50:5
+kde-frameworks/kdesignerplugin-5.6.50:5
+kde-frameworks/kdesu-5.6.50:5
+kde-frameworks/kdewebkit-5.6.50:5
+kde-frameworks/kdnssd-5.6.50:5
+kde-frameworks/kdoctools-5.6.50:5
+kde-frameworks/kemoticons-5.6.50:5
+kde-frameworks/kglobalaccel-5.6.50:5
+kde-frameworks/kguiaddons-5.6.50:5
+kde-frameworks/khtml-5.6.50:5
+kde-frameworks/ki18n-5.6.50:5
+kde-frameworks/kiconthemes-5.6.50:5
+kde-frameworks/kidletime-5.6.50:5
+kde-frameworks/kimageformats-5.6.50:5
+kde-frameworks/kinit-5.6.50:5
+kde-frameworks/kio-5.6.50:5
+kde-frameworks/kitemmodels-5.6.50:5
+kde-frameworks/kitemviews-5.6.50:5
+kde-frameworks/kjobwidgets-5.6.50:5
+kde-frameworks/kjs-5.6.50:5
+kde-frameworks/kjsembed-5.6.50:5
+kde-frameworks/kmediaplayer-5.6.50:5
+kde-frameworks/knewstuff-5.6.50:5
+kde-frameworks/knotifications-5.6.50:5
+kde-frameworks/knotifyconfig-5.6.50:5
+kde-frameworks/kpackage-5.6.50:5
+kde-frameworks/kparts-5.6.50:5
+kde-frameworks/kplotting-5.6.50:5
+kde-frameworks/kpty-5.6.50:5
+kde-frameworks/kross-5.6.50:5
+kde-frameworks/krunner-5.6.50:5
+kde-frameworks/kservice-5.6.50:5
+kde-frameworks/ktexteditor-5.6.50:5
+kde-frameworks/ktextwidgets-5.6.50:5
+kde-frameworks/kunitconversion-5.6.50:5
+kde-frameworks/kwallet-5.6.50:5
+kde-frameworks/kwidgetsaddons-5.6.50:5
+kde-frameworks/kwindowsystem-5.6.50:5
+kde-frameworks/kxmlgui-5.6.50:5
+kde-frameworks/networkmanager-qt-5.6.50:5
+kde-frameworks/plasma-5.6.50:5
+kde-frameworks/solid-5.6.50:5
+kde-frameworks/sonnet-5.6.50:5
+kde-frameworks/threadweaver-5.6.50:5



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/, gkeys-gen/gkeygen/

2015-01-06 Thread Brian Dolbec
commit: 3b8f2bad274be6c6f55a19d715fb87c4ad2898bd
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 21:16:29 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:19:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=3b8f2bad

gkeys, gkeys-gen: set version to 0.1

---
 gkeys-gen/gkeygen/__init__.py | 2 +-
 gkeys/gkeys/__init__.py   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gkeys-gen/gkeygen/__init__.py b/gkeys-gen/gkeygen/__init__.py
index 495f798..e990779 100644
--- a/gkeys-gen/gkeygen/__init__.py
+++ b/gkeys-gen/gkeygen/__init__.py
@@ -6,7 +6,7 @@ from collections import OrderedDict
 from gkeygen.actions import Action_Map, Available_Actions
 
 
-__version__ = 'Git'
+__version__ = '0.1'
 __license__ = 'GPLv2'
 
 

diff --git a/gkeys/gkeys/__init__.py b/gkeys/gkeys/__init__.py
index 7256297..503d359 100644
--- a/gkeys/gkeys/__init__.py
+++ b/gkeys/gkeys/__init__.py
@@ -8,7 +8,7 @@ from collections import OrderedDict
 from gkeys.action_map import Action_Map, Available_Actions
 
 
-__version__ = 'Git'
+__version__ = '0.1'
 __license__ = 'GPLv2'
 
 



[gentoo-commits] proj/gentoo-keys:master commit in: py2man/

2015-01-06 Thread Brian Dolbec
commit: bc947e9170f14f6bb4f1b3780dad3661bd5d0131
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 18:24:36 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:19:31 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=bc947e91

py2man/manpages.py: set date once, debug fixes

---
 py2man/manpages.py | 25 +++--
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/py2man/manpages.py b/py2man/manpages.py
index cddd68f..8b87afa 100644
--- a/py2man/manpages.py
+++ b/py2man/manpages.py
@@ -2,6 +2,7 @@
 #-*- coding:utf-8 -*-
 
 
+import codecs
 import os
 from datetime import datetime
 
@@ -28,6 +29,7 @@ class ManPage(object):
 self.template = template
 self.path = docpath
 self.authors = authors
+self.date = datetime.strftime(datetime.today(),'%B %d, %Y')
 
 
 @staticmethod
@@ -110,16 +112,15 @@ class ManPage(object):
 return '\n'.join(output)
 
 
-def make_subpage(self, action, Action_Map, actions):
+def make_subpage(self, action, Action_Map, _actions):
 '''Create and saves one sub-command man page using the
 classes template definition setting'''
+actions = _actions[:]
 actions.remove(action)
-# remove the help group separators
-actions = [x for x in actions if not x.startswith(---)]
 data = {}
 data['prog'] = self.prog
 data['version'] = self.version
-data['date'] = datetime.strftime(datetime.today(),'%B %d, %Y')
+data['date'] = self.date
 data['authors'] = self.gen_brlist(self.authors)
 data['action'] = action
 data['actions'] = self.gen_actions(actions)
@@ -140,7 +141,7 @@ class ManPage(object):
 else:
 doc.append(line % data)
 filepath = os.path.join(self.path, %s-%s.1 % (self.prog, action))
-with open(filepath, 'w', encoding='utf-8') as man:
+with codecs.open(filepath, 'w', 'utf-8') as man:
 man.write('\n'.join(doc))
 
 
@@ -153,15 +154,16 @@ class ManPage(object):
 @param actions: list of keys in Action_Map to generate pages for
 @param location: string, path to save the newly created man pages
 '''
-for action in actions:
-self.make_subpage(action, Action_Map, actions)
+_actions = [x for x in actions if not x.startswith('--')]
+for action in _actions[:]:
+self.make_subpage(action, Action_Map, _actions)
 
 
 def make_prog(self, prog_map):
 data = {}
 data['prog'] = self.prog
 data['version'] = self.version
-data['date'] = datetime.strftime(datetime.today(),'%B %d, %Y')
+data['date'] = self.date
 data['authors'] = self.gen_brlist(self.authors)
 data['actions'] = self.gen_actions(list(prog_map['sub-cmds']))
 data['options'] = self.gen_options(prog_map['options'])
@@ -170,12 +172,15 @@ class ManPage(object):
 data['sub-cmds'] = self.gen_subcmd(prog_map['sub-cmds'])
 doc = []
 for line in self.template.split('\n'):
+try:
 doc.append(line % data)
+except:
+print(line, data)
 filepath = os.path.join(self.path, %s.1 % (self.prog))
-with open(filepath, 'w', encoding='utf-8') as man:
+with codecs.open(filepath, 'w', 'utf-8') as man:
 man.write('\n'.join(doc))
 
 def read_template(self, path, filename):
 filepath = os.path.join(path, filename)
-with open(filepath, 'r', encoding='utf-8') as template:
+with codecs.open(filepath, 'r', 'utf-8') as template:
 self.template = template.read()



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/gkeygen/

2015-01-06 Thread Brian Dolbec
commit: 284073e411a75c75efb0426ea444fc8783462bb5
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 21:15:32 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:19:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=284073e4

gkeysgen/actions.py: Add gen-key example

---
 gkeys-gen/gkeygen/actions.py | 50 +++-
 1 file changed, 49 insertions(+), 1 deletion(-)

diff --git a/gkeys-gen/gkeygen/actions.py b/gkeys-gen/gkeygen/actions.py
index 740d954..8f8c81a 100644
--- a/gkeys-gen/gkeygen/actions.py
+++ b/gkeys-gen/gkeygen/actions.py
@@ -35,7 +35,55 @@ Action_Map = OrderedDict({
 'options': ['spec', 'dest'],
 'desc': '''Generate a gpg key using a spec file''',
 'long_desc': '''Generate a gpg key using a spec file''',
-'example': '',
+'example': '''$ gkey-gen gen-key
+
+GPG key creator
+Spec file..: glep-63-recommended
+Homepage...: https://wiki.gentoo.org/wiki/GLEP:63
+
+Give your Full Name: Foo Barr
+Give your Email: f...@barr.net
+
+Review:
+ Full Name: Foo Barr
+ Email: f...@barr.net
+
+Continue?[y/n]: y
+
+* Creating gpg folder at /home/brian/gkeys-user/gpghome
+
+* Creating gpg.conf file at /home/brian/gkeys-user/gpghome
+
+
+
+ Generating GPG key 
+ 
+\   ^__^
+ \  (oo)\___
+(__)\   )\/
+||w |
+|| ||
+
+* Give the password for the key. (Pick a strong one)
+Please surf the internet, type on your keyboard, etc.
+This helps the random number generator work effectively
+
+Your new GLEP 63 based OpenPGP key has been created in 
/home/brian/gkeys-user/gpghome
+
+
+GPG key info:
+Full Name: Foo Barr,
+Email: f...@barr.net,
+Fingerprint: CF8F369903999538F79287497AD8F5FEF19A7A69
+
+
+In order to use your new key, place the new gpghome to your ~/.gnupg 
folder by running the following command:
+mv /home/brian/gkeys-user/gpghome ~/.gnupg
+Important: If you have another old key in ~/.gnupg please make sure you 
backup it up first.
+
+Please read the FAQ for post-generation steps that are available in:
+
https://wiki.gentoo.org/wiki/Project:Gentoo-keys/Generating_GLEP_63_based_OpenPGP_keys
+''',
 },
 'list-specs': {
 'func': 'list_specs',



[gentoo-commits] gentoo-x86 commit in dev-perl/Class-XSAccessor: Class-XSAccessor-1.190.0.ebuild ChangeLog

2015-01-06 Thread Mikle Kolyada (zlogene)
zlogene 15/01/07 00:07:16

  Modified: Class-XSAccessor-1.190.0.ebuild ChangeLog
  Log:
  Mark stable
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild

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

Index: Class-XSAccessor-1.190.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Class-XSAccessor-1.190.0.ebuild 26 Jul 2014 14:26:56 -  1.1
+++ Class-XSAccessor-1.190.0.ebuild 7 Jan 2015 00:07:16 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild,v
 1.1 2014/07/26 14:26:56 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/Class-XSAccessor-1.190.0.ebuild,v
 1.2 2015/01/07 00:07:16 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION=Generate fast XS accessors without runtime compilation
 
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86 ~ppc-aix ~ppc-macos ~x86-solaris
+KEYWORDS=amd64 ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris
 IUSE=
 
 DEPEND=



1.26 dev-perl/Class-XSAccessor/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   26 Jul 2014 14:31:29 -  1.25
+++ ChangeLog   7 Jan 2015 00:07:16 -   1.26
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Class-XSAccessor
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/ChangeLog,v 1.25 
2014/07/26 14:31:29 zlogene Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-XSAccessor/ChangeLog,v 1.26 
2015/01/07 00:07:16 zlogene Exp $
+
+  07 Jan 2015; Mikle Kolyada zlog...@gentoo.org
+  Class-XSAccessor-1.190.0.ebuild:
+  Mark stable
 
   26 Jul 2014; Mikle Kolyada zlog...@gentoo.org
   -Class-XSAccessor-1.160.0.ebuild, Class-XSAccessor-1.180.0.ebuild:






[gentoo-commits] gentoo-x86 commit in www-plugins/chrome-binary-plugins: chrome-binary-plugins-41.0.2267.0_alpha1.ebuild ChangeLog chrome-binary-plugins-41.0.2251.0_alpha1.ebuild

2015-01-06 Thread Mike Gilbert (floppym)
floppym 15/01/07 00:23:04

  Modified: ChangeLog
  Added:chrome-binary-plugins-41.0.2267.0_alpha1.ebuild
  Removed:  chrome-binary-plugins-41.0.2251.0_alpha1.ebuild
  Log:
  Automated update.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.207www-plugins/chrome-binary-plugins/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?rev=1.207view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?rev=1.207content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?r1=1.206r2=1.207

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -r1.206 -r1.207
--- ChangeLog   19 Dec 2014 04:27:45 -  1.206
+++ ChangeLog   7 Jan 2015 00:23:04 -   1.207
@@ -1,6 +1,13 @@
 # ChangeLog for www-plugins/chrome-binary-plugins
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v 1.206 
2014/12/19 04:27:45 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v 1.207 
2015/01/07 00:23:04 floppym Exp $
+
+*chrome-binary-plugins-41.0.2267.0_alpha1 (07 Jan 2015)
+
+  07 Jan 2015; Mike Gilbert flop...@gentoo.org
+  +chrome-binary-plugins-41.0.2267.0_alpha1.ebuild,
+  -chrome-binary-plugins-41.0.2251.0_alpha1.ebuild:
+  Automated update.
 
 *chrome-binary-plugins-41.0.2251.0_alpha1 (19 Dec 2014)
 



1.1  
www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild?rev=1.1content-type=text/plain

Index: chrome-binary-plugins-41.0.2267.0_alpha1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-41.0.2267.0_alpha1.ebuild,v
 1.1 2015/01/07 00:23:04 floppym Exp $

EAPI=5

inherit multilib unpacker

DESCRIPTION=Binary plugins from Google Chrome for use in Chromium
HOMEPAGE=http://www.google.com/chrome;

case ${PV} in
*_alpha*|*)
SLOT=unstable
CHROMEDIR=opt/google/chrome-${SLOT}
MY_PV=${PV/_alpha/-}
;;
*_beta*)
SLOT=beta
CHROMEDIR=opt/google/chrome-${SLOT}
MY_PV=${PV/_beta/-}
;;
*_p*)
SLOT=stable
CHROMEDIR=opt/google/chrome
MY_PV=${PV/_p/-}
;;
*)
die Invalid value for \${PV}: ${PV}
;;
esac

MY_PN=google-chrome-${SLOT}
MY_P=${MY_PN}_${MY_PV}

if [[ ${PV} != * ]]; then
SRC_URI=
amd64? (

https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb
)
x86? (

https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb
)

KEYWORDS=~amd64 ~x86
fi

LICENSE=google-chrome
IUSE=+flash
RESTRICT=bindist mirror strip

for x in 0 beta stable unstable; do
if [[ ${SLOT} != ${x} ]]; then
RDEPEND+= !${CATEGORY}/${PN}:${x}
fi
done

S=${WORKDIR}/${CHROMEDIR}
QA_PREBUILT=*

pkg_nofetch() {
eerror Please wait 24 hours and sync your portage tree before 
reporting fetch failures.
}

if [[ ${PV} == * ]]; then
src_unpack() {
local base=https://dl.google.com/linux/direct;
local debarch=${ARCH/x86/i386}
wget -O google-chrome.deb 
${base}/google-chrome-${SLOT}_current_${debarch}.deb || die
unpack_deb ./google-chrome.deb
}
fi

src_install() {
local version flapper

insinto /usr/$(get_libdir)/chromium-browser/

if use flash; then
doins -r PepperFlash

# Since this is a live ebuild, we're forced to, unfortuantely,
# dynamically construct the command line args for Chromium.
version=$(sed -n 's/.*version: \(.*\),.*/\1/p' 
PepperFlash/manifest.json)

flapper=${ROOT}usr/$(get_libdir)/chromium-browser/PepperFlash/libpepflashplayer.so
echo -n CHROMIUM_FLAGS=\\${CHROMIUM_FLAGS}   

[gentoo-commits] gentoo-x86 commit in app-admin/systemrescuecd-x86: systemrescuecd-x86-4.4.1.ebuild metadata.xml ChangeLog

2015-01-06 Thread Michal Gorny (mgorny)
mgorny  15/01/06 23:57:06

  Added:systemrescuecd-x86-4.4.1.ebuild metadata.xml
ChangeLog
  Log:
  Introduce an ebuild to maintain a fresh copy of systemrescuecd-x86.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  
app-admin/systemrescuecd-x86/systemrescuecd-x86-4.4.1.ebuild

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

Index: systemrescuecd-x86-4.4.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.4.1.ebuild,v
 1.1 2015/01/06 23:57:06 mgorny Exp $

EAPI=5

DESCRIPTION=The .iso image of SystemRescueCD rescue disk, x86 variant
HOMEPAGE=http://www.sysresccd.org/;
SRC_URI=mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${P}.iso

LICENSE=GPL-2
SLOT=${PV}
KEYWORDS=~amd64 ~x86
IUSE=

S=${WORKDIR}

RESTRICT=mirror

src_install() {
insinto /usr/share/${PN%-*}
doins ${DISTDIR}/${P}.iso
}

pkg_postinst() {
local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso

# no newer version? we're the newest!
if ! has_version ${CATEGORY}/${PF}; then
ln -f -s -v ${P}.iso ${f} || die
fi
}

pkg_postrm() {
# TODO: best_version is probably broken in portage, figure it out
local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
local newest_version=$(best_version ${CATEGORY}/${PN})

if [[ ${newest_version} != ${CATEGORY}/${PF} ]]; then
# we're not the newest? update the symlink.
ln -f -s -v ${newest_version%-r*}.iso ${f} || die
elif [[ ! ${newest_version} ]]; then
# last version removed? clean up the symlink.
rm -v ${f} || die
# TODO: remove the empty directory
fi
}



1.1  app-admin/systemrescuecd-x86/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/systemrescuecd-x86/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
maintainer
emailmgo...@gentoo.org/email
nameMichał Górny/name
/maintainer
/pkgmetadata



1.1  app-admin/systemrescuecd-x86/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for app-admin/systemrescuecd-x86
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/systemrescuecd-x86/ChangeLog,v 1.1 
2015/01/06 23:57:06 mgorny Exp $

*systemrescuecd-x86-4.4.1 (06 Jan 2015)

  06 Jan 2015; Michał Górny mgo...@gentoo.org +metadata.xml,
  +systemrescuecd-x86-4.4.1.ebuild:
  Introduce an ebuild to maintain a fresh copy of systemrescuecd-x86.






[gentoo-commits] gentoo-x86 commit in www-client/google-chrome-unstable: google-chrome-unstable-41.0.2267.0_p1.ebuild ChangeLog google-chrome-unstable-41.0.2251.0_p1.ebuild

2015-01-06 Thread Mike Gilbert (floppym)
floppym 15/01/07 00:22:50

  Modified: ChangeLog
  Added:google-chrome-unstable-41.0.2267.0_p1.ebuild
  Removed:  google-chrome-unstable-41.0.2251.0_p1.ebuild
  Log:
  Automated update.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.74 www-client/google-chrome-unstable/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome-unstable/ChangeLog?rev=1.74view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome-unstable/ChangeLog?rev=1.74content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome-unstable/ChangeLog?r1=1.73r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   19 Dec 2014 04:28:25 -  1.73
+++ ChangeLog   7 Jan 2015 00:22:50 -   1.74
@@ -1,6 +1,13 @@
 # ChangeLog for www-client/google-chrome-unstable
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/ChangeLog,v 1.73 
2014/12/19 04:28:25 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/ChangeLog,v 1.74 
2015/01/07 00:22:50 floppym Exp $
+
+*google-chrome-unstable-41.0.2267.0_p1 (07 Jan 2015)
+
+  07 Jan 2015; Mike Gilbert flop...@gentoo.org
+  +google-chrome-unstable-41.0.2267.0_p1.ebuild,
+  -google-chrome-unstable-41.0.2251.0_p1.ebuild:
+  Automated update.
 
 *google-chrome-unstable-41.0.2251.0_p1 (19 Dec 2014)
 



1.1  
www-client/google-chrome-unstable/google-chrome-unstable-41.0.2267.0_p1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome-unstable/google-chrome-unstable-41.0.2267.0_p1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/google-chrome-unstable/google-chrome-unstable-41.0.2267.0_p1.ebuild?rev=1.1content-type=text/plain

Index: google-chrome-unstable-41.0.2267.0_p1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/google-chrome-unstable/google-chrome-unstable-41.0.2267.0_p1.ebuild,v
 1.1 2015/01/07 00:22:50 floppym Exp $

EAPI=5

CHROMIUM_LANGS=am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he
hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
sv sw ta te th tr uk vi zh_CN zh_TW

inherit readme.gentoo chromium eutils multilib pax-utils unpacker

DESCRIPTION=The web browser from Google
HOMEPAGE=http://www.google.com/chrome;

if [[ ${PN} == google-chrome ]]; then
MY_PN=${PN}-stable
else
MY_PN=${PN}
fi

MY_P=${MY_PN}_${PV/_p/-}

SRC_URI=
amd64? (

http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb
)
x86? (

http://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_i386.deb
)


LICENSE=google-chrome
SLOT=0
KEYWORDS=-* ~amd64 ~x86
IUSE=+plugins
RESTRICT=bindist mirror strip

RDEPEND=
app-arch/bzip2
app-misc/ca-certificates
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype:2
net-print/cups
sys-apps/dbus
sys-libs/libcap
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:2
=x11-libs/libX11-1.5.0
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/libXScrnSaver
x11-libs/libXtst
x11-libs/pango
x11-misc/xdg-utils


QA_PREBUILT=*
S=${WORKDIR}
CHROME_HOME=opt/google/chrome${PN#google-chrome}

DISABLE_AUTOFORMATTING=yes
DOC_CONTENTS=
Some web pages may require additional fonts to display properly.
Try installing some of the following packages if some characters
are not displayed properly:
- media-fonts/arphicfonts
- media-fonts/bitstream-cyberbit
- media-fonts/droid
- media-fonts/ipamonafont
- media-fonts/ja-ipafonts
- media-fonts/takao-fonts
- media-fonts/wqy-microhei
- media-fonts/wqy-zenhei

Depending on your desktop environment, you may need
to install additional packages to get icons on the Downloads page.

For KDE, the required package is kde-base/oxygen-icons.

For other desktop environments, try one of the 

[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: b92d4495d9ee7661b8c5b75648821291b5f5cbfd
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jan  6 20:43:01 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jan  6 20:43:01 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=b92d4495

misc/elf-abi: manually read little/big endian half or full words

When reading on a native system, read() transparently reads two
byte or four bytes in the correct byte order and returns the correct
value.  But if you read() a word in a big endian file from a little
endian system or vice versa, you get the wrong value.  We wrap
read() in read_endian() to compensate for this.

---
 misc/elf-abi/elf-abi.c | 133 +++--
 1 file changed, 84 insertions(+), 49 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 5f47212..f4408cb 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -58,39 +58,62 @@
 #include unistd.h
 #include fcntl.h
 
-/* We reorder the big endian EM_ numbers to avoid also reading endian 
information from
- * the Elf file.  For a mapping between common macine names and EM_ see 
elf.h.  For a
- * more complete mapping, see elfutil's machines[] defined in 
libebl/eblopenbackend.c.
+/* For a mapping between common macine names and EM_ number see elf.h.  For 
a more
+ * complete mapping, see elfutil's machines[] defined in 
libebl/eblopenbackend.c.
  */
 #defineELFMAG  \177ELF
 
 #define ELFCLASS32 1   /* 32-bit objects */
 #define ELFCLASS64 2   /* 64-bit objects */
+#define ELFDATA2LSB1   /* 2's complement, little endian */
+#define ELFDATA2MSB2   /* 2's complement, big endian */
 
 #define EM_ALPHA   0x9026  /* alpha */
 #define EM_ARM 40  /* arm */
 #define EM_AARCH64 183 /* arm64 */
-#define EM_PARISC_BE   0x0F00  /* hppa - big endian reordering of 
EM_PARISC = 15 */
+#define EM_PARISC  15  /* hppa */
 #define EM_IA_64   50  /* ia64 */
-#define EM_68K_BE  0x0400  /* m68k - big endian reordering of 
EM_68K = 4 */
-
+#define EM_68K 4   /* m68k */
 #define EM_MIPS8   /* mips */
-#define EM_MIPS_BE 0x800   /* mips - big endian reordering of 
EM_MIPS = 8 */
-
-#define EM_PPC_BE  0x1400  /* ppc - big endian reordering of 
EM_PPC = 20 */
-#define EM_PPC64_BE0x1500  /* ppc64 - bit endian reordering of 
EM_PPC64 = 21 */
-#define EM_S390_BE 0x1600  /* s390 - big endian reordering of 
EM_S390 */
+#define EM_PPC 20  /* ppc */
+#define EM_PPC64   21  /* ppc64 */
+#define EM_S39022  /* s390 */
 #define EM_SH  42  /* Hitachi SH */
-#define EM_SPARC32_BE  0x1200  /* sparc - big endian reordering of 
EM_SPARC32PLUS = 18 */
-#define EM_SPARC64_BE  0x2B00  /* sparc - big endian reordinger of 
EM_SPARCV9 = 43 */
+#define EM_SPARC32PLUS 18  /* sparc 32-bit */
+#define EM_SPARCV9 43  /* sparc 64-bit */
 #define EM_386 3   /* x86 */
 #define EM_X86_64  62  /* amd64 */
 
 /* The arm and mips ABI flags housed in e_flags */
-#define EF_MIPS_ABI2   0x0020  /* Mask for mips ABI */
-#define EF_MIPS_ABI2_BE0x2000  /* Mask for mips ABI */
+#define EF_MIPS_ABI2   0x0020  /* Mask for mips n32 ABI */
 #define EF_ARM_EABIMASK0XFF00  /* Mask for arm EABI - 
we dont' destinguish versions */
 
+int
+get_wordsize(uint8_t ei_class)
+{
+   switch (ei_class) {
+   case ELFCLASS32:
+   return 32;
+   case ELFCLASS64:
+   return 64;
+   default:
+   errx(1, Unknown machine word size.);
+   }
+}
+
+int
+get_endian(uint8_t ei_data)
+{
+   switch (ei_data) {
+   case ELFDATA2LSB:
+   return 0;
+   case ELFDATA2MSB:
+   return 1;
+   default:
+   errx(1, Unknown endian.);
+   }
+}
+
 
 char *
 get_abi(uint16_t e_machine, int width, uint32_t e_flags)
@@ -117,7 +140,7 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
return arm_64;
 
/* m68k: We support only one 32-bit ABI. */
-   case EM_68K_BE:
+   case EM_68K:
return m68k_32;
 
/* mips: We support o32, n32 and n64.  The first is 32-bits and 
the
@@ -132,33 +155,25 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
else
return mips_o32;
 
-   case 

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

2015-01-06 Thread Manuel Rüger
commit: 2ef290ffdf92cfc66e33ceb029ab8f4143a04178
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Tue Jan  6 21:21:24 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Tue Jan  6 21:21:24 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2ef290ff

[Documentation] Regenerate files

---
 .../.kde-frameworks-5.6/_HEADER_   |  2 +
 .../.kde-frameworks-5.6/kde-frameworks-5.6 |  1 +
 .../.kde-frameworks-5.6/more-deps  | 21 ++
 .../kde-frameworks-5.6.keywords| 84 ++
 Documentation/package.mask/kde-frameworks-5.6  | 63 
 .../package.unmask/.kde-frameworks-5.6/_HEADER_|  2 +
 .../.kde-frameworks-5.6/kde-frameworks-5.6 |  1 +
 Documentation/package.unmask/kde-frameworks-5.6| 63 
 8 files changed, 237 insertions(+)

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

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

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

diff --git a/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords
index 085d6bf..6032793 100644
--- a/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords
+++ b/Documentation/package.accept_keywords/kde-frameworks-5.6.keywords
@@ -1 +1,85 @@
 # Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.6 release.
+# Edit Documentation/package.keywords/.kde-frameworks-5.6/ files instead.
+kde-frameworks/attica-5.6.50:5
+kde-frameworks/frameworkintegration-5.6.50:5
+kde-frameworks/kactivities-5.6.50:5
+kde-frameworks/kapidox-5.6.50:5
+kde-frameworks/karchive-5.6.50:5
+kde-frameworks/kauth-5.6.50:5
+kde-frameworks/kbookmarks-5.6.50:5
+kde-frameworks/kcmutils-5.6.50:5
+kde-frameworks/kcodecs-5.6.50:5
+kde-frameworks/kcompletion-5.6.50:5
+kde-frameworks/kconfig-5.6.50:5
+kde-frameworks/kconfigwidgets-5.6.50:5
+kde-frameworks/kcoreaddons-5.6.50:5
+kde-frameworks/kcrash-5.6.50:5
+kde-frameworks/kdbusaddons-5.6.50:5
+kde-frameworks/kdeclarative-5.6.50:5
+kde-frameworks/kded-5.6.50:5
+kde-frameworks/kdelibs4support-5.6.50:5
+kde-frameworks/kdesignerplugin-5.6.50:5
+kde-frameworks/kdesu-5.6.50:5
+kde-frameworks/kdewebkit-5.6.50:5
+kde-frameworks/kdnssd-5.6.50:5
+kde-frameworks/kdoctools-5.6.50:5
+kde-frameworks/kemoticons-5.6.50:5
+kde-frameworks/kglobalaccel-5.6.50:5
+kde-frameworks/kguiaddons-5.6.50:5
+kde-frameworks/khtml-5.6.50:5
+kde-frameworks/ki18n-5.6.50:5
+kde-frameworks/kiconthemes-5.6.50:5
+kde-frameworks/kidletime-5.6.50:5
+kde-frameworks/kimageformats-5.6.50:5
+kde-frameworks/kinit-5.6.50:5
+kde-frameworks/kio-5.6.50:5
+kde-frameworks/kitemmodels-5.6.50:5
+kde-frameworks/kitemviews-5.6.50:5
+kde-frameworks/kjobwidgets-5.6.50:5
+kde-frameworks/kjs-5.6.50:5
+kde-frameworks/kjsembed-5.6.50:5
+kde-frameworks/kmediaplayer-5.6.50:5
+kde-frameworks/knewstuff-5.6.50:5
+kde-frameworks/knotifications-5.6.50:5
+kde-frameworks/knotifyconfig-5.6.50:5
+kde-frameworks/kpackage-5.6.50:5
+kde-frameworks/kparts-5.6.50:5
+kde-frameworks/kplotting-5.6.50:5
+kde-frameworks/kpty-5.6.50:5
+kde-frameworks/kross-5.6.50:5
+kde-frameworks/krunner-5.6.50:5
+kde-frameworks/kservice-5.6.50:5
+kde-frameworks/ktexteditor-5.6.50:5
+kde-frameworks/ktextwidgets-5.6.50:5

[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Services_JSON: PEAR-Services_JSON-1.0.3.ebuild ChangeLog PEAR-Services_JSON-1.0.2.ebuild

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 21:21:50

  Modified: PEAR-Services_JSON-1.0.3.ebuild ChangeLog
  Removed:  PEAR-Services_JSON-1.0.2.ebuild
  Log:
  EAPI bump; drop old
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.2  dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild

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

Index: PEAR-Services_JSON-1.0.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PEAR-Services_JSON-1.0.3.ebuild 23 Apr 2011 15:17:00 -  1.1
+++ PEAR-Services_JSON-1.0.3.ebuild 6 Jan 2015 21:21:50 -   1.2
@@ -1,6 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild,v
 1.1 2011/04/23 15:17:00 olemarkus Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/PEAR-Services_JSON-1.0.3.ebuild,v
 1.2 2015/01/06 21:21:50 grknight Exp $
+
+EAPI=5
 
 inherit php-pear-r1
 



1.3  dev-php/PEAR-Services_JSON/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   23 Apr 2011 15:17:00 -  1.2
+++ ChangeLog   6 Jan 2015 21:21:50 -   1.3
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php/PEAR-Services_JSON
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/ChangeLog,v 1.2 
2011/04/23 15:17:00 olemarkus Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_JSON/ChangeLog,v 1.3 
2015/01/06 21:21:50 grknight Exp $
+
+  06 Jan 2015; Brian Evans grkni...@gentoo.org
+  -PEAR-Services_JSON-1.0.2.ebuild, PEAR-Services_JSON-1.0.3.ebuild:
+  EAPI bump; drop old
 
 *PEAR-Services_JSON-1.0.3 (23 Apr 2011)
 
@@ -12,4 +16,3 @@
   23 Mar 2010; Steve Dibb bean...@gentoo.org
   +PEAR-Services_JSON-1.0.2.ebuild, +metadata.xml:
   Initial commit
-






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Services_Amazon: PEAR-Services_Amazon-0.8.0.ebuild ChangeLog PEAR-Services_Amazon-0.7.1.ebuild PEAR-Services_Amazon-0.7.0.ebuild

2015-01-06 Thread Brian Evans (grknight)
grknight15/01/06 21:37:06

  Modified: PEAR-Services_Amazon-0.8.0.ebuild ChangeLog
  Removed:  PEAR-Services_Amazon-0.7.1.ebuild
PEAR-Services_Amazon-0.7.0.ebuild
  Log:
  EAPI bump; drop old
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.3  
dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild?r1=1.2r2=1.3

Index: PEAR-Services_Amazon-0.8.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- PEAR-Services_Amazon-0.8.0.ebuild   10 Aug 2014 20:55:11 -  1.2
+++ PEAR-Services_Amazon-0.8.0.ebuild   6 Jan 2015 21:37:06 -   1.3
@@ -1,6 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild,v
 1.2 2014/08/10 20:55:11 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.8.0.ebuild,v
 1.3 2015/01/06 21:37:06 grknight Exp $
+
+EAPI=5
 
 inherit php-pear-r1
 



1.16 dev-php/PEAR-Services_Amazon/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   10 Aug 2014 20:55:11 -  1.15
+++ ChangeLog   6 Jan 2015 21:37:06 -   1.16
@@ -1,6 +1,11 @@
 # ChangeLog for dev-php/PEAR-Services_Amazon
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v 
1.15 2014/08/10 20:55:11 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v 
1.16 2015/01/06 21:37:06 grknight Exp $
+
+  06 Jan 2015; Brian Evans grkni...@gentoo.org
+  -PEAR-Services_Amazon-0.7.0.ebuild, -PEAR-Services_Amazon-0.7.1.ebuild,
+  PEAR-Services_Amazon-0.8.0.ebuild:
+  EAPI bump; drop old
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org
   PEAR-Services_Amazon-0.7.0.ebuild, PEAR-Services_Amazon-0.7.1.ebuild,






[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: 666190ea1a94474f73c3e5efcb271432152c6767
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jan  6 21:44:11 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jan  6 21:44:11 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=666190ea

misc/elf-abi.c: cleanup comments

---
 misc/elf-abi/elf-abi.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index 3be6aae..81e5e16 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -78,13 +78,12 @@
 #define EM_PPC 20  /* ppc */
 #define EM_PPC64   21  /* ppc64 */
 #define EM_S39022  /* s390 */
-#define EM_SH  42  /* Hitachi SH */
-#define EM_SPARC32PLUS 18  /* sparc 32-bit */
-#define EM_SPARCV9 43  /* sparc 64-bit */
+#define EM_SH  42  /* sh */
+#define EM_SPARC32PLUS 18  /* sparc (32-bit) */
+#define EM_SPARCV9 43  /* sparc (64-bit) */
 #define EM_386 3   /* x86 */
 #define EM_X86_64  62  /* amd64 */
 
-/* The arm and mips ABI flags housed in e_flags */
 #define EF_MIPS_ABI2   0x0020  /* Mask for mips n32 ABI */
 #define EF_ARM_EABIMASK0XFF00  /* Mask for arm EABI - 
we dont' destinguish versions */
 
@@ -218,9 +217,12 @@ read_endian(int fd, size_t count, int endian)
uint8_t data;
uint64_t value = 0;
 
+   if (count  8)
+   errx(1, Max width exceeded in read_endian());
+
for(i = 0; i  count; i++) {
if (read(fd, data, 1) == -1)
-   errx(1, read() ei_class failed);
+   errx(1, read() in read_endian() failed);
if (endian)
value += data  8 * (count-i-1);
else
@@ -243,7 +245,6 @@ main(int argc, char* argv[])
char magic[4];  /* magic number at the begining of the 
file */
uint8_t ei_class;   /* ei_class is one byte of e_ident[]
*/
uint8_t ei_data;/* ei_data is one byte of e_ident[] 
*/
-
uint16_t e_machine; /* Size is Elf32_Half or Elf64_Half.  
Both are 2 bytes. */
uint32_t e_flags;   /* Size is Elf32_Word or Elf64_Word.  
Both are 4 bytes. */
uint64_t e_machine_offset, e_flags_offset;  /* Wide enough for either 
32 or 64 bits.*/
@@ -261,7 +262,7 @@ main(int argc, char* argv[])
errx(1, failed to open %s, argv[1]);
if (read(fd, magic, 4) == -1)
errx(1, read() magic failed);
-   if (strncmp(magic, ELFMAG, 4) != 0)
+   if (strncmp(magic, ELFMAG, 4))
errx(1, %s is not an ELF object, argv[1]);
 
/* 32 or 64 bits machine word size? */



[gentoo-commits] gentoo-x86 commit in sys-cluster/libquo: libquo-1.2.2.ebuild ChangeLog

2015-01-06 Thread Christoph Junghans (ottxor)
ottxor  15/01/06 21:56:20

  Modified: ChangeLog
  Added:libquo-1.2.2.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
C2000586)

Revision  ChangesPath
1.2  sys-cluster/libquo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/libquo/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   19 Nov 2014 21:33:27 -  1.1
+++ ChangeLog   6 Jan 2015 21:56:20 -   1.2
@@ -1,6 +1,11 @@
 # ChangeLog for sys-cluster/libquo
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libquo/ChangeLog,v 1.1 
2014/11/19 21:33:27 ottxor Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libquo/ChangeLog,v 1.2 
2015/01/06 21:56:20 ottxor Exp $
+
+*libquo-1.2.2 (06 Jan 2015)
+
+  06 Jan 2015; Christoph Junghans ott...@gentoo.org +libquo-1.2.2.ebuild:
+  version bump
 
 *libquo-1.2 (19 Nov 2014)
 



1.1  sys-cluster/libquo/libquo-1.2.2.ebuild

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

Index: libquo-1.2.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libquo/libquo-1.2.2.ebuild,v 1.1 
2015/01/06 21:56:20 ottxor Exp $

EAPI=5

inherit autotools-utils

DESCRIPTION=run-time tuning of process binding policies made easy
HOMEPAGE=http://losalamos.github.io/libquo/;
SRC_URI=http://losalamos.github.io/${PN}/dists/${P}.tar.gz;

LICENSE=BSD
SLOT=0
KEYWORDS=~amd64
IUSE=fortran

DEPEND=
virtual/mpi[fortran?]
sys-process/numactl
sys-apps/hwloc[numa,xml]

RDEPEND=${DEPEND}

AUTOTOOLS_IN_SOURCE_BUILD=1

src_configure() {
autotools-utils_src_configure CC=mpicc FC=$(usex fortran mpif90 false)
}






[gentoo-commits] gentoo-x86 commit in x11-libs/libva: libva-1.4.0.ebuild libva-1.4.1.ebuild libva-9999.ebuild libva-1.3.1.ebuild libva-1.5.0.ebuild ChangeLog

2015-01-06 Thread Manuel Rueger (mrueg)
mrueg   15/01/06 19:33:30

  Modified: libva-1.4.0.ebuild libva-1.4.1.ebuild
libva-.ebuild libva-1.3.1.ebuild
libva-1.5.0.ebuild ChangeLog
  Log:
  Update xvba dependency to use bundled vaapi in x11-drivers/ati-drivers. See 
bug #534710
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.2  x11-libs/libva/libva-1.4.0.ebuild

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

Index: libva-1.4.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libva-1.4.0.ebuild  24 Oct 2014 07:00:48 -  1.1
+++ libva-1.4.0.ebuild  6 Jan 2015 19:33:30 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.0.ebuild,v 1.1 
2014/10/24 07:00:48 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.0.ebuild,v 1.2 
2015/01/06 19:33:30 mrueg Exp $
 
 EAPI=5
 
@@ -52,7 +52,10 @@
virtual/pkgconfig
 PDEPEND=video_cards_nvidia? ( 
=x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
vdpau? ( =x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
-   video_cards_fglrx? ( =x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] 
)
+   video_cards_fglrx? (
+   || ( =x11-drivers/ati-drivers-14.12-r3[${MULTILIB_USEDEP}]
+   =x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] )
+   )
video_cards_intel? ( 
=x11-libs/libva-intel-driver-1.2.2-r1[${MULTILIB_USEDEP}] )

 



1.2  x11-libs/libva/libva-1.4.1.ebuild

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

Index: libva-1.4.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libva-1.4.1.ebuild  27 Oct 2014 11:03:15 -  1.1
+++ libva-1.4.1.ebuild  6 Jan 2015 19:33:30 -   1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.1.ebuild,v 1.1 
2014/10/27 11:03:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-1.4.1.ebuild,v 1.2 
2015/01/06 19:33:30 mrueg Exp $
 
 EAPI=5
 
@@ -52,7 +52,10 @@
virtual/pkgconfig
 PDEPEND=video_cards_nvidia? ( 
=x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
vdpau? ( =x11-libs/libva-vdpau-driver-0.7.4-r1[${MULTILIB_USEDEP}] )
-   video_cards_fglrx? ( =x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] 
)
+   video_cards_fglrx? (
+   || ( =x11-drivers/ati-drivers-14.12-r3[${MULTILIB_USEDEP}]
+   =x11-libs/xvba-video-0.8.0-r1[${MULTILIB_USEDEP}] )
+   )
video_cards_intel? ( 
=x11-libs/libva-intel-driver-1.2.2-r1[${MULTILIB_USEDEP}] )

 



1.23 x11-libs/libva/libva-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva/libva-.ebuild?rev=1.23view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva/libva-.ebuild?rev=1.23content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva/libva-.ebuild?r1=1.22r2=1.23

Index: libva-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-.ebuild,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- libva-.ebuild   3 Nov 2014 10:25:21 -   1.22
+++ libva-.ebuild   6 Jan 2015 19:33:30 -   1.23
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-.ebuild,v 1.22 
2014/11/03 10:25:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-.ebuild,v 1.23 

[gentoo-commits] gentoo-x86 commit in dev-libs/libevent: libevent-2.0.22.ebuild ChangeLog

2015-01-06 Thread Jeroen Roovers (jer)
jer 15/01/06 20:24:06

  Modified: libevent-2.0.22.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #535774).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.3  dev-libs/libevent/libevent-2.0.22.ebuild

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

Index: libevent-2.0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libevent-2.0.22.ebuild  6 Jan 2015 13:36:05 -   1.2
+++ libevent-2.0.22.ebuild  6 Jan 2015 20:24:06 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.2 2015/01/06 13:36:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.22.ebuild,v 
1.3 2015/01/06 20:24:06 jer Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -13,7 +13,7 @@
 
 LICENSE=BSD
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
 IUSE=debug +ssl static-libs test +threads
 
 DEPEND=ssl? ( =dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )



1.285dev-libs/libevent/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog   6 Jan 2015 13:36:05 -   1.284
+++ ChangeLog   6 Jan 2015 20:24:06 -   1.285
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libevent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.284 
2015/01/06 13:36:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/ChangeLog,v 1.285 
2015/01/06 20:24:06 jer Exp $
+
+  06 Jan 2015; Jeroen Roovers j...@gentoo.org libevent-2.0.22.ebuild:
+  Stable for HPPA (bug #535774).
 
   06 Jan 2015; Agostino Sarubbo a...@gentoo.org libevent-2.0.22.ebuild:
   Stable for amd64, wrt bug #535774






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

2015-01-06 Thread Manuel Rüger
commit: 027d65f839af358d728370b4f1b0bcc13b9c27a5
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Tue Jan  6 21:16:14 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Tue Jan  6 21:16:14 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=027d65f8

[Documentation] Add new frameworks release to the scripts.

---
 Documentation/maintainers/regenerate-files | 2 +-
 sets/kde-frameworks| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 9e0cf99..6873590 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -13,7 +13,7 @@ KDE_RELEASES=4.11 4.12 4.14
 RELEASE=${RELEASE:-4.12} # current stable
 
 KF_RELEASES=5.5 5.6
-KF_RELEASE=${KF_RELEASE:-5.5}
+KF_RELEASE=${KF_RELEASE:-5.6}
 
 PLASMA_RELEASES=5.1
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.1}

diff --git a/sets/kde-frameworks b/sets/kde-frameworks
index 3709d2c..e828ff2 100644
--- a/sets/kde-frameworks
+++ b/sets/kde-frameworks
@@ -41,8 +41,8 @@ kde-frameworks/kmediaplayer:5
 kde-frameworks/knewstuff:5
 kde-frameworks/knotifications:5
 kde-frameworks/knotifyconfig:5
-kde-frameworks/kparts:5
 kde-frameworks/kpackage:5
+kde-frameworks/kparts:5
 kde-frameworks/kplotting:5
 kde-frameworks/kpty:5
 kde-frameworks/kross:5



[gentoo-commits] proj/elfix:master commit in: misc/elf-abi/

2015-01-06 Thread Anthony G. Basile
commit: cb2af57d4d0230dbb38f314c24f4118f9dbd679c
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jan  6 21:35:38 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jan  6 21:35:38 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=cb2af57d

misc/elf-abi: fixup read_endian()

---
 misc/elf-abi/elf-abi.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/misc/elf-abi/elf-abi.c b/misc/elf-abi/elf-abi.c
index f4408cb..3be6aae 100644
--- a/misc/elf-abi/elf-abi.c
+++ b/misc/elf-abi/elf-abi.c
@@ -211,22 +211,23 @@ get_abi(uint16_t e_machine, int width, uint32_t e_flags)
 /* Elf object on a big endian (eg. if you are cross compiling), then you get 
the wrong */
 /* byte order.  If howerver, you read it natively, you get it right.  We'll 
wrap read()*/
 /* with our own version which reads one byte at a time and corrects this.  
*/
-ssize_t
-read_endian(int fd, void *buf, size_t count, int endian)
+uint64_t
+read_endian(int fd, size_t count, int endian)
 {
ssize_t i;
uint8_t data;
+   uint64_t value = 0;
 
for(i = 0; i  count; i++) {
if (read(fd, data, 1) == -1)
errx(1, read() ei_class failed);
if (endian)
-   ((uint8_t *)buf)[count-i-1] = data;
+   value += data  8 * (count-i-1);
else
-   ((uint8_t *)buf)[i] = data;
+   value += data  8 * i;
}
 
-   return count;
+   return value;
 }
 
 
@@ -296,11 +297,11 @@ main(int argc, char* argv[])
/* What is the abi? */
if (lseek(fd, e_machine_offset, SEEK_SET) == -1)
errx(1, lseek() e_machine failed);
-   read_endian(fd, e_machine, 2, endian);
+   e_machine = (uint16_t)read_endian(fd, 2, endian);
 
if (lseek(fd, e_flags_offset, SEEK_SET) == -1)
errx(1, lseek() e_flags failed);
-   read_endian(fd, e_flags, 4, endian);
+   e_flags = (uint32_t)read_endian(fd, 4, endian);
 
abi = get_abi(e_machine, width, e_flags);
printf(%s\n, abi);



[gentoo-commits] proj/gentoo-keys:master commit in: py2man/

2015-01-06 Thread Brian Dolbec
commit: b623e3b05f43513dea9919a7f2644c52a17f5fb0
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 18:26:03 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:19:39 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=b623e3b0

py2man/options.py: Add missed '1name' option

---
 py2man/options.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/py2man/options.py b/py2man/options.py
index 68134b0..87d19bf 100644
--- a/py2man/options.py
+++ b/py2man/options.py
@@ -52,6 +52,8 @@ The email address to search for or use.''',
 The nick of the user whose gkey seed is being added''',
 'name': '''.IP -N \\fINAME\\fR, --name \\fINAME
 The name of the user whose gkey seed is being added''',
+'1name': '''.IP -N \\fINAME\\fR, --name \\fINAME
+The name of the user whose gkey seed is being added''',
 'keydir': '''.IP -r \\fIKEYDIR\\fR, --keydir \\fIKEYDIR
 The key directory the key is to be installed to''',
 'signature': '''.IP -s \\fISIGNATURE\\fR, --signature \\fISIGNATURE



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/, gkeys-gen/gkeygen/, gkeys-gen/

2015-01-06 Thread Brian Dolbec
commit: 7bfa40a4b350767ec8e8d2812620bb8be6ce48a4
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 20:20:30 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:19:39 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=7bfa40a4

gkeys-gen: Setup.py updates for man page generation

---
 gkeys-gen/gkeygen/__init__.py | 20 +++
 gkeys-gen/setup.py| 80 ---
 gkeys/setup.py| 76 ++--
 3 files changed, 168 insertions(+), 8 deletions(-)

diff --git a/gkeys-gen/gkeygen/__init__.py b/gkeys-gen/gkeygen/__init__.py
index 7e8b64e..495f798 100644
--- a/gkeys-gen/gkeygen/__init__.py
+++ b/gkeys-gen/gkeygen/__init__.py
@@ -1,5 +1,25 @@
 #!/usr/bin/python
 # -*- coding: utf-8 -*-
 
+from collections import OrderedDict
+
+from gkeygen.actions import Action_Map, Available_Actions
+
+
 __version__ = 'Git'
 __license__ = 'GPLv2'
+
+
+subdata = OrderedDict()
+for cmd in Available_Actions:
+subdata[cmd] = Action_Map[cmd]['desc']
+
+Gkeys_Map = {
+'options': ['help', 'config', 'debug'],
+'desc': 'OpenPGP/GPG key generator tool',
+'long_desc': '''Gentoo Keys (gkeys) is a Python based project that aims to 
manage
+the GPG keys used for validation on users and Gentoo's infrastracutre servers.
+Gkeys-gen is a tool for generating OpnPGP/GPG keys according to a selected 
spec.''',
+'sub-cmds': subdata,
+'authors': ['Brian Dolbec dol...@gentoo.org', 'Pavlos Ratis 
daster...@gentoo.org'],
+}

diff --git a/gkeys-gen/setup.py b/gkeys-gen/setup.py
index 063bff1..fc93bf0 100755
--- a/gkeys-gen/setup.py
+++ b/gkeys-gen/setup.py
@@ -1,11 +1,26 @@
 #!/usr/bin/env python
 
+
+import collections
 import os
 import sys
 
-from distutils.core import setup
+from distutils.core import setup, Command
+from distutils.command.build import build
+
 from gkeygen import __version__, __license__
 
+from gkeygen import Gkeys_Map
+from gkeygen.actions import Action_Map, Available_Actions
+
+try:
+from py2man import manpages
+except ImportError:
+print('creating py2man symlink')
+os.symlink('../py2man', 'py2man')
+from py2man import manpages
+
+
 # this affects the names of all the directories we do stuff with
 sys.path.insert(0, './')
 
@@ -18,10 +33,61 @@ except ImportError:
 EPREFIX=''
 
 
+class x_build(build):
+ Build command with extra build_man call. 
+
+def run(self):
+build.run(self)
+self.run_command('build_man')
+
+
+class build_man(Command):
+ Perform substitutions in manpages. 
+
+user_options = [
+]
+
+def initialize_options(self):
+self.build_base = None
+
+def finalize_options(self):
+self.set_undefined_options('build',
+('build_base', 'build_base'))
+
+def run(self):
+# create the main page
+basepath = os.path.dirname(__file__)
+docpath = os.path.join(basepath, 'doc')
+templatepath = os.path.dirname(manpages.__file__)
+man = manpages.ManPage('gkey-gen', __version__, None,
+docpath, Gkeys_Map['authors'])
+man.read_template(templatepath, 'command.template')
+man.make_prog(Gkeys_Map)
+man.read_template(templatepath, 'sub-command.template')
+man.make_subpages(Action_Map, Available_Actions)
+
+
+def get_manpages():
+linguas = os.environ.get('LINGUAS')
+if linguas is not None:
+linguas = linguas.split()
+
+for dirpath, dirnames, filenames in os.walk('doc'):
+groups = collections.defaultdict(list)
+for f in filenames:
+fn, suffix = f.rsplit('.', 1)
+groups[suffix].append(os.path.join(dirpath, f))
+
+topdir = dirpath[len('doc/'):]
+if not topdir or linguas is None or topdir in linguas:
+for g, mans in groups.items():
+yield [os.path.join('$mandir', topdir, 'man%s' % g), mans]
+
+
 setup(
-name='gkeygen',
+name='gkeys-gen',
 version=__version__,
-description=Gentoo gpg key management key generator,
+description=OpenPGP/GPG key generator,
 author='',
 author_email='',
 maintainer='Gentoo-Keys Team',
@@ -30,12 +96,16 @@ setup(
 download_url='',
 packages=['gkeygen'],
 scripts=['bin/gkey-gen'],
-data_files=(
+data_files=list(get_manpages()) + [
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys-gen.conf']),
-),
+],
 license=__license__,
 long_description=open('README.md').read(),
 keywords='gpg',
+cmdclass = {
+'build': x_build,
+'build_man': build_man,
+},
 classifiers=[
 'Development Status :: 3 - Alpha',
 'Intended Audience :: Developers, Users',

diff --git a/gkeys/setup.py b/gkeys/setup.py
index 23af045..d6b38af 100755
--- a/gkeys/setup.py
+++ b/gkeys/setup.py
@@ -1,11 +1,26 @@
 

[gentoo-commits] proj/gentoo-keys:master commit in: py2man/

2015-01-06 Thread Brian Dolbec
commit: 513395f66ae7bfb83736f6166b919f6713e4b5f6
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 18:22:41 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 18:22:41 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=513395f6

py2man/*.template: Fix missed 's' in %(actions)s

---
 py2man/command.template | 2 +-
 py2man/sub-command.template | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/py2man/command.template b/py2man/command.template
index cd69ff2..975a4bf 100644
--- a/py2man/command.template
+++ b/py2man/command.template
@@ -25,7 +25,7 @@ Please assign bug to gk...@gentoo.org email alias.
 Gentoo Keys project is under GPL-2 License.
 
 .SH AUTHORS
-%(authors)
+%(authors)s
 
 .SH SEE ALSO
 .BR gkeys.conf (1),

diff --git a/py2man/sub-command.template b/py2man/sub-command.template
index 0a6c1a8..20010cb 100644
--- a/py2man/sub-command.template
+++ b/py2man/sub-command.template
@@ -27,7 +27,7 @@ Please assign bug to gk...@gentoo.org email alias.
 Gentoo Keys project is under GPL-2 License.
 
 .SH AUTHORS
-%(authors)
+%(authors)s
 
 .SH SEE ALSO
 .BR gkeys (1),



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/gkeygen/

2015-01-06 Thread Brian Dolbec
commit: 038dee3c65047d6b076379612db9e7540aba92c9
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 21:15:02 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:19:40 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=038dee3c

gkeygen/actions.py: Add list-specs action, example

---
 gkeys-gen/gkeygen/actions.py | 25 ++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/gkeys-gen/gkeygen/actions.py b/gkeys-gen/gkeygen/actions.py
index e118289..740d954 100644
--- a/gkeys-gen/gkeygen/actions.py
+++ b/gkeys-gen/gkeygen/actions.py
@@ -30,17 +30,28 @@ from gkeys.fileops import ensure_dirs
 
 
 Action_Map = OrderedDict({
-'gen-key':  {
+'gen-key': {
 'func': 'genkey',
 'options': ['spec', 'dest'],
 'desc': '''Generate a gpg key using a spec file''',
 'long_desc': '''Generate a gpg key using a spec file''',
 'example': '',
 },
+'list-specs': {
+'func': 'list_specs',
+'options': [],
+'desc': '''List spec file definitions (spec names) found in the 
config''',
+'long_desc': '''List spec file definitions (spec names) found in the 
config.
+The default-spec setting when the pkg was installed is set to 
glep-63-recommended.''',
+'example': '''$ gkey-gen list-specs
+
+ Gkey task results:
+Specs defined: glep-63,  default-spec,  glep-63-recommended
+''',
+},
 })
 
-Available_Actions = list(Action_Map)
-
+Available_Actions = ['gen-key', 'list-specs']
 
 LARRY = 
 
@@ -149,3 +160,11 @@ class Actions(object):
 key_properties = urlopen(url).read()
 return _unicode(key_properties.decode('utf-8')).format(name, email)
 
+
+def list_specs(self, args):
+'''List seed file definitions found in the config'''
+specs = list(self.config.get_key('spec'))
+return (True, {Specs defined: %s\n
+% (,  .join(specs)): True})
+
+



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys-gen/, gkeys/

2015-01-06 Thread Brian Dolbec
commit: 3dfb104e8c4c2e7785727fb0c3f78a4f8a224c56
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 21:44:34 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 21:44:34 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=3dfb104e

gkeys, gkeys-gen: Fix man page installation

---
 gkeys-gen/setup.py | 22 +++---
 gkeys/setup.py | 22 +++---
 2 files changed, 6 insertions(+), 38 deletions(-)

diff --git a/gkeys-gen/setup.py b/gkeys-gen/setup.py
index fc93bf0..15c3434 100755
--- a/gkeys-gen/setup.py
+++ b/gkeys-gen/setup.py
@@ -1,12 +1,12 @@
 #!/usr/bin/env python
 
 
-import collections
 import os
 import sys
 
 from distutils.core import setup, Command
 from distutils.command.build import build
+from glob import glob
 
 from gkeygen import __version__, __license__
 
@@ -67,23 +67,6 @@ class build_man(Command):
 man.make_subpages(Action_Map, Available_Actions)
 
 
-def get_manpages():
-linguas = os.environ.get('LINGUAS')
-if linguas is not None:
-linguas = linguas.split()
-
-for dirpath, dirnames, filenames in os.walk('doc'):
-groups = collections.defaultdict(list)
-for f in filenames:
-fn, suffix = f.rsplit('.', 1)
-groups[suffix].append(os.path.join(dirpath, f))
-
-topdir = dirpath[len('doc/'):]
-if not topdir or linguas is None or topdir in linguas:
-for g, mans in groups.items():
-yield [os.path.join('$mandir', topdir, 'man%s' % g), mans]
-
-
 setup(
 name='gkeys-gen',
 version=__version__,
@@ -96,8 +79,9 @@ setup(
 download_url='',
 packages=['gkeygen'],
 scripts=['bin/gkey-gen'],
-data_files=list(get_manpages()) + [
+data_files=[
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys-gen.conf']),
+(os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), 
glob('doc/*')),
 ],
 license=__license__,
 long_description=open('README.md').read(),

diff --git a/gkeys/setup.py b/gkeys/setup.py
index d6b38af..fdb8e18 100755
--- a/gkeys/setup.py
+++ b/gkeys/setup.py
@@ -1,12 +1,12 @@
 #!/usr/bin/env python
 
 
-import collections
 import os
 import sys
 
 from distutils.core import setup, Command
 from distutils.command.build import build
+from glob import glob
 
 from gkeys import __version__, __license__
 
@@ -67,23 +67,6 @@ class build_man(Command):
 man.make_subpages(Action_Map, Available_Actions)
 
 
-def get_manpages():
-linguas = os.environ.get('LINGUAS')
-if linguas is not None:
-linguas = linguas.split()
-
-for dirpath, dirnames, filenames in os.walk('doc'):
-groups = collections.defaultdict(list)
-for f in filenames:
-fn, suffix = f.rsplit('.', 1)
-groups[suffix].append(os.path.join(dirpath, f))
-
-topdir = dirpath[len('doc/'):]
-if not topdir or linguas is None or topdir in linguas:
-for g, mans in groups.items():
-yield [os.path.join('$mandir', topdir, 'man%s' % g), mans]
-
-
 setup(
 name='gkeys',
 version=__version__,
@@ -96,9 +79,10 @@ setup(
 download_url='',
 packages=['gkeys'],
 scripts=['bin/gkeys'],
-data_files=list(get_manpages()) + [
+data_files=[
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys.conf']),
 (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/gkeys/'), 
['etc/gkeys.conf.sample']),
+(os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), 
glob('doc/*')),
 ],
 license=__license__,
 long_description=open('README.md').read(),



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/, gkeys-gen/, py2man/

2015-01-06 Thread Brian Dolbec
commit: 4c44549c625c6503b07eff3398e566252f551e47
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Tue Jan  6 22:13:45 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Tue Jan  6 22:35:46 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=4c44549c

gkeys/setup.py py2man import fix

The ebuild install was failing to find options.py. adding back an absolute 
import worked.

---
 gkeys-gen/setup.py | 7 +--
 gkeys/setup.py | 7 +--
 py2man/manpages.py | 2 +-
 3 files changed, 3 insertions(+), 13 deletions(-)

diff --git a/gkeys-gen/setup.py b/gkeys-gen/setup.py
index 15c3434..1512219 100755
--- a/gkeys-gen/setup.py
+++ b/gkeys-gen/setup.py
@@ -13,12 +13,7 @@ from gkeygen import __version__, __license__
 from gkeygen import Gkeys_Map
 from gkeygen.actions import Action_Map, Available_Actions
 
-try:
-from py2man import manpages
-except ImportError:
-print('creating py2man symlink')
-os.symlink('../py2man', 'py2man')
-from py2man import manpages
+from py2man import manpages
 
 
 # this affects the names of all the directories we do stuff with

diff --git a/gkeys/setup.py b/gkeys/setup.py
index fdb8e18..5a20738 100755
--- a/gkeys/setup.py
+++ b/gkeys/setup.py
@@ -13,12 +13,7 @@ from gkeys import __version__, __license__
 from gkeys import Gkeys_Map
 from gkeys.action_map import Action_Map, Available_Actions
 
-try:
-from py2man import manpages
-except ImportError:
-print('creating py2man symlink')
-os.symlink('../py2man', 'py2man')
-from py2man import manpages
+from py2man import manpages
 
 
 # this affects the names of all the directories we do stuff with

diff --git a/py2man/manpages.py b/py2man/manpages.py
index 8b87afa..9e75d2e 100644
--- a/py2man/manpages.py
+++ b/py2man/manpages.py
@@ -6,7 +6,7 @@ import codecs
 import os
 from datetime import datetime
 
-from options import LONG_OPTS, SHORT_OPTS
+from py2man.options import LONG_OPTS, SHORT_OPTS
 
 
 ActionStr = '.BR gkeys-%s (1),'



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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 01:53:00

  Modified: ChangeLog
  Added:reverend-0.4-r1.ebuild
  Removed:  reverend-0.4.ebuild
  Log:
  revbump; conversion - distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.3  dev-python/reverend/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/reverend/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   30 Nov 2009 02:22:26 -  1.2
+++ ChangeLog   7 Jan 2015 01:53:00 -   1.3
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/reverend
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/reverend/ChangeLog,v 1.2 
2009/11/30 02:22:26 arfrever Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/reverend/ChangeLog,v 1.3 
2015/01/07 01:53:00 idella4 Exp $
+
+*reverend-0.4-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney idel...@gentoo.org +reverend-0.4-r1.ebuild,
+  -reverend-0.4.ebuild:
+  revbump; conversion - distutils-r1, rm old
 
 *reverend-0.4 (30 Nov 2009)
 
@@ -13,4 +19,3 @@
   28 Nov 2008; Jesus Rivero neurog...@gentoo.org
   +files/reverend-0.3-email.patch, +metadata.xml, +reverend-0.3.ebuild:
   Initial commit. Thanks to David Guerizec for ebuild
-



1.1  dev-python/reverend/reverend-0.4-r1.ebuild

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

Index: reverend-0.4-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/reverend/reverend-0.4-r1.ebuild,v 
1.1 2015/01/07 01:53:00 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 pypy pypy3 )

inherit distutils-r1

MY_PN=Reverend
MY_P=${MY_PN}-${PV}

DESCRIPTION=Reverend - Simple Bayesian classifier
HOMEPAGE=http://divmod.org/trac/wiki/DivmodReverend 
http://pypi.python.org/pypi/Reverend;
SRC_URI=mirror://sourceforge/reverend/${MY_P}.tar.gz 
mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=examples

DEPEND=
RDEPEND=

S=${WORKDIR}/${MY_P}

python_install_all() {
use examples  local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in app-admin/rex: rex-0.56.1.ebuild ChangeLog rex-0.46.ebuild rex-0.53.1.ebuild rex-0.52.1.ebuild rex-0.52.0.ebuild rex-0.51.2.ebuild

2015-01-06 Thread Patrick Lauer (patrick)
patrick 15/01/07 03:28:03

  Modified: ChangeLog
  Added:rex-0.56.1.ebuild
  Removed:  rex-0.46.ebuild rex-0.53.1.ebuild rex-0.52.1.ebuild
rex-0.52.0.ebuild rex-0.51.2.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.27 app-admin/rex/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/rex/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   30 Dec 2014 04:00:09 -  1.26
+++ ChangeLog   7 Jan 2015 03:28:03 -   1.27
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/rex
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/rex/ChangeLog,v 1.26 2014/12/30 
04:00:09 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/rex/ChangeLog,v 1.27 2015/01/07 
03:28:03 patrick Exp $
+
+*rex-0.56.1 (07 Jan 2015)
+
+  07 Jan 2015; Patrick Lauer patr...@gentoo.org +rex-0.56.1.ebuild,
+  -rex-0.46.ebuild, -rex-0.51.2.ebuild, -rex-0.52.0.ebuild, -rex-0.52.1.ebuild,
+  -rex-0.53.1.ebuild:
+  Bump
 
 *rex-0.56.0 (30 Dec 2014)
 



1.1  app-admin/rex/rex-0.56.1.ebuild

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

Index: rex-0.56.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/rex/rex-0.56.1.ebuild,v 1.1 
2015/01/07 03:28:03 patrick Exp $

EAPI=5

MODULE_AUTHOR=JFRIED
MODULE_VERSION=0.53.1
MODULE_A=Rex-${PV}.tar.gz

inherit perl-module

DESCRIPTION=(R)?ex is a small script to ease the execution of remote commands

SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND=dev-perl/Net-SSH2
DEPEND=${RDEPEND}
dev-perl/JSON-XS
dev-perl/XML-Simple
dev-perl/Digest-SHA1
dev-perl/Digest-HMAC
dev-perl/Expect
dev-perl/DBI
dev-perl/yaml
dev-perl/libwww-perl
dev-perl/String-Escape
dev-perl/List-MoreUtils
dev-perl/Parallel-ForkManager

SRC_TEST=do

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






[gentoo-commits] gentoo-x86 commit in dev-python/pyxdg: ChangeLog pyxdg-0.25.ebuild

2015-01-06 Thread Mike Gilbert (floppym)
floppym 15/01/07 02:41:18

  Modified: ChangeLog
  Removed:  pyxdg-0.25.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.131dev-python/pyxdg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog   21 Oct 2014 18:18:53 -  1.130
+++ ChangeLog   7 Jan 2015 02:41:18 -   1.131
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyxdg
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.130 
2014/10/21 18:18:53 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.131 
2015/01/07 02:41:18 floppym Exp $
+
+  07 Jan 2015; Mike Gilbert flop...@gentoo.org -pyxdg-0.25.ebuild:
+  Remove old.
 
   21 Oct 2014; Markus Meier mae...@gentoo.org pyxdg-0.25-r1.ebuild:
   arm stable, bug #498934






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 02:59:28

  Modified: ChangeLog
  Added:ropeide-1.5.1-r2.ebuild
  Removed:  ropeide-1.5.1-r1.ebuild
  Log:
  revbump; conversion - distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.6  dev-python/ropeide/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ropeide/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   22 Feb 2012 05:45:24 -  1.5
+++ ChangeLog   7 Jan 2015 02:59:28 -   1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/ropeide
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ChangeLog,v 1.5 
2012/02/22 05:45:24 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ChangeLog,v 1.6 
2015/01/07 02:59:28 idella4 Exp $
+
+*ropeide-1.5.1-r2 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney idel...@gentoo.org +ropeide-1.5.1-r2.ebuild,
+  -ropeide-1.5.1-r1.ebuild:
+  revbump; conversion - distutils-r1, rm old
 
   22 Feb 2012; Patrick Lauer patr...@gentoo.org ropeide-1.5.1-r1.ebuild:
   Restricting pypy and jython
@@ -24,4 +30,3 @@
   +ropeide-1.5.1.ebuild:
   Initial commit. Bug #202700. Thanks Matsui Tetsushi ved03...@nifty.ne.jp
   for the ebuild.
-



1.1  dev-python/ropeide/ropeide-1.5.1-r2.ebuild

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

Index: ropeide-1.5.1-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ropeide-1.5.1-r2.ebuild,v 
1.1 2015/01/07 02:59:28 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1
PYTHON_REQ_USE=tk

DESCRIPTION=Python refactoring IDE
HOMEPAGE=http://rope.sourceforge.net/ropeide.html 
http://pypi.python.org/pypi/ropeide;
SRC_URI=mirror://sourceforge/rope/${P}.tar.gz

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

DEPEND==dev-python/rope-0.8.4[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}

python_install_all() {
if use doc; then
dodoc docs/*.txt || die dodoc failed
fi
distutils-r1_python_install_all
}






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 04:18:09

  Modified: ChangeLog
  Added:rtf2xml-1.33-r1.ebuild
  Removed:  rtf2xml-1.33.ebuild
  Log:
  revbump; conversion - distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.8  dev-python/rtf2xml/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   10 May 2012 16:01:35 -  1.7
+++ ChangeLog   7 Jan 2015 04:18:09 -   1.8
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/rtf2xml
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/ChangeLog,v 1.7 
2012/05/10 16:01:35 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/ChangeLog,v 1.8 
2015/01/07 04:18:09 idella4 Exp $
+
+*rtf2xml-1.33-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney idel...@gentoo.org +rtf2xml-1.33-r1.ebuild,
+  -rtf2xml-1.33.ebuild:
+  revbump; conversion - distutils-r1, rm old
 
   10 May 2012; Agostino Sarubbo a...@gentoo.org -rtf2xml-1.32.ebuild:
   Remove old
@@ -25,4 +31,3 @@
   28 May 2006; Radoslaw Stachowiak ra...@gentoo.org +metadata.xml,
   +rtf2xml-1.32.ebuild:
   initial release, thanks to Andrew Ross work, #112960
-



1.1  dev-python/rtf2xml/rtf2xml-1.33-r1.ebuild

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

Index: rtf2xml-1.33-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/rtf2xml/rtf2xml-1.33-r1.ebuild,v 
1.1 2015/01/07 04:18:09 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Converts a Microsoft RTF file to structured XML
HOMEPAGE=http://rtf2xml.sourceforge.net/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.gz

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

DEPEND=
RDEPEND=

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






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 02:48:51

  Modified: ChangeLog
  Added:rlcompleter2-0.98-r1.ebuild
  Log:
  revbump; conversion - distutils-r1
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.14 dev-python/rlcompleter2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rlcompleter2/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   22 Feb 2012 07:30:21 -  1.13
+++ ChangeLog   7 Jan 2015 02:48:51 -   1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/rlcompleter2
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rlcompleter2/ChangeLog,v 1.13 
2012/02/22 07:30:21 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rlcompleter2/ChangeLog,v 1.14 
2015/01/07 02:48:51 idella4 Exp $
+
+*rlcompleter2-0.98-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney idel...@gentoo.org +rlcompleter2-0.98-r1.ebuild:
+  revbump; conversion - distutils-r1
 
   22 Feb 2012; Patrick Lauer patr...@gentoo.org rlcompleter2-0.98.ebuild:
   Restricting jython properly
@@ -48,4 +53,3 @@
 
   29 Mar 2003; Jason Shoemaker kuts...@gentoo.org rlcompleter2-0.95.ebuild:
   Initial import. #17595
-



1.1  dev-python/rlcompleter2/rlcompleter2-0.98-r1.ebuild

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

Index: rlcompleter2-0.98-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/rlcompleter2/rlcompleter2-0.98-r1.ebuild,v 
1.1 2015/01/07 02:48:51 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Python command line completion
HOMEPAGE=http://codespeak.net/rlcompleter2/ 
http://pypi.python.org/pypi/rlcompleter2;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~ia64 ~ppc ~x86
IUSE=

DEPEND=
RDEPEND=

pkg_postinst() {
ewarn Please read the README, and follow instructions in order to
ewarn execute and configure rlcompleter2.
}






[gentoo-commits] gentoo-x86 commit in dev-lang/opendylan-bin: opendylan-bin-2014.1.ebuild ChangeLog

2015-01-06 Thread Patrick Lauer (patrick)
patrick 15/01/07 04:14:47

  Modified: ChangeLog
  Added:opendylan-bin-2014.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.8  dev-lang/opendylan-bin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan-bin/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan-bin/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan-bin/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   7 Jan 2014 05:28:34 -   1.7
+++ ChangeLog   7 Jan 2015 04:14:47 -   1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/opendylan-bin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/ChangeLog,v 1.7 
2014/01/07 05:28:34 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/ChangeLog,v 1.8 
2015/01/07 04:14:47 patrick Exp $
+
+*opendylan-bin-2014.1 (07 Jan 2015)
+
+  07 Jan 2015; Patrick Lauer patr...@gentoo.org +opendylan-bin-2014.1.ebuild:
+  Bump
 
 *opendylan-bin-2013.2 (07 Jan 2014)
 



1.1  dev-lang/opendylan-bin/opendylan-bin-2014.1.ebuild

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

Index: opendylan-bin-2014.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/opendylan-bin/opendylan-bin-2014.1.ebuild,v 
1.1 2015/01/07 04:14:47 patrick Exp $
EAPI=5

DESCRIPTION=OpenDylan language runtime environment (prebuilt)

MY_PN=opendylan
MY_P=${MY_PN}-${PV}
HOMEPAGE=http://opendylan.org;
SRC_URI=amd64? ( 
http://opendylan.org/downloads/${MY_PN}/${PV}/${MY_P}-x86_64-linux.tar.bz2 )
x86? ( 
http://opendylan.org/downloads/${MY_PN}/${PV}/${MY_P}-x86-linux.tar.bz2 )
LICENSE=Opendylan
SLOT=0
KEYWORDS=~x86 ~amd64

IUSE=

DEPEND=dev-libs/boehm-gc
RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}

src_configure() { :; }
src_compile() { :; }

src_install() {
# this is a precompiled tarball
mkdir -p ${D}/opt/${MY_P}
cp -ar ${S}/* ${D}/opt/${MY_P} || die Failed to copy stuff
mkdir -p ${D}/etc/env.d/opendylan
echo export PATH=/opt/opendylan-${PV}/bin:\$PATH  
${D}/etc/env.d/opendylan/99-opendylan-bin || die Failed to add env settings
}






[gentoo-commits] gentoo-x86 commit in app-misc/reptyr: ChangeLog reptyr-0.6.ebuild

2015-01-06 Thread Tim Harder (radhermit)
radhermit15/01/06 15:57:59

  Modified: ChangeLog
  Added:reptyr-0.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.14 app-misc/reptyr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/ChangeLog?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/ChangeLog?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/reptyr/ChangeLog?r1=1.13r2=1.14

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/reptyr/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   28 Jul 2013 10:53:25 -  1.13
+++ ChangeLog   6 Jan 2015 15:57:59 -   1.14
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/reptyr
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/ChangeLog,v 1.13 2013/07/28 
10:53:25 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/ChangeLog,v 1.14 2015/01/06 
15:57:59 radhermit Exp $
+
+*reptyr-0.6 (06 Jan 2015)
+
+  06 Jan 2015; Tim Harder radher...@gentoo.org +reptyr-0.6.ebuild:
+  Version bump.
 
   28 Jul 2013; Justin Lecher j...@gentoo.org -reptyr-0.4.ebuild,
   metadata.xml:



1.1  app-misc/reptyr/reptyr-0.6.ebuild

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

Index: reptyr-0.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/reptyr-0.6.ebuild,v 1.1 
2015/01/06 15:57:59 radhermit Exp $

EAPI=5

inherit toolchain-funcs flag-o-matic vcs-snapshot

DESCRIPTION=A utility to attach a running program to a new terminal
HOMEPAGE=https://github.com/nelhage/reptyr;
SRC_URI=https://github.com/nelhage/${PN}/archive/${P}.tar.gz;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux

RESTRICT=test

src_prepare() {
# respect CFLAGS
sed -i '/^override/d' Makefile || die
}

src_compile() {
append-cppflags -D_GNU_SOURCE
emake CC=$(tc-getCC) CFLAGS=${CFLAGS}
}

src_install() {
emake DESTDIR=${D} PREFIX=${EPREFIX}/usr install
dodoc ChangeLog NOTES README.md
}






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

2015-01-06 Thread Ian Delaney (idella4)
idella4 15/01/07 04:41:34

  Modified: ChangeLog
  Added:rtgraph-0.70-r1.ebuild
  Removed:  rtgraph-0.70.ebuild
  Log:
  revbump; conversion - distutils-r1, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.12 dev-python/rtgraph/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   10 Aug 2014 21:21:24 -  1.11
+++ ChangeLog   7 Jan 2015 04:41:34 -   1.12
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/rtgraph
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v 1.11 
2014/08/10 21:21:24 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v 1.12 
2015/01/07 04:41:34 idella4 Exp $
+
+*rtgraph-0.70-r1 (07 Jan 2015)
+
+  07 Jan 2015; Ian Delaney idel...@gentoo.org +rtgraph-0.70-r1.ebuild,
+  -rtgraph-0.70.ebuild:
+  revbump; conversion - distutils-r1, rm old
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org rtgraph-0.70.ebuild:
   QA: drop trailing '.' from DESCRIPTION



1.1  dev-python/rtgraph/rtgraph-0.70-r1.ebuild

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

Index: rtgraph-0.70-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/rtgraph-0.70-r1.ebuild,v 
1.1 2015/01/07 04:41:34 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION=Widgets for graphing data in real-time using PyGTK, and UI 
components for controlling the graphs
HOMEPAGE=http://navi.cx/svn/misc/trunk/rtgraph/web/index.html;
SRC_URI=http://navi.picogui.org/releases/${P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~ia64 ~ppc ~x86
IUSE=examples

DEPEND=dev-python/pygtk:2[${PYTHON_USEDEP}]
RDEPEND=${DEPEND}

python_prepare_all() {
if use examples; then
mkdir examples || die
mv 
./{cpu_meter.py,graph_ui.py,isometric_graph.py,line_graph.py,polar_graph.py,tweak_graph.py}
 examples || die
fi
distutils-r1_python_prepare_all
}

python_install_all() {
use examples  local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}






  1   2   >