[gentoo-commits] gentoo-x86 commit in media-video/vdr/files: vdr-2.0.6_systemd_argsdir_vanilla.patch vdr-2.0.6-r2_gentoo.patch vdr-2.0.6_systemd_argsdir.patch

2015-01-19 Thread Joerg Bornkessel (hd_brummy)
hd_brummy15/01/20 03:19:46

  Added:vdr-2.0.6_systemd_argsdir_vanilla.patch
vdr-2.0.6-r2_gentoo.patch
vdr-2.0.6_systemd_argsdir.patch
  Log:
  added better systemd support, backported from vdr-2.1.7, based on patch by 
Lucian Muresan
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
34C2808A)

Revision  ChangesPath
1.1  
media-video/vdr/files/vdr-2.0.6_systemd_argsdir_vanilla.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/files/vdr-2.0.6_systemd_argsdir_vanilla.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/files/vdr-2.0.6_systemd_argsdir_vanilla.patch?rev=1.1content-type=text/plain

Index: vdr-2.0.6_systemd_argsdir_vanilla.patch
===
backported from vdr-2.1.7
systemd support
argsdir support
diff -Naur vdr-2.0.6.orig/HISTORY vdr-2.0.6/HISTORY
--- vdr-2.0.6.orig/HISTORY  2014-10-01 16:30:32.0 +0200
+++ vdr-2.0.6/HISTORY   2015-01-20 03:06:42.0 +0100
@@ -7915,3 +7915,13 @@
   on a system with a large number of recordings.
 - The APIVERSION has been increased to 2.0.6 due to the changes to pat.h, 
sdt.h and
   the functional modification to cFont::CreateFont().
+
+2015-01-18: Version 2.0.6 + backport of systemd support from versions 2.1.6 
and 2.1.7
+
+- Added support for systemd (thanks to Christopher Reimer). To activate this 
you
+  need to add SDNOTIFY=1 to the 'make' call.
+
+2015-01-18: Version 2.0.6 + backport of reading command line arguments from 
files, from version 2.1.7
+
+- VDR now reads command line options from *.conf files in /etc/vdr/conf.d 
(thanks
+  to Lars Hanisch). See vdr.1 and vdr.5 for details.
diff -Naur vdr-2.0.6.orig/Make.config.template vdr-2.0.6/Make.config.template
--- vdr-2.0.6.orig/Make.config.template 2014-10-01 16:30:32.0 +0200
+++ vdr-2.0.6/Make.config.template  2015-01-20 03:06:42.0 +0100
@@ -38,6 +38,7 @@
 
 #VIDEODIR  = /srv/vdr/video
 #CONFDIR   = /var/lib/vdr
+#ARGSDIR   = /etc/vdr/conf.d
 #CACHEDIR  = /var/cache/vdr
 
 # Overrides for preset/legacy configurations:
diff -Naur vdr-2.0.6.orig/Makefile vdr-2.0.6/Makefile
--- vdr-2.0.6.orig/Makefile 2015-01-20 02:55:00.0 +0100
+++ vdr-2.0.6/Makefile  2015-01-20 03:12:57.0 +0100
@@ -31,6 +31,7 @@
 DESTDIR   ?=
 VIDEODIR  ?= /srv/vdr/video
 CONFDIR   ?= /var/lib/vdr
+ARGSDIR   ?= /etc/vdr/conf.d
 CACHEDIR  ?= /var/cache/vdr
 
 PREFIX?= /usr/local
@@ -66,7 +67,7 @@
 
 SILIB= $(LSIDIR)/libsi.a
 
-OBJS = audio.o channels.o ci.o config.o cutter.o device.o diseqc.o dvbdevice.o 
dvbci.o\
+OBJS = args.o audio.o channels.o ci.o config.o cutter.o device.o diseqc.o 
dvbdevice.o dvbci.o\
dvbplayer.o dvbspu.o dvbsubtitle.o eit.o eitscan.o epg.o filter.o 
font.o i18n.o interface.o keys.o\
lirc.o menu.o menuitems.o nit.o osdbase.o osd.o pat.o player.o plugin.o\
receiver.o recorder.o recording.o remote.o remux.o ringbuffer.o sdt.o 
sections.o shutdown.o\
@@ -93,12 +94,18 @@
 DEFINES += -DBIDI
 LIBS += $(shell pkg-config --libs fribidi)
 endif
+ifdef SDNOTIFY
+INCLUDES += $(shell pkg-config --cflags libsystemd-daemon)
+DEFINES += -DSDNOTIFY
+LIBS += $(shell pkg-config --libs libsystemd-daemon)
+endif
 
 LIRC_DEVICE ?= /var/run/lirc/lircd
 
 DEFINES += -DLIRC_DEVICE=\$(LIRC_DEVICE)\
 DEFINES += -DVIDEODIR=\$(VIDEODIR)\
 DEFINES += -DCONFDIR=\$(CONFDIR)\
+DEFINES += -DARGSDIR=\$(ARGSDIR)\
 DEFINES += -DCACHEDIR=\$(CACHEDIR)\
 DEFINES += -DRESDIR=\$(RESDIR)\
 DEFINES += -DPLUGINDIR=\$(LIBDIR)\
@@ -143,6 +150,8 @@
@echo mandir=$(MANDIR)  $@
@echo configdir=$(CONFDIR)  $@
@echo videodir=$(VIDEODIR)  $@
+#  @echo configdir=$(CONFDIR)  $@
+   @echo argsdir=$(ARGSDIR)  $@
@echo cachedir=$(CACHEDIR)  $@
@echo resdir=$(RESDIR)  $@
@echo libdir=$(LIBDIR)  $@
@@ -260,6 +269,7 @@
 install-dirs:
@mkdir -p $(DESTDIR)$(VIDEODIR)
 #  @mkdir -p $(DESTDIR)$(CONFDIR)
+   @mkdir -p $(DESTDIR)$(ARGSDIR)
 #  @mkdir -p $(DESTDIR)$(CACHEDIR)
@mkdir -p $(DESTDIR)$(RESDIR)
 
diff -Naur vdr-2.0.6.orig/args.c vdr-2.0.6/args.c
--- vdr-2.0.6.orig/args.c   1970-01-01 01:00:00.0 +0100
+++ vdr-2.0.6/args.c2015-01-20 03:06:42.0 +0100
@@ -0,0 +1,129 @@
+/*
+ * args.c: Read arguments from files
+ *
+ * See the main source file 'vdr.c' for copyright information and
+ * how to reach the author.
+ *
+ * Original version written by Lars Hanisch d...@flensrocker.de.
+ *
+ * $Id: vdr-2.0.6_systemd_argsdir_vanilla.patch,v 1.1 2015/01/20 03:19:46 
hd_brummy Exp $
+ */
+
+#include args.h
+#include unistd.h
+
+cArgs::cArgs(const char *Argv0)
+{
+  argv0 = Argv0;
+  argc = 0;
+  argv = NULL;
+}
+
+cArgs::~cArgs(void)
+{
+  if (argv != NULL)
+ delete [] argv;
+}
+
+bool cArgs::AddArg(const char *s)
+{
+  if (inVdrSection)
+ 

[gentoo-commits] gentoo-x86 commit in app-office/ledger: metadata.xml ChangeLog

2015-01-19 Thread Jan Matejka (yac)
yac 15/01/19 22:51:20

  Modified: metadata.xml ChangeLog
  Log:
  Taking ledger as a maintainer
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F97A36A1)

Revision  ChangesPath
1.8  app-office/ledger/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-office/ledger/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml19 Jan 2015 22:20:32 -  1.7
+++ metadata.xml19 Jan 2015 22:51:20 -  1.8
@@ -2,6 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
 maintainer
-   emailmaintainer-nee...@gentoo.org/email
+   emaily...@gentoo.org/email
 /maintainer
 /pkgmetadata



1.35 app-office/ledger/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/ledger/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   19 Jan 2015 22:20:32 -  1.34
+++ ChangeLog   19 Jan 2015 22:51:20 -  1.35
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/ledger
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ChangeLog,v 1.34 
2015/01/19 22:20:32 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ChangeLog,v 1.35 
2015/01/19 22:51:20 yac Exp $
+
+  19 Jan 2015; Jan Matejka y...@gentoo.org metadata.xml:
+  Taking ledger as a maintainer
 
   19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
   Drop myself from metadata.






[gentoo-commits] gentoo-x86 commit in www-client/opera-developer: opera-developer-28.0.1747.0.ebuild ChangeLog opera-developer-28.0.1738.0-r1.ebuild

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/20 00:12:39

  Modified: ChangeLog
  Added:opera-developer-28.0.1747.0.ebuild
  Removed:  opera-developer-28.0.1738.0-r1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.28 www-client/opera-developer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera-developer/ChangeLog?rev=1.28view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera-developer/ChangeLog?rev=1.28content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera-developer/ChangeLog?r1=1.27r2=1.28

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/opera-developer/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   16 Jan 2015 15:44:03 -  1.27
+++ ChangeLog   20 Jan 2015 00:12:39 -  1.28
@@ -1,6 +1,12 @@
 # ChangeLog for www-client/opera-developer
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/opera-developer/ChangeLog,v 1.27 
2015/01/16 15:44:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/opera-developer/ChangeLog,v 1.28 
2015/01/20 00:12:39 jer Exp $
+
+*opera-developer-28.0.1747.0 (20 Jan 2015)
+
+  20 Jan 2015; Jeroen Roovers j...@gentoo.org
+  -opera-developer-28.0.1738.0-r1.ebuild, +opera-developer-28.0.1747.0.ebuild:
+  Version bump.
 
 *opera-developer-28.0.1745.0 (16 Jan 2015)
 



1.1  
www-client/opera-developer/opera-developer-28.0.1747.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera-developer/opera-developer-28.0.1747.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/opera-developer/opera-developer-28.0.1747.0.ebuild?rev=1.1content-type=text/plain

Index: opera-developer-28.0.1747.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/opera-developer/opera-developer-28.0.1747.0.ebuild,v
 1.1 2015/01/20 00:12:39 jer Exp $

EAPI=5
CHROMIUM_LANGS=
af az be bg bn ca cs da de el en_GB en_US es_419 es fil fi fr_CA fr fy 
gd
hi hr hu id it ja kk ko lt lv me mk ms nb nl nn pa pl pt_BR pt_PT ro ru 
sk
sr sv sw ta te th tr uk uz vi zh_CN zh_TW zu

inherit chromium multilib unpacker

DESCRIPTION=A fast and secure web browser
HOMEPAGE=http://www.opera.com/;
LICENSE=OPERA-2014
SLOT=0
SRC_URI_BASE=http://get.geo.opera.com/pub/;
SRC_URI=
amd64? ( ${SRC_URI_BASE}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb )

KEYWORDS=~amd64

RDEPEND=
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
net-misc/curl
net-print/cups
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libXtst
x11-libs/pango[X]


QA_PREBUILT=*
S=${WORKDIR}
OPERA_HOME=usr/$(get_libdir)/${PN}

src_unpack() {
unpack_deb ${A}
}

src_prepare() {
mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
rm -r usr/lib || die

rm usr/bin/${PN} || die

rm usr/share/doc/${PN}/copyright || die
mv usr/share/doc/${PN} usr/share/doc/${PF} || die

pushd ${OPERA_HOME}/localization  /dev/null || die
chromium_remove_language_paks
popd  /dev/null || die

sed -i \
-e 's|^TargetEnvironment|X-|g' \
usr/share/applications/${PN}.desktop || die
}

src_install() {
mv * ${D} || die
dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
}






[gentoo-commits] gentoo-x86 commit in sys-devel/libtool: ChangeLog libtool-2.4.5.ebuild

2015-01-19 Thread Lars Wendler (polynomial-c)
polynomial-c15/01/19 23:32:05

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

Revision  ChangesPath
1.239sys-devel/libtool/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.239view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.239content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?r1=1.238r2=1.239

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v
retrieving revision 1.238
retrieving revision 1.239
diff -u -r1.238 -r1.239
--- ChangeLog   17 Jan 2015 12:37:28 -  1.238
+++ ChangeLog   19 Jan 2015 23:32:05 -  1.239
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/libtool
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.238 
2015/01/17 12:37:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.239 
2015/01/19 23:32:05 polynomial-c Exp $
+
+*libtool-2.4.5 (19 Jan 2015)
+
+  19 Jan 2015; Lars Wendler polynomia...@gentoo.org +libtool-2.4.5.ebuild:
+  Version bump.
 
   17 Jan 2015; Jeroen Roovers j...@gentoo.org libtool-2.4.4.ebuild:
   Stable for HPPA (bug #536696).



1.1  sys-devel/libtool/libtool-2.4.5.ebuild

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

Index: libtool-2.4.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.5.ebuild,v 1.1 
2015/01/19 23:32:05 polynomial-c Exp $

EAPI=4

LIBTOOLIZE=true #225559
WANT_LIBTOOL=none
inherit eutils autotools multilib unpacker

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=git://git.savannah.gnu.org/${PN}.git
http://git.savannah.gnu.org/r/${PN}.git;
inherit git-2
else
SRC_URI=mirror://gnu/${PN}/${P}.tar.xz
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
fi

DESCRIPTION=A shared library tool for developers
HOMEPAGE=http://www.gnu.org/software/libtool/;

LICENSE=GPL-2
SLOT=2
IUSE=vanilla

# Pull in libltdl directly until we convert packages to the new dep.
RDEPEND=sys-devel/gnuconfig
=sys-devel/autoconf-2.69
=sys-devel/automake-1.13
dev-libs/libltdl:0
DEPEND=${RDEPEND}
app-arch/xz-utils
[[ ${PV} ==  ]]  DEPEND+= sys-apps/help2man

src_unpack() {
if [[ ${PV} ==  ]] ; then
git-2_src_unpack
cd ${S}
./bootstrap || die
else
unpacker_src_unpack
fi
}

src_prepare() {
use vanilla  return 0

epatch ${FILESDIR}/${PN}-2.4.3-use-linux-version-in-fbsd.patch #109105
pushd libltdl /dev/null
AT_NOELIBTOOLIZE=yes eautoreconf
popd /dev/null
AT_NOELIBTOOLIZE=yes eautoreconf
epunt_cxx
}

src_configure() {
# the libtool script uses bash code in it and at configure time, tries
# to find a bash shell.  if /bin/sh is bash, it uses that.  this can
# cause problems for people who switch /bin/sh on the fly to other
# shells, so just force libtool to use /bin/bash all the time.
export CONFIG_SHELL=/bin/bash
ECONF_SOURCE=${S} econf --disable-ltdl-install
}

src_test() {
emake check
}

src_install() {
default

local x
while read -d $'\0' -r x ; do
ln -sf ${EPREFIX}/usr/share/gnuconfig/${x##*/} ${x} || die
done  (find ${ED} '(' -name config.guess -o -name config.sub ')' 
-print0)
}






[gentoo-commits] proj/betagarden:master commit in: www-client/chromium-bin-debian/

2015-01-19 Thread Sebastian Pipping
commit: 194f98f91984ce78e07c539ce153794d15a6a10c
Author: Sebastian Pipping sebastian AT pipping DOT org
AuthorDate: Tue Jan 20 00:54:12 2015 +
Commit: Sebastian Pipping sping AT gentoo DOT org
CommitDate: Tue Jan 20 00:58:21 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=194f98f9

www-client/chromium-bin-debian: 39.0.2171.71_p2-r1

Fix JPEG display, i.e. error
/usr/lib64/libjpeg.so.62: no version information available

---
 2171.71_p2.ebuild = chromium-bin-debian-39.0.2171.71_p2-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/www-client/chromium-bin-debian/chromium-bin-debian-39.0.2171.71_p2.ebuild 
b/www-client/chromium-bin-debian/chromium-bin-debian-39.0.2171.71_p2-r1.ebuild
similarity index 98%
rename from 
www-client/chromium-bin-debian/chromium-bin-debian-39.0.2171.71_p2.ebuild
rename to 
www-client/chromium-bin-debian/chromium-bin-debian-39.0.2171.71_p2-r1.ebuild
index bf7f615..75333e3 100644
--- a/www-client/chromium-bin-debian/chromium-bin-debian-39.0.2171.71_p2.ebuild
+++ 
b/www-client/chromium-bin-debian/chromium-bin-debian-39.0.2171.71_p2-r1.ebuild
@@ -35,7 +35,7 @@ RDEPEND=
media-libs/flac
media-libs/fontconfig
media-libs/freetype
-   media-libs/jpeg:62
+   =media-libs/libjpeg-turbo-1.3.1
media-libs/harfbuzz
media-libs/libvpx
media-libs/speex



[gentoo-commits] proj/genkernel: New branch: uimage

2015-01-19 Thread Christoph Junghans
commit: 
Commit: Christoph Junghans ottxor AT gentoo DOT org
CommitDate: Tue Jan 20 00:02:25 2015 +

New branch: uimage




[gentoo-commits] gentoo-x86 commit in app-accessibility/speech-tools: speech-tools-2.1-r3.ebuild ChangeLog

2015-01-19 Thread Christopher Brannon (teiresias)
teiresias15/01/20 02:01:02

  Modified: ChangeLog
  Added:speech-tools-2.1-r3.ebuild
  Log:
  Remove unnecessary bcat tool (see bug #418301).
  
  Also, add die to uses of cd, rm, and sed (see comment on bug #510600).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x6521e06d)

Revision  ChangesPath
1.88 app-accessibility/speech-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/speech-tools/ChangeLog?rev=1.88view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/speech-tools/ChangeLog?rev=1.88content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/speech-tools/ChangeLog?r1=1.87r2=1.88

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog   11 Jan 2015 19:36:13 -  1.87
+++ ChangeLog   20 Jan 2015 02:01:02 -  1.88
@@ -1,6 +1,12 @@
 # ChangeLog for app-accessibility/speech-tools
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/ChangeLog,v 
1.87 2015/01/11 19:36:13 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/ChangeLog,v 
1.88 2015/01/20 02:01:02 teiresias Exp $
+
+*speech-tools-2.1-r3 (20 Jan 2015)
+
+  20 Jan 2015; Christopher Brannon teires...@gentoo.org
+  +speech-tools-2.1-r3.ebuild:
+  Remove unnecessary bcat tool (see bug #418301).
 
   11 Jan 2015; Chema Alonso nim...@gentoo.org speech-tools-2.1-r2.ebuild:
   Stable for amd64 wrt bug #510600



1.1  app-accessibility/speech-tools/speech-tools-2.1-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/speech-tools/speech-tools-2.1-r3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/speech-tools/speech-tools-2.1-r3.ebuild?rev=1.1content-type=text/plain

Index: speech-tools-2.1-r3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/speech-tools/speech-tools-2.1-r3.ebuild,v
 1.1 2015/01/20 02:01:02 teiresias Exp $

EAPI=5

inherit eutils flag-o-matic multilib toolchain-funcs

MY_P=${P/speech-/speech_}
PATCHSET=r3

DESCRIPTION=Speech tools for Festival Text to Speech engine
HOMEPAGE=http://www.cstr.ed.ac.uk/projects/speech_tools/;
SRC_URI=http://www.festvox.org/packed/festival/${PV}/${MY_P}-release.tar.gz
 
http://dev.gentoo.org/~neurogeek/${PN}/${MY_P}-${PATCHSET}-patches.tar.gz;

LICENSE=FESTIVAL HPND BSD rc regexp-UofT
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd
IUSE=nas X

RDEPEND=
nas? ( media-libs/nas )
X? ( x11-libs/libX11
x11-libs/libXt )
=media-libs/alsa-lib-1.0.20-r1
!app-accessibility/festival-1.96_beta
!sys-power/powerman
=sys-libs/ncurses-5.6-r2

DEPEND=${RDEPEND}
virtual/pkgconfig


S=${WORKDIR}/speech_tools

src_prepare() {
EPATCH_SUFFIX=patch
epatch

sed -i -e 's,{{HORRIBLELIBARCHKLUDGE}},/usr/$(get_libdir),' \
main/siod_main.cc || die

#WRT bug #309983
sed -i -e s:\(GCC_SYSTEM_OPTIONS =\).*:\1: \
${S}/config/systems/sparc_SunOS5.mak || die

# Fix underlinking, bug #493204
epatch ${FILESDIR}/${PN}-2.1-underlinking.patch
}

src_configure() {
local CONFIG=config/config.in
sed -i -e 's/@COMPILERTYPE@/gcc42/' ${CONFIG} || die
if use nas; then
sed -i -e s/#.*\(INCLUDE_MODULES += NAS_AUDIO\)/\1/ \
${CONFIG} || die
fi
if ! use X; then
sed -i -e s/-lX11 -lXt// config/modules/esd_audio.mak || die
fi
econf
}

src_compile() {
emake -j1 CC=$(tc-getCC) CXX=$(tc-getCXX) 
CXX_OTHER_FLAGS=${CXXFLAGS} CC_OTHER_FLAGS=${CFLAGS} \
LDFLAGS=${LDFLAGS}
}

src_install() {
dolib.so lib/libest*.so*

dodoc ${S}/README
dodoc ${S}/lib/cstrutt.dtd

insinto /usr/share/doc/${PF}
doins -r lib/example_data

insinto /usr/share/speech-tools
doins -r config base_class

insinto /usr/share/speech-tools/lib
doins -r lib/siod

cd include || die
insinto /usr/include/speech-tools
doins -r *
dosym /usr/include/speech-tools /usr/share/speech-tools/include

cd ../bin || die
for file in *; do
[ ${file} = Makefile ]  continue
dobin ${file}
dstfile=${D}/usr/bin/${file}
   

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

2015-01-19 Thread Davide Pesavento
commit: 8bfdd3a426ed7de3bbfbc404d0cd8d394bafcf4e
Author: Davide Pesavento pesa AT gentoo DOT org
AuthorDate: Tue Jan 20 02:37:33 2015 +
Commit: Davide Pesavento pesa AT gentoo DOT org
CommitDate: Tue Jan 20 02:37:33 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=8bfdd3a4

[dev-qt/qt-creator] Sync.

Package-Manager: portage-2.2.15

---
 dev-qt/qt-creator/metadata.xml   |  2 ++
 dev-qt/qt-creator/qt-creator-.ebuild | 54 
 2 files changed, 36 insertions(+), 20 deletions(-)

diff --git a/dev-qt/qt-creator/metadata.xml b/dev-qt/qt-creator/metadata.xml
index 6a0df66..d89ff7c 100644
--- a/dev-qt/qt-creator/metadata.xml
+++ b/dev-qt/qt-creator/metadata.xml
@@ -18,8 +18,10 @@
flag name=mercurialAdd support for pkgdev-vcs/mercurial/pkg 
version control system/flag
flag name=perforceAdd support for Perforce version control system 
(requires manual installation of Perforce client)/flag
flag name=pythonEnable Python source code editor/flag
+   flag name=qbsEnable QBS project manager plugin/flag
flag name=qnxBuild plugin for QNX/Blackberry devices/flag
flag name=valgrindAdd support for memory debugging using 
pkgdev-util/valgrind/pkg/flag
+   flag name=winrtBuild plugin for WinRT devices/flag
 /use
 upstream
bugs-tohttps://bugreports.qt.io//bugs-to

diff --git a/dev-qt/qt-creator/qt-creator-.ebuild 
b/dev-qt/qt-creator/qt-creator-.ebuild
index 94a7154..e977dc3 100644
--- a/dev-qt/qt-creator/qt-creator-.ebuild
+++ b/dev-qt/qt-creator/qt-creator-.ebuild
@@ -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-qt/qt-creator/qt-creator-3.2.2.ebuild,v 
1.1 2014/10/14 23:34:31 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt-creator/qt-creator-3.3.0.ebuild,v 
1.1 2015/01/18 04:56:40 pesa Exp $
 
 EAPI=5
 
@@ -22,42 +22,57 @@ else
MY_PV=${PV/_/-}
MY_P=${PN}-opensource-src-${MY_PV}
[[ ${MY_PV} == ${PV} ]]  MY_REL=official || MY_REL=development
-   
SRC_URI=http://download.qt-project.org/${MY_REL}_releases/${PN/-}/${PV%.*}/${MY_PV}/${MY_P}.tar.gz;
+   
SRC_URI=http://download.qt.io/${MY_REL}_releases/${PN/-}/${PV%.*}/${MY_PV}/${MY_P}.tar.gz;
S=${WORKDIR}/${MY_P}
 fi
 
 SLOT=0
 KEYWORDS=
 
-# TODO: qbs:qbsprojectmanager, winrt (both require qt5)
-QTC_PLUGINS=(android autotools:autotoolsprojectmanager baremetal bazaar
-   clang:clangcodemodel clearcase cmake:cmakeprojectmanager cvs git
-   ios mercurial perforce python:pythoneditor qnx subversion valgrind)
-IUSE=debug doc examples test ${QTC_PLUGINS[@]%:*}
+QTC_PLUGINS=('android:android|qmakeandroidsupport' 
autotools:autotoolsprojectmanager baremetal
+   bazaar clang:clangcodemodel clearcase cmake:cmakeprojectmanager cvs git 
ios mercurial
+   perforce python:pythoneditor qbs:qbsprojectmanager qnx subversion 
valgrind winrt)
+IUSE=debug doc test ${QTC_PLUGINS[@]%:*}
 
 # minimum Qt version required
-QT_PV=4.8.5:4
+QT_PV=5.3.2:5
 
 CDEPEND=
=dev-libs/botan-1.10*[threads]
=dev-qt/designer-${QT_PV}
-   =dev-qt/qtcore-${QT_PV}[ssl]
+   =dev-qt/qtconcurrent-${QT_PV}
+   =dev-qt/qtcore-${QT_PV}
=dev-qt/qtdeclarative-${QT_PV}
=dev-qt/qtgui-${QT_PV}
-   =dev-qt/qthelp-${QT_PV}[doc?]
+   =dev-qt/qthelp-${QT_PV}
+   =dev-qt/qtnetwork-${QT_PV}[ssl]
+   =dev-qt/qtprintsupport-${QT_PV}
+   =dev-qt/qtquick1-${QT_PV}
+   =dev-qt/qtquickcontrols-${QT_PV}
=dev-qt/qtscript-${QT_PV}
=dev-qt/qtsql-${QT_PV}
=dev-qt/qtsvg-${QT_PV}
+   =dev-qt/qtwidgets-${QT_PV}
+   =dev-qt/qtx11extras-${QT_PV}
+   =dev-qt/qtxml-${QT_PV}
clang? ( =sys-devel/clang-3.2:= )
+   qbs? ( =dev-util/qbs-1.3.3[qt5] )
 
 DEPEND=${CDEPEND}
+   =dev-qt/linguist-tools-${QT_PV}
virtual/pkgconfig
+   doc? ( =dev-qt/qdoc-${QT_PV} )
test? ( =dev-qt/qttest-${QT_PV} )
 
 RDEPEND=${CDEPEND}
=sys-devel/gdb-7.2[client(+),python]
-   examples? ( =dev-qt/qtdemo-${QT_PV} )
 
+for x in ${PLOCALES}; do
+   # qt translations must be installed for qt-creator translations to work
+   RDEPEND+= linguas_${x}? ( =dev-qt/qttranslations-${QT_PV} )
+done
+unset x
+
 PDEPEND=
autotools? ( sys-devel/autoconf )
bazaar? ( dev-vcs/bzr )
@@ -74,7 +89,7 @@ src_prepare() {
for plugin in ${QTC_PLUGINS[@]#[+-]}; do
if ! use ${plugin%:*}; then
einfo Disabling ${plugin%:*} plugin
-   sed -i -re /(^\s+|SUBDIRS\s*\+=\s*)${plugin#*:}\/d \
+   sed -i -re /(^\s+|SUBDIRS\s*\+=\s*)(${plugin#*:})\/d 
\
src/plugins/plugins.pro \
|| die failed to disable ${plugin%:*} plugin
   

[gentoo-commits] gentoo-x86 commit in dev-lang/go-bootstrap: metadata.xml ChangeLog go-bootstrap-1.4.1.ebuild

2015-01-19 Thread William Hubbs (williamh)
williamh15/01/20 03:39:35

  Added:metadata.xml ChangeLog go-bootstrap-1.4.1.ebuild
  Log:
  Initial commit of go-bootstrap for bug #536960.
  go-bootstrap is intended only as a build time dependency used to build
  newer versions of go.
  See https://golang.org/s/go15bootstrap for how this works.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  ChangesPath
1.1  dev-lang/go-bootstrap/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go-bootstrap/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go-bootstrap/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
emailwilli...@gentoo.org/email
nameWilliam Hubbs/name
/maintainer
longdescription lang=en
This package is only necessary until gccgo supports go-1.4. It
will be removed as soon as stable gcc supports this.
It is here so that =dev-lang/go 1.5 can use it to bootstrap.
/longdescription
/pkgmetadata



1.1  dev-lang/go-bootstrap/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go-bootstrap/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go-bootstrap/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for dev-lang/go-bootstrap
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/go-bootstrap/ChangeLog,v 1.1 
2015/01/20 03:39:35 williamh Exp $

*go-bootstrap-1.4.1 (20 Jan 2015)

  20 Jan 2015; William Hubbs willi...@gentoo.org +go-bootstrap-1.4.1.ebuild,
  +metadata.xml:
  Initial commit of go-bootstrap for bug #536960.
  go-bootstrap is intended only as a build time dependency used to build
  newer versions of go.
  See https://golang.org/s/go15bootstrap for how this works.




1.1  dev-lang/go-bootstrap/go-bootstrap-1.4.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go-bootstrap/go-bootstrap-1.4.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go-bootstrap/go-bootstrap-1.4.1.ebuild?rev=1.1content-type=text/plain

Index: go-bootstrap-1.4.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/go-bootstrap/go-bootstrap-1.4.1.ebuild,v 1.1 
2015/01/20 03:39:35 williamh Exp $

EAPI=5

export CTARGET=${CTARGET:-${CHOST}}

inherit eutils toolchain-funcs

SRC_URI=https://storage.googleapis.com/golang/go${PV}.src.tar.gz;
# Upstream only supports go on amd64, arm and x86 architectures.
KEYWORDS=-* ~amd64 ~arm ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos ~x86-macos

DESCRIPTION=Version of go compiler used for bootstrapping
HOMEPAGE=http://www.golang.org;

LICENSE=BSD
SLOT=0
IUSE=

DEPEND=
RDEPEND=

# The go tools should not cause the multilib-strict check to fail.
QA_MULTILIB_PATHS=usr/lib/go1.4/pkg/tool/.*/.*

# The go language uses *.a files which are _NOT_ libraries and should not be
# stripped.
STRIP_MASK=/usr/lib/go1.4/pkg/linux*/*.a
/usr/lib/go1.4/pkg/freebsd*/*.a /usr/lib/go1.4/pkg/darwin*/*.a

S=${WORKDIR}/go

src_prepare()
{
sed -i -e 's/-Werror,//g' src/cmd/dist/build.c
}

src_compile()
{
export GOROOT_FINAL=${EPREFIX}/usr/lib/go1.4
export GOROOT=$(pwd)
export GOBIN=${GOROOT}/bin
if [[ $CTARGET = armv5* ]]
then
export GOARM=5
fi
tc-export CC

cd src
./make.bash || die build failed
}

src_test()
{
cd src
PATH=${GOBIN}:${PATH} \
./run.bash --no-rebuild --banner || die tests failed
}

src_install()
{
dodir /usr/lib/go1.4
exeinto /usr/lib/go1.4/bin
doexe bin/*
insinto /usr/lib/go1.4
doins -r lib pkg src
fperms -R +x /usr/lib/go1.4/pkg/tool
}

pkg_postinst()
{
# If the go tool sees a package file timestamped older than a 
dependancy it
# will rebuild that file.  So, in order to stop go from rebuilding lots 
of
# packages for every build we need to fix the timestamps.  The compiler 
and
# linker are also checked - so we need to fix them too.
ebegin fixing timestamps to avoid unnecessary rebuilds
tref=usr/lib/go1.4/pkg/*/runtime.a
find ${EROOT}usr/lib/go1.4 -type f \
-exec touch -r ${EROOT}${tref} {} \;
eend $?
}






[gentoo-commits] gentoo-x86 commit in sci-biology/flower/files: flower-0.7.2-ghc-7.8.patch

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 22:44:09

  Added:flower-0.7.2-ghc-7.8.patch
  Log:
  Port to ghc-7.8 (bug #537052 by Toralf Förster).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  ChangesPath
1.1  sci-biology/flower/files/flower-0.7.2-ghc-7.8.patch

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

Index: flower-0.7.2-ghc-7.8.patch
===
diff --git a/src/Flower.hs b/src/Flower.hs
index fca5814..9424222 100644
--- a/src/Flower.hs
+++ b/src/Flower.hs
@@ -25,6 +25,7 @@ import qualified Data.ByteString.Lazy as L1
 
 import Data.Array.Unboxed
 import Data.Array.ST
+import qualified Data.Array.Unsafe as U
 import Control.Monad.ST
 import Control.Monad.State
 
@@ -238,10 +239,10 @@ histogram fl scores = runST $ do
   ins1 (x,_)   = error (Illegal character ++show x++ in flow!)
   bump ar i = readArray ar i = \x - writeArray ar i (x+1)
   mapM_ ins1 (zip (cycle fl) (map (\x-if x || x0 then  else x) $ 
concat scores))
-  a' - unsafeFreeze a
-  c' - unsafeFreeze c
-  g' - unsafeFreeze g
-  t' - unsafeFreeze t
+  a' - U.unsafeFreeze a
+  c' - U.unsafeFreeze c
+  g' - U.unsafeFreeze g
+  t' - U.unsafeFreeze t
   return (a',c',g',t')
 
 showHist :: (Hist,Hist,Hist,Hist) - String






[gentoo-commits] gentoo-x86 commit in sci-biology/flower: flower-0.7.2.ebuild ChangeLog flower-0.7-r1.ebuild

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 22:44:09

  Modified: flower-0.7.2.ebuild ChangeLog
  Removed:  flower-0.7-r1.ebuild
  Log:
  Port to ghc-7.8 (bug #537052 by Toralf Förster).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  ChangesPath
1.2  sci-biology/flower/flower-0.7.2.ebuild

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

Index: flower-0.7.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/flower/flower-0.7.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flower-0.7.2.ebuild 22 Sep 2013 14:16:14 -  1.1
+++ flower-0.7.2.ebuild 19 Jan 2015 22:44:09 -  1.2
@@ -1,11 +1,13 @@
-# 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/sci-biology/flower/flower-0.7.2.ebuild,v 
1.1 2013/09/22 14:16:14 cynede Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/flower/flower-0.7.2.ebuild,v 
1.2 2015/01/19 22:44:09 slyfox Exp $
+
+# ebuild generated by hackport 0.2.17.
 
 EAPI=5
 
 CABAL_FEATURES=bin
-inherit haskell-cabal
+inherit eutils haskell-cabal
 
 DESCRIPTION=Analyze 454 flowgrams  (.SFF files)
 HOMEPAGE=http://biohaskell.org/Applications/Flower;
@@ -27,6 +29,7 @@
=dev-lang/ghc-6.10.1
 
 src_prepare() {
+   epatch ${FILESDIR}/${P}-ghc-7.8.patch
cabal_chdeps \
'binary == 0.4.*' 'binary = 0.4  0.8'
 }



1.3  sci-biology/flower/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-biology/flower/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   22 Sep 2013 14:16:14 -  1.2
+++ ChangeLog   19 Jan 2015 22:44:09 -  1.3
@@ -1,6 +1,10 @@
 # ChangeLog for sci-biology/flower
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/flower/ChangeLog,v 1.2 
2013/09/22 14:16:14 cynede Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/flower/ChangeLog,v 1.3 
2015/01/19 22:44:09 slyfox Exp $
+
+  19 Jan 2015; Sergei Trofimovich sly...@gentoo.org
+  +files/flower-0.7.2-ghc-7.8.patch, -flower-0.7-r1.ebuild, 
flower-0.7.2.ebuild:
+  Port to ghc-7.8 (bug #537052 by Toralf Förster).
 
 *flower-0.7.2 (22 Sep 2013)
 






[gentoo-commits] gentoo-x86 commit in sci-biology/flower/files: - New directory

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 22:43:38

  Log:
  Directory /var/cvsroot/gentoo-x86/sci-biology/flower/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-libs/libltdl: libltdl-2.4.5.ebuild ChangeLog

2015-01-19 Thread Lars Wendler (polynomial-c)
polynomial-c15/01/19 23:30:31

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

Revision  ChangesPath
1.5  dev-libs/libltdl/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libltdl/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   17 Jan 2015 12:37:12 -  1.4
+++ ChangeLog   19 Jan 2015 23:30:31 -  1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libltdl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libltdl/ChangeLog,v 1.4 2015/01/17 
12:37:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libltdl/ChangeLog,v 1.5 2015/01/19 
23:30:31 polynomial-c Exp $
+
+*libltdl-2.4.5 (19 Jan 2015)
+
+  19 Jan 2015; Lars Wendler polynomia...@gentoo.org +libltdl-2.4.5.ebuild:
+  Version bump.
 
   17 Jan 2015; Jeroen Roovers j...@gentoo.org libltdl-2.4.4.ebuild:
   Stable for HPPA (bug #536696).



1.1  dev-libs/libltdl/libltdl-2.4.5.ebuild

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

Index: libltdl-2.4.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libltdl/libltdl-2.4.5.ebuild,v 1.1 
2015/01/19 23:30:31 polynomial-c Exp $

EAPI=4

inherit multilib-minimal

MY_P=libtool-${PV}

DESCRIPTION=A shared library tool for developers
HOMEPAGE=http://www.gnu.org/software/libtool/;
SRC_URI=mirror://gnu/libtool/${MY_P}.tar.xz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
IUSE=static-libs
# libltdl doesn't have a testsuite.
RESTRICT=test

RDEPEND=!sys-devel/libtool-2.4.3-r2:2
abi_x86_32? (
!=app-emulation/emul-linux-x86-baselibs-20140406-r2
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)
DEPEND=app-arch/xz-utils

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

multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
--enable-ltdl-install \
$(use_enable static-libs static)
}

multilib_src_install() {
emake DESTDIR=${D} install

# While the libltdl.la file is not used directly, the m4 ltdl logic
# keys off of its existence when searching for ltdl support. #293921
#use static-libs || find ${D} -name libltdl.la -delete
}






[gentoo-commits] gentoo-x86 commit in dev-lang/go: go-9999.ebuild ChangeLog

2015-01-19 Thread William Hubbs (williamh)
williamh15/01/20 04:02:26

  Modified: go-.ebuild ChangeLog
  Log:
  Add a dependency on dev-lang/go-bootstrap for #536960. For now, we can build 
our own bootstrap compiler, so we dont
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  ChangesPath
1.25 dev-lang/go/go-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-.ebuild?rev=1.25view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-.ebuild?rev=1.25content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/go-.ebuild?r1=1.24r2=1.25

Index: go-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/go-.ebuild,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- go-.ebuild  31 Dec 2014 01:00:46 -  1.24
+++ go-.ebuild  20 Jan 2015 04:02:26 -  1.25
@@ -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-lang/go/go-.ebuild,v 1.24 
2014/12/31 01:00:46 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-.ebuild,v 1.25 
2015/01/20 04:02:26 williamh Exp $
 
 EAPI=5
 
@@ -24,7 +24,7 @@
 SLOT=0
 IUSE=
 
-DEPEND=
+DEPEND==dev-lang/go-bootstrap-1.4.1
 RDEPEND=
 
 # The tools in /usr/lib/go should not cause the multilib-strict check to fail.
@@ -41,13 +41,15 @@
 src_prepare()
 {
if [[ ${PV} !=  ]]; then
-   epatch ${FILESDIR}/${PN}-1.2-no-Werror.patch
+   sed -i -e 's/-Werror,//g' src/cmd/dist/build.go ||
+   die 'sed failed'
fi
epatch_user
 }
 
 src_compile()
 {
+   export GOROOT_BOOTSTRAP=${EPREFIX}/usr/lib/go1.4
export GOROOT_FINAL=${EPREFIX}/usr/lib/go
export GOROOT=$(pwd)
export GOBIN=${GOROOT}/bin



1.64 dev-lang/go/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.64view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?rev=1.64content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/go/ChangeLog?r1=1.63r2=1.64

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   16 Jan 2015 16:12:27 -  1.63
+++ ChangeLog   20 Jan 2015 04:02:26 -  1.64
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/go
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.63 2015/01/16 
16:12:27 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/ChangeLog,v 1.64 2015/01/20 
04:02:26 williamh Exp $
+
+  20 Jan 2015; William Hubbs willi...@gentoo.org go-.ebuild:
+  Add a dependency on dev-lang/go-bootstrap for #536960. For now, we can build
+  our own bootstrap compiler, so we dont
 
 *go-1.4.1 (16 Jan 2015)
 






[gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/lxde: index.xml lxde-howto.xml

2015-01-19 Thread Andreas HAttel (dilfridge)
dilfridge15/01/19 23:16:24

  Modified: index.xml lxde-howto.xml
  Log:
  Migrated to the Wiki.

Revision  ChangesPath
1.18 xml/htdocs/proj/en/desktop/lxde/index.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/lxde/index.xml?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/lxde/index.xml?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/lxde/index.xml?r1=1.17r2=1.18

Index: index.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/lxde/index.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- index.xml   17 Oct 2013 09:22:53 -  1.17
+++ index.xml   19 Jan 2015 23:16:24 -  1.18
@@ -3,7 +3,7 @@
 ?xml-stylesheet href=/xsl/guide.xsl type=text/xsl?
 !DOCTYPE project SYSTEM /dtd/project.dtd
 
-project
+project disclaimer=obsolete 
redirect=http://wiki.gentoo.org/wiki/Project:LXDE;
   namelxde/name
   longnameGentoo LXDE Project/longname
   date30 March 2013/date



1.5  xml/htdocs/proj/en/desktop/lxde/lxde-howto.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/lxde/lxde-howto.xml?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/lxde/lxde-howto.xml?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/desktop/lxde/lxde-howto.xml?r1=1.4r2=1.5

Index: lxde-howto.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/lxde/lxde-howto.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lxde-howto.xml  7 Jun 2011 20:40:21 -   1.4
+++ lxde-howto.xml  19 Jan 2015 23:16:24 -  1.5
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE guide SYSTEM /dtd/guide.dtd
 
-guide
+guide disclaimer=obsolete 
redirect=http://wiki.gentoo.org/wiki/Project:LXDE/HOWTO;
 titleThe LXDE Configuration HOWTO/title
 
 author title=Author






[gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth/files: wesnoth-1.12-cmake.patch

2015-01-19 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/20 01:25:36

  Added:wesnoth-1.12-cmake.patch
  Log:
  fix build with USE=dedicated
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  games-strategy/wesnoth/files/wesnoth-1.12-cmake.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/wesnoth/files/wesnoth-1.12-cmake.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/wesnoth/files/wesnoth-1.12-cmake.patch?rev=1.1content-type=text/plain

Index: wesnoth-1.12-cmake.patch
===
--- CMakeLists.txt.orig 2015-01-19 18:46:51.019420318 -0500
+++ CMakeLists.txt  2015-01-19 18:47:15.977567447 -0500
@@ -590,13 +590,14 @@
endif(LIBDBUS_FOUND)
endif(ENABLE_NOTIFICATIONS)
 
-   if(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
-   find_package( Boost 1.44 REQUIRED COMPONENTS filesystem )
-   find_package( Boost 1.48 REQUIRED COMPONENTS locale )
-   endif(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
-
 endif(ENABLE_GAME)
 
+if(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
+   find_package( Boost 1.44 REQUIRED COMPONENTS filesystem )
+   find_package( Boost 1.48 REQUIRED COMPONENTS locale )
+endif(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
+
+
 if(ENABLE_POT_UPDATE_TARGET)
find_package(TranslationTools REQUIRED)
 endif(ENABLE_POT_UPDATE_TARGET)






[gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: wesnoth-1.12.ebuild ChangeLog

2015-01-19 Thread Michael Sterrett (mr_bones_)
mr_bones_15/01/20 01:25:36

  Modified: wesnoth-1.12.ebuild ChangeLog
  Log:
  fix build with USE=dedicated
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.2  games-strategy/wesnoth/wesnoth-1.12.ebuild

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

Index: wesnoth-1.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wesnoth-1.12.ebuild 13 Jan 2015 18:11:11 -  1.1
+++ wesnoth-1.12.ebuild 20 Jan 2015 01:25:36 -  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/games-strategy/wesnoth/wesnoth-1.12.ebuild,v 1.1 
2015/01/13 18:11:11 mr_bones_ Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.12.ebuild,v 1.2 
2015/01/20 01:25:36 mr_bones_ Exp $
 
 EAPI=5
 inherit cmake-utils eutils multilib toolchain-funcs flag-o-matic games
@@ -62,6 +62,7 @@
done
echo $langs  po/LINGUAS || die
fi
+   epatch ${FILESDIR}/${P}-cmake.patch
 }
 
 src_configure() {



1.238games-strategy/wesnoth/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.238view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.238content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.237r2=1.238

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -r1.237 -r1.238
--- ChangeLog   13 Jan 2015 18:11:11 -  1.237
+++ ChangeLog   20 Jan 2015 01:25:36 -  1.238
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/wesnoth
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.237 
2015/01/13 18:11:11 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.238 
2015/01/20 01:25:36 mr_bones_ Exp $
+
+  20 Jan 2015; Michael Sterrett mr_bon...@gentoo.org
+  +files/wesnoth-1.12-cmake.patch, wesnoth-1.12.ebuild:
+  fix build with USE=dedicated
 
 *wesnoth-1.12 (13 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-lang/go-bootstrap: - New directory

2015-01-19 Thread William Hubbs (williamh)
williamh15/01/20 03:23:43

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-lang/go-bootstrap added to the 
repository



[gentoo-commits] gentoo-x86 commit in media-video/vdr: vdr-2.0.6-r2.ebuild ChangeLog

2015-01-19 Thread Joerg Bornkessel (hd_brummy)
hd_brummy15/01/20 03:19:46

  Modified: ChangeLog
  Added:vdr-2.0.6-r2.ebuild
  Log:
  added better systemd support, backported from vdr-2.1.7, based on patch by 
Lucian Muresan
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
34C2808A)

Revision  ChangesPath
1.186media-video/vdr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/ChangeLog?rev=1.186view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/ChangeLog?rev=1.186content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/ChangeLog?r1=1.185r2=1.186

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/vdr/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog   4 Jan 2015 01:19:02 -   1.185
+++ ChangeLog   20 Jan 2015 03:19:46 -  1.186
@@ -1,6 +1,14 @@
 # ChangeLog for media-video/vdr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vdr/ChangeLog,v 1.185 
2015/01/04 01:19:02 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vdr/ChangeLog,v 1.186 
2015/01/20 03:19:46 hd_brummy Exp $
+
+*vdr-2.0.6-r2 (20 Jan 2015)
+
+  20 Jan 2015; Joerg Bornkessel hd_bru...@gentoo.org +vdr-2.0.6-r2.ebuild,
+  +files/vdr-2.0.6-r2_gentoo.patch, +files/vdr-2.0.6_systemd_argsdir.patch,
+  +files/vdr-2.0.6_systemd_argsdir_vanilla.patch:
+  added better systemd support, backported from vdr-2.1.7, based on patch by
+  Lucian Muresan
 
   04 Jan 2015; Joerg Bornkessel hd_bru...@gentoo.org vdr-2.0.4.ebuild,
   vdr-2.0.5.ebuild, vdr-2.0.6-r1.ebuild:



1.1  media-video/vdr/vdr-2.0.6-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/vdr-2.0.6-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vdr/vdr-2.0.6-r2.ebuild?rev=1.1content-type=text/plain

Index: vdr-2.0.6-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vdr/vdr-2.0.6-r2.ebuild,v 1.1 
2015/01/20 03:19:46 hd_brummy Exp $

EAPI=5

inherit eutils flag-o-matic multilib toolchain-funcs

# Switches supported by extensions-patch
EXT_PATCH_FLAGS=alternatechannel ddepgentry dvlvidprefer graphtft
jumpplay jumpingseconds mainmenuhooks menuorg naludump permashift 
permashift_v1
pinplugin rotor ttxtsubs vasarajanauloja wareagleicon yaepg

# names of the use-flags
EXT_PATCH_FLAGS_RENAMED=

# names ext-patch uses internally, here only used for maintainer checks
EXT_PATCH_FLAGS_RENAMED_EXT_NAME=

IUSE=bidi debug html systemd vanilla ${EXT_PATCH_FLAGS} 
${EXT_PATCH_FLAGS_RENAMED}

MY_PV=${PV%_p*}
MY_P=${PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

EXT_P=extpng-${P}-gentoo-edition-v6

DESCRIPTION=Video Disk Recorder - turns a pc into a powerful set top box for 
DVB
HOMEPAGE=http://www.tvdr.de/;
SRC_URI=ftp://ftp.tvdr.de/vdr/${MY_P}.tar.bz2
http://dev.gentoo.org/~hd_brummy/distfiles/${EXT_P}.patch.bz2;

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

REQUIRED_USE=
permashift? ( !permashift_v1 )
permashift_v1? ( !permashift )

COMMON_DEPEND=virtual/jpeg
sys-libs/libcap
=media-libs/fontconfig-2.4.2
=media-libs/freetype-2

DEPEND=${COMMON_DEPEND}
=virtual/linuxtv-dvb-headers-5.3
sys-devel/gettext

RDEPEND=${COMMON_DEPEND}
dev-lang/perl
=media-tv/gentoo-vdr-scripts-2.5
media-fonts/corefonts
bidi? ( dev-libs/fribidi )
systemd? ( sys-apps/systemd )

CONF_DIR=/etc/vdr
CAP_FILE=${S}/capabilities.sh
CAPS=# Capabilities of the vdr-executable for use by startscript etc.

pkg_setup() {
use debug  append-flags -g

PLUGIN_LIBDIR=/usr/$(get_libdir)/vdr/plugins

tc-export CC CXX AR
}

add_cap() {
local arg
for arg; do
CAPS=${CAPS}\n${arg}=1
done
}

enable_patch() {
local arg ARG_UPPER
for arg; do
ARG_UPPER=$(echo $arg|tr '[:lower:]' '[:upper:]')
echo ${ARG_UPPER} = 1  Make.config

# codesnippet to bring the extpng defines into the vdr.pc 
CXXFLAGS CFLAGS
echo -DUSE_${ARG_UPPER}  ${T}/defines.tmp
cat ${T}/defines.tmp | tr \\\012 ' '   ${T}/defines.IUSE
export DEFINES_IUSE=$( cat ${T}/defines.IUSE )
done
}

extensions_add_make_conf()
{
# copy all ifdef for extensions-patch to Make.config
sed -e '1,/need to touch the following:/d' \
-e '/need to touch the following/,/^$/d' \
Make.config.template  Make.config
}

extensions_all_defines() {
   

[gentoo-commits] gentoo-x86 commit in dev-lang/ghc: ghc-7.8.4.ebuild ChangeLog

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 09:02:02

  Modified: ghc-7.8.4.ebuild ChangeLog
  Log:
  added ia64 binary
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  ChangesPath
1.9  dev-lang/ghc/ghc-7.8.4.ebuild

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

Index: ghc-7.8.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-7.8.4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ghc-7.8.4.ebuild18 Jan 2015 11:50:59 -  1.8
+++ ghc-7.8.4.ebuild19 Jan 2015 09:02:02 -  1.9
@@ -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-lang/ghc/ghc-7.8.4.ebuild,v 1.8 
2015/01/18 11:50:59 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-7.8.4.ebuild,v 1.9 
2015/01/19 09:02:02 slyfox Exp $
 
 EAPI=5
 
@@ -28,7 +28,7 @@
 arch_binaries=$arch_binaries alpha? ( 
http://code.haskell.org/~slyfox/ghc-alpha/ghc-bin-${PV}-alpha.tbz2 )
 #arch_binaries=$arch_binaries arm? ( 
http://code.haskell.org/~slyfox/ghc-arm/ghc-bin-${PV}-arm.tbz2 )
 arch_binaries=$arch_binaries amd64? ( 
http://code.haskell.org/~slyfox/ghc-amd64/ghc-bin-${PV}-amd64.tbz2 )
-#arch_binaries=$arch_binaries ia64?  ( 
http://code.haskell.org/~slyfox/ghc-ia64/ghc-bin-${PV}-ia64-fixed-fiw.tbz2 )
+arch_binaries=$arch_binaries ia64?  ( 
http://code.haskell.org/~slyfox/ghc-ia64/ghc-bin-${PV}-ia64.tbz2 )
 arch_binaries=$arch_binaries ppc? ( 
http://code.haskell.org/~slyfox/ghc-ppc/ghc-bin-${PV}-ppc.tbz2 )
 arch_binaries=$arch_binaries ppc64? ( 
http://code.haskell.org/~slyfox/ghc-ppc64/ghc-bin-${PV}-ppc64.tbz2 )
 arch_binaries=$arch_binaries sparc? ( 
http://code.haskell.org/~slyfox/ghc-sparc/ghc-bin-${PV}-sparc.tbz2 )
@@ -46,7 +46,7 @@
#   return 0
#;;
amd64) return 0 ;;
-   #ia64) return 0 ;;
+   ia64) return 0 ;;
ppc) return 0 ;;
ppc64) return 0 ;;
sparc) return 0 ;;
@@ -66,7 +66,7 @@
 SRC_URI+= 
http://dev.gentoo.org/~slyfox/distfiles/${P}-ia64-CLOSUREs-regenerated.patch.gz;
 LICENSE=BSD
 SLOT=0/${PV}
-KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
 IUSE=doc ghcbootstrap ghcmakebinary +gmp
 IUSE+= binary
 IUSE+= elibc_glibc # system stuff



1.278dev-lang/ghc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ChangeLog?rev=1.278view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ChangeLog?rev=1.278content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ChangeLog?r1=1.277r2=1.278

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- ChangeLog   18 Jan 2015 11:50:59 -  1.277
+++ ChangeLog   19 Jan 2015 09:02:02 -  1.278
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/ghc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.277 2015/01/18 
11:50:59 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.278 2015/01/19 
09:02:02 slyfox Exp $
+
+  19 Jan 2015; Sergei Trofimovich sly...@gentoo.org ghc-7.8.4.ebuild:
+  added ia64 binary
 
   18 Jan 2015; Sergei Trofimovich sly...@gentoo.org ghc-7.4.2.ebuild,
   ghc-7.6.3-r1.ebuild, ghc-7.8.3.ebuild, ghc-7.8.4.ebuild:






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

2015-01-19 Thread Raul Porcel (armin76)
armin76 15/01/19 08:45:25

  Modified: index.xml procedures.xml
  Log:
  Migrated to wiki

Revision  ChangesPath
1.27 xml/htdocs/proj/en/base/sparc/at/index.xml

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

Index: index.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/base/sparc/at/index.xml,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- index.xml   2 Nov 2010 18:53:57 -   1.26
+++ index.xml   19 Jan 2015 08:45:25 -  1.27
@@ -2,7 +2,7 @@
 ?xml-stylesheet href=/xsl/project.xsl type=text/xsl?
 ?xml-stylesheet href=/xsl/guide.xsl type=text/xsl?
 !DOCTYPE project SYSTEM http://www.gentoo.org/dtd/project.dtd;
-project
+project disclaimer=obsolete 
redirect=http://wiki.gentoo.org/wiki/Project:SPARC/AT;
 
 nameGentoo/SPARC ATs/name
 



1.6  xml/htdocs/proj/en/base/sparc/at/procedures.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/base/sparc/at/procedures.xml?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/base/sparc/at/procedures.xml?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/base/sparc/at/procedures.xml?r1=1.5r2=1.6

Index: procedures.xml
===
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/base/sparc/at/procedures.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- procedures.xml  28 Oct 2012 15:20:59 -  1.5
+++ procedures.xml  19 Jan 2015 08:45:25 -  1.6
@@ -1,12 +1,12 @@
 ?xml version='1.0' encoding=UTF-8?
 !DOCTYPE guide SYSTEM /dtd/guide.dtd
 
-!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/base/sparc/at/procedures.xml,v 1.5 
2012/10/28 15:20:59 swift Exp $ --
+!-- $Header: 
/var/cvsroot/gentoo/xml/htdocs/proj/en/base/sparc/at/procedures.xml,v 1.6 
2015/01/19 08:45:25 armin76 Exp $ --
 
 !-- The context of this document is licensed under the CC-BY-SA license --
 !-- See http://creativecommonds.org/licenses/by-sa/1.0 --
 
-guide lang=en
+guide lang=en disclaimer=obsolete 
redirect=http://wiki.gentoo.org/wiki/Project:SPARC/AT/Procedures;
 titleGentoo/SPARC Arch Testers' Guide/title
 
 author title=Author






[gentoo-commits] gentoo-x86 commit in media-gfx/pydot: pydot-1.0.28-r2.ebuild ChangeLog

2015-01-19 Thread Ian Delaney (idella4)
idella4 15/01/19 08:27:24

  Modified: pydot-1.0.28-r2.ebuild ChangeLog
  Log:
  correction to dep graphviz, fixes Bug #537014
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.4  media-gfx/pydot/pydot-1.0.28-r2.ebuild

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

Index: pydot-1.0.28-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/pydot/pydot-1.0.28-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pydot-1.0.28-r2.ebuild  12 Jan 2015 02:08:38 -  1.3
+++ pydot-1.0.28-r2.ebuild  19 Jan 2015 08:27:24 -  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/pydot/pydot-1.0.28-r2.ebuild,v 
1.3 2015/01/12 02:08:38 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pydot/pydot-1.0.28-r2.ebuild,v 
1.4 2015/01/19 08:27:24 idella4 Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 RDEPEND=
dev-python/pyparsing[${PYTHON_USEDEP}]
-   media-gfx/graphviz[${PYTHON_USEDEP}]
+   media-gfx/graphviz
 DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
 



1.76 media-gfx/pydot/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/pydot/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   12 Jan 2015 02:08:38 -  1.75
+++ ChangeLog   19 Jan 2015 08:27:24 -  1.76
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/pydot
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/pydot/ChangeLog,v 1.75 2015/01/12 
02:08:38 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pydot/ChangeLog,v 1.76 2015/01/19 
08:27:24 idella4 Exp $
+
+  19 Jan 2015; Ian Delaney idel...@gentoo.org pydot-1.0.28-r2.ebuild:
+  correction to dep graphviz, fixes Bug #537014
 
   12 Jan 2015; Ian Delaney idel...@gentoo.org -pydot-1.0.23.ebuild,
   -pydot-1.0.25.ebuild, -pydot-1.0.28.ebuild, pydot-1.0.28-r2.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-libs/libgit2-glib: ChangeLog libgit2-glib-0.22.0.ebuild

2015-01-19 Thread Remi Cardona (remi)
remi15/01/20 07:20:11

  Modified: ChangeLog
  Added:libgit2-glib-0.22.0.ebuild
  Log:
  dev-libs/libgit2-glib: bump to 0.22.0
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
901AB08A)

Revision  ChangesPath
1.22 dev-libs/libgit2-glib/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2-glib/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2-glib/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2-glib/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgit2-glib/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   22 Dec 2014 23:20:54 -  1.21
+++ ChangeLog   20 Jan 2015 07:20:11 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/libgit2-glib
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2-glib/ChangeLog,v 1.21 
2014/12/22 23:20:54 eva Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2-glib/ChangeLog,v 1.22 
2015/01/20 07:20:11 remi Exp $
+
+*libgit2-glib-0.22.0 (20 Jan 2015)
+
+  20 Jan 2015; Rémi Cardona r...@gentoo.org +libgit2-glib-0.22.0.ebuild,
+  +files/libgit2-glib-0.22.0-automagic-ssh.patch:
+  Bump to 0.22.0, refresh automagic ssh patch, see bug #536830.
 
   22 Dec 2014; Gilles Dartiguelongue e...@gentoo.org
   libgit2-glib-0.0.24.ebuild:



1.1  dev-libs/libgit2-glib/libgit2-glib-0.22.0.ebuild

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

Index: libgit2-glib-0.22.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libgit2-glib/libgit2-glib-0.22.0.ebuild,v 1.1 
2015/01/20 07:20:11 remi Exp $

EAPI=5

GCONF_DEBUG=no
PYTHON_COMPAT=( python{3_3,3_4} )
VALA_MIN_API_VERSION=0.22
VALA_USE_DEPEND=vapigen

inherit autotools eutils gnome2 python-r1 vala

DESCRIPTION=Git library for GLib
HOMEPAGE=https://wiki.gnome.org/Projects/Libgit2-glib;

LICENSE=LGPL-2+
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=python ssh +vala

REQUIRED_USE=python? ( ${PYTHON_REQUIRED_USE} )

RDEPEND=
=dev-libs/libgit2-0.21.0:=
=dev-libs/glib-2.28.0:2
=dev-libs/gobject-introspection-0.10.1
python? (
${PYTHON_DEPS}
dev-python/pygobject:3[${PYTHON_USEDEP}] )
ssh? ( dev-libs/libgit2[ssh] )

DEPEND=${RDEPEND}
=dev-util/gtk-doc-am-1.11
virtual/pkgconfig
vala? ( $(vala_depend) )


src_prepare() {
epatch ${FILESDIR}/${PN}-0.22.0-automagic-ssh.patch # make 
libgit2[ssh] dep non-magic
eautoreconf
use vala  vala_src_prepare
gnome2_src_prepare
}

src_configure() {
gnome2_src_configure \
$(use_enable python) \
$(use_enable ssh) \
$(use_enable vala)
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libgit2-glib/files: libgit2-glib-0.22.0-automagic-ssh.patch

2015-01-19 Thread Remi Cardona (remi)
remi15/01/20 07:20:11

  Added:libgit2-glib-0.22.0-automagic-ssh.patch
  Log:
  dev-libs/libgit2-glib: bump to 0.22.0
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
901AB08A)

Revision  ChangesPath
1.1  
dev-libs/libgit2-glib/files/libgit2-glib-0.22.0-automagic-ssh.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2-glib/files/libgit2-glib-0.22.0-automagic-ssh.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2-glib/files/libgit2-glib-0.22.0-automagic-ssh.patch?rev=1.1content-type=text/plain

Index: libgit2-glib-0.22.0-automagic-ssh.patch
===
From e67a9ba456bc7f4b6b8c4899179d6b7a2863d592 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20Cardona?= r...@gentoo.org
Date: Tue, 20 Jan 2015 08:12:41 +0100
Subject: [PATCH] configure: Add flag to force on or off SSH support
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Remove an automagic dependency on libgit2's SSH support.

Signed-off-by: Rémi Cardona r...@gentoo.org
---
 configure.ac | 64 
 1 file changed, 38 insertions(+), 26 deletions(-)

diff --git a/configure.ac b/configure.ac
index 1bd96bc..61744db 100644
--- a/configure.ac
+++ b/configure.ac
@@ -79,32 +79,44 @@ dnl 
===
 dnl Check for libgit2 ssh support
 dnl ===
 
-AC_MSG_CHECKING([for libgit2 ssh support])
-
-cflags_save=${CFLAGS}
-libs_save=${LIBS}
-
-CFLAGS=${LIBGIT2_GLIB_CFLAGS}
-LIBS=${LIBGIT2_GLIB_LIBS}
-
-AC_TRY_RUN([
-#include git2.h
-int
-main(int argc, const char *argv[])
-{
-git_libgit2_init ();
-return ((git_libgit2_features()  GIT_FEATURE_SSH) != 0) ? 0 : 
1;
-}
-],[
-AC_MSG_RESULT([yes])
-git_ssh=yes
-],[
-AC_MSG_RESULT([no])
-git_ssh=no
-])
-
-CFLAGS=${cflags_save}
-LIBS=${libs_save}
+AC_ARG_ENABLE([ssh],
+  AS_HELP_STRING([--enable-ssh[=@:@no/auto/yes@:@]],[Build with 
libgit2 ssh support]),
+  [enable_ssh=$enableval],
+  [enable_ssh=auto])
+
+git_ssh=no
+
+if test x$enable_ssh != xno; then
+AC_MSG_CHECKING([for libgit2 ssh support])
+
+cflags_save=${CFLAGS}
+libs_save=${LIBS}
+
+CFLAGS=${LIBGIT2_GLIB_CFLAGS}
+LIBS=${LIBGIT2_GLIB_LIBS}
+
+AC_TRY_RUN([
+#include git2.h
+int
+main(int argc, const char *argv[])
+{
+git_libgit2_init ();
+return ((git_libgit2_features()  GIT_FEATURE_SSH) != 0) ? 
0 : 1;
+}
+],[
+AC_MSG_RESULT([yes])
+git_ssh=yes
+],[
+AC_MSG_RESULT([no])
+git_ssh=no
+if test x$enable_ssh = xyes; then
+AC_MSG_ERROR([libgit2 ssh support was requiested, but not found])
+fi
+])
+
+CFLAGS=${cflags_save}
+LIBS=${libs_save}
+fi
 
 if test x$git_ssh = xyes; then
LIBGIT2_GLIB_CFLAGS=${LIBGIT2_GLIB_CFLAGS} -DGIT_SSH=1
-- 
2.2.1







[gentoo-commits] gentoo-x86 commit in net-dns/dnscrypt-proxy: dnscrypt-proxy-1.4.3.ebuild ChangeLog

2015-01-19 Thread Yixun Lan (dlan)
dlan15/01/20 07:40:55

  Modified: ChangeLog
  Added:dnscrypt-proxy-1.4.3.ebuild
  Log:
  version bump, bug 536936, thanks Florian Steinel, Wang Jiajun
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.2  net-dns/dnscrypt-proxy/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/dnscrypt-proxy/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   22 Dec 2014 14:30:41 -  1.1
+++ ChangeLog   20 Jan 2015 07:40:55 -  1.2
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/dnscrypt-proxy
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/dnscrypt-proxy/ChangeLog,v 1.1 
2014/12/22 14:30:41 dlan Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/dnscrypt-proxy/ChangeLog,v 1.2 
2015/01/20 07:40:55 dlan Exp $
+
+*dnscrypt-proxy-1.4.3 (20 Jan 2015)
+
+  20 Jan 2015; Yixun Lan d...@gentoo.org +dnscrypt-proxy-1.4.3.ebuild:
+  version bump, bug 536936, thanks Florian Steinel, Wang Jiajun
 
 *dnscrypt-proxy-1.4.2 (22 Dec 2014)
 



1.1  net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild?rev=1.1content-type=text/plain

Index: dnscrypt-proxy-1.4.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild,v 
1.1 2015/01/20 07:40:55 dlan Exp $

EAPI=5

inherit eutils systemd user

DESCRIPTION=A tool for securing communications between a client and a DNS 
resolver
HOMEPAGE=http://dnscrypt.org/;
SRC_URI=http://download.dnscrypt.org/${PN}/${P}.tar.gz;

LICENSE=ISC
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=+plugins ldns systemd

DEPEND=dev-libs/libsodium
ldns? ( net-libs/ldns )
RDEPEND=${DEPEND}
systemd? ( sys-apps/systemd )

DOCS=( AUTHORS ChangeLog COPYING NEWS README.markdown README-PLUGINS.markdown
TECHNOTES THANKS )

pkg_setup() {
enewgroup dnscrypt
enewuser dnscrypt -1 -1 /var/empty dnscrypt
}

src_configure() {
econf \
$(use_enable plugins) \
$(use_with systemd )
}

src_install() {
default

newinitd ${FILESDIR}/${PN}.initd ${PN}
newconfd ${FILESDIR}/${PN}.confd ${PN}
systemd_dounit ${FILESDIR}/${PN}.service
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-gettext: ChangeLog ruby-gettext-3.1.5.ebuild

2015-01-19 Thread Hans de Graaff (graaff)
graaff  15/01/20 07:26:17

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

Revision  ChangesPath
1.152dev-ruby/ruby-gettext/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gettext/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog   18 Nov 2014 12:00:22 -  1.151
+++ ChangeLog   20 Jan 2015 07:26:17 -  1.152
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/ruby-gettext
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gettext/ChangeLog,v 1.151 
2014/11/18 12:00:22 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gettext/ChangeLog,v 1.152 
2015/01/20 07:26:17 graaff Exp $
+
+*ruby-gettext-3.1.5 (20 Jan 2015)
+
+  20 Jan 2015; Hans de Graaff gra...@gentoo.org +ruby-gettext-3.1.5.ebuild:
+  Version bump.
 
   18 Nov 2014; Manuel Rüger mr...@gentoo.org
   -files/ruby-gettext-rubygems-load-path.patch:



1.1  dev-ruby/ruby-gettext/ruby-gettext-3.1.5.ebuild

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

Index: ruby-gettext-3.1.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/ruby-gettext/ruby-gettext-3.1.5.ebuild,v 1.1 
2015/01/20 07:26:17 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_NAME=${PN/ruby-/}
RUBY_FAKEGEM_VERSION=${PV%_*}

RUBY_FAKEGEM_RECIPE_DOC=yard
RUBY_FAKEGEM_EXTRADOC=README.md doc/text/news.md

RUBY_FAKEGEM_TASK_TEST=none

RUBY_FAKEGEM_EXTRAINSTALL=locale po

inherit ruby-fakegem

DESCRIPTION=Ruby GetText Package is Native Language Support Library and Tools 
modeled after GNU gettext package
HOMEPAGE=http://ruby-gettext.github.io/;

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
IUSE=doc test
SLOT=0
LICENSE=|| ( Ruby LGPL-3+ )

ruby_add_rdepend =dev-ruby/locale-2.0.5 =dev-ruby/text-1.3.0

ruby_add_bdepend doc? ( dev-ruby/yard )
dev-ruby/racc
ruby_add_bdepend test? (
dev-ruby/test-unit:2
dev-ruby/test-unit-rr )

RDEPEND+= sys-devel/gettext
DEPEND+= sys-devel/gettext

all_ruby_prepare() {
# Fix broken racc invocation
sed -i -e '/command_line/ s/#{racc}/-S racc/' Rakefile || die

# Avoid bundler dependency
sed -i -e '/bundler/,/helper.install/ s:^:#:' \
-e 's/helper.gemspec/Gem::Specification.new/' Rakefile || die

# Avoid dependency on developer-specific tools.
sed -i -e '/notify/ s:^:#:' test/run-test.rb || die
}

each_ruby_test() {
# Upstream tries to daisy-chain rake calls but they fail badly
# with our setup, so run it manually.
${RUBY} test/run-test.rb || die tests failed
}

all_ruby_install() {
all_fakegem_install

insinto /usr/share/doc/${PF}
doins -r samples
}






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

2015-01-19 Thread Ian Delaney (idella4)
idella4 15/01/20 06:02:51

  Modified: translationstring-1.3.ebuild ChangeLog
  Log:
  substitute README.txt for README.rst, fixes Bug #537008
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.4  dev-python/translationstring/translationstring-1.3.ebuild

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

Index: translationstring-1.3.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/translationstring/translationstring-1.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- translationstring-1.3.ebuild14 Jan 2015 03:25:38 -  1.3
+++ translationstring-1.3.ebuild20 Jan 2015 06:02:51 -  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/dev-python/translationstring/translationstring-1.3.ebuild,v
 1.3 2015/01/14 03:25:38 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/translationstring/translationstring-1.3.ebuild,v
 1.4 2015/01/20 06:02:51 idella4 Exp $
 
 EAPI=5
 
@@ -21,7 +21,7 @@
 RDEPEND=
 
 # Include COPYRIGHT.txt because the license seems to require it.
-DOCS=( COPYRIGHT.txt README.txt )
+DOCS=( COPYRIGHT.txt README.rst )
 
 python_test() {
esetup.py test || die



1.18 dev-python/translationstring/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   14 Jan 2015 03:25:38 -  1.17
+++ ChangeLog   20 Jan 2015 06:02:51 -  1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/translationstring
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v 
1.17 2015/01/14 03:25:38 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v 
1.18 2015/01/20 06:02:51 idella4 Exp $
+
+  20 Jan 2015; Ian Delaney idel...@gentoo.org translationstring-1.3.ebuild:
+  substitute README.txt for README.rst, fixes Bug #537008
 
   14 Jan 2015; Ian Delaney idel...@gentoo.org -translationstring-0.3.ebuild,
   -translationstring-0.4.ebuild, -translationstring-1.1-r1.ebuild,






[gentoo-commits] gentoo-x86 commit in dev-php/ZendFramework: ZendFramework-1.12.9.ebuild ChangeLog

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/20 07:38:28

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

Revision  ChangesPath
1.2  dev-php/ZendFramework/ZendFramework-1.12.9.ebuild

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

Index: ZendFramework-1.12.9.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ZendFramework-1.12.9.ebuild 7 Oct 2014 18:40:07 -   1.1
+++ ZendFramework-1.12.9.ebuild 20 Jan 2015 07:38:28 -  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-php/ZendFramework/ZendFramework-1.12.9.ebuild,v 1.1 
2014/10/07 18:40:07 grknight Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild,v 1.2 
2015/01/20 07:38:28 jer Exp $
 
 EAPI=5
 
@@ -8,7 +8,7 @@
 
 inherit php-lib-r1
 
-KEYWORDS=~amd64 ~hppa ~ppc ~x86
+KEYWORDS=~amd64 hppa ~ppc ~x86
 
 DESCRIPTION=Zend Framework is a high quality and open source framework for 
developing Web Applications
 HOMEPAGE=http://framework.zend.com/;



1.23 dev-php/ZendFramework/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   9 Oct 2014 20:55:39 -   1.22
+++ ChangeLog   20 Jan 2015 07:38:28 -  1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-php/ZendFramework
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.22 
2014/10/09 20:55:39 grknight Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.23 
2015/01/20 07:38:28 jer Exp $
+
+  20 Jan 2015; Jeroen Roovers j...@gentoo.org ZendFramework-1.12.9.ebuild:
+  Stable for HPPA (bug #523198).
 
 *ZendFramework-1.12.9 (07 Oct 2014)
 






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

2015-01-19 Thread Anthony G. Basile
commit: bea7562b8d441b40991123ada283a91361440678
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Mon Jan 19 21:47:39 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Mon Jan 19 21:47:39 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=bea7562b

app-portage/portage-utils: restrict arches to just musl supported

Package-Manager: portage-2.2.14
Manifest-Sign-Key: 0xF52D4BBA

---
 app-portage/portage-utils/portage-utils-0.53-r99.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/portage-utils/portage-utils-0.53-r99.ebuild 
b/app-portage/portage-utils/portage-utils-0.53-r99.ebuild
index 994f8ec..cffeea6 100644
--- a/app-portage/portage-utils/portage-utils-0.53-r99.ebuild
+++ b/app-portage/portage-utils/portage-utils-0.53-r99.ebuild
@@ -13,7 +13,7 @@ SRC_URI=mirror://gentoo/${P}.tar.xz
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris
+KEYWORDS=amd64 arm ~mips ppc x86
 IUSE=nls static
 
 DEPEND=app-arch/xz-utils



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

2015-01-19 Thread Johannes Huber
commit: ad637a932ea0850626d8536f05716004977142f2
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Mon Jan 19 00:44:11 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jan 19 21:56:19 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ad637a93

[app-editors/kile] Drop debug flag
Handled by kde5.eclass

---
 app-editors/kile/kile-5..ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/kile/kile-5..ebuild 
b/app-editors/kile/kile-5..ebuild
index 9b460a9..b19dae6 100644
--- a/app-editors/kile/kile-5..ebuild
+++ b/app-editors/kile/kile-5..ebuild
@@ -16,7 +16,7 @@ HOMEPAGE=http://kile.sourceforge.net/;
 
 LICENSE=FDL-1.2 GPL-2
 KEYWORDS=
-IUSE=debug +pdf +png
+IUSE=+pdf +png
 
 DEPEND=
$(add_frameworks_dep kconfig)



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

2015-01-19 Thread Johannes Huber
commit: 90b4170e308e881d20423ed1319f27d2bdd1a14d
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Mon Jan 19 00:34:43 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jan 19 21:56:19 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=90b4170e

[kde-apps/kget] Drop debug flag
Handled by kde5.eclass

---
 kde-apps/kget/kget-5..ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kget/kget-5..ebuild b/kde-apps/kget/kget-5..ebuild
index 4f03652..1d65110 100644
--- a/kde-apps/kget/kget-5..ebuild
+++ b/kde-apps/kget/kget-5..ebuild
@@ -4,14 +4,14 @@
 
 EAPI=5
 
-KDE_HANDBOOK=true
+KDE_HANDBOOK=true
 EGIT_BRANCH=kf5_port
 inherit kde5
 
 DESCRIPTION=An advanced download manager for KDE
 HOMEPAGE=http://www.kde.org/applications/internet/kget/;
 KEYWORDS=
-IUSE=debug gpg mms sqlite
+IUSE=gpg mms sqlite
 
 # TODO: not yet ported
 #  bittorrent? ( 



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

2015-01-19 Thread Johannes Huber
commit: 81a470b4a879e35b359566beb0d588b4ffa97d42
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Mon Jan 19 00:29:45 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jan 19 21:56:19 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=81a470b4

[kde-apps/konsole] Make tests optional

---
 .../files/konsole--tests-optional.patch| 27 ++
 kde-apps/konsole/konsole-.ebuild   |  4 
 2 files changed, 31 insertions(+)

diff --git a/kde-apps/konsole/files/konsole--tests-optional.patch 
b/kde-apps/konsole/files/konsole--tests-optional.patch
new file mode 100644
index 000..99eaef8
--- /dev/null
+++ b/kde-apps/konsole/files/konsole--tests-optional.patch
@@ -0,0 +1,27 @@
+--- a/CMakeLists.txt   2015-01-19 01:06:41.388214548 +0100
 b/CMakeLists.txt   2015-01-19 01:13:14.851202822 +0100
+@@ -26,7 +26,7 @@
+ ecm_setup_version(${Konsole_VERSION} VARIABLE_PREFIX KONSOLEPRIVATE
+   SOVERSION ${Konsole_VERSION_MAJOR}
+ )
+-find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Core DBus Widgets Script 
Test)
++find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Core DBus Widgets Script)
+ 
+ find_package(KF5 REQUIRED
+ Bookmarks Completion Config ConfigWidgets
+--- a/src/CMakeLists.txt   2015-01-19 01:06:41.386214548 +0100
 b/src/CMakeLists.txt   2015-01-19 01:15:51.963198139 +0100
+@@ -22,8 +22,11 @@
+   ${CMAKE_CURRENT_BINARY_DIR}/config-konsole.h)
+ 
+ ### Tests
+-add_subdirectory(autotests)
+-add_subdirectory(tests)
++if(BUILD_TESTING)
++  find_package(Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED)
++  add_subdirectory(autotests)
++  add_subdirectory(tests)
++endif()
+ 
+ ### Font Embedder and LineFont.h
+ option(KONSOLE_BUILD_FONTEMBEDDER Konsole: build fontembedder executable 
OFF)

diff --git a/kde-apps/konsole/konsole-.ebuild 
b/kde-apps/konsole/konsole-.ebuild
index 76f56c9..fe49ed6 100644
--- a/kde-apps/konsole/konsole-.ebuild
+++ b/kde-apps/konsole/konsole-.ebuild
@@ -5,6 +5,8 @@
 EAPI=5
 
 KDE_HANDBOOK=true
+KDE_TEST=true
+VIRTUALX_REQUIRED=test
 inherit kde5
 
 DESCRIPTION=KDE's terminal emulator
@@ -46,6 +48,8 @@ RDEPEND=${DEPEND}
!kde-base/konsole:4
 
 
+PATCHES=( ${FILESDIR}/${PN}--tests-optional.patch )
+
 src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package X X11)



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

2015-01-19 Thread Johannes Huber
commit: 8440fac77cf5050fe3a85e903a52f46afa6a1d40
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Mon Jan 19 02:13:11 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Mon Jan 19 21:56:19 2015 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=8440fac7

[kde-apps/dolphin] Make tests optional

---
 kde-apps/dolphin/dolphin-5..ebuild |  6 +-
 kde-apps/dolphin/files/dolphin-5.-tests-optional.patch | 11 +++
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/kde-apps/dolphin/dolphin-5..ebuild 
b/kde-apps/dolphin/dolphin-5..ebuild
index ce3acdb..05564bd 100644
--- a/kde-apps/dolphin/dolphin-5..ebuild
+++ b/kde-apps/dolphin/dolphin-5..ebuild
@@ -6,7 +6,9 @@ EAPI=5
 
 EGIT_BRANCH=frameworks
 KMNAME=kde-baseapps
-KDE_HANDBOOK=true
+KDE_HANDBOOK=true
+KDE_TEST=true
+VIRTUALX_REQUIRED=test
 inherit kde5
 
 DESCRIPTION=KDE filemanager focusing on usability
@@ -53,6 +55,8 @@ RDEPEND=${DEPEND}
!kde-base/dolphin:4
 
 
+PATCHES=( ${FILESDIR}/${PN}-5.-tests-optional.patch )
+
 S=${S}/${PN}
 
 src_configure() {

diff --git a/kde-apps/dolphin/files/dolphin-5.-tests-optional.patch 
b/kde-apps/dolphin/files/dolphin-5.-tests-optional.patch
new file mode 100644
index 000..43aa648
--- /dev/null
+++ b/kde-apps/dolphin/files/dolphin-5.-tests-optional.patch
@@ -0,0 +1,11 @@
+--- a/src/CMakeLists.txt   2015-01-19 02:45:45.207037408 +0100
 b/src/CMakeLists.txt   2015-01-19 02:52:38.558025089 +0100
+@@ -334,4 +334,7 @@
+ install( PROGRAMS settings/services/servicemenuinstallation DESTINATION 
${BIN_INSTALL_DIR} )
+ install( PROGRAMS settings/services/servicemenudeinstallation DESTINATION 
${BIN_INSTALL_DIR} )
+ 
+-add_subdirectory(tests)
++if(BUILD_TESTING)
++find_package(Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED)
++add_subdirectory(tests)
++endif()



[gentoo-commits] gentoo-x86 commit in app-office/ledger: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 22:20:32

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.7  app-office/ledger/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-office/ledger/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml23 Sep 2011 21:54:31 -  1.6
+++ metadata.xml19 Jan 2015 22:20:32 -  1.7
@@ -2,7 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
 maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
 /maintainer
 /pkgmetadata



1.34 app-office/ledger/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/ledger/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   19 Jan 2015 20:30:38 -  1.33
+++ ChangeLog   19 Jan 2015 22:20:32 -  1.34
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/ledger
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ChangeLog,v 1.33 
2015/01/19 20:30:38 yac Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ChangeLog,v 1.34 
2015/01/19 22:20:32 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Jan Matejka y...@gentoo.org ledger-3.1.ebuild:
   Fix things  1. download tar.gz instead of zip (which was missing unzip in






[gentoo-commits] gentoo-x86 commit in dev-haskell/editline/files: - New directory

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 22:23:40

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-haskell/editline/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-haskell/editline: editline-0.2.1.1.ebuild ChangeLog editline-0.2.1.0.ebuild

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 22:30:07

  Modified: editline-0.2.1.1.ebuild ChangeLog
  Removed:  editline-0.2.1.0.ebuild
  Log:
  Port to ghc-7.8 (bug #537058 by Toralf Förster).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  ChangesPath
1.3  dev-haskell/editline/editline-0.2.1.1.ebuild

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

Index: editline-0.2.1.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/editline/editline-0.2.1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- editline-0.2.1.1.ebuild 25 Jul 2014 09:16:37 -  1.2
+++ editline-0.2.1.1.ebuild 19 Jan 2015 22:30:07 -  1.3
@@ -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/dev-haskell/editline/editline-0.2.1.1.ebuild,v 1.2 
2014/07/25 09:16:37 slyfox Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-haskell/editline/editline-0.2.1.1.ebuild,v 1.3 
2015/01/19 22:30:07 slyfox Exp $
 
 EAPI=5
 
 # ebuild generated by hackport 0.3.
 
 CABAL_FEATURES=lib profile haddock hoogle hscolour
-inherit haskell-cabal
+inherit eutils haskell-cabal
 
 DESCRIPTION=Bindings to the editline library (libedit)
 HOMEPAGE=http://code.haskell.org/editline;
@@ -19,6 +19,13 @@
 IUSE=
 
 RDEPEND==dev-lang/ghc-6.10.4:=
-   dev-libs/libedit
+   dev-libs/libedit
 DEPEND=${RDEPEND}
-   =dev-haskell/cabal-1.2
+   =dev-haskell/cabal-1.2
+
+src_prepare() {
+   epatch ${FILESDIR}/${P}-ghc-7.8.patch
+
+   cabal_chdeps \
+   'base  4.7' 'base'
+}



1.5  dev-haskell/editline/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/editline/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   25 Jul 2014 09:16:37 -  1.4
+++ ChangeLog   19 Jan 2015 22:30:07 -  1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-haskell/editline
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/editline/ChangeLog,v 1.4 
2014/07/25 09:16:37 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/editline/ChangeLog,v 1.5 
2015/01/19 22:30:07 slyfox Exp $
+
+  19 Jan 2015; Sergei Trofimovich sly...@gentoo.org
+  +files/editline-0.2.1.1-ghc-7.8.patch, -editline-0.2.1.0.ebuild,
+  editline-0.2.1.1.ebuild:
+  Port to ghc-7.8 (bug #537058 by Toralf Förster).
 
   25 Jul 2014; Sergei Trofimovich sly...@gentoo.org editline-0.2.1.0.ebuild,
   editline-0.2.1.1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-haskell/editline/files: editline-0.2.1.1-ghc-7.8.patch

2015-01-19 Thread Sergei Trofimovich (slyfox)
slyfox  15/01/19 22:30:07

  Added:editline-0.2.1.1-ghc-7.8.patch
  Log:
  Port to ghc-7.8 (bug #537058 by Toralf Förster).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  ChangesPath
1.1  dev-haskell/editline/files/editline-0.2.1.1-ghc-7.8.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/editline/files/editline-0.2.1.1-ghc-7.8.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/editline/files/editline-0.2.1.1-ghc-7.8.patch?rev=1.1content-type=text/plain

Index: editline-0.2.1.1-ghc-7.8.patch
===
diff --git a/System/Console/Editline/Readline.hsc 
b/System/Console/Editline/Readline.hsc
index 1ea9d6c..3b95b59 100644
--- a/System/Console/Editline/Readline.hsc
+++ b/System/Console/Editline/Readline.hsc
@@ -173,7 +173,7 @@ import Foreign.Marshal.Array ( mallocArray, peekArray0, 
pokeArray0 )
 import Foreign.C.Types ( CInt(..), CChar, CFile )
 import Foreign.C.String( newCString, peekCString, withCString,
  castCharToCChar, castCCharToChar )
-import GHC.Handle  ( fdToHandle )
+import GHC.IO.Handle.FD( fdToHandle )
 
 {-# CFILES HsReadline_cbits.c #-}
 






[gentoo-commits] gentoo-x86 commit in net-libs/rest: ChangeLog rest-0.7.92-r1.ebuild

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 10:41:51

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

Revision  ChangesPath
1.32 net-libs/rest/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/rest/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   19 Dec 2014 13:41:52 -  1.31
+++ ChangeLog   19 Jan 2015 10:41:51 -  1.32
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/rest
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rest/ChangeLog,v 1.31 2014/12/19 
13:41:52 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rest/ChangeLog,v 1.32 2015/01/19 
10:41:51 jer Exp $
+
+  19 Jan 2015; Jeroen Roovers j...@gentoo.org rest-0.7.92-r1.ebuild:
+  Stable for HPPA (bug #536694).
 
   19 Dec 2014; Pacho Ramos pa...@gentoo.org rest-0.7.92.ebuild:
   amd64 stable, bug 529964



1.2  net-libs/rest/rest-0.7.92-r1.ebuild

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

Index: rest-0.7.92-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/rest/rest-0.7.92-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rest-0.7.92-r1.ebuild   22 Nov 2014 20:46:13 -  1.1
+++ rest-0.7.92-r1.ebuild   19 Jan 2015 10:41:51 -  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/net-libs/rest/rest-0.7.92-r1.ebuild,v 1.1 
2014/11/22 20:46:13 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rest/rest-0.7.92-r1.ebuild,v 1.2 
2015/01/19 10:41:51 jer Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -14,7 +14,7 @@
 LICENSE=LGPL-2.1
 SLOT=0.7
 IUSE=+gnome +introspection test
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
 
 # Coverage testing should not be enabled
 RDEPEND=






[gentoo-commits] gentoo-x86 commit in net-libs/gssdp: gssdp-0.14.11.ebuild ChangeLog

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 10:41:11

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

Revision  ChangesPath
1.2  net-libs/gssdp/gssdp-0.14.11.ebuild

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

Index: gssdp-0.14.11.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/gssdp/gssdp-0.14.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gssdp-0.14.11.ebuild14 Jan 2015 10:23:32 -  1.1
+++ gssdp-0.14.11.ebuild19 Jan 2015 10:41:11 -  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/net-libs/gssdp/gssdp-0.14.11.ebuild,v 1.1 
2015/01/14 10:23:32 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/gssdp-0.14.11.ebuild,v 1.2 
2015/01/19 10:41:11 jer Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -14,7 +14,7 @@
 
 LICENSE=LGPL-2
 SLOT=0/3
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
 IUSE=+introspection +gtk
 
 RDEPEND=



1.83 net-libs/gssdp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gssdp/ChangeLog?rev=1.83view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gssdp/ChangeLog?rev=1.83content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gssdp/ChangeLog?r1=1.82r2=1.83

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/gssdp/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog   14 Jan 2015 10:23:32 -  1.82
+++ ChangeLog   19 Jan 2015 10:41:11 -  1.83
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/gssdp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/ChangeLog,v 1.82 2015/01/14 
10:23:32 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gssdp/ChangeLog,v 1.83 2015/01/19 
10:41:11 jer Exp $
+
+  19 Jan 2015; Jeroen Roovers j...@gentoo.org gssdp-0.14.11.ebuild:
+  Stable for HPPA (bug #536694).
 
 *gssdp-0.14.11 (14 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-libs/liblogging: ChangeLog liblogging-1.0.5.ebuild

2015-01-19 Thread Alexys Jacob (ultrabug)
ultrabug15/01/19 12:09:25

  Modified: ChangeLog
  Added:liblogging-1.0.5.ebuild
  Log:
  version bump fix #536772 thx to Thomas D.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.7  dev-libs/liblogging/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/liblogging/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   5 Oct 2014 07:24:54 -   1.6
+++ ChangeLog   19 Jan 2015 12:09:25 -  1.7
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/liblogging
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblogging/ChangeLog,v 1.6 
2014/10/05 07:24:54 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblogging/ChangeLog,v 1.7 
2015/01/19 12:09:25 ultrabug Exp $
+
+*liblogging-1.0.5 (19 Jan 2015)
+
+  19 Jan 2015; Ultrabug ultra...@gentoo.org +liblogging-1.0.5.ebuild:
+  version bump fix #536772 thx to Thomas D.
 
   05 Oct 2014; Agostino Sarubbo a...@gentoo.org liblogging-1.0.4.ebuild:
   Stable for x86, wrt bug #524290



1.1  dev-libs/liblogging/liblogging-1.0.5.ebuild

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

Index: liblogging-1.0.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/liblogging/liblogging-1.0.5.ebuild,v 1.1 
2015/01/19 12:09:25 ultrabug Exp $

EAPI=5

inherit autotools-utils eutils

DESCRIPTION=Liblogging is an easy to use, portable, open source library for 
system logging
HOMEPAGE=http://www.liblogging.org;
SRC_URI=http://download.rsyslog.com/liblogging/${P}.tar.gz;

LICENSE=BSD-2
SLOT=0/0
KEYWORDS=~amd64 ~arm ~hppa ~x86
IUSE=rfc3195 static-libs +stdlog systemd

RDEPEND=systemd? ( sys-apps/systemd )

DEPEND=
${RDEPEND}
virtual/pkgconfig


DOCS=( ChangeLog )

AUTOTOOLS_IN_SOURCE_BUILD=1

src_configure() {
local myeconfargs=(
$(use_enable rfc3195)
$(use_enable stdlog)
$(use_enable systemd journal)
)
autotools-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in sys-process/procps: procps-3.3.9-r2.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 13:56:11

  Modified: procps-3.3.9-r2.ebuild ChangeLog
  Log:
  Stable for x86, bug #525060
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.8  sys-process/procps/procps-3.3.9-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/procps-3.3.9-r2.ebuild?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/procps-3.3.9-r2.ebuild?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/procps-3.3.9-r2.ebuild?r1=1.7r2=1.8

Index: procps-3.3.9-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/procps/procps-3.3.9-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- procps-3.3.9-r2.ebuild  2 Jan 2015 12:16:54 -   1.7
+++ procps-3.3.9-r2.ebuild  19 Jan 2015 13:56:11 -  1.8
@@ -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/sys-process/procps/procps-3.3.9-r2.ebuild,v 
1.7 2015/01/02 12:16:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/procps-3.3.9-r2.ebuild,v 
1.8 2015/01/19 13:56:11 blueness Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=+ncurses nls selinux static-libs systemd test unicode
 
 RDEPEND=!sys-apps/sysvinit-2.88-r6



1.134sys-process/procps/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/ChangeLog?rev=1.134view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/ChangeLog?rev=1.134content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/ChangeLog?r1=1.133r2=1.134

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-process/procps/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog   2 Jan 2015 12:16:54 -   1.133
+++ ChangeLog   19 Jan 2015 13:56:11 -  1.134
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/procps
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/ChangeLog,v 1.133 
2015/01/02 12:16:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/ChangeLog,v 1.134 
2015/01/19 13:56:11 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org procps-3.3.9-r2.ebuild:
+  Stable for x86, bug #525060
 
   02 Jan 2015; Agostino Sarubbo a...@gentoo.org procps-3.3.9-r2.ebuild:
   Stable for sparc, wrt bug #525060






[gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.5.1.ebuild unbound-1.4.21-r2.ebuild unbound-1.5.0-r1.ebuild unbound-1.5.0.ebuild unbound-1.4.21-r1.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 14:09:55

  Modified: ChangeLog
  Removed:  unbound-1.5.1.ebuild unbound-1.4.21-r2.ebuild
unbound-1.5.0-r1.ebuild unbound-1.5.0.ebuild
unbound-1.4.21-r1.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.87 net-dns/unbound/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.86r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   19 Jan 2015 14:08:32 -  1.86
+++ ChangeLog   19 Jan 2015 14:09:55 -  1.87
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/unbound
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.86 2015/01/19 
14:08:32 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.87 2015/01/19 
14:09:55 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -unbound-1.4.21-r1.ebuild,
+  -unbound-1.4.21-r2.ebuild, -unbound-1.5.0.ebuild, -unbound-1.5.0-r1.ebuild,
+  -unbound-1.5.1.ebuild:
+  Remove old.
 
 *unbound-1.5.1-r2 (19 Jan 2015)
 






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

2015-01-19 Thread Pacho Ramos (pacho)
pacho   15/01/19 09:36:21

  Modified: ibus-1.5.9-r1.ebuild ChangeLog
  Log:
  eautoreconf is needed (#536022 by OGINO Masanori), USE vala needs USE 
introspection (#534220 by Andrew Savchenko)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  ChangesPath
1.3  app-i18n/ibus/ibus-1.5.9-r1.ebuild

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

Index: ibus-1.5.9-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus/ibus-1.5.9-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ibus-1.5.9-r1.ebuild2 Jan 2015 10:10:04 -   1.2
+++ ibus-1.5.9-r1.ebuild19 Jan 2015 09:36:21 -  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/app-i18n/ibus/ibus-1.5.9-r1.ebuild,v 1.2 
2015/01/02 10:10:04 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ibus-1.5.9-r1.ebuild,v 1.3 
2015/01/19 09:36:21 pacho Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 # Valac is needed when building from git for the engine
 UPSTREAM_VER=0
 
-inherit bash-completion-r1 eutils gnome2-utils multilib python-single-r1 
readme.gentoo vala virtualx
+inherit autotools bash-completion-r1 eutils gnome2-utils multilib 
python-single-r1 readme.gentoo vala virtualx
 
 DESCRIPTION=Intelligent Input Bus for Linux / Unix OS
 HOMEPAGE=http://code.google.com/p/ibus/;
@@ -20,8 +20,10 @@
 SLOT=0
 KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
 IUSE=deprecated gconf gtk +gtk3 +introspection nls +python test +vala wayland 
+X
-REQUIRED_USE=|| ( gtk gtk3 X )
+REQUIRED_USE=
+   || ( gtk gtk3 X )
deprecated? ( python )
+   vala? ( introspection )
python? (
${PYTHON_REQUIRED_USE}
|| ( deprecated ( gtk3 introspection ) ) ) #342903
@@ -112,6 +114,8 @@
sed -e 's/dconf update/:/' \
-i data/dconf/Makefile.{am,in} || die
use vala  vala_src_prepare
+
+   eautoreconf
 }
 
 src_configure() {



1.156app-i18n/ibus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog   2 Jan 2015 10:10:04 -   1.155
+++ ChangeLog   19 Jan 2015 09:36:21 -  1.156
@@ -1,6 +1,10 @@
 # ChangeLog for app-i18n/ibus
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v 1.155 2015/01/02 
10:10:04 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus/ChangeLog,v 1.156 2015/01/19 
09:36:21 pacho Exp $
+
+  19 Jan 2015; Pacho Ramos pa...@gentoo.org ibus-1.5.9-r1.ebuild:
+  eautoreconf is needed (#536022 by OGINO Masanori), USE vala needs USE
+  introspection (#534220 by Andrew Savchenko)
 
   02 Jan 2015; Ben de Groot yng...@gentoo.org ibus-1.5.9-r1.ebuild:
   Do not depend on gconf unconditionally






[gentoo-commits] gentoo-x86 commit in dev-libs/nanomsg: ChangeLog nanomsg-0.5.ebuild

2015-01-19 Thread Sergey Popov (pinkbyte)
pinkbyte15/01/19 11:22:22

  Modified: ChangeLog nanomsg-0.5.ebuild
  Log:
  Add ~mips/~ppc/~ppc64/~s390 keywords, wrt bug #536804
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0x1F357D42)

Revision  ChangesPath
1.12 dev-libs/nanomsg/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   16 Nov 2014 10:01:45 -  1.11
+++ ChangeLog   19 Jan 2015 11:22:22 -  1.12
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nanomsg
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/ChangeLog,v 1.11 
2014/11/16 10:01:45 djc Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/ChangeLog,v 1.12 
2015/01/19 11:22:22 pinkbyte Exp $
+
+  19 Jan 2015; Sergey Popov pinkb...@gentoo.org nanomsg-0.5.ebuild:
+  Add ~mips/~ppc/~ppc64/~s390 keywords, wrt bug #536804
 
   16 Nov 2014; Dirkjan Ochtman d...@gentoo.org -nanomsg-0.2.ebuild,
   -nanomsg-0.3.ebuild:



1.2  dev-libs/nanomsg/nanomsg-0.5.ebuild

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

Index: nanomsg-0.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/nanomsg-0.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nanomsg-0.5.ebuild  16 Nov 2014 10:01:02 -  1.1
+++ nanomsg-0.5.ebuild  19 Jan 2015 11:22:22 -  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-libs/nanomsg/nanomsg-0.5.ebuild,v 1.1 
2014/11/16 10:01:02 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/nanomsg-0.5.ebuild,v 1.2 
2015/01/19 11:22:22 pinkbyte Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=MIT
 SLOT=0
-KEYWORDS=~amd64 ~arm ~x86
+KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~s390 ~x86
 IUSE=
 
 DEPEND=






[gentoo-commits] gentoo-x86 commit in net-misc/wicd: metadata.xml wicd-1.7.3.ebuild ChangeLog wicd-1.7.2.4-r2.ebuild

2015-01-19 Thread Thomas Kahle (tomka)
tomka   15/01/19 12:32:36

  Modified: metadata.xml ChangeLog
  Added:wicd-1.7.3.ebuild
  Removed:  wicd-1.7.2.4-r2.ebuild
  Log:
  bump to 1.7.3, remove old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
565C32BC)

Revision  ChangesPath
1.14 net-misc/wicd/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/metadata.xml?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/metadata.xml?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/metadata.xml?r1=1.13r2=1.14

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/metadata.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- metadata.xml2 Jun 2013 11:00:43 -   1.13
+++ metadata.xml19 Jan 2015 12:32:36 -  1.14
@@ -14,6 +14,7 @@
flag name='mac4lin'Change default icons to mac4lin icon set/flag
flag name='ncurses'Installs a ncurses UI/flag
flag name='pm-utils'Installs the pm-utils hooks for suspend/resume and
-   requires pkgsys-power/pm-utils/pkg/flag
+   requires pkgsys-power/pm-utils/pkg/flag
+   flag name='gnome-shell'Install gnome-shell extension/flag
 /use
 /pkgmetadata



1.151net-misc/wicd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog   2 Aug 2014 18:18:19 -   1.150
+++ ChangeLog   19 Jan 2015 12:32:36 -  1.151
@@ -1,6 +1,14 @@
 # ChangeLog for net-misc/wicd
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.150 2014/08/02 
18:18:19 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.151 2015/01/19 
12:32:36 tomka Exp $
+
+*wicd-1.7.3 (19 Jan 2015)
+
+  19 Jan 2015; Thomas Kahle to...@gentoo.org
+  +files/wicd-1.7.3-add-missing-gnome-shell-extension.patch, 
+wicd-1.7.3.ebuild,
+  -files/wicd-1.7.1_pre20111210-fix-config-reading.patch,
+  -wicd-1.7.2.4-r2.ebuild, metadata.xml:
+  bump to 1.7.3, remove old
 
   02 Aug 2014; Agostino Sarubbo a...@gentoo.org wicd-1.7.2.4-r3.ebuild:
   Stable for ppc64, wrt bug #509752



1.1  net-misc/wicd/wicd-1.7.3.ebuild

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

Index: wicd-1.7.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.3.ebuild,v 1.1 
2015/01/19 12:32:36 tomka Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=ncurses?,xml

inherit eutils distutils-r1 linux-info readme.gentoo systemd

DESCRIPTION=A lightweight wired and wireless network manager for Linux
HOMEPAGE=https://launchpad.net/wicd;
SRC_URI=http://launchpad.net/wicd/1.7/${PV}/+download/${P}.tar.gz
mac4lin? ( 
http://dev.gentoo.org/~anarchy/dist/wicd-mac4lin-icons.tar.xz )
ambiance? ( 
http://freetimesblog.altervista.org/blog/wp-content/uploads/downloads/2010/05/Icone-Wicd-Lucid.tar.gz
 )

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
IUSE=doc X ambiance +gtk ioctl libnotify mac4lin ncurses nls +pm-utils 
gnome-shell

DEPEND=nls? ( dev-python/Babel )
RDEPEND=${PYTHON_DEPS}
dev-python/dbus-python[${PYTHON_USEDEP}]
X? (
gtk? ( dev-python/pygtk )
|| (
x11-misc/ktsuss
x11-libs/gksu
kde-base/kdesu
)
)
|| (
net-misc/dhcpcd
net-misc/dhcp
net-misc/pump
)
net-wireless/wireless-tools
net-wireless/wpa_supplicant
|| (
sys-apps/net-tools
sys-apps/ethtool
)
!gtk? ( dev-python/pygobject:2[${PYTHON_USEDEP}] )
ioctl? ( dev-python/python-iwscan dev-python/python-wpactrl )
libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )
ncurses? 

[gentoo-commits] gentoo-x86 commit in sys-apps/busybox: busybox-1.23.0.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 14:04:02

  Modified: busybox-1.23.0.ebuild ChangeLog
  Log:
  Stable on ppc, ppc64 and x86.  Bug #530688.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  sys-apps/busybox/busybox-1.23.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/busybox-1.23.0.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/busybox-1.23.0.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/busybox-1.23.0.ebuild?r1=1.5r2=1.6

Index: busybox-1.23.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.23.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- busybox-1.23.0.ebuild   18 Jan 2015 20:24:20 -  1.5
+++ busybox-1.23.0.ebuild   19 Jan 2015 14:04:02 -  1.6
@@ -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/sys-apps/busybox/busybox-1.23.0.ebuild,v 
1.5 2015/01/18 20:24:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.23.0.ebuild,v 
1.6 2015/01/19 14:04:02 blueness Exp $
 
 # See `man savedconfig.eclass` for info on how to use USE=savedconfig.
 
@@ -16,7 +16,7 @@
 else
MY_P=${PN}-${PV/_/-}
SRC_URI=http://www.busybox.net/downloads/${MY_P}.tar.bz2;
-   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux
+   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux
 fi
 
 LICENSE=GPL-2



1.377sys-apps/busybox/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.377view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/ChangeLog?rev=1.377content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/ChangeLog?r1=1.376r2=1.377

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v
retrieving revision 1.376
retrieving revision 1.377
diff -u -r1.376 -r1.377
--- ChangeLog   18 Jan 2015 20:24:20 -  1.376
+++ ChangeLog   19 Jan 2015 14:04:02 -  1.377
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/busybox
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.376 
2015/01/18 20:24:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/ChangeLog,v 1.377 
2015/01/19 14:04:02 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org busybox-1.23.0.ebuild:
+  Stable on ppc, ppc64 and x86.  Bug #530688.
 
   18 Jan 2015; Markus Meier mae...@gentoo.org busybox-1.23.0.ebuild:
   arm stable, bug #530688






[gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.5.1-r2.ebuild unbound-1.5.1-r1.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 14:08:32

  Modified: ChangeLog
  Added:unbound-1.5.1-r2.ebuild
  Removed:  unbound-1.5.1-r1.ebuild
  Log:
  Use upstream patch for 3.14 LTS issue.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.86 net-dns/unbound/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.86view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.86content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.85r2=1.86

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog   15 Jan 2015 08:39:46 -  1.85
+++ ChangeLog   19 Jan 2015 14:08:32 -  1.86
@@ -1,6 +1,13 @@
 # ChangeLog for net-dns/unbound
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.85 2015/01/15 
08:39:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.86 2015/01/19 
14:08:32 radhermit Exp $
+
+*unbound-1.5.1-r2 (19 Jan 2015)
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -unbound-1.5.1-r1.ebuild,
+  +unbound-1.5.1-r2.ebuild, -files/unbound-1.5.1-pmtudisc.patch,
+  +files/0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch:
+  Use upstream patch for 3.14 LTS issue.
 
   15 Jan 2015; Agostino Sarubbo a...@gentoo.org unbound-1.4.22-r1.ebuild:
   Stable for ppc, wrt bug #536226



1.1  net-dns/unbound/unbound-1.5.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/unbound-1.5.1-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/unbound-1.5.1-r2.ebuild?rev=1.1content-type=text/plain

Index: unbound-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/net-dns/unbound/unbound-1.5.1-r2.ebuild,v 
1.1 2015/01/19 14:08:32 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit eutils flag-o-matic multilib-minimal python-single-r1 systemd user

MY_P=${PN}-${PV/_/}
DESCRIPTION=A validating, recursive and caching DNS resolver
HOMEPAGE=http://unbound.net/;
SRC_URI=http://unbound.net/downloads/${MY_P}.tar.gz;

LICENSE=BSD GPL-2
SLOT=0
KEYWORDS=~amd64 ~hppa ~x86
IUSE=debug dnstap +ecdsa gost python selinux static-libs test threads
REQUIRED_USE=python? ( ${PYTHON_REQUIRED_USE} )

# Note: expat is needed by executable only but the Makefile is custom
# and doesn't make it possible to easily install the library without
# the executables. MULTILIB_USEDEP may be dropped once build system
# is fixed.

CDEPEND==dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]
=dev-libs/libevent-2.0.21[${MULTILIB_USEDEP}]
=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}]
dnstap? (
dev-libs/fstrm[${MULTILIB_USEDEP}]
=dev-libs/protobuf-c-1.0.2-r1[${MULTILIB_USEDEP}]
)
ecdsa? ( dev-libs/openssl:0[-bindist] )
python? ( ${PYTHON_DEPS} )

DEPEND=${CDEPEND}
python? ( dev-lang/swig )
test? (
net-dns/ldns-utils[examples]
dev-util/splint
app-text/wdiff
)

RDEPEND=${CDEPEND}
selinux? ( sec-policy/selinux-bind )

# bug #347415
RDEPEND=${RDEPEND}
net-dns/dnssec-root

S=${WORKDIR}/${MY_P}

pkg_setup() {
enewgroup unbound
enewuser unbound -1 -1 /etc/unbound unbound

use python  python-single-r1_pkg_setup
}

src_prepare() {
# To avoid below error messages, set 'trust-anchor-file' to same value 
in
# 'auto-trust-anchor-file'.
# [23109:0] error: Could not open autotrust file for writing,
# /etc/dnssec/root-anchors.txt: Permission denied
epatch ${FILESDIR}/${PN}-1.4.12-gentoo.patch
epatch 
${FILESDIR}/0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch

# required for the python part
multilib_copy_sources
}

src_configure() {
[[ ${CHOST} == *-darwin* ]] || append-ldflags -Wl,-z,noexecstack
multilib-minimal_src_configure
}

multilib_src_configure() {
econf \
$(use_enable debug) \
$(use_enable gost) \
$(use_enable dnstap) \
$(use_enable ecdsa) \
$(use_enable static-libs static) \
$(multilib_native_use_with python pythonmodule) \
$(multilib_native_use_with python pyunbound) \
$(use_with threads pthreads) \
--disable-rpath \
   

[gentoo-commits] gentoo-x86 commit in net-dns/unbound/files: 0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch unbound-1.5.1-pmtudisc.patch

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 14:08:32

  Added:   
0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch
  Removed:  unbound-1.5.1-pmtudisc.patch
  Log:
  Use upstream patch for 3.14 LTS issue.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.1  
net-dns/unbound/files/0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/files/0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/unbound/files/0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch?rev=1.1content-type=text/plain

Index: 0001-fix-fail-to-start-on-Linux-LTS-3.14.X-ignore.patch
===
From 858da540f70a4411ad8fbe7144cef6ce9da18f89 Mon Sep 17 00:00:00 2001
From: wouter wouter@be551aaa-1e26-0410-a405-d3ace91eadb9
Date: Mon, 5 Jan 2015 13:51:22 +
Subject: [PATCH] - Fix #634: fix fail to start on Linux LTS 3.14.X, ignores
 missing   IP_MTU_DISCOVER OMIT option.

--- a/services/listen_dnsport.c
+++ b/services/listen_dnsport.c
@@ -368,29 +368,47 @@ create_udp_sock(int family, int socktype, struct 
sockaddr* addr,
  * (and also uses the interface mtu to determine the size of the packets).
  * So there won't be any EMSGSIZE error.  Against DNS fragmentation attacks.
  * FreeBSD already has same semantics without setting the option. */
-#if defined(IP_PMTUDISC_OMIT)
-   int action = IP_PMTUDISC_OMIT;
-#else
-   int action = IP_PMTUDISC_DONT;
-#endif
+   int omit_set = 0;
+   int action;
+#   if defined(IP_PMTUDISC_OMIT)
+   action = IP_PMTUDISC_OMIT;
if (setsockopt(s, IPPROTO_IP, IP_MTU_DISCOVER, 
action, (socklen_t)sizeof(action))  0) {
-   log_err(setsockopt(..., IP_MTU_DISCOVER, 
-#if defined(IP_PMTUDISC_OMIT)
-   IP_PMTUDISC_OMIT
+
+   if (errno != EINVAL) {
+   log_err(setsockopt(..., IP_MTU_DISCOVER, 
IP_PMTUDISC_OMIT...) failed: %s,
+   strerror(errno));
+
+#ifndef USE_WINSOCK
+   close(s);
 #else
-   IP_PMTUDISC_DONT
+   closesocket(s);
 #endif
-   ...) failed: %s,
-   strerror(errno));
+   *noproto = 0;
+   *inuse = 0;
+   return -1;
+   }
+   }
+   else
+   {
+   omit_set = 1;
+   }
+#   endif
+   if (omit_set == 0) {
+   action = IP_PMTUDISC_DONT;
+   if (setsockopt(s, IPPROTO_IP, IP_MTU_DISCOVER,
+   action, (socklen_t)sizeof(action))  0) {
+   log_err(setsockopt(..., IP_MTU_DISCOVER, 
IP_PMTUDISC_DONT...) failed: %s,
+   strerror(errno));
 #ifndef USE_WINSOCK
-   close(s);
+   close(s);
 #else
-   closesocket(s);
+   closesocket(s);
 #endif
-   *noproto = 0;
-   *inuse = 0;
-   return -1;
+   *noproto = 0;
+   *inuse = 0;
+   return -1;
+   }
}
 #  elif defined(IP_DONTFRAG)
int off = 0;






[gentoo-commits] gentoo-x86 commit in dev-python/cliapp: cliapp-1.20140315.ebuild cliapp-1.20130808.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:54

  Modified: cliapp-1.20140315.ebuild cliapp-1.20130808.ebuild
ChangeLog
  Log:
  Add ~ppc64, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-python/cliapp/cliapp-1.20140315.ebuild

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

Index: cliapp-1.20140315.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20140315.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cliapp-1.20140315.ebuild19 Jan 2015 13:17:20 -  1.4
+++ cliapp-1.20140315.ebuild19 Jan 2015 13:17:54 -  1.5
@@ -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-python/cliapp/cliapp-1.20140315.ebuild,v 1.4 
2015/01/19 13:17:20 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20140315.ebuild,v 1.5 
2015/01/19 13:17:54 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
 IUSE=test
 
 DEPEND=${PYTHON_DEPS}



1.3  dev-python/cliapp/cliapp-1.20130808.ebuild

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

Index: cliapp-1.20130808.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20130808.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cliapp-1.20130808.ebuild19 Jan 2015 13:17:20 -  1.2
+++ cliapp-1.20130808.ebuild19 Jan 2015 13:17:54 -  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-python/cliapp/cliapp-1.20130808.ebuild,v 1.2 
2015/01/19 13:17:20 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20130808.ebuild,v 1.3 
2015/01/19 13:17:54 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
 IUSE=test
 
 DEPEND=${PYTHON_DEPS}



1.14 dev-python/cliapp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   19 Jan 2015 13:17:20 -  1.13
+++ ChangeLog   19 Jan 2015 13:17:54 -  1.14
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/cliapp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.13 
2015/01/19 13:17:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.14 
2015/01/19 13:17:54 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org cliapp-1.20130808.ebuild,
+  cliapp-1.20140315.ebuild:
+  Add ~ppc64, wrt bug #530672
 
   19 Jan 2015; Agostino Sarubbo a...@gentoo.org cliapp-1.20130808.ebuild,
   cliapp-1.20140315.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/ttystatus: ttystatus-0.22.ebuild ttystatus-0.23.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:57

  Modified: ttystatus-0.22.ebuild ttystatus-0.23.ebuild
ChangeLog
  Log:
  Add ~ppc64, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-python/ttystatus/ttystatus-0.22.ebuild

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

Index: ttystatus-0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.22.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ttystatus-0.22.ebuild   19 Jan 2015 13:17:22 -  1.4
+++ ttystatus-0.22.ebuild   19 Jan 2015 13:17:57 -  1.5
@@ -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-python/ttystatus/ttystatus-0.22.ebuild,v 1.4 
2015/01/19 13:17:22 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.22.ebuild,v 1.5 
2015/01/19 13:17:57 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.7  dev-python/ttystatus/ttystatus-0.23.ebuild

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

Index: ttystatus-0.23.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.23.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ttystatus-0.23.ebuild   19 Jan 2015 13:17:22 -  1.6
+++ ttystatus-0.23.ebuild   19 Jan 2015 13:17:57 -  1.7
@@ -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-python/ttystatus/ttystatus-0.23.ebuild,v 1.6 
2015/01/19 13:17:22 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.23.ebuild,v 1.7 
2015/01/19 13:17:57 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=amd64 ~arm ~hppa ~ppc x86
+KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.16 dev-python/ttystatus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   19 Jan 2015 13:17:22 -  1.15
+++ ChangeLog   19 Jan 2015 13:17:57 -  1.16
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/ttystatus
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ChangeLog,v 1.15 
2015/01/19 13:17:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ChangeLog,v 1.16 
2015/01/19 13:17:57 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org ttystatus-0.22.ebuild,
+  ttystatus-0.23.ebuild:
+  Add ~ppc64, wrt bug #530672
 
   19 Jan 2015; Agostino Sarubbo a...@gentoo.org ttystatus-0.22.ebuild,
   ttystatus-0.23.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-util/cmdtest: cmdtest-0.6.ebuild cmdtest-0.10.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:18:00

  Modified: cmdtest-0.6.ebuild cmdtest-0.10.ebuild ChangeLog
  Log:
  Add ~ppc64, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-util/cmdtest/cmdtest-0.6.ebuild

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

Index: cmdtest-0.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cmdtest-0.6.ebuild  19 Jan 2015 13:17:25 -  1.4
+++ cmdtest-0.6.ebuild  19 Jan 2015 13:17:59 -  1.5
@@ -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-util/cmdtest/cmdtest-0.6.ebuild,v 1.4 
2015/01/19 13:17:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.6.ebuild,v 1.5 
2015/01/19 13:17:59 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
 
 DEPEND=
${PYTHON_DEPS}



1.5  dev-util/cmdtest/cmdtest-0.10.ebuild

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

Index: cmdtest-0.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cmdtest-0.10.ebuild 19 Jan 2015 13:17:25 -  1.4
+++ cmdtest-0.10.ebuild 19 Jan 2015 13:17:59 -  1.5
@@ -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-util/cmdtest/cmdtest-0.10.ebuild,v 1.4 
2015/01/19 13:17:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.10.ebuild,v 1.5 
2015/01/19 13:17:59 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
 
 DEPEND=
${PYTHON_DEPS}



1.8  dev-util/cmdtest/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmdtest/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   19 Jan 2015 13:17:25 -  1.7
+++ ChangeLog   19 Jan 2015 13:17:59 -  1.8
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/cmdtest
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/ChangeLog,v 1.7 2015/01/19 
13:17:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/ChangeLog,v 1.8 2015/01/19 
13:17:59 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org cmdtest-0.10.ebuild,
+  cmdtest-0.6.ebuild:
+  Add ~ppc64, wrt bug #530672
 
   19 Jan 2015; Agostino Sarubbo a...@gentoo.org cmdtest-0.10.ebuild,
   cmdtest-0.6.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/cliapp: cliapp-1.20140315.ebuild cliapp-1.20130808.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:20

  Modified: cliapp-1.20140315.ebuild cliapp-1.20130808.ebuild
ChangeLog
  Log:
  Add ~ppc, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  dev-python/cliapp/cliapp-1.20140315.ebuild

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

Index: cliapp-1.20140315.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20140315.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cliapp-1.20140315.ebuild26 Dec 2014 17:55:15 -  1.3
+++ cliapp-1.20140315.ebuild19 Jan 2015 13:17:20 -  1.4
@@ -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-python/cliapp/cliapp-1.20140315.ebuild,v 1.3 
2014/12/26 17:55:15 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20140315.ebuild,v 1.4 
2015/01/19 13:17:20 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
 IUSE=test
 
 DEPEND=${PYTHON_DEPS}



1.2  dev-python/cliapp/cliapp-1.20130808.ebuild

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

Index: cliapp-1.20130808.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20130808.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cliapp-1.20130808.ebuild9 Aug 2013 15:27:25 -   1.1
+++ cliapp-1.20130808.ebuild19 Jan 2015 13:17:20 -  1.2
@@ -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/dev-python/cliapp/cliapp-1.20130808.ebuild,v 1.1 
2013/08/09 15:27:25 mschiff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20130808.ebuild,v 1.2 
2015/01/19 13:17:20 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=~amd64 ~ppc ~x86
 IUSE=test
 
 DEPEND=${PYTHON_DEPS}



1.13 dev-python/cliapp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   26 Dec 2014 17:55:15 -  1.12
+++ ChangeLog   19 Jan 2015 13:17:20 -  1.13
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/cliapp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.12 
2014/12/26 17:55:15 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.13 
2015/01/19 13:17:20 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org cliapp-1.20130808.ebuild,
+  cliapp-1.20140315.ebuild:
+  Add ~ppc, wrt bug #530672
 
   26 Dec 2014; Markus Meier mae...@gentoo.org cliapp-1.20140315.ebuild:
   add ~arm, bug #530672






[gentoo-commits] gentoo-x86 commit in dev-python/CoverageTestRunner: CoverageTestRunner-1.10.ebuild CoverageTestRunner-1.9-r1.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:51

  Modified: CoverageTestRunner-1.10.ebuild
CoverageTestRunner-1.9-r1.ebuild ChangeLog
  Log:
  Add ~ppc64, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  
dev-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild

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

Index: CoverageTestRunner-1.10.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CoverageTestRunner-1.10.ebuild  19 Jan 2015 13:17:17 -  1.4
+++ CoverageTestRunner-1.10.ebuild  19 Jan 2015 13:17:51 -  1.5
@@ -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-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild,v
 1.4 2015/01/19 13:17:17 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild,v
 1.5 2015/01/19 13:17:51 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.3  
dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild

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

Index: CoverageTestRunner-1.9-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CoverageTestRunner-1.9-r1.ebuild19 Jan 2015 13:17:17 -  1.2
+++ CoverageTestRunner-1.9-r1.ebuild19 Jan 2015 13:17:51 -  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-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild,v
 1.2 2015/01/19 13:17:17 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild,v
 1.3 2015/01/19 13:17:51 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~ppc ~x86
+KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.8  dev-python/CoverageTestRunner/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   19 Jan 2015 13:17:17 -  1.7
+++ ChangeLog   19 Jan 2015 13:17:51 -  1.8
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/CoverageTestRunner
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/ChangeLog,v 
1.7 2015/01/19 13:17:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/ChangeLog,v 
1.8 2015/01/19 13:17:51 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org 
CoverageTestRunner-1.10.ebuild,
+  CoverageTestRunner-1.9-r1.ebuild:
+  Add ~ppc64, wrt bug #530672
 
   19 Jan 2015; Agostino Sarubbo a...@gentoo.org 
CoverageTestRunner-1.10.ebuild,
   CoverageTestRunner-1.9-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-util/cmdtest: cmdtest-0.10.ebuild cmdtest-0.6.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:26

  Modified: cmdtest-0.10.ebuild cmdtest-0.6.ebuild ChangeLog
  Log:
  Add ~ppc, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.4  dev-util/cmdtest/cmdtest-0.10.ebuild

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

Index: cmdtest-0.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cmdtest-0.10.ebuild 26 Dec 2014 17:55:44 -  1.3
+++ cmdtest-0.10.ebuild 19 Jan 2015 13:17:25 -  1.4
@@ -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-util/cmdtest/cmdtest-0.10.ebuild,v 1.3 
2014/12/26 17:55:44 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.10.ebuild,v 1.4 
2015/01/19 13:17:25 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
 
 DEPEND=
${PYTHON_DEPS}



1.4  dev-util/cmdtest/cmdtest-0.6.ebuild

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

Index: cmdtest-0.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cmdtest-0.6.ebuild  2 May 2013 08:35:10 -   1.3
+++ cmdtest-0.6.ebuild  19 Jan 2015 13:17:25 -  1.4
@@ -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/dev-util/cmdtest/cmdtest-0.6.ebuild,v 1.3 
2013/05/02 08:35:10 mschiff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/cmdtest-0.6.ebuild,v 1.4 
2015/01/19 13:17:25 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=~amd64 ~ppc ~x86
 
 DEPEND=
${PYTHON_DEPS}



1.7  dev-util/cmdtest/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmdtest/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   26 Dec 2014 17:55:44 -  1.6
+++ ChangeLog   19 Jan 2015 13:17:25 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/cmdtest
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/ChangeLog,v 1.6 2014/12/26 
17:55:44 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmdtest/ChangeLog,v 1.7 2015/01/19 
13:17:25 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org cmdtest-0.10.ebuild,
+  cmdtest-0.6.ebuild:
+  Add ~ppc, wrt bug #530672
 
   26 Dec 2014; Markus Meier mae...@gentoo.org cmdtest-0.10.ebuild:
   add ~arm, bug #530672






[gentoo-commits] gentoo-x86 commit in dev-python/ttystatus: ttystatus-0.23.ebuild ttystatus-0.22.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:23

  Modified: ttystatus-0.23.ebuild ttystatus-0.22.ebuild
ChangeLog
  Log:
  Add ~ppc, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  dev-python/ttystatus/ttystatus-0.23.ebuild

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

Index: ttystatus-0.23.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.23.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ttystatus-0.23.ebuild   26 Dec 2014 17:54:47 -  1.5
+++ ttystatus-0.23.ebuild   19 Jan 2015 13:17:22 -  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/dev-python/ttystatus/ttystatus-0.23.ebuild,v 1.5 
2014/12/26 17:54:47 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.23.ebuild,v 1.6 
2015/01/19 13:17:22 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=amd64 ~arm ~hppa x86
+KEYWORDS=amd64 ~arm ~hppa ~ppc x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.4  dev-python/ttystatus/ttystatus-0.22.ebuild

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

Index: ttystatus-0.22.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.22.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ttystatus-0.22.ebuild   24 Mar 2013 11:49:22 -  1.3
+++ ttystatus-0.22.ebuild   19 Jan 2015 13:17:22 -  1.4
@@ -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/dev-python/ttystatus/ttystatus-0.22.ebuild,v 1.3 
2013/03/24 11:49:22 mschiff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/ttystatus/ttystatus-0.22.ebuild,v 1.4 
2015/01/19 13:17:22 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=~amd64 ~ppc ~x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.15 dev-python/ttystatus/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   26 Dec 2014 17:54:47 -  1.14
+++ ChangeLog   19 Jan 2015 13:17:22 -  1.15
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/ttystatus
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ChangeLog,v 1.14 
2014/12/26 17:54:47 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ttystatus/ChangeLog,v 1.15 
2015/01/19 13:17:22 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org ttystatus-0.22.ebuild,
+  ttystatus-0.23.ebuild:
+  Add ~ppc, wrt bug #530672
 
   26 Dec 2014; Markus Meier mae...@gentoo.org ttystatus-0.23.ebuild:
   add ~arm, bug #530672






[gentoo-commits] gentoo-x86 commit in dev-python/CoverageTestRunner: CoverageTestRunner-1.9-r1.ebuild CoverageTestRunner-1.10.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 13:17:17

  Modified: CoverageTestRunner-1.9-r1.ebuild
CoverageTestRunner-1.10.ebuild ChangeLog
  Log:
  Add ~ppc, wrt bug #530672
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.2  
dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild

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

Index: CoverageTestRunner-1.9-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CoverageTestRunner-1.9-r1.ebuild24 Mar 2013 11:14:42 -  1.1
+++ CoverageTestRunner-1.9-r1.ebuild19 Jan 2015 13:17:17 -  1.2
@@ -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/dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild,v
 1.1 2013/03/24 11:14:42 mschiff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.9-r1.ebuild,v
 1.2 2015/01/19 13:17:17 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~x86
+KEYWORDS=~amd64 ~ppc ~x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.4  
dev-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild

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

Index: CoverageTestRunner-1.10.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- CoverageTestRunner-1.10.ebuild  26 Dec 2014 17:54:19 -  1.3
+++ CoverageTestRunner-1.10.ebuild  19 Jan 2015 13:17:17 -  1.4
@@ -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-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild,v
 1.3 2014/12/26 17:54:19 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/CoverageTestRunner-1.10.ebuild,v
 1.4 2015/01/19 13:17:17 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~amd64 ~arm ~hppa ~x86
+KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
 IUSE=
 
 DEPEND=${PYTHON_DEPS}



1.7  dev-python/CoverageTestRunner/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   26 Dec 2014 17:54:19 -  1.6
+++ ChangeLog   19 Jan 2015 13:17:17 -  1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/CoverageTestRunner
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/ChangeLog,v 
1.6 2014/12/26 17:54:19 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/CoverageTestRunner/ChangeLog,v 
1.7 2015/01/19 13:17:17 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org 
CoverageTestRunner-1.10.ebuild,
+  CoverageTestRunner-1.9-r1.ebuild:
+  Add ~ppc, wrt bug #530672
 
   26 Dec 2014; Markus Meier mae...@gentoo.org CoverageTestRunner-1.10.ebuild:
   add ~arm, bug #530672






[gentoo-commits] gentoo-x86 commit in app-misc/byobu: ChangeLog byobu-5.90.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 14:11:29

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

Revision  ChangesPath
1.94 app-misc/byobu/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/byobu/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog   15 Jan 2015 05:34:07 -  1.93
+++ ChangeLog   19 Jan 2015 14:11:29 -  1.94
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/byobu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/byobu/ChangeLog,v 1.93 2015/01/15 
05:34:07 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/byobu/ChangeLog,v 1.94 2015/01/19 
14:11:29 radhermit Exp $
+
+*byobu-5.90 (19 Jan 2015)
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org +byobu-5.90.ebuild:
+  Version bump.
 
 *byobu-5.89 (15 Jan 2015)
 



1.1  app-misc/byobu/byobu-5.90.ebuild

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

Index: byobu-5.90.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/byobu/byobu-5.90.ebuild,v 1.1 
2015/01/19 14:11:29 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit python-single-r1

DESCRIPTION=A set of profiles for the GNU Screen console window manager 
(app-misc/screen)
HOMEPAGE=http://byobu.co;
SRC_URI=http://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=screen
REQUIRED_USE=${PYTHON_REQUIRED_USE}

RDEPEND=${PYTHON_DEPS}
dev-libs/newt[${PYTHON_USEDEP}]
screen? ( app-misc/screen )
!screen? ( app-misc/tmux )

src_prepare() {
python_fix_shebang .

# Set default system backend to screen
if use screen ; then
sed -i -e 's/#\(BYOBU_BACKEND\).*/\1=screen/' 
etc/byobu/backend || die
fi
}

src_install() {
default

# Create symlinks for backends
dosym ${PN} /usr/bin/${PN}-screen
dosym ${PN} /usr/bin/${PN}-tmux

docompress -x /usr/share/doc/${PN}
}






[gentoo-commits] dev/dilfridge:master commit in: sci-visualization/colorview2d/

2015-01-19 Thread Andreas Hüttel
commit: c2f3be7ef9a10e852ac82b1aedcc957ba706e12c
Author: Andreas K. Huettel dilfridge AT gentoo DOT org
AuthorDate: Mon Jan 19 13:23:04 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Mon Jan 19 13:23:04 2015 +
URL:
http://sources.gentoo.org/gitweb/?p=dev/dilfridge.git;a=commit;h=c2f3be7e

[sci-visualization/colorview2d] update repo

---
 sci-visualization/colorview2d/colorview2d-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/colorview2d/colorview2d-.ebuild 
b/sci-visualization/colorview2d/colorview2d-.ebuild
index a476e9f..d96a10b 100644
--- a/sci-visualization/colorview2d/colorview2d-.ebuild
+++ b/sci-visualization/colorview2d/colorview2d-.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1 git-r3
 DESCRIPTION=Plotting and stuff
 HOMEPAGE=https://gitorious.org/colorview2d/colorview2d/;
 # SRC_URI=mirror://pypi/r/${PN}/${P}.tar.gz
-EGIT_REPO_URI=git://gitorious.org/colorview2d/colorview2d.git
+EGIT_REPO_URI=git://git.code.sf.net/p/colorview2d/code
 
 LICENSE=as-is
 SLOT=0



[gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.7.3_pre5-r3.ebuild

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 14:24:46

  Modified: ChangeLog
  Added:net-snmp-5.7.3_pre5-r3.ebuild
  Log:
  Make more perl scripts optional (bug #536212).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.306net-analyzer/net-snmp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.305
retrieving revision 1.306
diff -u -r1.305 -r1.306
--- ChangeLog   16 Nov 2014 20:27:36 -  1.305
+++ ChangeLog   19 Jan 2015 14:24:46 -  1.306
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/net-snmp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.305 
2014/11/16 20:27:36 dilfridge Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.306 
2015/01/19 14:24:46 jer Exp $
+
+*net-snmp-5.7.3_pre5-r3 (19 Jan 2015)
+
+  19 Jan 2015; Jeroen Roovers j...@gentoo.org +net-snmp-5.7.3_pre5-r3.ebuild:
+  Make more perl scripts optional (bug #536212).
 
   16 Nov 2014; Andreas K. Huettel dilfri...@gentoo.org
   net-snmp-5.7.3_pre5-r1.ebuild, net-snmp-5.7.3_pre5-r2.ebuild:



1.1  net-analyzer/net-snmp/net-snmp-5.7.3_pre5-r3.ebuild

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

Index: net-snmp-5.7.3_pre5-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/net-snmp/net-snmp-5.7.3_pre5-r3.ebuild,v 
1.1 2015/01/19 14:24:46 jer Exp $

EAPI=5
PYTHON_COMPAT=( python2_{6,7} )
DISTUTILS_SINGLE_IMPL=yesplz
DISTUTILS_OPTIONAL=yesplz
WANT_AUTOMAKE=none
PATCHSET=1
GENTOO_DEPEND_ON_PERL=no

inherit autotools distutils-r1 eutils perl-module systemd

DESCRIPTION=Software for generating and retrieving SNMP data
HOMEPAGE=http://net-snmp.sourceforge.net/;
SRC_URI=

mirror://sourceforge/${PN}/${PN}/${PV/_pre*/}-pre-releases/${P/_pre*/}.${PV/*_}.tar.gz
http://dev.gentoo.org/~jer/${PN}-5.7.3-patches-${PATCHSET}.tar.xz


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

# GPL-2 for the init scripts
LICENSE=HPND BSD GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86
IUSE=bzip2 doc elf ipv6 mfd-rewrites minimal perl python rpm selinux ssl tcpd 
X zlib lm_sensors ucd-compat pci netlink mysql

COMMON_DEPEND=
ssl? ( =dev-libs/openssl-0.9.6d )
tcpd? ( =sys-apps/tcp-wrappers-7.6 )
rpm? (
app-arch/rpm
dev-libs/popt
)
bzip2? ( app-arch/bzip2 )
zlib? ( =sys-libs/zlib-1.1.4 )
elf? ( dev-libs/elfutils )
python? (
dev-python/setuptools[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)
pci? ( sys-apps/pciutils )
lm_sensors? ( sys-apps/lm_sensors )
netlink? ( dev-libs/libnl:3 )
mysql? ( virtual/mysql )
perl? ( dev-lang/perl )

DEPEND=
${COMMON_DEPEND}
doc? ( app-doc/doxygen )

RDEPEND=
${COMMON_DEPEND}
perl? (
X? ( dev-perl/perl-tk )
!minimal? ( dev-perl/TermReadKey )
)
selinux? ( sec-policy/selinux-snmp )


REQUIRED_USE=
python? ( ${PYTHON_REQUIRED_USE} )
rpm? ( bzip2 zlib )


RESTRICT=test

pkg_setup() {
use python  python-single-r1_pkg_setup
}

src_prepare() {
# snmpconf generates config files with proper selinux context
use selinux  epatch ${FILESDIR}/${PN}-5.1.2-snmpconf-selinux.patch

epatch ${WORKDIR}/patches/*.patch

epatch_user

eautoconf
}

src_configure() {
# keep this in the same line, configure.ac arguments are passed down to 
config.h
local mibs=host ucd-snmp/dlmod ucd-snmp/diskio ucd-snmp/extensible 
mibII/mta_sendmail smux etherlike-mib/dot3StatsTable
use lm_sensors  mibs=${mibs} ucd-snmp/lmsensorsMib

econf \
$(use_enable !ssl internal-md5) \
$(use_enable ipv6) \
$(use_enable mfd-rewrites) \
$(use_enable perl embedded-perl) \

[gentoo-commits] gentoo-x86 commit in media-sound/gnome-music: gnome-music-3.14.3.ebuild ChangeLog

2015-01-19 Thread Pacho Ramos (pacho)
pacho   15/01/19 13:12:15

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

Revision  ChangesPath
1.22 media-sound/gnome-music/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gnome-music/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gnome-music/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gnome-music/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/gnome-music/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   22 Dec 2014 23:38:19 -  1.21
+++ ChangeLog   19 Jan 2015 13:12:15 -  1.22
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/gnome-music
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-music/ChangeLog,v 1.21 
2014/12/22 23:38:19 eva Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-music/ChangeLog,v 1.22 
2015/01/19 13:12:15 pacho Exp $
+
+*gnome-music-3.14.3 (19 Jan 2015)
+
+  19 Jan 2015; Pacho Ramos pa...@gentoo.org +gnome-music-3.14.3.ebuild:
+  Version bump
 
 *gnome-music-3.14.2 (22 Dec 2014)
 



1.1  media-sound/gnome-music/gnome-music-3.14.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gnome-music/gnome-music-3.14.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gnome-music/gnome-music-3.14.3.ebuild?rev=1.1content-type=text/plain

Index: gnome-music-3.14.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-sound/gnome-music/gnome-music-3.14.3.ebuild,v 1.1 
2015/01/19 13:12:15 pacho Exp $

EAPI=5
GCONF_DEBUG=no
PYTHON_COMPAT=( python{3_3,3_4} )

inherit gnome2 python-single-r1

DESCRIPTION=Music management for Gnome
HOMEPAGE=http://wiki.gnome.org/Apps/Music;

LICENSE=GPL-2+
SLOT=0
IUSE=
# Let people emerge this by default, bug #472932
IUSE+= +python_single_target_python3_3 python_single_target_python3_4

REQUIRED_USE=${PYTHON_REQUIRED_USE}

KEYWORDS=~amd64 ~x86

COMMON_DEPEND=
${PYTHON_DEPS}
=dev-libs/glib-2.28:2
=dev-libs/gobject-introspection-1.35.9
=media-libs/grilo-0.2.6:0.2[introspection]
media-libs/libmediaart:1.0
=x11-libs/gtk+-3.13.2:3[introspection]

# xdg-user-dirs-update needs to be there to create needed dirs
# https://bugzilla.gnome.org/show_bug.cgi?id=731613
RDEPEND=${COMMON_DEPEND}
app-misc/tracker[introspection(+)]
|| (
app-misc/tracker[gstreamer]
app-misc/tracker[ffmpeg]
)
dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
media-libs/gstreamer:1.0[introspection]
media-libs/gst-plugins-base:1.0[introspection]
media-plugins/gst-plugins-meta:1.0
media-plugins/grilo-plugins:0.2[tracker]
x11-misc/xdg-user-dirs

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


src_configure() {
gnome2_src_configure ITSTOOL=$(type -P true)
}

src_install() {
gnome2_src_install
python_fix_shebang ${ED}
}






[gentoo-commits] gentoo-x86 commit in sys-apps/openrc: openrc-0.13.8.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 14:36:31

  Modified: openrc-0.13.8.ebuild ChangeLog
  Log:
  Stable on ppc, ppc64 and x86.  Bug #530120
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.2  sys-apps/openrc/openrc-0.13.8.ebuild

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

Index: openrc-0.13.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.13.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openrc-0.13.8.ebuild18 Jan 2015 16:16:07 -  1.1
+++ openrc-0.13.8.ebuild19 Jan 2015 14:36:31 -  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/sys-apps/openrc/openrc-0.13.8.ebuild,v 1.1 
2015/01/18 16:16:07 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.13.8.ebuild,v 1.2 
2015/01/19 14:36:31 blueness Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
inherit git-r3
 else
SRC_URI=http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2;
-   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
+   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
 fi
 
 LICENSE=BSD-2



1.324sys-apps/openrc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/ChangeLog?rev=1.324view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/ChangeLog?rev=1.324content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/ChangeLog?r1=1.323r2=1.324

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v
retrieving revision 1.323
retrieving revision 1.324
diff -u -r1.323 -r1.324
--- ChangeLog   18 Jan 2015 16:18:13 -  1.323
+++ ChangeLog   19 Jan 2015 14:36:31 -  1.324
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/openrc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.323 
2015/01/18 16:18:13 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.324 
2015/01/19 14:36:31 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org openrc-0.13.8.ebuild:
+  Stable on ppc, ppc64 and x86.  Bug #530120
 
   18 Jan 2015; William Hubbs willi...@gentoo.org -openrc-0.13.7.ebuild:
   remove broken version






[gentoo-commits] gentoo-x86 commit in net-analyzer/rrdtool: rrdtool-1.5.0_rc1.ebuild ChangeLog

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 15:13:49

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

Revision  ChangesPath
1.283net-analyzer/rrdtool/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v
retrieving revision 1.282
retrieving revision 1.283
diff -u -r1.282 -r1.283
--- ChangeLog   28 Nov 2014 21:28:24 -  1.282
+++ ChangeLog   19 Jan 2015 15:13:49 -  1.283
@@ -1,6 +1,13 @@
 # ChangeLog for net-analyzer/rrdtool
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.282 
2014/11/28 21:28:24 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.283 
2015/01/19 15:13:49 jer Exp $
+
+*rrdtool-1.5.0_rc1 (19 Jan 2015)
+
+  19 Jan 2015; Jeroen Roovers j...@gentoo.org +rrdtool-1.5.0_rc1.ebuild,
+  +files/rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch,
+  +files/rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch:
+  Version bump.
 
   28 Nov 2014; Jeroen Roovers j...@gentoo.org rrdtool-1.4.8-r1.ebuild,
   rrdtool-1.4.8-r3.ebuild, rrdtool-1.4.9.ebuild:



1.1  net-analyzer/rrdtool/rrdtool-1.5.0_rc1.ebuild

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

Index: rrdtool-1.5.0_rc1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.5.0_rc1.ebuild,v 1.1 
2015/01/19 15:13:49 jer Exp $

EAPI=5

DISTUTILS_OPTIONAL=true
DISTUTILS_SINGLE_IMPL=true
GENTOO_DEPEND_ON_PERL=no
PYTHON_COMPAT=( python2_7 )
inherit autotools eutils perl-module distutils-r1 flag-o-matic multilib

DESCRIPTION=A system to store and display time-series data
HOMEPAGE=http://oss.oetiker.ch/rrdtool/;
SRC_URI=http://oss.oetiker.ch/rrdtool/pub/${P/_/-}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris
IUSE=dbi doc graph lua perl python rrdcgi ruby static-libs tcl tcpd

CDEPEND=
=dev-libs/glib-2.28.7[static-libs(+)?]
=dev-libs/libxml2-2.7.8[static-libs(+)?]
dbi? ( dev-db/libdbi[static-libs(+)?] )
graph? (
=media-libs/libpng-1.5.10[static-libs(+)?]
=x11-libs/cairo-1.10.2[svg,static-libs(+)?]
=x11-libs/pango-1.28
)
lua? ( dev-lang/lua[deprecated] )
perl? ( dev-lang/perl:= )
python? ( ${PYTHON_DEPS} )
tcl? ( dev-lang/tcl )
tcpd? ( sys-apps/tcp-wrappers )


DEPEND=
${CDEPEND}
sys-apps/groff
virtual/pkgconfig
virtual/awk

RDEPEND=
${CDEPEND}

PDEPEND=
ruby? ( ~dev-ruby/rrdtool-bindings-${PV} )


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

python_compile() {
cd bindings/python || die 'can not enter to python bindings directory'
distutils-r1_python_compile
}

python_install() {
cd bindings/python || die 'can not enter to python bindings directory'
distutils-r1_python_install
}

src_prepare() {
epatch \
${FILESDIR}/${PN}-1.4.7-configure.ac.patch \
${FILESDIR}/${PN}-1.4.9-disable-rrd_graph-cgi.patch \
${FILESDIR}/${PN}-1.4.9-disable-rrd_graph-perl.patch \
${FILESDIR}/${PN}-1.5.0_rc1-disable-rrd_graph-lua.patch \
${FILESDIR}/${PN}-1.5.0_rc1-disable-rrd_graph-python.patch

# bug 456810
# no time to sleep
sed -i \
-e 's|$LUA_CFLAGS|IGNORE_THIS_BAD_TEST|g' \
-e 's|^sleep 1$||g' \
-e '/^dnl.*png/s|^dnl||g' \
configure.ac || die

# Python bindings are built/installed manually
sed -i \
-e '/^all-local:/s| @COMP_PYTHON@||' \
bindings/Makefile.am || die

echo ${PV}  VERSION || die

export rd_cv_gcc_flag__Werror=no

eautoreconf
}

src_configure() {
filter-flags -ffast-math

export 

[gentoo-commits] gentoo-x86 commit in app-misc/solaar: ChangeLog solaar-0.9.2-r2.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:00:43

  Modified: ChangeLog
  Removed:  solaar-0.9.2-r2.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.8  app-misc/solaar/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/solaar/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   24 Nov 2014 08:02:40 -  1.7
+++ ChangeLog   19 Jan 2015 16:00:43 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/solaar
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/solaar/ChangeLog,v 1.7 2014/11/24 
08:02:40 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/solaar/ChangeLog,v 1.8 2015/01/19 
16:00:43 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -solaar-0.9.2-r2.ebuild:
+  Remove old.
 
 *solaar-0.9.2-r3 (24 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-libs/libstatgrab: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:05:05

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.5  sys-libs/libstatgrab/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/metadata.xml?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/metadata.xml?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/metadata.xml?r1=1.4r2=1.5

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml14 Feb 2012 21:23:44 -  1.4
+++ metadata.xml19 Jan 2015 16:05:05 -  1.5
@@ -2,7 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
 /pkgmetadata



1.33 sys-libs/libstatgrab/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?rev=1.33view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?rev=1.33content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libstatgrab/ChangeLog?r1=1.32r2=1.33

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   19 Jan 2015 16:04:31 -  1.32
+++ ChangeLog   19 Jan 2015 16:05:05 -  1.33
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libstatgrab
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.32 
2015/01/19 16:04:31 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.33 
2015/01/19 16:05:05 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Tim Harder radher...@gentoo.org -libstatgrab-0.16.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in net-libs/libtrace: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:07:45

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.4  net-libs/libtrace/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtrace/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml28 Jan 2013 22:47:50 -  1.3
+++ metadata.xml19 Jan 2015 16:07:45 -  1.4
@@ -1,9 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdnetmon/herd
-   maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
-   /maintainer
+herdnetmon/herd
 /pkgmetadata



1.14 net-libs/libtrace/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtrace/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   11 Sep 2014 08:30:23 -  1.13
+++ ChangeLog   19 Jan 2015 16:07:45 -  1.14
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libtrace
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtrace/ChangeLog,v 1.13 
2014/09/11 08:30:23 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtrace/ChangeLog,v 1.14 
2015/01/19 16:07:45 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
 *libtrace-3.0.21 (11 Sep 2014)
 






[gentoo-commits] gentoo-x86 commit in net-libs/canlock: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:08:37

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.2  net-libs/canlock/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/canlock/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml30 Sep 2011 10:05:17 -  1.1
+++ metadata.xml19 Jan 2015 16:08:37 -  1.2
@@ -1,9 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdnet-news/herd
-   maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
-   /maintainer
+herdnet-news/herd
 /pkgmetadata



1.9  net-libs/canlock/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/canlock/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   11 Jul 2013 19:03:44 -  1.8
+++ ChangeLog   19 Jan 2015 16:08:37 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/canlock
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/canlock/ChangeLog,v 1.8 2013/07/11 
19:03:44 vincent Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/canlock/ChangeLog,v 1.9 2015/01/19 
16:08:37 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   11 Jul 2013; Vicente Olivert Riera vinc...@gentoo.org canlock-2b.ebuild:
   ppc stable, bug 476430






[gentoo-commits] gentoo-x86 commit in net-misc/sipcalc: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:18:47

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.8  net-misc/sipcalc/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/sipcalc/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml24 Jan 2013 02:50:01 -  1.7
+++ metadata.xml19 Jan 2015 16:18:47 -  1.8
@@ -2,7 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
 /pkgmetadata



1.27 net-misc/sipcalc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/sipcalc/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   19 Jan 2015 16:18:12 -  1.26
+++ ChangeLog   19 Jan 2015 16:18:47 -  1.27
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/sipcalc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/sipcalc/ChangeLog,v 1.26 
2015/01/19 16:18:12 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/sipcalc/ChangeLog,v 1.27 
2015/01/19 16:18:47 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Tim Harder radher...@gentoo.org -sipcalc-1.1.5.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in net-misc/sipcalc: ChangeLog sipcalc-1.1.5.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:18:12

  Modified: ChangeLog
  Removed:  sipcalc-1.1.5.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.26 net-misc/sipcalc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/sipcalc/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   10 Aug 2014 20:47:21 -  1.25
+++ ChangeLog   19 Jan 2015 16:18:12 -  1.26
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/sipcalc
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/sipcalc/ChangeLog,v 1.25 
2014/08/10 20:47:21 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/sipcalc/ChangeLog,v 1.26 
2015/01/19 16:18:12 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -sipcalc-1.1.5.ebuild:
+  Remove old.
 
   10 Aug 2014; Sergei Trofimovich sly...@gentoo.org sipcalc-1.1.5.ebuild,
   sipcalc-1.1.6.ebuild:






[gentoo-commits] gentoo-x86 commit in net-fs/nfs-utils: nfs-utils-1.3.1-r1.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 14:41:10

  Modified: nfs-utils-1.3.1-r1.ebuild ChangeLog
  Log:
  Stable on ppc, ppc64 and x86.  Bug #530418.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild?r1=1.4r2=1.5

Index: nfs-utils-1.3.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nfs-utils-1.3.1-r1.ebuild   17 Jan 2015 11:24:47 -  1.4
+++ nfs-utils-1.3.1-r1.ebuild   19 Jan 2015 14:41:10 -  1.5
@@ -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/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v 1.4 
2015/01/17 11:24:47 patrick Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v 1.5 
2015/01/19 14:41:10 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86
+KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86
 IUSE=caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux 
tcpd +uuid
 REQUIRED_USE=kerberos? ( nfsv4 )
 RESTRICT=test #315573



1.265net-fs/nfs-utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?rev=1.265view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?rev=1.265content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?r1=1.264r2=1.265

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog   17 Jan 2015 11:24:47 -  1.264
+++ ChangeLog   19 Jan 2015 14:41:10 -  1.265
@@ -1,6 +1,10 @@
 # ChangeLog for net-fs/nfs-utils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.264 
2015/01/17 11:24:47 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.265 
2015/01/19 14:41:10 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org
+  nfs-utils-1.3.1-r1.ebuild:
+  Stable on ppc, ppc64 and x86.  Bug #530418.
 
   17 Jan 2015; Patrick Lauer patr...@gentoo.org nfs-utils-1.3.1-r1.ebuild:
   Fix libevent depend to avoid compile failures #536812






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

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:52:27

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

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

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ijson/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml28 Oct 2012 11:24:17 -  1.1
+++ metadata.xml19 Jan 2015 15:52:27 -  1.2
@@ -2,10 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
herdpython/herd
-   maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
-   /maintainer
upstream
remote-id type=pypiijson/remote-id
/upstream



1.8  dev-python/ijson/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/ijson/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   18 Oct 2014 02:57:57 -  1.7
+++ ChangeLog   19 Jan 2015 15:52:27 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/ijson
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ijson/ChangeLog,v 1.7 2014/10/18 
02:57:57 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ijson/ChangeLog,v 1.8 2015/01/19 
15:52:27 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   18 Oct 2014; Tim Harder radher...@gentoo.org ijson-2.0.ebuild:
   Add setuptools dep.






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

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:53:32

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

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

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml20 Nov 2014 17:23:02 -  1.1
+++ metadata.xml19 Jan 2015 15:53:32 -  1.2
@@ -1,9 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdpython/herd
-   maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
-   /maintainer
+herdpython/herd
 /pkgmetadata



1.4  dev-python/pyqtgraph/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   31 Dec 2014 02:12:58 -  1.3
+++ ChangeLog   19 Jan 2015 15:53:32 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyqtgraph
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/ChangeLog,v 1.3 
2014/12/31 02:12:58 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/ChangeLog,v 1.4 
2015/01/19 15:53:32 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
 *pyqtgraph-0.9.10 (31 Dec 2014)
 






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

2015-01-19 Thread Mike Gilbert (floppym)
floppym 15/01/19 16:12:25

  Modified: ChangeLog use.stable.mask
  Log:
  Remove python3_4 mask.

Revision  ChangesPath
1.241profiles/arch/sparc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -r1.240 -r1.241
--- ChangeLog   23 Dec 2014 22:52:20 -  1.240
+++ ChangeLog   19 Jan 2015 16:12:25 -  1.241
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sparc profile
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.240 
2014/12/23 22:52:20 eva Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.241 
2015/01/19 16:12:25 floppym Exp $
+
+  19 Jan 2015; Mike Gilbert flop...@gentoo.org use.stable.mask:
+  Remove python3_4 mask.
 
   23 Dec 2014; Gilles Dartiguelongue e...@gentoo.org package.use.mask:
   Add package.use.mask entry for clutter, bug #533420.



1.9  profiles/arch/sparc/use.stable.mask

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

Index: use.stable.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/use.stable.mask,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- use.stable.mask 15 Nov 2014 21:23:39 -  1.8
+++ use.stable.mask 19 Jan 2015 16:12:25 -  1.9
@@ -1,15 +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/profiles/arch/sparc/use.stable.mask,v 1.8 
2014/11/15 21:23:39 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/use.stable.mask,v 1.9 
2015/01/19 16:12:25 floppym Exp $
 
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
-# Mike Gilbert flop...@gentoo.org (15 Nov 2014)
-# Waiting for stabilization (bug 525510).
-python_targets_python3_4
-python_single_target_python3_4
-
 # Andrey Grozin gro...@gentoo.org (25 Jun 2014)
 # no stable version on sparc
 ecls






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

2015-01-19 Thread Mike Gilbert (floppym)
floppym 15/01/19 16:12:25

  Modified: ChangeLog use.stable.mask
  Log:
  Remove python3_4 mask.

Revision  ChangesPath
1.304profiles/arch/powerpc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -r1.303 -r1.304
--- ChangeLog   24 Dec 2014 18:02:27 -  1.303
+++ ChangeLog   19 Jan 2015 16:12:25 -  1.304
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/PPC profile directory
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.303 
2014/12/24 18:02:27 tamiko Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.304 
2015/01/19 16:12:25 floppym Exp $
+
+  19 Jan 2015; Mike Gilbert flop...@gentoo.org use.stable.mask:
+  Remove python3_4 mask.
 
   24 Dec 2014; Matthias Maier tam...@gentoo.org ppc64/package.use.mask:
   mask clang use flag for app-doc/doxygen



1.13 profiles/arch/powerpc/use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/use.stable.mask?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/use.stable.mask?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/use.stable.mask?r1=1.12r2=1.13

Index: use.stable.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/use.stable.mask,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- use.stable.mask 15 Nov 2014 21:23:39 -  1.12
+++ use.stable.mask 19 Jan 2015 16:12:25 -  1.13
@@ -1,15 +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/profiles/arch/powerpc/use.stable.mask,v 
1.12 2014/11/15 21:23:39 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/use.stable.mask,v 
1.13 2015/01/19 16:12:25 floppym Exp $
 
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
-# Mike Gilbert flop...@gentoo.org (15 Nov 2014)
-# Waiting for stabilization (bug 525510).
-python_targets_python3_4
-python_single_target_python3_4
-
 # Pacho Ramos pa...@gentoo.org (17 Apr 2014)
 # Dropped stable keywords after the discussion caused by
 # Gnome 3.8/3.10 stabilization on this arch






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

2015-01-19 Thread Mike Gilbert (floppym)
floppym 15/01/19 16:12:25

  Modified: ChangeLog use.stable.mask
  Log:
  Remove python3_4 mask.

Revision  ChangesPath
1.212profiles/arch/alpha/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog   23 Dec 2014 22:50:39 -  1.211
+++ ChangeLog   19 Jan 2015 16:12:25 -  1.212
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.211 
2014/12/23 22:50:39 eva Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.212 
2015/01/19 16:12:25 floppym Exp $
+
+  19 Jan 2015; Mike Gilbert flop...@gentoo.org use.stable.mask:
+  Remove python3_4 mask.
 
   23 Dec 2014; Gilles Dartiguelongue e...@gentoo.org package.use.mask:
   Add package.use.mask entry for clutter, bug #533420.



1.10 profiles/arch/alpha/use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/use.stable.mask?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/use.stable.mask?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/use.stable.mask?r1=1.9r2=1.10

Index: use.stable.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/use.stable.mask,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- use.stable.mask 15 Nov 2014 21:23:39 -  1.9
+++ use.stable.mask 19 Jan 2015 16:12:25 -  1.10
@@ -1,15 +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/profiles/arch/alpha/use.stable.mask,v 1.9 
2014/11/15 21:23:39 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/use.stable.mask,v 1.10 
2015/01/19 16:12:25 floppym Exp $
 
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
-# Mike Gilbert flop...@gentoo.org (15 Nov 2014)
-# Waiting for stabilization (bug 525510).
-python_targets_python3_4
-python_single_target_python3_4
-
 # Pacho Ramos pa...@gentoo.org (17 Apr 2014)
 # Dropped stable keywords after the discussion caused by
 # Gnome 3.8/3.10 stabilization on this arch   






[gentoo-commits] gentoo-x86 commit in sys-devel/gcc: gcc-4.9.2.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 15:04:31

  Modified: gcc-4.9.2.ebuild ChangeLog
  Log:
  Add ~ppc64, wrt bug #536874
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc64, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  sys-devel/gcc/gcc-4.9.2.ebuild

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

Index: gcc-4.9.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gcc-4.9.2.ebuild18 Jan 2015 12:01:18 -  1.4
+++ gcc-4.9.2.ebuild19 Jan 2015 15:04:31 -  1.5
@@ -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/sys-devel/gcc/gcc-4.9.2.ebuild,v 1.4 
2015/01/18 12:01:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild,v 1.5 
2015/01/19 15:04:31 ago Exp $
 
 EAPI=4
 
@@ -22,7 +22,7 @@
 
 inherit eutils toolchain
 
-KEYWORDS=~amd64 ~hppa
+KEYWORDS=~amd64 ~hppa ~ppc64
 
 RDEPEND=
 DEPEND=${RDEPEND}



1.1039   sys-devel/gcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1039view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1039content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1038r2=1.1039

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1038
retrieving revision 1.1039
diff -u -r1.1038 -r1.1039
--- ChangeLog   18 Jan 2015 12:01:18 -  1.1038
+++ ChangeLog   19 Jan 2015 15:04:31 -  1.1039
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1038 2015/01/18 
12:01:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1039 2015/01/19 
15:04:31 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org gcc-4.9.2.ebuild:
+  Add ~ppc64, wrt bug #536874
 
   18 Jan 2015; Agostino Sarubbo a...@gentoo.org gcc-4.9.2.ebuild:
   Add ~amd64, wrt bug #536874






[gentoo-commits] gentoo-x86 commit in sys-devel/gcc: gcc-4.9.2.ebuild ChangeLog

2015-01-19 Thread Agostino Sarubbo (ago)
ago 15/01/19 15:04:42

  Modified: gcc-4.9.2.ebuild ChangeLog
  Log:
  Add ~ppc, wrt bug #536874
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: 
--include-arches=~ppc, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.6  sys-devel/gcc/gcc-4.9.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild?r1=1.5r2=1.6

Index: gcc-4.9.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gcc-4.9.2.ebuild19 Jan 2015 15:04:31 -  1.5
+++ gcc-4.9.2.ebuild19 Jan 2015 15:04:42 -  1.6
@@ -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/sys-devel/gcc/gcc-4.9.2.ebuild,v 1.5 
2015/01/19 15:04:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.9.2.ebuild,v 1.6 
2015/01/19 15:04:42 ago Exp $
 
 EAPI=4
 
@@ -22,7 +22,7 @@
 
 inherit eutils toolchain
 
-KEYWORDS=~amd64 ~hppa ~ppc64
+KEYWORDS=~amd64 ~hppa ~ppc ~ppc64
 
 RDEPEND=
 DEPEND=${RDEPEND}



1.1040   sys-devel/gcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1040view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1040content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1039r2=1.1040

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1039
retrieving revision 1.1040
diff -u -r1.1039 -r1.1040
--- ChangeLog   19 Jan 2015 15:04:31 -  1.1039
+++ ChangeLog   19 Jan 2015 15:04:42 -  1.1040
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1039 2015/01/19 
15:04:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1040 2015/01/19 
15:04:42 ago Exp $
+
+  19 Jan 2015; Agostino Sarubbo a...@gentoo.org gcc-4.9.2.ebuild:
+  Add ~ppc, wrt bug #536874
 
   19 Jan 2015; Agostino Sarubbo a...@gentoo.org gcc-4.9.2.ebuild:
   Add ~ppc64, wrt bug #536874






[gentoo-commits] gentoo-x86 commit in net-analyzer/rrdtool/files: rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 15:13:49

  Added:rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch
rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.1  
net-analyzer/rrdtool/files/rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/files/rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/files/rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch?rev=1.1content-type=text/plain

Index: rrdtool-1.5.0_rc1-disable-rrd_graph-lua.patch
===
--- a/bindings/lua/rrdlua.c
+++ b/bindings/lua/rrdlua.c
@@ -367,7 +367,9 @@
 #if defined(DINF)
   {info, lua_rrd_info},
   {updatev, lua_rrd_updatev},
+#ifdef HAVE_RRD_GRAPH
   {graphv, lua_rrd_graphv},
+#endif /* HAVE_RRD_GRAPH */
 #endif
   {NULL, NULL}
 };



1.1  
net-analyzer/rrdtool/files/rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/files/rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/rrdtool/files/rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch?rev=1.1content-type=text/plain

Index: rrdtool-1.5.0_rc1-disable-rrd_graph-python.patch
===
--- a/bindings/python/rrdtoolmodule.c
+++ b/bindings/python/rrdtoolmodule.c
@@ -675,8 +676,6 @@
 return r;
 }
 
-#endif
-
 static char PyRRD_dump__doc__[] =
 dump - dump an RRD to XML\n
 [--header|-h {none,xsd,dtd}] [--no-header]file.rrd [file.xml];
@@ -704,6 +703,7 @@
 destroy_args(argv);
 return r;
 }
+#endif /* HAVE_RRD_GRAPH */
 
 /* List of methods defined in the module */
 #define meth(name, func, doc) {name, (PyCFunction)func, METH_VARARGS, doc}
@@ -717,14 +717,16 @@
 meth(last, PyRRD_last, PyRRD_last__doc__),
 meth(resize, PyRRD_resize, PyRRD_resize__doc__),
 meth(info, PyRRD_info, PyRRD_info__doc__),
-#ifdef HAVE_RRD_GRAPH
+#ifdef HAVE_RRD_GRAPH
 meth(graph, PyRRD_graph, PyRRD_graph__doc__),
 meth(graphv, PyRRD_graphv, PyRRD_graphv__doc__),
 meth(xport, PyRRD_xport, PyRRD_xport__doc__),
-#endif
+#endif /* HAVE_RRD_GRAPH */
 meth(updatev, PyRRD_updatev, PyRRD_updatev__doc__),
 meth(flushcached, PyRRD_flushcached, PyRRD_flushcached__doc__),
+#ifdef HAVE_RRD_GRAPH
 meth(dump, PyRRD_dump, PyRRD_dump__doc__),
+#endif /* HAVE_RRD_GRAPH */
 {NULL, NULL, 0, NULL}
 };
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/rrdtool-bindings: rrdtool-bindings-1.5.0_rc1.ebuild ChangeLog

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 15:13:55

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

Revision  ChangesPath
1.15 dev-ruby/rrdtool-bindings/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog?r1=1.14r2=1.15

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   4 Oct 2014 09:35:45 -   1.14
+++ ChangeLog   19 Jan 2015 15:13:55 -  1.15
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/rrdtool-bindings
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.14 
2014/10/04 09:35:45 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.15 
2015/01/19 15:13:55 jer Exp $
+
+*rrdtool-bindings-1.5.0_rc1 (19 Jan 2015)
+
+  19 Jan 2015; Jeroen Roovers j...@gentoo.org
+  +rrdtool-bindings-1.5.0_rc1.ebuild:
+  Version bump.
 
 *rrdtool-bindings-1.4.9 (04 Oct 2014)
 *rrdtool-bindings-1.4.8-r2 (04 Oct 2014)



1.1  dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.0_rc1.ebuild

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

Index: rrdtool-bindings-1.5.0_rc1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.0_rc1.ebuild,v
 1.1 2015/01/19 15:13:55 jer Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_TASK_DOC=

inherit ruby-ng

MY_P=${P/-bindings}
MY_P=${MY_P/_/-}

DESCRIPTION=Ruby bindings for rrdtool
HOMEPAGE=http://oss.oetiker.ch/rrdtool/;
SRC_URI=http://oss.oetiker.ch/rrdtool/pub/${MY_P}.tar.gz;
RUBY_S=$MY_P/bindings/ruby

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris
IUSE=graph test
REQUIRED_USE=test? ( graph )

# Block on older versions of rrdtool that install the bindings themselves.
# requires rrd_xport which requires rrd_graph 
RDEPEND=
~net-analyzer/rrdtool-${PV}[graph=]

DEPEND=
test? ( ~net-analyzer/rrdtool-${PV}[graph] )


RUBY_PATCHES=(
${FILESDIR}/${PN}-1.4.8-graph-ruby.patch
)

each_ruby_configure() {
${RUBY} extconf.rb \
--with-cflags=${CFLAGS} $(usex graph -DHAVE_RRD_GRAPH '') || 
die
}

each_ruby_compile() {
emake V=1 ABS_TOP_SRCDIR=${PWD}/../..
}

each_ruby_test() {
${RUBY} -I. test.rb || die
}

all_ruby_install() {
dodoc CHANGES README
}

each_ruby_install() {
DESTDIR=${D} emake install
}






[gentoo-commits] gentoo-x86 commit in sys-apps/kmod: kmod-19.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 15:15:48

  Modified: kmod-19.ebuild ChangeLog
  Log:
  Stable on arm, ppc, ppc64 and x86.  Bug #530424.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.7  sys-apps/kmod/kmod-19.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-19.ebuild?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-19.ebuild?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-19.ebuild?r1=1.6r2=1.7

Index: kmod-19.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-19.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- kmod-19.ebuild  18 Jan 2015 18:45:46 -  1.6
+++ kmod-19.ebuild  19 Jan 2015 15:15:48 -  1.7
@@ -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/sys-apps/kmod/kmod-19.ebuild,v 1.6 
2015/01/18 18:45:46 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-19.ebuild,v 1.7 
2015/01/19 15:15:48 blueness Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
inherit autotools git-2
 else
SRC_URI=mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz
-   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86
+   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86
inherit libtool
 fi
 



1.183sys-apps/kmod/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.183view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.183content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?r1=1.182r2=1.183

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog   18 Jan 2015 18:45:46 -  1.182
+++ ChangeLog   19 Jan 2015 15:15:48 -  1.183
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/kmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.182 2015/01/18 
18:45:46 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.183 2015/01/19 
15:15:48 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org kmod-19.ebuild:
+  Stable on arm, ppc, ppc64 and x86.  Bug #530424.
 
   18 Jan 2015; William Hubbs willi...@gentoo.org kmod-19.ebuild,
   kmod-.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-ruby/rrdtool-bindings: ChangeLog rrdtool-bindings-1.5.0_rc1.ebuild

2015-01-19 Thread Jeroen Roovers (jer)
jer 15/01/19 15:24:46

  Modified: ChangeLog rrdtool-bindings-1.5.0_rc1.ebuild
  Log:
  Fix some USE=graph issues.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.16 dev-ruby/rrdtool-bindings/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   19 Jan 2015 15:13:55 -  1.15
+++ ChangeLog   19 Jan 2015 15:24:46 -  1.16
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rrdtool-bindings
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.15 
2015/01/19 15:13:55 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/ChangeLog,v 1.16 
2015/01/19 15:24:46 jer Exp $
+
+  19 Jan 2015; Jeroen Roovers j...@gentoo.org
+  rrdtool-bindings-1.5.0_rc1.ebuild:
+  Fix some USE=graph issues.
 
 *rrdtool-bindings-1.5.0_rc1 (19 Jan 2015)
 



1.2  dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.0_rc1.ebuild

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

Index: rrdtool-bindings-1.5.0_rc1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.0_rc1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rrdtool-bindings-1.5.0_rc1.ebuild   19 Jan 2015 15:13:55 -  1.1
+++ rrdtool-bindings-1.5.0_rc1.ebuild   19 Jan 2015 15:24:46 -  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-ruby/rrdtool-bindings/rrdtool-bindings-1.5.0_rc1.ebuild,v
 1.1 2015/01/19 15:13:55 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.5.0_rc1.ebuild,v
 1.2 2015/01/19 15:24:46 jer Exp $
 
 EAPI=5
 
@@ -38,8 +38,11 @@
 )
 
 each_ruby_configure() {
+   rm ../../src/rrd_config.h || die
+   touch ../../src/rrd_config.h || die
+
${RUBY} extconf.rb \
-   --with-cflags=${CFLAGS} $(usex graph -DHAVE_RRD_GRAPH '') || 
die
+   --with-cflags=${CFLAGS} $(usex graph -DHAVE_RRD_GRAPH 
-UHAVE_RRD_GRAPH) || die
 }
 
 each_ruby_compile() {
@@ -47,7 +50,9 @@
 }
 
 each_ruby_test() {
-   ${RUBY} -I. test.rb || die
+   if use graph; then
+   ${RUBY} -I. test.rb || die
+   fi
 }
 
 all_ruby_install() {






[gentoo-commits] gentoo-x86 commit in net-libs/libflowmanager: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:10:10

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.3  net-libs/libflowmanager/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libflowmanager/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml29 Jan 2013 06:03:33 -  1.2
+++ metadata.xml19 Jan 2015 16:10:10 -  1.3
@@ -2,8 +2,4 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
herdnetmon/herd
-   maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
-   /maintainer
 /pkgmetadata



1.3  net-libs/libflowmanager/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libflowmanager/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   29 Jan 2013 06:03:33 -  1.2
+++ ChangeLog   19 Jan 2015 16:10:10 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libflowmanager
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libflowmanager/ChangeLog,v 1.2 
2013/01/29 06:03:33 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libflowmanager/ChangeLog,v 1.3 
2015/01/19 16:10:10 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   29 Jan 2013; Tim Harder radher...@gentoo.org metadata.xml:
   Fix metadata.






[gentoo-commits] gentoo-x86 commit in net-libs/libprotoident: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:09:30

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.3  net-libs/libprotoident/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libprotoident/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml29 Jan 2013 06:05:51 -  1.2
+++ metadata.xml19 Jan 2015 16:09:30 -  1.3
@@ -2,10 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
herdnetmon/herd
-   maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
-   /maintainer
use
flag name=toolsBuild and install command-line tools/flag
/use



1.5  net-libs/libprotoident/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/libprotoident/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   18 Jul 2014 15:24:36 -  1.4
+++ ChangeLog   19 Jan 2015 16:09:30 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libprotoident
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libprotoident/ChangeLog,v 1.4 
2014/07/18 15:24:36 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libprotoident/ChangeLog,v 1.5 
2015/01/19 16:09:30 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   18 Jul 2014; Jeroen Roovers j...@gentoo.org -libprotoident-2.0.6.ebuild,
   libprotoident-2.0.7.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-python/six: six-1.3.0.ebuild ChangeLog

2015-01-19 Thread Mike Gilbert (floppym)
floppym 15/01/19 16:09:17

  Modified: six-1.3.0.ebuild ChangeLog
  Log:
  Add python3.4.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.16 dev-python/six/six-1.3.0.ebuild

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

Index: six-1.3.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/six/six-1.3.0.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- six-1.3.0.ebuild31 Mar 2014 20:41:34 -  1.15
+++ six-1.3.0.ebuild19 Jan 2015 16:09:17 -  1.16
@@ -1,9 +1,9 @@
-# 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/six/six-1.3.0.ebuild,v 1.15 
2014/03/31 20:41:34 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/six/six-1.3.0.ebuild,v 1.16 
2015/01/19 16:09:17 floppym Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 )
 
 inherit distutils-r1
 



1.57 dev-python/six/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   13 Jan 2015 15:56:36 -  1.56
+++ ChangeLog   19 Jan 2015 16:09:17 -  1.57
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/six
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v 1.56 2015/01/13 
15:56:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/six/ChangeLog,v 1.57 2015/01/19 
16:09:17 floppym Exp $
+
+  19 Jan 2015; Mike Gilbert flop...@gentoo.org six-1.3.0.ebuild:
+  Add python3.4.
 
   13 Jan 2015; Jeroen Roovers j...@gentoo.org six-1.8.0.ebuild:
   Stable for HPPA (bug #534366).






[gentoo-commits] gentoo-x86 commit in app-misc/lfm: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:13:36

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.2  app-misc/lfm/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/lfm/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml16 Sep 2012 09:26:38 -  1.1
+++ metadata.xml19 Jan 2015 16:13:36 -  1.2
@@ -2,7 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
 /pkgmetadata



1.6  app-misc/lfm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/lfm/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   19 Jan 2015 16:13:11 -  1.5
+++ ChangeLog   19 Jan 2015 16:13:36 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/lfm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/lfm/ChangeLog,v 1.5 2015/01/19 
16:13:11 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lfm/ChangeLog,v 1.6 2015/01/19 
16:13:36 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Tim Harder radher...@gentoo.org -lfm-2.3.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in net-fs/nfs-utils: nfs-utils-1.3.1-r1.ebuild ChangeLog

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

  Modified: nfs-utils-1.3.1-r1.ebuild ChangeLog
  Log:
  Stable on arm.  Bug #530418.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild

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

Index: nfs-utils-1.3.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nfs-utils-1.3.1-r1.ebuild   19 Jan 2015 14:41:10 -  1.5
+++ nfs-utils-1.3.1-r1.ebuild   19 Jan 2015 15:06:51 -  1.6
@@ -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/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v 1.5 
2015/01/19 14:41:10 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v 1.6 
2015/01/19 15:06:51 blueness Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86
+KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86
 IUSE=caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux 
tcpd +uuid
 REQUIRED_USE=kerberos? ( nfsv4 )
 RESTRICT=test #315573



1.266net-fs/nfs-utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?rev=1.266view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?rev=1.266content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?r1=1.265r2=1.266

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -r1.265 -r1.266
--- ChangeLog   19 Jan 2015 14:41:10 -  1.265
+++ ChangeLog   19 Jan 2015 15:06:51 -  1.266
@@ -1,6 +1,10 @@
 # ChangeLog for net-fs/nfs-utils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.265 
2015/01/19 14:41:10 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.266 
2015/01/19 15:06:51 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org
+  nfs-utils-1.3.1-r1.ebuild:
+  Stable on arm.  Bug #530418.
 
   19 Jan 2015; Anthony G. Basile bluen...@gentoo.org
   nfs-utils-1.3.1-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-php/suhosin/files: suhosin-0.9.37.1-libcrypt.patch

2015-01-19 Thread Brian Evans (grknight)
grknight15/01/19 15:38:55

  Added:suhosin-0.9.37.1-libcrypt.patch
  Log:
  Version bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
D1F781EFF9F4A3B6)

Revision  ChangesPath
1.1  dev-php/suhosin/files/suhosin-0.9.37.1-libcrypt.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/files/suhosin-0.9.37.1-libcrypt.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/files/suhosin-0.9.37.1-libcrypt.patch?rev=1.1content-type=text/plain

Index: suhosin-0.9.37.1-libcrypt.patch
===
Index: suhosin-0.9.32.1/config.m4
===
--- suhosin-0.9.33.orig/config.m4
+++ suhosin-0.9.33/config.m4
@@ -6,4 +6,7 @@ PHP_ARG_ENABLE(suhosin, whether to enabl
 
 if test $PHP_SUHOSIN != no; then
   PHP_NEW_EXTENSION(suhosin, suhosin.c sha256.c memory_limit.c treat_data.c 
ifilter.c post_handler.c ufilter.c rfc1867.c rfc1867_new.c log.c header.c 
execute.c ex_imp.c session.c aes.c crypt.c, $ext_shared)
+  PHP_CHECK_LIBRARY(crypt, crypt,
+[PHP_ADD_LIBRARY(crypt,, SUHOSIN_SHARED_LIBADD)])
+  PHP_SUBST(SUHOSIN_SHARED_LIBADD)
 fi






[gentoo-commits] gentoo-x86 commit in dev-php/suhosin: suhosin-0.9.37.1.ebuild ChangeLog

2015-01-19 Thread Brian Evans (grknight)
grknight15/01/19 15:38:55

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

Revision  ChangesPath
1.18 dev-php/suhosin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   10 Oct 2014 01:47:55 -  1.17
+++ ChangeLog   19 Jan 2015 15:38:55 -  1.18
@@ -1,6 +1,12 @@
 # ChangeLog for dev-php/suhosin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.17 2014/10/10 
01:47:55 grknight Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.18 2015/01/19 
15:38:55 grknight Exp $
+
+*suhosin-0.9.37.1 (19 Jan 2015)
+
+  19 Jan 2015; Brian Evans grkni...@gentoo.org
+  +files/suhosin-0.9.37.1-libcrypt.patch, +suhosin-0.9.37.1.ebuild:
+  Version bump
 
 *suhosin-0.9.36 (08 Oct 2014)
 



1.1  dev-php/suhosin/suhosin-0.9.37.1.ebuild

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

Index: suhosin-0.9.37.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/suhosin-0.9.37.1.ebuild,v 
1.1 2015/01/19 15:38:55 grknight Exp $

EAPI=5

PHP_EXT_NAME=suhosin
PHP_EXT_INI=yes
PHP_EXT_ZENDEXT=no
USE_PHP=php5-6 php5-5 php5-4

inherit php-ext-source-r2

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

DESCRIPTION=Suhosin is an advanced protection system for PHP installations
HOMEPAGE=http://www.suhosin.org/;
SRC_URI=http://download.suhosin.org/${P}.tar.gz;
LICENSE=PHP-3.01
SLOT=0
IUSE=

DEPEND=dev-lang/php[unicode]
RDEPEND=${DEPEND}

src_prepare() {
local slot
for slot in $(php_get_slots); do
php_init_slot_env ${slot}
epatch ${FILESDIR}/${P}-libcrypt.patch
done
php-ext-source-r2_src_prepare
}

src_install() {
php-ext-source-r2_src_install
dodoc CREDITS

local slot
for slot in $(php_get_slots); do
php_init_slot_env ${slot}
for inifile in ${PHPINIFILELIST} ; do
insinto ${inifile/${PHP_EXT_NAME}.ini/}
insopts -m644
doins suhosin.ini
done
done
}

src_test() {
# Makefile passes a hard-coded -d extension_dir=./modules, we move the 
lib
# away from there in src_compile
for slot in `php_get_slots`; do
php_init_slot_env ${slot}
NO_INTERACTION=yes emake test || die emake test failed for 
slot ${slot}
done
}






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

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:57:34

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.6  dev-python/skype4py/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/skype4py/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml26 Nov 2012 10:04:26 -  1.5
+++ metadata.xml19 Jan 2015 15:57:34 -  1.6
@@ -2,8 +2,7 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
upstream
remote-id type=pypiSkype4Py/remote-id



1.21 dev-python/skype4py/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/skype4py/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   19 Jan 2015 15:57:06 -  1.20
+++ ChangeLog   19 Jan 2015 15:57:34 -  1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/skype4py
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/skype4py/ChangeLog,v 1.20 
2015/01/19 15:57:06 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/skype4py/ChangeLog,v 1.21 
2015/01/19 15:57:34 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Tim Harder radher...@gentoo.org -skype4py-1.0.35.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in dev-python/skype4py: ChangeLog skype4py-1.0.35.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:57:06

  Modified: ChangeLog
  Removed:  skype4py-1.0.35.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.20 dev-python/skype4py/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/skype4py/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   25 Nov 2014 00:51:03 -  1.19
+++ ChangeLog   19 Jan 2015 15:57:06 -  1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/skype4py
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/skype4py/ChangeLog,v 1.19 
2014/11/25 00:51:03 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/skype4py/ChangeLog,v 1.20 
2015/01/19 15:57:06 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -skype4py-1.0.35.ebuild:
+  Remove old.
 
 *skype4py-1.0.35-r1 (25 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in app-misc/solaar: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:01:36

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.2  app-misc/solaar/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/solaar/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml16 May 2013 10:18:35 -  1.1
+++ metadata.xml19 Jan 2015 16:01:36 -  1.2
@@ -2,7 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
 /pkgmetadata



1.9  app-misc/solaar/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/solaar/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   19 Jan 2015 16:00:43 -  1.8
+++ ChangeLog   19 Jan 2015 16:01:36 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/solaar
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/solaar/ChangeLog,v 1.8 2015/01/19 
16:00:43 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/solaar/ChangeLog,v 1.9 2015/01/19 
16:01:36 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Tim Harder radher...@gentoo.org -solaar-0.9.2-r2.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in app-misc/lfm: ChangeLog lfm-2.3.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:13:11

  Modified: ChangeLog
  Removed:  lfm-2.3.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.5  app-misc/lfm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/lfm/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   27 Dec 2014 15:56:14 -  1.4
+++ ChangeLog   19 Jan 2015 16:13:11 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/lfm
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/lfm/ChangeLog,v 1.4 2014/12/27 
15:56:14 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lfm/ChangeLog,v 1.5 2015/01/19 
16:13:11 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -lfm-2.3.ebuild:
+  Remove old.
 
 *lfm-2.3-r1 (27 Dec 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-libs/libstatgrab: ChangeLog libstatgrab-0.16.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:04:31

  Modified: ChangeLog
  Removed:  libstatgrab-0.16.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.32 sys-libs/libstatgrab/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   10 Nov 2014 11:40:58 -  1.31
+++ ChangeLog   19 Jan 2015 16:04:31 -  1.32
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libstatgrab
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.31 
2014/11/10 11:40:58 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstatgrab/ChangeLog,v 1.32 
2015/01/19 16:04:31 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -libstatgrab-0.16.ebuild:
+  Remove old.
 
   10 Nov 2014; Jeroen Roovers j...@gentoo.org libstatgrab-0.91.ebuild,
   +files/libstatgrab-0.91-tinfo.patch:






[gentoo-commits] gentoo-x86 commit in sys-fs/udev-init-scripts: udev-init-scripts-27.ebuild ChangeLog

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

  Modified: udev-init-scripts-27.ebuild ChangeLog
  Log:
  Stable on ppc, ppc64 and x86.  Bug #531602
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.5  sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?r1=1.4r2=1.5

Index: udev-init-scripts-27.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- udev-init-scripts-27.ebuild 17 Jan 2015 07:09:37 -  1.4
+++ udev-init-scripts-27.ebuild 19 Jan 2015 14:32:52 -  1.5
@@ -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/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v 
1.4 2015/01/17 07:09:37 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v 
1.5 2015/01/19 14:32:52 blueness Exp $
 
 EAPI=5
 
@@ -9,7 +9,7 @@
inherit git-r3
 else
SRC_URI=http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2;
-   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86
+   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86
 fi
 
 inherit eutils



1.109sys-fs/udev-init-scripts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.109view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.109content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?r1=1.108r2=1.109

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog   17 Jan 2015 07:09:37 -  1.108
+++ ChangeLog   19 Jan 2015 14:32:52 -  1.109
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/udev-init-scripts
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.108 
2015/01/17 07:09:37 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.109 
2015/01/19 14:32:52 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org
+  udev-init-scripts-27.ebuild:
+  Stable on ppc, ppc64 and x86.  Bug #531602
 
   17 Jan 2015; Mikle Kolyada zlog...@gentoo.org udev-init-scripts-27.ebuild:
   amd64 stable wrt bug #531602






[gentoo-commits] gentoo-x86 commit in sys-apps/openrc: openrc-0.13.8.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 15:02:19

  Modified: openrc-0.13.8.ebuild ChangeLog
  Log:
  Stable on arm.  Bug #530120.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.3  sys-apps/openrc/openrc-0.13.8.ebuild

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

Index: openrc-0.13.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.13.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openrc-0.13.8.ebuild19 Jan 2015 14:36:31 -  1.2
+++ openrc-0.13.8.ebuild19 Jan 2015 15:02:19 -  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/sys-apps/openrc/openrc-0.13.8.ebuild,v 1.2 
2015/01/19 14:36:31 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.13.8.ebuild,v 1.3 
2015/01/19 15:02:19 blueness Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
inherit git-r3
 else
SRC_URI=http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2;
-   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
+   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
 fi
 
 LICENSE=BSD-2



1.325sys-apps/openrc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/ChangeLog?rev=1.325view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/ChangeLog?rev=1.325content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/openrc/ChangeLog?r1=1.324r2=1.325

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -r1.324 -r1.325
--- ChangeLog   19 Jan 2015 14:36:31 -  1.324
+++ ChangeLog   19 Jan 2015 15:02:19 -  1.325
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/openrc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.324 
2015/01/19 14:36:31 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.325 
2015/01/19 15:02:19 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org openrc-0.13.8.ebuild:
+  Stable on arm.  Bug #530120.
 
   19 Jan 2015; Anthony G. Basile bluen...@gentoo.org openrc-0.13.8.ebuild:
   Stable on ppc, ppc64 and x86.  Bug #530120






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

2015-01-19 Thread Brian Evans (grknight)
grknight15/01/19 15:32:02

  Modified: ChangeLog package.mask
  Log:
  Remove dev-php/suhosin from package.mask

Revision  ChangesPath
1.9692   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9691
retrieving revision 1.9692
diff -u -r1.9691 -r1.9692
--- ChangeLog   19 Jan 2015 07:20:42 -  1.9691
+++ ChangeLog   19 Jan 2015 15:32:02 -  1.9692
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9691 2015/01/19 
07:20:42 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9692 2015/01/19 
15:32:02 grknight Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  19 Jan 2015; Brian Evans grkni...@gentoo.org package.mask:
+  Remove dev-php/suhosin from mask
+
   19 Jan 2015; Hans de Graaff gra...@gentoo.org updates/1Q-2015:
   Move tilt 2.x into a separate slot.
 



1.16294  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16293
retrieving revision 1.16294
diff -u -r1.16293 -r1.16294
--- package.mask18 Jan 2015 21:26:56 -  1.16293
+++ package.mask19 Jan 2015 15:32:02 -  1.16294
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16293 2015/01/18 
21:26:56 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16294 2015/01/19 
15:32:02 grknight Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -480,10 +480,6 @@
 =sys-kernel/gentoo-sources-3.17.0
 =sys-kernel/aufs-sources-3.17.0
 
-# Brian Evans grkni...@gentoo.org (8 Oct 2014)
-# Mask all versions of suhosin until upstream revival is sustained and tested
-dev-php/suhosin
-
 # Jauhien Piatlicki jauh...@gentoo.org (5 Oct 2014)
 # Masked because of bug 524390: privilege escalation
 # until upstream fixes this security issue.






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

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:54:53

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

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

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml23 Apr 2013 05:38:02 -  1.1
+++ metadata.xml19 Jan 2015 15:54:53 -  1.2
@@ -2,10 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
   herdpython/herd
-  maintainer
-emailradher...@gentoo.org/email
-nameTim Harder/name
-  /maintainer
   upstream
 remote-id type=githubfritzy/SleekXMPP/remote-id
   /upstream



1.9  dev-python/sleekxmpp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   8 Oct 2014 01:23:41 -   1.8
+++ ChangeLog   19 Jan 2015 15:54:53 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/sleekxmpp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v 1.8 
2014/10/08 01:23:41 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v 1.9 
2015/01/19 15:54:53 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   08 Oct 2014; Tim Harder radher...@gentoo.org -sleekxmpp-1.1.11.ebuild,
   -sleekxmpp-1.2.0.ebuild, -sleekxmpp-1.2.5.ebuild,






[gentoo-commits] gentoo-x86 commit in dev-util/scanmem: ChangeLog scanmem-0.07.ebuild

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:58:43

  Modified: ChangeLog
  Removed:  scanmem-0.07.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.11 dev-util/scanmem/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   20 Sep 2012 11:08:39 -  1.10
+++ ChangeLog   19 Jan 2015 15:58:43 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/scanmem
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v 1.10 
2012/09/20 11:08:39 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v 1.11 
2015/01/19 15:58:43 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org -scanmem-0.07.ebuild:
+  Remove old.
 
 *scanmem-0.13 (20 Sep 2012)
 






[gentoo-commits] gentoo-x86 commit in sys-fs/ldapfuse: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 16:06:24

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.2  sys-fs/ldapfuse/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ldapfuse/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml14 Dec 2011 23:10:46 -  1.1
+++ metadata.xml19 Jan 2015 16:06:24 -  1.2
@@ -2,7 +2,6 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
 /pkgmetadata



1.3  sys-fs/ldapfuse/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ldapfuse/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   4 May 2012 19:09:18 -   1.2
+++ ChangeLog   19 Jan 2015 16:06:24 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/ldapfuse
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ldapfuse/ChangeLog,v 1.2 2012/05/04 
19:09:18 jdhore Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ldapfuse/ChangeLog,v 1.3 2015/01/19 
16:06:24 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   04 May 2012; Jeff Horelick jdh...@gentoo.org ldapfuse-1.0.ebuild:
   dev-util/pkgconfig - virtual/pkgconfig






[gentoo-commits] gentoo-x86 commit in sys-fs/udev-init-scripts: udev-init-scripts-27.ebuild ChangeLog

2015-01-19 Thread Anthony G. Basile (blueness)
blueness15/01/19 15:01:05

  Modified: udev-init-scripts-27.ebuild ChangeLog
  Log:
  Stable on arm, bug #531602.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.6  sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?r1=1.5r2=1.6

Index: udev-init-scripts-27.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- udev-init-scripts-27.ebuild 19 Jan 2015 14:32:52 -  1.5
+++ udev-init-scripts-27.ebuild 19 Jan 2015 15:01:05 -  1.6
@@ -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/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v 
1.5 2015/01/19 14:32:52 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v 
1.6 2015/01/19 15:01:05 blueness Exp $
 
 EAPI=5
 
@@ -9,7 +9,7 @@
inherit git-r3
 else
SRC_URI=http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2;
-   KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86
+   KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86
 fi
 
 inherit eutils



1.110sys-fs/udev-init-scripts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.110view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.110content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?r1=1.109r2=1.110

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog   19 Jan 2015 14:32:52 -  1.109
+++ ChangeLog   19 Jan 2015 15:01:05 -  1.110
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/udev-init-scripts
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.109 
2015/01/19 14:32:52 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.110 
2015/01/19 15:01:05 blueness Exp $
+
+  19 Jan 2015; Anthony G. Basile bluen...@gentoo.org
+  udev-init-scripts-27.ebuild:
+  Stable on arm, bug #531602.
 
   19 Jan 2015; Anthony G. Basile bluen...@gentoo.org
   udev-init-scripts-27.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-util/scanmem: metadata.xml ChangeLog

2015-01-19 Thread Tim Harder (radhermit)
radhermit15/01/19 15:59:09

  Modified: metadata.xml ChangeLog
  Log:
  Drop myself from metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4F064CA3)

Revision  ChangesPath
1.10 dev-util/scanmem/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scanmem/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml20 Sep 2012 11:08:39 -  1.9
+++ metadata.xml19 Jan 2015 15:59:09 -  1.10
@@ -2,8 +2,7 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
maintainer
-   emailradher...@gentoo.org/email
-   nameTim Harder/name
+   emailmaintainer-nee...@gentoo.org/email
/maintainer
use
flag name=guiEnable the GameConqueror GUI/flag



1.12 dev-util/scanmem/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog   19 Jan 2015 15:58:43 -  1.11
+++ ChangeLog   19 Jan 2015 15:59:09 -  1.12
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/scanmem
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v 1.11 
2015/01/19 15:58:43 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v 1.12 
2015/01/19 15:59:09 radhermit Exp $
+
+  19 Jan 2015; Tim Harder radher...@gentoo.org metadata.xml:
+  Drop myself from metadata.
 
   19 Jan 2015; Tim Harder radher...@gentoo.org -scanmem-0.07.ebuild:
   Remove old.






  1   2   3   >