[gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: ChangeLog iproute2-4.1.0.ebuild iproute2-4.0.0-r1.ebuild iproute2-4.0.0.ebuild

2015-06-30 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/30 07:45:44

  Modified: ChangeLog
  Added:iproute2-4.1.0.ebuild
  Removed:  iproute2-4.0.0-r1.ebuild iproute2-4.0.0.ebuild
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.264sys-apps/iproute2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -r1.263 -r1.264
--- ChangeLog   24 May 2015 03:42:06 -  1.263
+++ ChangeLog   30 Jun 2015 07:45:44 -  1.264
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.263 
2015/05/24 03:42:06 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.264 
2015/06/30 07:45:44 polynomial-c Exp $
+
+*iproute2-4.1.0 (30 Jun 2015)
+
+  30 Jun 2015; Lars Wendler polynomia...@gentoo.org -iproute2-4.0.0.ebuild,
+  -iproute2-4.0.0-r1.ebuild, +iproute2-4.1.0.ebuild:
+  Version bump. Removed old.
 
   24 May 2015; Mike Frysinger vap...@gentoo.org iproute2-4.0.0-r2.ebuild,
   iproute2-.ebuild, metadata.xml:



1.1  sys-apps/iproute2/iproute2-4.1.0.ebuild

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

Index: iproute2-4.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-4.1.0.ebuild,v 
1.1 2015/06/30 07:45:44 polynomial-c Exp $

EAPI=5

inherit eutils toolchain-funcs flag-o-matic multilib

if [[ ${PV} ==  ]] ; then

EGIT_REPO_URI=git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git
inherit git-2
else
SRC_URI=mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86
fi

DESCRIPTION=kernel routing and traffic control utilities
HOMEPAGE=http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2;

LICENSE=GPL-2
SLOT=0
IUSE=atm berkdb +iptables ipv6 minimal selinux

RDEPEND=!net-misc/arpd
iptables? ( =net-firewall/iptables-1.4.20:= )
berkdb? ( sys-libs/db:= )
atm? ( net-dialup/linux-atm )
selinux? ( sys-libs/libselinux )
# We require newer linux-headers for ipset support #549948
DEPEND=${RDEPEND}
app-arch/xz-utils
iptables? ( virtual/pkgconfig )
sys-devel/bison
sys-devel/flex
=sys-kernel/linux-headers-3.7
elibc_glibc? ( =sys-libs/glibc-2.7 )

src_prepare() {
epatch ${FILESDIR}/${PN}-3.1.0-mtu.patch #291907
use ipv6 || epatch ${FILESDIR}/${PN}-3.10.0-no-ipv6.patch #326849

sed -i \
-e '/^CC =/d' \
-e /^LIBDIR/s:=.*:=/$(get_libdir): \
-e s:-O2:${CFLAGS} ${CPPFLAGS}: \
-e /^HOSTCC/s:=.*:= $(tc-getBUILD_CC): \
-e /^WFLAGS/s:-Werror:: \
-e /^DBM_INCLUDE/s:=.*:=${T}: \
Makefile || die

# Use /run instead of /var/run.
sed -i \
-e 's:/var/run:/run:g' \
ip/ipnetns.c \
man/man8/ip-netns.8 || die

# build against system headers
rm -r include/netinet #include/linux include/ip{,6}tables{,_common}.h 
include/libiptc
sed -i 's:TCPI_OPT_ECN_SEEN:16:' misc/ss.c || die

# don't build arpd if USE=-berkdb #81660
use berkdb || sed -i '/^TARGETS=/s: arpd : :' misc/Makefile

use minimal  sed -i -e '/^SUBDIRS=/s:=.*:=lib tc ip:' Makefile
}

src_configure() {
tc-export AR CC PKG_CONFIG

# This sure is ugly.  Should probably move into toolchain-funcs at some 
point.
local setns
pushd ${T} /dev/null
echo 'main(){return setns();};'  test.c
${CC} ${CFLAGS} ${LDFLAGS} test.c /dev/null  setns=y || setns=n
echo 'main(){};'  test.c
${CC} ${CFLAGS} ${LDFLAGS} test.c -lresolv /dev/null || sed -i 
'/^LDLIBS/s:-lresolv::' ${S}/Makefile
popd /dev/null

cat -EOF  Config
TC_CONFIG_ATM := $(usex atm y n)
TC_CONFIG_XT  

[gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: ChangeLog pure-ftpd-1.0.41.ebuild pure-ftpd-1.0.39.ebuild

2015-06-30 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/30 07:39:02

  Modified: ChangeLog
  Added:pure-ftpd-1.0.41.ebuild
  Removed:  pure-ftpd-1.0.39.ebuild
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.164net-ftp/pure-ftpd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.164view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.164content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?r1=1.163r2=1.164

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog   24 Jun 2015 09:00:57 -  1.163
+++ ChangeLog   30 Jun 2015 07:39:02 -  1.164
@@ -1,6 +1,12 @@
 # ChangeLog for net-ftp/pure-ftpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.163 
2015/06/24 09:00:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.164 
2015/06/30 07:39:02 polynomial-c Exp $
+
+*pure-ftpd-1.0.41 (30 Jun 2015)
+
+  30 Jun 2015; Lars Wendler polynomia...@gentoo.org -pure-ftpd-1.0.39.ebuild,
+  +pure-ftpd-1.0.41.ebuild:
+  Version bump. Removed old.
 
   24 Jun 2015; Agostino Sarubbo a...@gentoo.org pure-ftpd-1.0.40.ebuild:
   Stable for ppc, wrt bug #552254



1.1  net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild?rev=1.1content-type=text/plain

Index: pure-ftpd-1.0.41.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild,v 
1.1 2015/06/30 07:39:02 polynomial-c Exp $

EAPI=5
inherit eutils confutils flag-o-matic

KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86

DESCRIPTION=Fast, production-quality, standard-conformant FTP server
HOMEPAGE=http://www.pureftpd.org/;
SRC_URI=ftp://ftp.pureftpd.org/pub/${PN}/releases/${P}.tar.bz2
http://download.pureftpd.org/pub/${PN}/releases/${P}.tar.bz2;

LICENSE=BSD
SLOT=0

IUSE=anondel anonperm anonren anonres caps charconv implicittls ldap mysql 
noiplog pam paranoidmsg postgres resolveids selinux ssl sysquota vchroot xinetd

REQUIRED_USE=implicittls? ( ssl )

DEPEND=caps? ( sys-libs/libcap )
charconv? ( virtual/libiconv )
ldap? ( =net-nds/openldap-2.0.25 )
mysql? ( virtual/mysql )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql:= )
ssl? ( =dev-libs/openssl-0.9.6g:0= )
sysquota? ( sys-fs/quota[-rpc] )
xinetd? ( virtual/inetd )

RDEPEND=${DEPEND}
dev-libs/libsodium
net-ftp/ftpbase
selinux? ( sec-policy/selinux-ftp )

src_prepare() {
epatch ${FILESDIR}/${PN}-1.0.28-pam.patch
}

src_configure() {
# adjust max user length to something more appropriate
# for virtual hosts. See bug #62472 for details.
sed -e s:# define MAX_USER_LENGTH 32U:# define MAX_USER_LENGTH 127U: \
-i ${S}/src/ftpd.h || die sed failed

local my_conf=

# Let's configure the USE-enabled stuff
enable_extension_withoutcapabilities  caps
enable_extension_with   rfc2640   charconv  
0
enable_extension_with   ldap  ldap  
0
enable_extension_with   mysql mysql 
0
enable_extension_with   pam   pam   
0
enable_extension_with   paranoidmsg   paranoidmsg   
0
enable_extension_with   pgsql postgres  
0
enable_extension_with   tls   ssl   
0
enable_extension_with   implicittls   implicittls   
0
enable_extension_with   virtualchroot vchroot   
0
enable_extension_with   sysquotas sysquota  
0
enable_extension_withoutinetd xinetd

# noiplog is a negative flag, we don't want that enabled by default,
# so we handle it manually, as confutils can't do that
use noiplog  my_conf=${my_conf} --without-iplogging

# Those features are only configurable like this, see bug #179375.

[gentoo-commits] gentoo-x86 commit in net-im/corebird: corebird-1.0.ebuild ChangeLog

2015-06-30 Thread Ian Delaney (idella4)
idella4 15/06/30 08:07:18

  Modified: corebird-1.0.ebuild ChangeLog
  Log:
  reset VALA_MIN_API_VERSION, fixes bug #553378
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  net-im/corebird/corebird-1.0.ebuild

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

Index: corebird-1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-im/corebird/corebird-1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- corebird-1.0.ebuild 26 Jun 2015 18:23:03 -  1.1
+++ corebird-1.0.ebuild 30 Jun 2015 08:07:18 -  1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/corebird/corebird-1.0.ebuild,v 1.1 
2015/06/26 18:23:03 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/corebird/corebird-1.0.ebuild,v 1.2 
2015/06/30 08:07:18 idella4 Exp $
 
 EAPI=5
-VALA_MIN_API_VERSION=0.24
+VALA_MIN_API_VERSION=0.26
 AUTOTOOLS_AUTORECONF=1
 AUTOTOOLS_IN_SOURCE_BUILD=1
 



1.4  net-im/corebird/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-im/corebird/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   26 Jun 2015 18:23:03 -  1.3
+++ ChangeLog   30 Jun 2015 08:07:18 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for net-im/corebird
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/corebird/ChangeLog,v 1.3 2015/06/26 
18:23:03 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/corebird/ChangeLog,v 1.4 2015/06/30 
08:07:18 idella4 Exp $
+
+  30 Jun 2015; Ian Delaney idel...@gentoo.org corebird-1.0.ebuild:
+  reset VALA_MIN_API_VERSION, fixes bug #553378
 
 *corebird-1.0 (26 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/texinfo: texinfo-6.0.ebuild ChangeLog texinfo-5.1.ebuild

2015-06-30 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/30 08:03:56

  Modified: ChangeLog
  Added:texinfo-6.0.ebuild
  Removed:  texinfo-5.1.ebuild
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.136sys-apps/texinfo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog   18 Jan 2014 19:27:30 -  1.135
+++ ChangeLog   30 Jun 2015 08:03:56 -  1.136
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/texinfo
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.135 
2014/01/18 19:27:30 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.136 
2015/06/30 08:03:56 polynomial-c Exp $
+
+*texinfo-6.0 (30 Jun 2015)
+
+  30 Jun 2015; Lars Wendler polynomia...@gentoo.org -texinfo-5.1.ebuild,
+  +texinfo-6.0.ebuild:
+  Version bump. Removed old.
 
   18 Jan 2014; Mike Frysinger vap...@gentoo.org texinfo-4.13-r2.ebuild,
   texinfo-5.1.ebuild, texinfo-5.2.ebuild:



1.1  sys-apps/texinfo/texinfo-6.0.ebuild

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

Index: texinfo-6.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-6.0.ebuild,v 1.1 
2015/06/30 08:03:56 polynomial-c Exp $

EAPI=4

inherit flag-o-matic

DESCRIPTION=The GNU info program and utilities
HOMEPAGE=http://www.gnu.org/software/texinfo/;
SRC_URI=mirror://gnu/${PN}/${P}.tar.xz

LICENSE=GPL-3
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
IUSE=nls static

RDEPEND=!=app-text/tetex-2*
=sys-libs/ncurses-5.2-r2
dev-lang/perl
dev-perl/libintl-perl
dev-perl/Unicode-EastAsianWidth
dev-perl/Text-Unidecode
nls? ( virtual/libintl )
DEPEND=${RDEPEND}
app-arch/xz-utils
nls? ( sys-devel/gettext )

src_configure() {
use static  append-ldflags -static
econf \
--with-external-libintl-perl \
--with-external-Unicode-EastAsianWidth \
--with-external-Text-Unidecode \
$(use_enable nls)
}

src_install() {
default
newdoc info/README README.info
}






[gentoo-commits] gentoo-x86 commit in profiles/prefix/darwin: package.mask

2015-06-30 Thread Fabian Groffen (grobian)
grobian 15/06/30 08:16:35

  Modified: package.mask
  Log:
  Unmask latest python on Darwin, haubi fixed it

Revision  ChangesPath
1.48 profiles/prefix/darwin/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/darwin/package.mask?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/darwin/package.mask?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/darwin/package.mask?r1=1.47r2=1.48

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/darwin/package.mask,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- package.mask16 Jun 2015 11:30:27 -  1.47
+++ package.mask30 Jun 2015 08:16:35 -  1.48
@@ -1,13 +1,8 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/darwin/package.mask,v 1.47 
2015/06/16 11:30:27 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/darwin/package.mask,v 1.48 
2015/06/30 08:16:35 grobian Exp $
 
 
-# Fabian Groffen grob...@gentoo.org (16 Jun 2015)
-# fails to compile due to missing CLOCK_REALTIME in multiprocessing
-# module
-=dev-lang/python-2.7.10
-
 # Fabian Groffen grob...@gentoo.org (31 May 2015)
 # fails to compile due to some missing compilerrt stuff, hints at asan,
 # not sure what the problem actually is






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

2015-06-30 Thread Fabian Groffen (grobian)
grobian 15/06/30 08:16:35

  Modified: ChangeLog
  Log:
  Unmask latest python on Darwin, haubi fixed it

Revision  ChangesPath
1.466profiles/prefix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/ChangeLog?rev=1.466view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/ChangeLog?rev=1.466content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/ChangeLog?r1=1.465r2=1.466

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/ChangeLog,v
retrieving revision 1.465
retrieving revision 1.466
diff -u -r1.465 -r1.466
--- ChangeLog   29 Jun 2015 07:59:21 -  1.465
+++ ChangeLog   30 Jun 2015 08:16:35 -  1.466
@@ -1,6 +1,9 @@
 # ChangeLog for profiles/prefix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/ChangeLog,v 1.465 
2015/06/29 07:59:21 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/ChangeLog,v 1.466 
2015/06/30 08:16:35 grobian Exp $
+
+  16 Jun 2015; Fabian Groffen grob...@gentoo.org package.mask:
+  Unmask Python 2.7.10, haubi applied a fix from upstream for the issue
 
   29 Jun 2015; Michael Haubenwallner ha...@gentoo.org
   windows/cygwin/2.0/x64/make.defaults:






[gentoo-commits] gentoo-x86 commit in dev-python/natsort: natsort-4.0.3.ebuild ChangeLog natsort-4.0.1.ebuild natsort-3.5.2.ebuild

2015-06-30 Thread Ian Delaney (idella4)
idella4 15/06/30 07:37:33

  Modified: ChangeLog
  Added:natsort-4.0.3.ebuild
  Removed:  natsort-4.0.1.ebuild natsort-3.5.2.ebuild
  Log:
  bump; tidy test phase, rm old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.11 dev-python/natsort/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/natsort/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   27 Jun 2015 11:26:12 -  1.10
+++ ChangeLog   30 Jun 2015 07:37:33 -  1.11
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/natsort
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/natsort/ChangeLog,v 1.10 
2015/06/27 11:26:12 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/natsort/ChangeLog,v 1.11 
2015/06/30 07:37:33 idella4 Exp $
+
+*natsort-4.0.3 (30 Jun 2015)
+
+  30 Jun 2015; Ian Delaney idel...@gentoo.org +natsort-4.0.3.ebuild,
+  -natsort-3.5.2.ebuild, -natsort-4.0.1.ebuild:
+  bump; tidy test phase, rm old
 
   27 Jun 2015; Ian Delaney idel...@gentoo.org -natsort-3.2.0.ebuild:
   rm old



1.1  dev-python/natsort/natsort-4.0.3.ebuild

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

Index: natsort-4.0.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/natsort/natsort-4.0.3.ebuild,v 
1.1 2015/06/30 07:37:33 idella4 Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION=Natural sorting for Python
HOMEPAGE=https://pypi.python.org/pypi/natsort;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

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

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}]
dev-python/hypothesis[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7 pypy)
)

python_test() {
py.test || die Tests failed under ${EPYTHON}
}






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

2015-06-30 Thread Andreas Hüttel
commit: 42a98f12dddef96a7cce06af765ad4634501a2fc
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 08:52:19 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 08:52:19 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=42a98f12

Merge branch 'master' of git+ssh://git.gentoo.org/proj/kde

 app-editors/kile/kile-.ebuild  |  1 -
 kde-misc/systemd-kcm/Manifest  |  1 -
 kde-misc/systemd-kcm/metadata.xml  |  9 ++
 kde-misc/systemd-kcm/systemd-kcm-1.1.0.ebuild  | 35 --
 kde-misc/systemd-kcm/systemd-kcm-.ebuild   |  2 +-
 kde-plasma/plasma-desktop/metadata.xml |  3 ++
 .../plasma-desktop/plasma-desktop-5.3.2.ebuild | 17 ++-
 .../plasma-desktop-5.3.49..ebuild  | 17 ++-
 .../plasma-desktop/plasma-desktop-.ebuild  | 17 ++-
 9 files changed, 61 insertions(+), 41 deletions(-)



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

2015-06-30 Thread Andreas Hüttel
commit: 495e840be50677c74f7b67e315cf3701e472567a
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 08:51:28 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 08:51:28 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=495e840b

[eclass] prepare eclasses for no-akonadi branch

 eclass/kde4-base.eclass | 4 
 eclass/kde4-meta.eclass | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index 1915b6d..f46f2c4 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -430,6 +430,10 @@ _calculate_src_uri() {
# KDEPIM 4.4, special case
# TODO: Remove this part when KDEPIM 
4.4 gets out of the tree

SRC_URI=mirror://kde/stable/kdepim-${PV}/src/${_kmname_pv}.tar.bz2 ;;
+   4.4.20*)
+   # KDEPIM 4.4 no-akonadi branch, special 
case
+   # TODO: Remove this part when KDEPIM 
4.4 gets out of the tree
+   
SRC_URI=http://dev.gentoo.org/~dilfridge/distfiles/${_kmname_pv}.tar.xz; ;;
4.?.[6-9]? | 4.??.[6-9]?)
# Unstable KDE SC releases

SRC_URI=mirror://kde/unstable/${PV}/src/${_kmname_pv}.tar.xz ;;

diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass
index abc4d02..d22992c 100644
--- a/eclass/kde4-meta.eclass
+++ b/eclass/kde4-meta.eclass
@@ -182,7 +182,7 @@ kde4-meta_src_extract() {
else
local abort tarball tarfile f extractlist postfix
 
-   if [[ ${PV} =~ 4.[47].[12345] ]]; then
+   if [[ ${PV} =~ '4\.4\.[12].*' ]]; then
postfix=bz2
KMTARPARAMS+= --bzip2
else



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

2015-06-30 Thread Andreas Hüttel
commit: e31a883e767bf0d8b3699db820b9dd263475568e
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 09:03:57 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 09:03:57 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e31a883e

[kde-base/kjots] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/kjots/kjots-4.4.2015.06.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/kde-base/kjots/kjots-4.4.2015.06.ebuild 
b/kde-base/kjots/kjots-4.4.2015.06.ebuild
new file mode 100644
index 000..618ccfb
--- /dev/null
+++ b/kde-base/kjots/kjots-4.4.2015.06.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kjots/kjots-4.4.11.1.ebuild,v 1.9 
2014/04/05 18:07:31 dilfridge Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=KDE note taking utility (noakonadi branch)
+KEYWORDS=
+IUSE=debug
+
+DEPEND=
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+   $(add_kdebase_dep libkdepim)
+
+RDEPEND=${DEPEND}



[gentoo-commits] gentoo-x86 commit in sys-apps/systemd: systemd-220-r2.ebuild ChangeLog

2015-06-30 Thread Mike Gilbert (floppym)
floppym 15/07/01 00:17:54

  Modified: systemd-220-r2.ebuild ChangeLog
  Log:
  Backport unifont build workaround.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.8  sys-apps/systemd/systemd-220-r2.ebuild

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

Index: systemd-220-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-220-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- systemd-220-r2.ebuild   14 Jun 2015 00:21:26 -  1.7
+++ systemd-220-r2.ebuild   1 Jul 2015 00:17:54 -   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-apps/systemd/systemd-220-r2.ebuild,v 
1.7 2015/06/14 00:21:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-220-r2.ebuild,v 
1.8 2015/07/01 00:17:54 floppym Exp $
 
 EAPI=5
 
@@ -164,6 +164,9 @@
 
EPATCH_FORCE=yes EPATCH_SUFFIX=patch epatch
 
+   [[ -e src/libsystemd-terminal/unifont-glyph-array.bin ]] || die
+   touch src/libsystemd-terminal/unifont-glyph-array.bin || die
+
autotools-utils_src_prepare
 }
 



1.381sys-apps/systemd/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v
retrieving revision 1.380
retrieving revision 1.381
diff -u -r1.380 -r1.381
--- ChangeLog   27 Jun 2015 18:00:47 -  1.380
+++ ChangeLog   1 Jul 2015 00:17:54 -   1.381
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/systemd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.380 
2015/06/27 18:00:47 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.381 
2015/07/01 00:17:54 floppym Exp $
+
+  01 Jul 2015; Mike Gilbert flop...@gentoo.org systemd-220-r2.ebuild:
+  Backport unifont build workaround.
 
 *systemd-221 (27 Jun 2015)
 






[gentoo-commits] dev/mrueg:master commit in: dev-tex/latexdraw/

2015-06-30 Thread Manuel Rüger
commit: a2ee609b9b0f5f5c31ed4b252012dacc04fec48c
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 02:11:39 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 02:11:39 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=a2ee609b

[dev-text/latexdraw] Fix category of a dep.

Package-Manager: portage-2.2.20

 dev-tex/latexdraw/latexdraw-3.3.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/latexdraw/latexdraw-3.3.1.ebuild 
b/dev-tex/latexdraw/latexdraw-3.3.1.ebuild
index d1c341c..c5e023b 100644
--- a/dev-tex/latexdraw/latexdraw-3.3.1.ebuild
+++ b/dev-tex/latexdraw/latexdraw-3.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -20,7 +20,7 @@ IUSE=
 COMMONDEPEND=dev-java/jlibeps:0
=dev-java/malai-1.3
=dev-java/mockito-1.9.5
-   =dev-java/scala-2.11
+   =dev-lang/scala-2.11
=dev-java/pdf-renderer-1.0.5:0
 
 RDEPEND==virtual/jre-1.7



[gentoo-commits] dev/mrueg:master commit in: dev-python/pytest-capturelog/

2015-06-30 Thread Manuel Rüger
commit: 27c7145d55b258fd8369d3d9e1f51de2640b057b
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Tue Jun 30 23:58:50 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Tue Jun 30 23:58:50 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=27c7145d

[dev-python/pytest-capturelog] Fix homepage.

Package-Manager: portage-2.2.20

 dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild 
b/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild
index 1dbb4b2..ec76b9f 100644
--- a/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild
+++ b/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=(python{2_7,3_3})
 inherit distutils-r1
 
 DESCRIPTION=py.test plugin to capture log messages
-HOMEPAGE= http://bitbucket.org/memedough/pytest-capturelog/overview;
+HOMEPAGE=http://bitbucket.org/memedough/pytest-capturelog/overview;
 SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
 
 LICENSE=MIT



[gentoo-commits] dev/mrueg:master commit in: dev-python/pytest-localserver/

2015-06-30 Thread Manuel Rüger
commit: 0a09a499e1c284048b8c3778960892e7a6700ae6
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 00:00:30 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 00:00:30 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=0a09a499

[dev-python/pytest-localserver] Initial version.

Package-Manager: portage-2.2.20

 dev-python/pytest-localserver/Manifest |  1 +
 dev-python/pytest-localserver/metadata.xml |  8 +++
 .../pytest-localserver-0.3.4.ebuild| 28 ++
 3 files changed, 37 insertions(+)

diff --git a/dev-python/pytest-localserver/Manifest 
b/dev-python/pytest-localserver/Manifest
new file mode 100644
index 000..503a71a
--- /dev/null
+++ b/dev-python/pytest-localserver/Manifest
@@ -0,0 +1 @@
+DIST pytest-localserver-0.3.4.zip 28988 SHA256 
9d2dc10aa2ba7e799f22e3fc133f7562c9be5be180b788f7f9dabea30a281814 SHA512 
476c15d7020773b8d6a0c13ac1beea2274fc022a7089ea384f6721906f7a8339b7410ad7a5dd6817a2d6ce5dc92d3023632dff5191059bef327dbebd77a9bea7
 WHIRLPOOL 
158f15597057c226107430dfd6c53338086725b9642fa87cbb07bbe103d4fbd70ca9f82f4fcebd1a2d9371725f772cc3e5eead233976be2408ed7fde36c898d8

diff --git a/dev-python/pytest-localserver/metadata.xml 
b/dev-python/pytest-localserver/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/dev-python/pytest-localserver/metadata.xml
@@ -0,0 +1,8 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   maintainer
+   emailmr...@gentoo.org/email
+   nameManuel Rüger/name
+   /maintainer
+/pkgmetadata

diff --git a/dev-python/pytest-localserver/pytest-localserver-0.3.4.ebuild 
b/dev-python/pytest-localserver/pytest-localserver-0.3.4.ebuild
new file mode 100644
index 000..c73f41b
--- /dev/null
+++ b/dev-python/pytest-localserver/pytest-localserver-0.3.4.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_3})
+
+inherit distutils-r1
+
+DESCRIPTION=Py.test plugin to test server connections locally
+HOMEPAGE=https://pypi.python.org/pypi/pytest-localserver;
+SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.zip
+
+LICENSE=MIT
+SLOT=0
+KEYWORDS=~amd64
+IUSE=test
+
+RDEPEND==dev-python/werkzeug-0.10[${PYTHON_USEDEP}]
+DEPEND=app-arch/unzip
+   test? ( ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}] )
+
+python_test() {
+   py.test || die
+}



[gentoo-commits] dev/mrueg:master commit in: dev-python/vcrpy/

2015-06-30 Thread Manuel Rüger
commit: e36104360c264a993030fd344d4ea7e2bd1554c5
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 00:20:07 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 00:20:07 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=e3610436

[dev-python/vcrpy] Initial version.

Package-Manager: portage-2.2.20

 dev-python/vcrpy/Manifest   |  1 +
 dev-python/vcrpy/metadata.xml   |  8 
 dev-python/vcrpy/vcrpy-1.5.2.ebuild | 33 +
 3 files changed, 42 insertions(+)

diff --git a/dev-python/vcrpy/Manifest b/dev-python/vcrpy/Manifest
new file mode 100644
index 000..9a8b1c5
--- /dev/null
+++ b/dev-python/vcrpy/Manifest
@@ -0,0 +1 @@
+DIST vcrpy-1.5.2.tar.gz 299525 SHA256 
ef3216e91ab3a51b67c44e0e4a8c50f6edcc812658da4c73ff32b1eb36a8a9bf SHA512 
2eccc061a1e90b03fb0688aac5566bdf96a7bfd6ffc34aa71af8395665cde8f183d02c5107572f1bbca0388c865c913f1b2a9c7b295c11be395dce20c4d5b761
 WHIRLPOOL 
49a0eb2d582003bebb788129d5f03a8d120d9752867d439a7394e7ed664b6a1b296d59d5a501e861cf3e78e4679c7a6e683843d75a0e512d0e4185da196f6081

diff --git a/dev-python/vcrpy/metadata.xml b/dev-python/vcrpy/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/dev-python/vcrpy/metadata.xml
@@ -0,0 +1,8 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   maintainer
+   emailmr...@gentoo.org/email
+   nameManuel Rüger/name
+   /maintainer
+/pkgmetadata

diff --git a/dev-python/vcrpy/vcrpy-1.5.2.ebuild 
b/dev-python/vcrpy/vcrpy-1.5.2.ebuild
new file mode 100644
index 000..ffc65ac
--- /dev/null
+++ b/dev-python/vcrpy/vcrpy-1.5.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=(python{2_7,3_3})
+
+inherit distutils-r1
+
+DESCRIPTION=Automatically mock your HTTP interactions to simplify and speed 
up testing
+HOMEPAGE=https://github.com/kevin1024/vcrpy;
+SRC_URI=https://github.com/kevin1024/vcrpy/archive/v${PV}.tar.gz - 
${P}.tar.gz
+
+LICENSE=Apache-2.0
+SLOT=0
+KEYWORDS=~amd64
+IUSE=test
+
+RDEPEND=dev-python/contextlib2[${PYTHON_USEDEP}]
+   =dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   dev-python/wrapt[${PYTHON_USEDEP}]
+DEPEND=test? ( ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}] )
+   dev-python/setuptools[${PYTHON_USEDEP}]
+
+python_test() {
+   py.test || die
+}



[gentoo-commits] gentoo-x86 commit in media-fonts/unifont: unifont-8.0.01.ebuild ChangeLog

2015-06-30 Thread Mike Gilbert (floppym)
floppym 15/07/01 00:49:53

  Modified: ChangeLog
  Added:unifont-8.0.01.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.58 media-fonts/unifont/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/unifont/ChangeLog?rev=1.58view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/unifont/ChangeLog?rev=1.58content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/unifont/ChangeLog?r1=1.57r2=1.58

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-fonts/unifont/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog   21 Feb 2015 23:09:49 -  1.57
+++ ChangeLog   1 Jul 2015 00:49:53 -   1.58
@@ -1,6 +1,11 @@
 # ChangeLog for media-fonts/unifont
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-fonts/unifont/ChangeLog,v 1.57 
2015/02/21 23:09:49 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-fonts/unifont/ChangeLog,v 1.58 
2015/07/01 00:49:53 floppym Exp $
+
+*unifont-8.0.01 (01 Jul 2015)
+
+  01 Jul 2015; Mike Gilbert flop...@gentoo.org +unifont-8.0.01.ebuild:
+  Version bump.
 
   21 Feb 2015; Mike Gilbert flop...@gentoo.org metadata.xml:
   Add myself as a maintainer.



1.1  media-fonts/unifont/unifont-8.0.01.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/unifont/unifont-8.0.01.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/unifont/unifont-8.0.01.ebuild?rev=1.1content-type=text/plain

Index: unifont-8.0.01.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/unifont/unifont-8.0.01.ebuild,v 
1.1 2015/07/01 00:49:53 floppym Exp $

EAPI=5

inherit eutils font toolchain-funcs

DESCRIPTION=GNU Unifont - a Pan-Unicode X11 bitmap iso10646 font
HOMEPAGE=http://unifoundry.com/;
SRC_URI=mirror://gnu/${PN}/${P}/${P}.tar.gz

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

DEPEND=
fontforge? (
app-text/bdf2psf
dev-lang/perl
dev-perl/GD[png(-)]
media-gfx/fontforge
x11-apps/bdftopcf
)

RDEPEND=
utils? (
dev-lang/perl
dev-perl/GD[png(-)]
)


src_prepare() {
sed -i -e 's/install -s/install/' src/Makefile || die
epatch_user
}

src_compile() {
if use fontforge || use utils; then
tc-export CC
makeargs=(
CFLAGS=${CFLAGS}
BUILDFONT=$(usex fontforge 1 '')
)
emake -j1 ${makeargs[@]}
fi
}

src_install() {
makeargs+=(
DESTDIR=${ED%/}
PCFDEST=${ED%/}${FONTDIR}
TTFDEST=${ED%/}${FONTDIR}
USRDIR=usr
)
use utils || makeargs+=( -C font )
emake -j1 ${makeargs[@]} install
font_xfont_config
font_fontconfig
}






[gentoo-commits] dev/mrueg:master commit in: media-plugins/moped/

2015-06-30 Thread Manuel Rüger
commit: 00bce69592cbbf8df56c7ab6591495cb06f5b409
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 00:25:07 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 00:25:07 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=00bce695

[media-plugins/moped] Drop docs var. Installed anyway.

Package-Manager: portage-2.2.20

 media-plugins/moped/moped-0.6.1.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/media-plugins/moped/moped-0.6.1.ebuild 
b/media-plugins/moped/moped-0.6.1.ebuild
index 90b45a1..a24ce5a 100644
--- a/media-plugins/moped/moped-0.6.1.ebuild
+++ b/media-plugins/moped/moped-0.6.1.ebuild
@@ -17,7 +17,4 @@ KEYWORDS=~amd64
 IUSE=test
 
 RDEPEND=media-sound/mopidy[${PYTHON_USEDEP}]
-
 DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
-
-DOCS=( README.rst )



[gentoo-commits] dev/mrueg:master commit in: media-plugins/mopidy-soundcloud/

2015-06-30 Thread Manuel Rüger
commit: e8b945a4b45415d453d8b8fe3b752eea2e841729
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 00:23:56 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 00:23:56 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=e8b945a4

[media-plugins/mopidy-soundcloud] Initial version.

Package-Manager: portage-2.2.20

 media-plugins/mopidy-soundcloud/Manifest   |  1 +
 media-plugins/mopidy-soundcloud/metadata.xml   |  8 ++
 .../mopidy-soundcloud-2.0.0.ebuild | 29 ++
 3 files changed, 38 insertions(+)

diff --git a/media-plugins/mopidy-soundcloud/Manifest 
b/media-plugins/mopidy-soundcloud/Manifest
new file mode 100644
index 000..36835cf
--- /dev/null
+++ b/media-plugins/mopidy-soundcloud/Manifest
@@ -0,0 +1 @@
+DIST mopidy-soundcloud-2.0.0.tar.gz 56161 SHA256 
e7e0e44d9f815dfc015f18f3e8272ca18a9e8bf18c935a6406f9b54e750ae96d SHA512 
2faf6e082fc62ef2b301b1190278307794d77fba7eef18a79bf19615c3120d363b003d245d522e4f4a663fe8c6a742576a43250937c1ba95d1cb95252e2a2232
 WHIRLPOOL 
80e7b55421b43131f94643de82bc9a9fd89b9e7d97a63923b72c9a5631dd91355e7b5c4940582f827928eee6168f9cba49569fa2628c67100c53454f9d0c385a

diff --git a/media-plugins/mopidy-soundcloud/metadata.xml 
b/media-plugins/mopidy-soundcloud/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/media-plugins/mopidy-soundcloud/metadata.xml
@@ -0,0 +1,8 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   maintainer
+   emailmr...@gentoo.org/email
+   nameManuel Rüger/name
+   /maintainer
+/pkgmetadata

diff --git a/media-plugins/mopidy-soundcloud/mopidy-soundcloud-2.0.0.ebuild 
b/media-plugins/mopidy-soundcloud/mopidy-soundcloud-2.0.0.ebuild
new file mode 100644
index 000..62db810
--- /dev/null
+++ b/media-plugins/mopidy-soundcloud/mopidy-soundcloud-2.0.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=(python2_7)
+
+inherit vcs-snapshot distutils-r1
+
+DESCRIPTION=Mopidy extension for playing music from SoundCloud
+HOMEPAGE=http://mopidy.com https://github.com/mopidy/mopidy-soundcloud;
+SRC_URI=https://github.com/mopidy/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz
+
+LICENSE=MIT
+SLOT=0
+KEYWORDS=~amd64
+IUSE=test
+
+RDEPEND=dev-python/pykka[${PYTHON_USEDEP}]
+   =dev-python/requests-2.0.0[${PYTHON_USEDEP}]
+   media-sound/mopidy[${PYTHON_USEDEP}]
+
+DEPEND=test? ( ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}] )
+   dev-python/setuptools[${PYTHON_USEDEP}]
+
+python_test() {
+   py.test || die
+}



[gentoo-commits] dev/mrueg:master commit in: media-sound/mopidy/

2015-06-30 Thread Manuel Rüger
commit: 495aac8b76a8a0ba543c7889c6461d232e5ef81c
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 01:48:08 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 01:48:08 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=495aac8b

[media-sound/mopidy] Install desktop file.

Package-Manager: portage-2.2.20

 media-sound/mopidy/mopidy-1.0.7.ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/media-sound/mopidy/mopidy-1.0.7.ebuild 
b/media-sound/mopidy/mopidy-1.0.7.ebuild
index c2ee8b9..c1090bf 100644
--- a/media-sound/mopidy/mopidy-1.0.7.ebuild
+++ b/media-sound/mopidy/mopidy-1.0.7.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 PYTHON_COMPAT=(python2_7)
 
-inherit distutils-r1
+inherit eutils distutils-r1
 
 DESCRIPTION=An extensible music server that plays music from local disk and 
more
 HOMEPAGE=http://mopidy.com https://github.com/mopidy/mopidy;
@@ -30,7 +30,11 @@ DEPEND=test? ( ${RDEPEND}
 
 S=${WORKDIR}/Mopidy-${PV}
 
-DOCS=( README.rst )
+src_install() {
+   distutils-r1_src_install
+   domenu extra/desktop/mopidy.desktop || die
+
+}
 
 python_test() {
nosetests || die



[gentoo-commits] dev/mrueg:master commit in: sci-mathematics/calc/

2015-06-30 Thread Manuel Rüger
commit: 3f7973a2df91dd9d6f94943301e4f9ca335f73c2
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 02:05:48 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 02:05:48 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=3f7973a2

[sci-mathematics/calc] Use default slot for readline. Fix unquoted variable.

Package-Manager: portage-2.2.20

 sci-mathematics/calc/calc-2.12.5.0.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/sci-mathematics/calc/calc-2.12.5.0.ebuild 
b/sci-mathematics/calc/calc-2.12.5.0.ebuild
index 35faa0b..fd0e3cb 100644
--- a/sci-mathematics/calc/calc-2.12.5.0.ebuild
+++ b/sci-mathematics/calc/calc-2.12.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/calc-2.12.4.4.ebuild,v 
1.1 2012/08/09 17:52:26 bicatali Exp $
 
@@ -16,9 +16,8 @@ KEYWORDS=~amd64
 
 IUSE=
 
-DEPEND=
-   sys-libs/ncurses
-   sys-libs/readline
+DEPEND=sys-libs/ncurses
+   sys-libs/readline:0
 RDEPEND=${DEPEND}
 
 src_prepare() {
@@ -37,7 +36,7 @@ src_compile() {
LDFLAGS=${LDFLAGS} \
CALCPAGER=${PAGER} \
USE_READLINE=-DUSE_READLINE \
-   READLINE_LIB=-lreadline -lhistory -lncurses -L${S}/custom 
-lcustcalc \
+   READLINE_LIB=-lreadline -lhistory -lncurses -L\${S}\/custom 
-lcustcalc \
all
 }
 



[gentoo-commits] proj/grss: New branch: master

2015-06-30 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Wed Jul  1 02:13:28 2015 +

New branch: master




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

2015-06-30 Thread Patrick Lauer (patrick)
patrick 15/07/01 03:03:43

  Modified: package.mask ChangeLog
  Log:
  Mask kernel versions that are not actually the version they claim to be 
#553670

Revision  ChangesPath
1.16641  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16640
retrieving revision 1.16641
diff -u -r1.16640 -r1.16641
--- package.mask28 Jun 2015 18:12:43 -  1.16640
+++ package.mask1 Jul 2015 03:03:43 -   1.16641
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16640 2015/06/28 
18:12:43 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16641 2015/07/01 
03:03:43 patrick 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
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Patrick Lauer patr...@gentoo.org (1 Jul 2015)
+# Wrong version #553670
+=sys-kernel/gentoo-sources-4.1.1
+=sys-kernel/gentoo-sources-4.0.7
+
 # Johannes Huber j...@gentoo.org (26 Jun 2015)
 # Mask for removal in 30 days. Segfaults on startup, bug #505314.
 # Last release in 2010. Non upstream repository, bug #544822.



1.10153  profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10152
retrieving revision 1.10153
diff -u -r1.10152 -r1.10153
--- ChangeLog   28 Jun 2015 18:12:43 -  1.10152
+++ ChangeLog   1 Jul 2015 03:03:43 -   1.10153
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10152 2015/06/28 
18:12:43 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10153 2015/07/01 
03:03:43 patrick 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!
 
+  01 Jul 2015; Patrick Lauer patr...@gentoo.org package.mask:
+  Mask kernel versions that are not actually the version they claim to be
+  #553670
+
   28 Jun 2015; Fabian Groffen grob...@gentoo.org package.mask:
   Extend Exim 4.86 RC mask
 






[gentoo-commits] dev/mrueg:master commit in: media-plugins/mopidy-mpris/

2015-06-30 Thread Manuel Rüger
commit: 5dc824dcd2417ba37faa9609caca1f14355da713
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Wed Jul  1 01:35:10 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Wed Jul  1 01:35:10 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=5dc824dc

[media-plugins/mopidy-mpris] Initial version.

Package-Manager: portage-2.2.20

 media-plugins/mopidy-mpris/Manifest|  1 +
 media-plugins/mopidy-mpris/metadata.xml|  8 ++
 .../mopidy-mpris/mopidy-mpris-1.2.0.ebuild | 30 ++
 3 files changed, 39 insertions(+)

diff --git a/media-plugins/mopidy-mpris/Manifest 
b/media-plugins/mopidy-mpris/Manifest
new file mode 100644
index 000..c16ecd2
--- /dev/null
+++ b/media-plugins/mopidy-mpris/Manifest
@@ -0,0 +1 @@
+DIST mopidy-mpris-1.2.0.tar.gz 20323 SHA256 
b72da27ea8ba30c9b516eb9ea07205e361a305c27e6b7d27079c85a2eb64e477 SHA512 
80899891f59246efb91be18822b72ffee596176cce40e39fccf2b409d56d35dacfd6008898ca074225d370ce5de7f4f7e9171d22db8ecce4cb8b5b617ab9e0ae
 WHIRLPOOL 
3dd59c4afc00ae8198a29c0386692c2bcbc90ee00b8a509e7fff7be61f76cff95bed9460774049b95599b0f587ac92d74733c2faa0a2a8dada359ac42a9e7658

diff --git a/media-plugins/mopidy-mpris/metadata.xml 
b/media-plugins/mopidy-mpris/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/media-plugins/mopidy-mpris/metadata.xml
@@ -0,0 +1,8 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   maintainer
+   emailmr...@gentoo.org/email
+   nameManuel Rüger/name
+   /maintainer
+/pkgmetadata

diff --git a/media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild 
b/media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild
new file mode 100644
index 000..ab1905c
--- /dev/null
+++ b/media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=(python2_7)
+
+inherit vcs-snapshot distutils-r1
+
+DESCRIPTION=Mopidy extension for controlling Mopidy through the MPRIS D-Bus 
interface
+HOMEPAGE=https://github.com/mopidy/mopidy-mpris;
+SRC_URI=https://github.com/mopidy/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz
+
+LICENSE=Apache-2.0
+SLOT=0
+KEYWORDS=~amd64
+IUSE=test
+
+RDEPEND=dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pykka[${PYTHON_USEDEP}]
+   media-sound/mopidy[${PYTHON_USEDEP}]
+
+DEPEND=test? ( ${RDEPEND}
+   =dev-python/mock-1.0[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}] )
+   dev-python/setuptools[${PYTHON_USEDEP}]
+
+python_test() {
+   py.test || die
+}



[gentoo-commits] gentoo-x86 commit in media-fonts/arphicfonts: arphicfonts-0.2.20080216.1-r2.ebuild ChangeLog arphicfonts-0.2.20080216.1-r1.ebuild arphicfonts-0.2.20080216.1.ebuild

2015-06-30 Thread Ben de Groot (yngwin)
yngwin  15/07/01 02:17:44

  Modified: arphicfonts-0.2.20080216.1-r2.ebuild ChangeLog
  Removed:  arphicfonts-0.2.20080216.1-r1.ebuild
arphicfonts-0.2.20080216.1.ebuild
  Log:
  Mark -r2 stable, which fixes bug #553654. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.3  
media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild

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

Index: arphicfonts-0.2.20080216.1-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- arphicfonts-0.2.20080216.1-r2.ebuild10 Jun 2014 01:04:05 -  
1.2
+++ arphicfonts-0.2.20080216.1-r2.ebuild1 Jul 2015 02:17:44 -   
1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild,v
 1.2 2014/06/10 01:04:05 vapier Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild,v
 1.3 2015/07/01 02:17:44 yngwin Exp $
 
 EAPI=5
 inherit font eutils
@@ -17,7 +17,7 @@
 
 LICENSE=Arphic
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos
+KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos
 IUSE=
 
 DEPEND=media-gfx/fontforge



1.60 media-fonts/arphicfonts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/arphicfonts/ChangeLog?rev=1.60view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/arphicfonts/ChangeLog?rev=1.60content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-fonts/arphicfonts/ChangeLog?r1=1.59r2=1.60

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-fonts/arphicfonts/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   23 Apr 2015 00:02:34 -  1.59
+++ ChangeLog   1 Jul 2015 02:17:44 -   1.60
@@ -1,6 +1,11 @@
 # ChangeLog for media-fonts/arphicfonts
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-fonts/arphicfonts/ChangeLog,v 1.59 
2015/04/23 00:02:34 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-fonts/arphicfonts/ChangeLog,v 1.60 
2015/07/01 02:17:44 yngwin Exp $
+
+  01 Jul 2015; Ben de Groot yng...@gentoo.org
+  -arphicfonts-0.2.20080216.1-r1.ebuild, -arphicfonts-0.2.20080216.1.ebuild,
+  arphicfonts-0.2.20080216.1-r2.ebuild:
+  Mark -r2 stable, which fixes bug #553654. Remove old.
 
   23 Apr 2015; Manuel Rüger mr...@gentoo.org 
-arphicfonts-0.1.20060928.ebuild:
   Remove old.






[gentoo-commits] gentoo-x86 commit in app-emulation/vice: metadata.xml ChangeLog

2015-06-30 Thread Patrick Lauer (patrick)
patrick 15/07/01 02:44:09

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

Revision  ChangesPath
1.9  app-emulation/vice/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/vice/metadata.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- metadata.xml9 Jun 2015 11:12:00 -   1.8
+++ metadata.xml1 Jul 2015 02:44:09 -   1.9
@@ -6,7 +6,6 @@
flag name=ethernetEnable ethernet emulation/flag
flag name=fullscreenEnable the ability to run 
fullscreen/flag
flag name=gtk2Use GTK+2 for GUI instead of GTK+3/flag
-   flag name=gtk3Use GTK+3for GUI  instead of GTK+2/flag
flag name=memmapEnable extra monitor features/flag
flag name=sdlsoundUse pkgmedia-libs/libsdl/pkg for 
sound support/flag
flag name=vteEnable support for pkgx11-libs/vte/pkg in 
the GTK+ interface/flag



1.103app-emulation/vice/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog   30 Jun 2015 21:30:19 -  1.102
+++ ChangeLog   1 Jul 2015 02:44:09 -   1.103
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/vice
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.102 
2015/06/30 21:30:19 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.103 
2015/07/01 02:44:09 patrick Exp $
+
+  01 Jul 2015; Patrick Lauer patr...@gentoo.org metadata.xml:
+  Remove unneeded useflag description from metadata.xml
 
   30 Jun 2015; Michael Sterrett mr_bon...@gentoo.org
   -files/vice-2.4.16-autotools.patch, -vice-2.4.16-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in www-client/vivaldi: vivaldi-1.0.212.3_p1.ebuild ChangeLog vivaldi-1.0.201.2_p1.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 04:26:13

  Modified: ChangeLog
  Added:vivaldi-1.0.212.3_p1.ebuild
  Removed:  vivaldi-1.0.201.2_p1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.29 www-client/vivaldi/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/vivaldi/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   26 Jun 2015 06:24:11 -  1.28
+++ ChangeLog   1 Jul 2015 04:26:13 -   1.29
@@ -1,6 +1,12 @@
 # ChangeLog for www-client/vivaldi
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/vivaldi/ChangeLog,v 1.28 
2015/06/26 06:24:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/vivaldi/ChangeLog,v 1.29 
2015/07/01 04:26:13 jer Exp $
+
+*vivaldi-1.0.212.3_p1 (01 Jul 2015)
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org -vivaldi-1.0.201.2_p1.ebuild,
+  +vivaldi-1.0.212.3_p1.ebuild:
+  Version bump.
 
 *vivaldi-1.0.209.3_p1 (26 Jun 2015)
 



1.1  www-client/vivaldi/vivaldi-1.0.212.3_p1.ebuild

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

Index: vivaldi-1.0.212.3_p1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/vivaldi/vivaldi-1.0.212.3_p1.ebuild,v 1.1 
2015/07/01 04:26:13 jer Exp $

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

inherit chromium multilib unpacker toolchain-funcs

DESCRIPTION=A new browser for our friends
HOMEPAGE=http://vivaldi.com/;
VIVALDI_BASE_URI=${HOMEPAGE}download/snapshot/${PN}-snapshot_${PV/_p/-}_
SRC_URI=
amd64? ( ${VIVALDI_BASE_URI}amd64.deb - ${P}-amd64.deb )
x86? ( ${VIVALDI_BASE_URI}i386.deb - ${P}-i386.deb )


LICENSE=Vivaldi
SLOT=0
KEYWORDS=~amd64 ~x86

RESTRICT=bindist mirror

S=${WORKDIR}

RDEPEND=
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
=dev-libs/openssl-1.0.1:0
gnome-base/gconf:2
media-libs/alsa-lib
media-libs/fontconfig
media-libs/freetype
net-misc/curl
net-print/cups
sys-apps/dbus
sys-libs/libcap
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}
VIVALDI_HOME=opt/${PN}-snapshot

src_unpack() {
unpack_deb ${A}
}

src_prepare() {
sed -i \
-e 's|vivaldi-snapshot|vivaldi|g' \
usr/share/applications/${PN}-snapshot.desktop \
usr/share/xfce4/helpers/${PN}-snapshot.desktop || die

mv usr/share/doc/${PN}-snapshot usr/share/doc/${PF} || die
rm usr/bin/${PN}-snapshot || die
rm _gpgbuilder || die

local c d
for d in 16 22 24 32 48 64 128 256; do
mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die
cp \
${VIVALDI_HOME}/product_logo_${d}.png \
usr/share/icons/hicolor/${d}x${d}/apps/vivaldi.png || 
die
done

pushd ${VIVALDI_HOME}/locales  /dev/null || die
chromium_remove_language_paks
popd  /dev/null || die

}

src_install() {
mv * ${D} || die
dosym /${VIVALDI_HOME}/${PN}-snapshot /usr/bin/${PN}

fperms 4711 /${VIVALDI_HOME}/${PN}-sandbox
}






[gentoo-commits] dev/graaff:master commit in: dev-ruby/krb5-auth/

2015-06-30 Thread Hans de Graaff
commit: 4f196c69c967af7a877fc40d03bd9325ebf167e1
Author: Hans de Graaff hans AT degraaff DOT org
AuthorDate: Wed Jul  1 04:56:53 2015 +
Commit: Hans de Graaff graaff AT gentoo DOT org
CommitDate: Wed Jul  1 04:56:53 2015 +
URL:https://gitweb.gentoo.org/dev/graaff.git/commit/?id=4f196c69

Cleanup.

Package-Manager: portage-2.2.18

 dev-ruby/krb5-auth/ChangeLog   |  6 +++-
 dev-ruby/krb5-auth/krb5-auth-0.7-r3.ebuild | 52 
 dev-ruby/krb5-auth/krb5-auth-0.7-r4.ebuild | 54 --
 3 files changed, 5 insertions(+), 107 deletions(-)

diff --git a/dev-ruby/krb5-auth/ChangeLog b/dev-ruby/krb5-auth/ChangeLog
index 4a6873d..726658f 100644
--- a/dev-ruby/krb5-auth/ChangeLog
+++ b/dev-ruby/krb5-auth/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for dev-ruby/krb5-auth
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  01 Jul 2015; Hans de Graaff gra...@gentoo.org -krb5-auth-0.7-r3.ebuild,
+  -krb5-auth-0.7-r4.ebuild:
+  Cleanup.
+
 *krb5-auth-0.7-r5 (16 Sep 2014)
 
   16 Sep 2014; Hans de Graaff gra...@gentoo.org +krb5-auth-0.7-r5.ebuild:

diff --git a/dev-ruby/krb5-auth/krb5-auth-0.7-r3.ebuild 
b/dev-ruby/krb5-auth/krb5-auth-0.7-r3.ebuild
deleted file mode 100644
index 4167510..000
--- a/dev-ruby/krb5-auth/krb5-auth-0.7-r3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/zentest/zentest-3.3.0.ebuild,v 1.1 
2006/08/28 14:34:06 pclouds Exp $
-
-EAPI=4
-USE_RUBY=ruby18
-
-RUBY_FAKEGEM_DOCDIR=doc
-RUBY_FAKEGEM_EXTRADOC=README TODO example.rb
-
-RUBY_FAKEGEM_TASK_TEST=
-
-RUBY_FAKEGEM_EXTRAINSTALL=ext
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION=Ruby bindings for the Kerberos library
-HOMEPAGE=http://rubyforge.org/projects/krb5-auth/;
-LICENSE=GPL-2
-
-KEYWORDS=~amd64 ~x86 ~x86-macos
-SLOT=0
-IUSE=
-
-DEPEND=${DEPEND} virtual/krb5
-RDEPEND=${RDEPEND} virtual/krb5
-
-all_ruby_prepare() {
-   # Move the example out of the bin directory to avoid auto-installation
-   mv bin/example.rb . || die
-   rmdir bin || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext extconf.rb || die
-}
-
-each_ruby_compile() {
-   # We have injected --no-undefined in Ruby as a safety precaution
-   # against broken ebuilds, but these bindings unfortunately rely on
-   # a symbol that cannot be linked directly.
-   find . -name Makefile -print0 | xargs -0 \
-   sed -i -e 's:-Wl,--no-undefined::' || die --no-undefined 
removal failed
-
-   emake -Cext || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   dodoc example.rb
-}

diff --git a/dev-ruby/krb5-auth/krb5-auth-0.7-r4.ebuild 
b/dev-ruby/krb5-auth/krb5-auth-0.7-r4.ebuild
deleted file mode 100644
index 4378845..000
--- a/dev-ruby/krb5-auth/krb5-auth-0.7-r4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/zentest/zentest-3.3.0.ebuild,v 1.1 
2006/08/28 14:34:06 pclouds Exp $
-
-EAPI=4
-USE_RUBY=ruby18 ruby19
-
-RUBY_FAKEGEM_DOCDIR=doc
-RUBY_FAKEGEM_EXTRADOC=README TODO example.rb
-
-RUBY_FAKEGEM_TASK_TEST=
-
-RUBY_FAKEGEM_EXTRAINSTALL=ext
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION=Ruby bindings for the Kerberos library
-HOMEPAGE=http://rubyforge.org/projects/krb5-auth/;
-LICENSE=GPL-2
-
-KEYWORDS=~amd64 ~x86 ~x86-macos
-SLOT=0
-IUSE=
-
-DEPEND=${DEPEND} virtual/krb5
-RDEPEND=${RDEPEND} virtual/krb5
-
-RUBY_PATCHES=( ${P}-ruby19.patch )
-
-all_ruby_prepare() {
-   # Move the example out of the bin directory to avoid auto-installation
-   mv bin/example.rb . || die
-   rmdir bin || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext extconf.rb || die
-}
-
-each_ruby_compile() {
-   # We have injected --no-undefined in Ruby as a safety precaution
-   # against broken ebuilds, but these bindings unfortunately rely on
-   # a symbol that cannot be linked directly.
-   find . -name Makefile -print0 | xargs -0 \
-   sed -i -e 's:-Wl,--no-undefined::' || die --no-undefined 
removal failed
-
-   emake -Cext || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   dodoc example.rb
-}



[gentoo-commits] gentoo-x86 commit in www-client/qupzilla: qupzilla-1.8.6-r1.ebuild ChangeLog

2015-06-30 Thread Ben de Groot (yngwin)
yngwin  15/07/01 05:09:20

  Modified: ChangeLog
  Added:qupzilla-1.8.6-r1.ebuild
  Log:
  Add QTSA patch to fix compilation with Qt 5.5 (bug #548470)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.59 www-client/qupzilla/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/ChangeLog?rev=1.59view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/ChangeLog?rev=1.59content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/ChangeLog?r1=1.58r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/qupzilla/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   4 Jun 2015 19:06:11 -   1.58
+++ ChangeLog   1 Jul 2015 05:09:20 -   1.59
@@ -1,6 +1,12 @@
 # ChangeLog for www-client/qupzilla
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/ChangeLog,v 1.58 
2015/06/04 19:06:11 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/ChangeLog,v 1.59 
2015/07/01 05:09:20 yngwin Exp $
+
+*qupzilla-1.8.6-r1 (01 Jul 2015)
+
+  01 Jul 2015; Ben de Groot yng...@gentoo.org
+  +files/qtsingleapplication-QDataStream.patch, +qupzilla-1.8.6-r1.ebuild:
+  Add QTSA patch to fix compilation with Qt 5.5 (bug #548470)
 
   04 Jun 2015; Michael Palimaka kensing...@gentoo.org qupzilla-1.8.6.ebuild:
   Move various kde-base packages to kde-apps.



1.1  www-client/qupzilla/qupzilla-1.8.6-r1.ebuild

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

Index: qupzilla-1.8.6-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/qupzilla/qupzilla-1.8.6-r1.ebuild,v 1.1 
2015/07/01 05:09:20 yngwin Exp $

EAPI=5
MY_PN=QupZilla
MY_P=${MY_PN}-${PV}
PLOCALES=ar_SA bg_BG ca_ES cs_CZ de_DE el_GR es_ES es_MX es_VE eu_ES fa_IR 
fi_FI fr_FR gl_ES he_IL hr_HR hu_HU id_ID it_IT ja_JP ka_GE lg lv_LV nl_NL nqo 
pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sr sr@ijekavian sr@ijekavianlatin sr@latin 
sv_SE tr_TR uk_UA uz@Latn zh_CN zh_TW
PLUGINS_HASH='1f8122da27362ae14a6e3c029830b51e9bac03be'
PLUGINS_VERSION='2015.01.27' # if there are no updates, we can use the older 
archive

inherit eutils l10n multilib qmake-utils vcs-snapshot

DESCRIPTION=Qt WebKit web browser
HOMEPAGE=http://www.qupzilla.com/;
SRC_URI=https://github.com/${MY_PN}/${PN}/releases/download/v${PV}/${MY_P}.tar.xz

https://github.com/${MY_PN}/${PN}-plugins/archive/${PLUGINS_HASH}.tar.gz - 
${PN}-plugins-${PLUGINS_VERSION}.tar.gz

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~arm ~x86
IUSE=dbus debug gnome-keyring kde nonblockdialogs +qt4 qt5
REQUIRED_USE=^^ ( qt4 qt5 )
kde? ( qt4 )

RDEPEND=dev-libs/openssl:0
x11-libs/libX11
gnome-keyring? ( gnome-base/gnome-keyring )
kde? ( kde-base/kdelibs:4
kde-apps/kwalletd:4 )
qt4? ( =dev-qt/qtcore-4.8:4
=dev-qt/qtgui-4.8:4
=dev-qt/qtscript-4.8:4
=dev-qt/qtsql-4.8:4[sqlite]
=dev-qt/qtwebkit-4.8:4
dbus? ( =dev-qt/qtdbus-4.8:4 ) )
qt5? ( dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtconcurrent:5
dev-qt/qtprintsupport:5
dev-qt/qtscript:5
dev-qt/qtsql:5[sqlite]
dev-qt/qtwebkit:5
dbus? ( dev-qt/qtdbus:5 ) )
DEPEND=${RDEPEND}
virtual/pkgconfig
qt5? ( dev-qt/linguist-tools:5 )

DOCS=( AUTHORS CHANGELOG FAQ README.md )
S=${WORKDIR}/${MY_P}

src_prepare() {
rm_loc() {
# remove localizations the user has not specified
sed -i -e /${1}.ts/d translations/translations.pri || die
rm translations/${1}.ts || die
}

# patch bundled but changed QTSA for Qt-5.5, see bugs 548470 and 489142
epatch ${FILESDIR}/qtsingleapplication-QDataStream.patch

epatch_user

# remove outdated prebuilt localizations
rm -rf bin/locale || die

# remove empty locale
rm translations/empty.ts || die

# get extra plugins into qupzilla build tree
mv ${WORKDIR}/${PN}-plugins-${PLUGINS_VERSION}/plugins/* 
${S}/src/plugins/ || die

l10n_find_plocales_changes translations  .ts
l10n_for_each_disabled_locale_do rm_loc
}

src_configure() {

[gentoo-commits] gentoo-x86 commit in xfce-base/libxfce4util: ChangeLog libxfce4util-4.12.1.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:10:17

  Modified: ChangeLog libxfce4util-4.12.1.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.199xfce-base/libxfce4util/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4util/ChangeLog?rev=1.199view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4util/ChangeLog?rev=1.199content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4util/ChangeLog?r1=1.198r2=1.199

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog   8 Mar 2015 15:06:39 -   1.198
+++ ChangeLog   1 Jul 2015 05:10:17 -   1.199
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/libxfce4util
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/ChangeLog,v 1.198 
2015/03/08 15:06:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/ChangeLog,v 1.199 
2015/07/01 05:10:17 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org libxfce4util-4.12.1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *libxfce4util-4.12.1 (08 Mar 2015)
 



1.2  xfce-base/libxfce4util/libxfce4util-4.12.1.ebuild

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

Index: libxfce4util-4.12.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/libxfce4util/libxfce4util-4.12.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libxfce4util-4.12.1.ebuild  8 Mar 2015 15:06:39 -   1.1
+++ libxfce4util-4.12.1.ebuild  1 Jul 2015 05:10:17 -   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/xfce-base/libxfce4util/libxfce4util-4.12.1.ebuild,v 1.1 
2015/03/08 15:06:39 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfce4util/libxfce4util-4.12.1.ebuild,v 1.2 
2015/07/01 05:10:17 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=LGPL-2
 SLOT=0/7
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris
 IUSE=debug
 
 RDEPEND==dev-libs/glib-2.24






[gentoo-commits] gentoo-x86 commit in www-client/qupzilla/files: qtsingleapplication-QDataStream.patch

2015-06-30 Thread Ben de Groot (yngwin)
yngwin  15/07/01 05:09:20

  Added:qtsingleapplication-QDataStream.patch
  Log:
  Add QTSA patch to fix compilation with Qt 5.5 (bug #548470)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.1  
www-client/qupzilla/files/qtsingleapplication-QDataStream.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/files/qtsingleapplication-QDataStream.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/qupzilla/files/qtsingleapplication-QDataStream.patch?rev=1.1content-type=text/plain

Index: qtsingleapplication-QDataStream.patch
===
--- src/lib/3rdparty/qtsingleapplication/qtlocalpeer.cpp.ORIG   2015-05-07 
18:29:35.045402873 +0200
+++ src/lib/3rdparty/qtsingleapplication/qtlocalpeer.cpp2015-05-07 
18:33:04.942404927 +0200
@@ -39,6 +39,7 @@
 /


+#include QDataStream
 #include qtlocalpeer.h
 #include QCoreApplication
 #include QTime






[gentoo-commits] gentoo-x86 commit in xfce-base/libxfcegui4: ChangeLog libxfcegui4-4.10.0-r1.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:14:08

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

Revision  ChangesPath
1.187xfce-base/libxfcegui4/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/ChangeLog?rev=1.187view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/ChangeLog?rev=1.187content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/ChangeLog?r1=1.186r2=1.187

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog   27 Jul 2014 16:14:17 -  1.186
+++ ChangeLog   1 Jul 2015 05:14:08 -   1.187
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/libxfcegui4
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/ChangeLog,v 1.186 
2014/07/27 16:14:17 ssuominen Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/ChangeLog,v 1.187 
2015/07/01 05:14:08 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org libxfcegui4-4.10.0-r1.ebuild:
+  Stable for HPPA (bug #553500).
 
   27 Jul 2014; Samuli Suominen ssuomi...@gentoo.org
   libxfcegui4-4.10.0-r1.ebuild, libxfcegui4-4.10.0.ebuild:



1.3  xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild?r1=1.2r2=1.3

Index: libxfcegui4-4.10.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libxfcegui4-4.10.0-r1.ebuild27 Jul 2014 16:14:17 -  1.2
+++ libxfcegui4-4.10.0-r1.ebuild1 Jul 2015 05:14:08 -   1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild,v 
1.2 2014/07/27 16:14:17 ssuominen Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfcegui4/libxfcegui4-4.10.0-r1.ebuild,v 
1.3 2015/07/01 05:14:08 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux 
~x64-solaris
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux 
~x64-solaris
 IUSE=glade startup-notification
 
 RDEPEND=gnome-base/libglade






[gentoo-commits] gentoo-x86 commit in xfce-base/xfce4-appfinder: xfce4-appfinder-4.12.0-r1.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:14:49

  Modified: xfce4-appfinder-4.12.0-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild?r1=1.1r2=1.2

Index: xfce4-appfinder-4.12.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-appfinder-4.12.0-r1.ebuild11 May 2015 17:50:51 -  1.1
+++ xfce4-appfinder-4.12.0-r1.ebuild1 Jul 2015 05:14:49 -   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/xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild,v
 1.1 2015/05/11 17:50:51 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-appfinder/xfce4-appfinder-4.12.0-r1.ebuild,v
 1.2 2015/07/01 05:14:49 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
 IUSE=debug
 
 RDEPEND==dev-libs/glib-2.30:=



1.43 xfce-base/xfce4-appfinder/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-appfinder/ChangeLog?rev=1.43view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-appfinder/ChangeLog?rev=1.43content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-appfinder/ChangeLog?r1=1.42r2=1.43

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-appfinder/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   11 May 2015 17:50:51 -  1.42
+++ ChangeLog   1 Jul 2015 05:14:49 -   1.43
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-base/xfce4-appfinder
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-appfinder/ChangeLog,v 1.42 
2015/05/11 17:50:51 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-appfinder/ChangeLog,v 1.43 
2015/07/01 05:14:49 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  xfce4-appfinder-4.12.0-r1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-appfinder-4.12.0-r1 (11 May 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-base/garcon: garcon-0.5.0-r1.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:13:18

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

Revision  ChangesPath
1.2  xfce-base/garcon/garcon-0.5.0-r1.ebuild

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

Index: garcon-0.5.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/garcon/garcon-0.5.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- garcon-0.5.0-r1.ebuild  11 May 2015 17:37:20 -  1.1
+++ garcon-0.5.0-r1.ebuild  1 Jul 2015 05:13:18 -   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/xfce-base/garcon/garcon-0.5.0-r1.ebuild,v 
1.1 2015/05/11 17:37:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/garcon/garcon-0.5.0-r1.ebuild,v 
1.2 2015/07/01 05:13:18 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=LGPL-2 FDL-1.1
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
 IUSE=debug
 
 RDEPEND==dev-libs/glib-2.30:=



1.74 xfce-base/garcon/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/garcon/ChangeLog?rev=1.74view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/garcon/ChangeLog?rev=1.74content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/garcon/ChangeLog?r1=1.73r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/garcon/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   11 May 2015 17:37:20 -  1.73
+++ ChangeLog   1 Jul 2015 05:13:18 -   1.74
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/garcon
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/garcon/ChangeLog,v 1.73 
2015/05/11 17:37:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/garcon/ChangeLog,v 1.74 
2015/07/01 05:13:18 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org garcon-0.5.0-r1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *garcon-0.5.0-r1 (11 May 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-base/xfwm4: xfwm4-4.12.3.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:20:00

  Modified: xfwm4-4.12.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  xfce-base/xfwm4/xfwm4-4.12.3.ebuild

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

Index: xfwm4-4.12.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/xfwm4-4.12.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfwm4-4.12.3.ebuild 17 May 2015 14:46:29 -  1.1
+++ xfwm4-4.12.3.ebuild 1 Jul 2015 05:20:00 -   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/xfce-base/xfwm4/xfwm4-4.12.3.ebuild,v 1.1 
2015/05/17 14:46:29 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/xfwm4-4.12.3.ebuild,v 1.2 
2015/07/01 05:20:00 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
 IUSE=debug dri startup-notification +xcomposite
 
 RDEPEND=dev-libs/dbus-glib:=



1.234xfce-base/xfwm4/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog   17 May 2015 14:46:29 -  1.233
+++ ChangeLog   1 Jul 2015 05:20:00 -   1.234
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfwm4
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v 1.233 
2015/05/17 14:46:29 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v 1.234 
2015/07/01 05:20:00 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfwm4-4.12.3.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfwm4-4.12.3 (17 May 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-base/xfdesktop: xfdesktop-4.12.2.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:19:24

  Modified: xfdesktop-4.12.2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  xfce-base/xfdesktop/xfdesktop-4.12.2.ebuild

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

Index: xfdesktop-4.12.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.12.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfdesktop-4.12.2.ebuild 17 May 2015 15:07:14 -  1.1
+++ xfdesktop-4.12.2.ebuild 1 Jul 2015 05:19:24 -   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/xfce-base/xfdesktop/xfdesktop-4.12.2.ebuild,v 1.1 
2015/05/17 15:07:14 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.12.2.ebuild,v 1.2 
2015/07/01 05:19:24 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
 IUSE=debug libnotify +thunar
 
 # src/xfdesktop-file-utils.c:#if GLIB_CHECK_VERSION (2, 38, 0)



1.256xfce-base/xfdesktop/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/ChangeLog?rev=1.256view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/ChangeLog?rev=1.256content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfdesktop/ChangeLog?r1=1.255r2=1.256

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- ChangeLog   17 May 2015 15:07:14 -  1.255
+++ ChangeLog   1 Jul 2015 05:19:24 -   1.256
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfdesktop
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v 1.255 
2015/05/17 15:07:14 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v 1.256 
2015/07/01 05:19:24 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfdesktop-4.12.2.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfdesktop-4.12.2 (17 May 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-base/xfce4-meta: xfce4-meta-4.12.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:20:28

  Modified: xfce4-meta-4.12.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild?r1=1.1r2=1.2

Index: xfce4-meta-4.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-meta-4.12.ebuild  8 Mar 2015 15:06:39 -   1.1
+++ xfce4-meta-4.12.ebuild  1 Jul 2015 05:20:28 -   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/xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild,v 1.1 
2015/03/08 15:06:39 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.12.ebuild,v 1.2 
2015/07/01 05:20:28 jer Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE=metapackage
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=minimal +svg
 
 RDEPEND==x11-themes/gtk-engines-xfce-3:0



1.47 xfce-base/xfce4-meta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-meta/ChangeLog?rev=1.47view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-meta/ChangeLog?rev=1.47content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-meta/ChangeLog?r1=1.46r2=1.47

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   8 Mar 2015 15:06:39 -   1.46
+++ ChangeLog   1 Jul 2015 05:20:28 -   1.47
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfce4-meta
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/ChangeLog,v 1.46 
2015/03/08 15:06:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/ChangeLog,v 1.47 
2015/07/01 05:20:28 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-meta-4.12.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-meta-4.12 (08 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/bundler-audit: ChangeLog bundler-audit-0.4.0.ebuild

2015-06-30 Thread Hans de Graaff (graaff)
graaff  15/07/01 05:30:45

  Modified: ChangeLog
  Added:bundler-audit-0.4.0.ebuild
  Log:
  Version bump. Fix USE=doc. Run tests as much as possible.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.2  dev-ruby/bundler-audit/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   26 Jun 2015 15:23:09 -  1.1
+++ ChangeLog   1 Jul 2015 05:30:45 -   1.2
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/bundler-audit
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/ChangeLog,v 1.1 
2015/06/26 15:23:09 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/ChangeLog,v 1.2 
2015/07/01 05:30:45 graaff Exp $
+
+*bundler-audit-0.4.0 (01 Jul 2015)
+
+  01 Jul 2015; Hans de Graaff gra...@gentoo.org +bundler-audit-0.4.0.ebuild:
+  Version bump. Fix USE=doc. Run tests as much as possible.
 
 *bundler-audit-0.3.1 (26 Jun 2015)
 



1.1  dev-ruby/bundler-audit/bundler-audit-0.4.0.ebuild

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

Index: bundler-audit-0.4.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/bundler-audit-0.4.0.ebuild,v 1.1 
2015/07/01 05:30:45 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_RECIPE_DOC=rdoc

RUBY_FAKEGEM_RECIPE_TEST=rspec3

RUBY_FAKEGEM_EXTRAINSTALL=data

inherit ruby-fakegem

DESCRIPTION=Provides patch-level verification for Bundled apps
HOMEPAGE=https://github.com/rubysec/bundler-audit;

LICENSE=GPL-3
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris
IUSE=test

ruby_add_rdepend 
=dev-ruby/thor-0.18:0
=dev-ruby/bundler-1.2:0


all_ruby_prepare() {
sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die

# Avoid specs that require network access via 'bundle install'
rm spec/{integration,scanner}_spec.rb || die

# Avoid specs that only work when the source is a git repository
sed -i -e '/describe path/,/^  end/ s:^:#:' \
-e '/describe update!/,/^  end/ s:^:#:' \
spec/database_spec.rb || die
}






[gentoo-commits] gentoo-x86 commit in net-wireless/horst: horst-4.2.ebuild metadata.xml horst-9999.ebuild Manifest ChangeLog

2015-06-30 Thread Michael Weber (xmw)
xmw 15/07/01 05:44:26

  Added:horst-4.2.ebuild metadata.xml horst-.ebuild
Manifest ChangeLog
  Log:
  Initial import.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
62EEF090)

Revision  ChangesPath
1.1  net-wireless/horst/horst-4.2.ebuild

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

Index: horst-4.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/horst/horst-4.2.ebuild,v 1.1 
2015/07/01 05:44:26 xmw Exp $

EAPI=5

inherit toolchain-funcs

DESCRIPTION=Small 802.11 wireless LAN analyzer
HOMEPAGE=http://br1.einfach.org/tech/horst/;
SRC_URI=http://br1.einfach.org/${PN}_dl/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug +pcap test

RDEPEND=sys-libs/ncurses
pcap? ( net-libs/libpcap )
DEPEND=${RDEPEND}
test? ( sys-devel/sparse )

#just semantic tests, no functional tests
RESTRICT=test

src_compile() {
tc-export CC
emake PCAP=$(usex pcap 1 0) DEBUG=$(usex debug 1 0)
}

src_install() {
dosbin ${PN}{,.sh}
dodoc README TODO
doman ${PN}.1
}



1.1  net-wireless/horst/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/horst/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/horst/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
emailx...@gentoo.org/email
nameMichael Weber/name
/maintainer
use
flag name=pcapAdd support for network packet capture via 
net-libs/libpcap/flag
/use
/pkgmetadata



1.1  net-wireless/horst/horst-.ebuild

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

Index: horst-.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/horst/horst-.ebuild,v 1.1 
2015/07/01 05:44:26 xmw Exp $

EAPI=5

inherit toolchain-funcs git-r3

DESCRIPTION=Small 802.11 wireless LAN analyzer
HOMEPAGE=http://br1.einfach.org/tech/horst/;
EGIT_REPO_URI=https://github.com/br101/${PN};

LICENSE=GPL-2
SLOT=0
KEYWORDS=
IUSE=debug +pcap test

RDEPEND=sys-libs/ncurses
pcap? ( net-libs/libpcap )
DEPEND=${RDEPEND}
test? ( sys-devel/sparse )

#just semantic tests, no functional tests
RESTRICT=test

src_compile() {
tc-export CC
emake PCAP=$(usex pcap 1 0) DEBUG=$(usex debug 1 0)
}

src_install() {
dosbin ${PN}{,.sh}
dodoc README TODO
doman ${PN}.1
insinto /etc
doins ${PN}.conf
}



1.1  net-wireless/horst/Manifest

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

Index: Manifest
===
DIST horst-4.2.tar.gz 97976 SHA256 
eab46330998a4c6d5abc9bfdad739b62b57c65049ac6f160e58ee3edd3260057 SHA512 
a6fa50d6eb0d2c2ae83dfccf59359f8cd74334dbc2362f01f1a3787ebb3d34bcdb76c34899cb048e4a4abc7353d72e8dd846b567ba228f9930e3f418b3656c0a
 WHIRLPOOL 
5209beb9259b1d4a8c151e5ed66bc38f7682918c9cbd3af944de4d62e75af53fc15b6afc730cef3b3642f6475e8f9e62379c89da6a65739f34ceb61214f63645
EBUILD horst-4.2.ebuild 696 SHA256 
59c8ee4663d999a8d9196fca585205ea8f8f416c2aa9a7e3421d1bd31c033e32 SHA512 
15333843f093724514c9fcc3d0a4ce4bc623044f68d476c041c96c0256b5ae21c2c1acde7ccb586de3b870154df2e3c597504b820c01115b58efeaf3bace96dc
 WHIRLPOOL 
9a94ce7953d86dde78f170ba947f1492ab268ea1187f22126c790dbb9423fb07e35be6c9c0dc303d8dd26dcb38f99aa552bdbba39fa6196168fcd29d5e92d1f9
EBUILD horst-.ebuild 717 SHA256 
96d7cde87529e59de1c639745bc0581c27be20b88f890cc46713813aa6c8bf3c SHA512 
081554839c1214b885caa6ddaa1e03311e4a2c831e6d65e688d4d34fdc8d1ad1f03e2fd46e6a672a7611694b4ade1ed23ed3d6662adb95e66d1ed2a731fd9551
 WHIRLPOOL 
34b7157bed58ab4ee87ac9cde7c756de8a6549b72143db13becc4c78efca90f396b823aaa96b8a6f4f522fb7b2ee8486eb818aebddf70a20bc6de51a3635b3d6
MISC metadata.xml 322 SHA256 

[gentoo-commits] gentoo-x86 commit in dev-ruby/fakeweb: ChangeLog fakeweb-1.3.0-r2.ebuild

2015-06-30 Thread Hans de Graaff (graaff)
graaff  15/07/01 05:52:06

  Modified: ChangeLog fakeweb-1.3.0-r2.ebuild
  Log:
  Document ruby22 status. Update mocha dependency.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.26 dev-ruby/fakeweb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   7 Jun 2015 17:44:34 -   1.25
+++ ChangeLog   1 Jul 2015 05:52:06 -   1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/fakeweb
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/ChangeLog,v 1.25 
2015/06/07 17:44:34 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/ChangeLog,v 1.26 
2015/07/01 05:52:06 graaff Exp $
+
+  01 Jul 2015; Hans de Graaff gra...@gentoo.org fakeweb-1.3.0-r2.ebuild:
+  Document ruby22 status. Update mocha dependency.
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add github to remote-id in metadata.xml



1.2  dev-ruby/fakeweb/fakeweb-1.3.0-r2.ebuild

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

Index: fakeweb-1.3.0-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/fakeweb-1.3.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fakeweb-1.3.0-r2.ebuild 29 Mar 2015 07:14:31 -  1.1
+++ fakeweb-1.3.0-r2.ebuild 1 Jul 2015 05:52:06 -   1.2
@@ -1,9 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/fakeweb-1.3.0-r2.ebuild,v 
1.1 2015/03/29 07:14:31 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/fakeweb-1.3.0-r2.ebuild,v 
1.2 2015/07/01 05:52:06 graaff Exp $
 
 EAPI=5
 
+# ruby22 - not compatible with new net/http implementation
 USE_RUBY=ruby19 ruby20 ruby21
 
 RUBY_FAKEGEM_DOCDIR=html
@@ -21,7 +22,7 @@
 
 ruby_add_bdepend 
test? (
-   dev-ruby/mocha:0.13
+   dev-ruby/mocha:0.14
dev-ruby/test-unit
dev-ruby/samuel
dev-ruby/right_http_connection
@@ -36,7 +37,7 @@
sed -i -e 's/sdoc/rdoc/' -e '/template/d' Rakefile || die
 
# Require an old enough version of mocha
-   sed -i -e '1igem mocha, ~ 0.13.0' test/test_helper.rb || die
+   sed -i -e '1igem mocha, ~ 0.14.0' test/test_helper.rb || die
 
# Use the test-unit gem to make jruby compatible with newer mocha.
sed -i -e '1igem test-unit' test/test_helper.rb || die






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-notes-plugin: xfce4-notes-plugin-1.8.1.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:51:43

  Modified: xfce4-notes-plugin-1.8.1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  
xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild?r1=1.1r2=1.2

Index: xfce4-notes-plugin-1.8.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-notes-plugin-1.8.1.ebuild 25 Jun 2015 04:08:22 -  1.1
+++ xfce4-notes-plugin-1.8.1.ebuild 1 Jul 2015 05:51:43 -   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/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild,v
 1.1 2015/06/25 04:08:22 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1.ebuild,v
 1.2 2015/07/01 05:51:43 jer Exp $
 
 EAPI=5
 inherit versionator xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=
 
 RDEPEND==dev-libs/glib-2.24:2=



1.41 xfce-extra/xfce4-notes-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog?rev=1.41view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog?rev=1.41content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog?r1=1.40r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   25 Jun 2015 04:08:22 -  1.40
+++ ChangeLog   1 Jul 2015 05:51:43 -   1.41
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-extra/xfce4-notes-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog,v 
1.40 2015/06/25 04:08:22 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-notes-plugin/ChangeLog,v 
1.41 2015/07/01 05:51:43 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org 
xfce4-notes-plugin-1.8.1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-notes-plugin-1.8.1 (25 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-dict: ChangeLog xfce4-dict-0.7.1.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:50:55

  Modified: ChangeLog xfce4-dict-0.7.1.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.57 xfce-extra/xfce4-dict/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-dict/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-dict/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-dict/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-dict/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   14 Jun 2015 21:34:28 -  1.56
+++ ChangeLog   1 Jul 2015 05:50:55 -   1.57
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-extra/xfce4-dict
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-dict/ChangeLog,v 1.56 
2015/06/14 21:34:28 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-dict/ChangeLog,v 1.57 
2015/07/01 05:50:55 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-dict-0.7.1.ebuild:
+  Stable for HPPA (bug #553500).
 
   14 Jun 2015; Michał Górny mgo...@gentoo.org xfce4-dict-0.7.1.ebuild:
   Fix the dependencies to use libxfce4ui, bug #551758. Thanks to Derk W te



1.3  xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild?r1=1.2r2=1.3

Index: xfce4-dict-0.7.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xfce4-dict-0.7.1.ebuild 14 Jun 2015 21:34:28 -  1.2
+++ xfce4-dict-0.7.1.ebuild 1 Jul 2015 05:50:55 -   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/xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild,v 1.2 
2015/06/14 21:34:28 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-dict/xfce4-dict-0.7.1.ebuild,v 1.3 
2015/07/01 05:50:55 jer Exp $
 
 EAPI=5
 EAUTORECONF=yes
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
 IUSE=
 
 RDEPEND==dev-libs/glib-2.24:=






[gentoo-commits] dev/blueness:master commit in: app-portage/grs/

2015-06-30 Thread Anthony G. Basile
commit: 71a56897009a7c611c0bd3f7c083abb3588b2c3a
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jun 30 11:58:19 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jun 30 11:58:19 2015 +
URL:https://gitweb.gentoo.org/dev/blueness.git/commit/?id=71a56897

app-portage/grs: remove 0.1

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

 app-portage/grs/Manifest   |  2 --
 app-portage/grs/grs-0.1.ebuild | 20 
 2 files changed, 22 deletions(-)

diff --git a/app-portage/grs/Manifest b/app-portage/grs/Manifest
index b65357a..57cff97 100644
--- a/app-portage/grs/Manifest
+++ b/app-portage/grs/Manifest
@@ -1,5 +1,3 @@
-DIST grs-0.1.tar.bz2 15879 SHA256 
3777313493c3a93bda9f53f864e83d2018ea01fde9f1def675fda7f398c9ad53 SHA512 
9b34029bd69b05dc645d4224133a5e47914cb9ac9093d8225f57413326b924a0fdb06c4cfe082d1f15edbf6374600c556544e139cb4726f6d4d659c2fa270cb8
 WHIRLPOOL 
33de144da6a8c234e6429079e069ae42da9a4471d99524235ee0d80e5fafe923d501465eb21a9d61fed4ce355bc57203f839bb8bfa36b8afbfb6c1da4e4dadf6
-EBUILD grs-0.1.ebuild 539 SHA256 
911664e8fc0fd22357719dbc1c38fbe7f0ed17a8ad7f928e79e3f78f22fb9c72 SHA512 
927d4ba625a35e096e34c0dd05dc27418f696528c19457a871e1fe0a9ecf518bb31980b6e1a5f7a46815438e4ee7ace415104802fba94c57b820776158afb361
 WHIRLPOOL 
8b4f4f260a77cd89749f5c25e9b4ed8449e3e20b5404835272f622745ce7ca76e1c45f324625a3d424add23717ed91f3c2dbdf1c59aebb6e8d1d70b2fc55b5bf
 EBUILD grs-.ebuild 661 SHA256 
397b2ba5290e0e12e4f674aa987262aac095eb64549a11ddd8f2ad4103933c08 SHA512 
4e6ac8509d64ff73f4265242790daf4fcec8606a4e3d4c55aebab2e0b5fa8240b3cd49d519bc7383ee17504257a08fb5e50864606bb25965a77138efbbe74d8b
 WHIRLPOOL 
004918321204ed0c2cfd0263145f259411092614dcfecb57487a2cd1c75e97390097876e51ef220e481de1ae24d777ed52b00d96caef722976c93e5ef25a2ca3
 MISC ChangeLog 116 SHA256 
3e682050913b2876b143946396b366986cc2cc884515342f3dcabca8dc252127 SHA512 
f531b8622cd7023916d03d21b6bf0a8b8f3bbc328c1973226135a21131b59dad04d020fa1570c778af3e2cf453c9027445f45a398b76f8639b0cc99a9224f824
 WHIRLPOOL 
d25a19a674e1530ea02693697c28cf02701c40f59b17d401b1ad090c2b1d31fedff8013c042b9f159e3e0d2d86385a291ef4b882e3c087b5fd61cbcd769a451a
 MISC metadata.xml 1206 SHA256 
91ecca0f2e8a69033cb48416df21f41ef72bbb36a290d76f6339759f5a5ddf90 SHA512 
536aacb83998f905b5c6525e4d6e633ec970552b2d3e87897b14f8b64f40c19036f21d8f2f4687ae90bd4ccf341efec0f5c3cd4d002121998522894c2ab9e62d
 WHIRLPOOL 
5f109b206942a9dcf045d521e7acc40f5f81a9d6a1f1679ebc308b44b94eac84ffaa558bfaba817a8ac0e4d019d902a030cd0e493b7eed177d81867470c01897

diff --git a/app-portage/grs/grs-0.1.ebuild b/app-portage/grs/grs-0.1.ebuild
deleted file mode 100644
index 2e73db6..000
--- a/app-portage/grs/grs-0.1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-2.3.0.ebuild,v 
1.8 2015/06/25 00:24:51 floppym Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{3_3,3_4} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION=Suite to build Gentoo Reference Systems
-HOMEPAGE=http://dev.gentoo.org/~blueness/${PN};
-SRC_URI=http://dev.gentoo.org/~blueness/${PN}/${P}.tar.bz2;
-
-LICENSE=GPL-2
-SLOT=0
-KEYWORDS=amd64
-IUSE=
-
-RDEPEND=dev-libs/libcgroup



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

2015-06-30 Thread Andreas Hüttel
commit: 2d1e89e963c3e8f3e1aeb4b02b4a41e7ddc6b6bf
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 12:26:27 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 12:26:27 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2d1e89e9

[kde-base/knode] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/knode/knode-4.4.2015.06.ebuild | 39 +
 1 file changed, 39 insertions(+)

diff --git a/kde-base/knode/knode-4.4.2015.06.ebuild 
b/kde-base/knode/knode-4.4.2015.06.ebuild
new file mode 100644
index 000..23a9c13
--- /dev/null
+++ b/kde-base/knode/knode-4.4.2015.06.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/knode/knode-4.4.11.1.ebuild,v 1.10 
2014/03/20 21:54:09 dilfridge Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=A newsreader for KDE (noakonadi branch)
+KEYWORDS=
+IUSE=debug
+
+# test fails, last checked for 4.2.96
+RESTRICT=test
+
+DEPEND=
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+   $(add_kdebase_dep libkdepim)
+   $(add_kdebase_dep libkpgp)
+
+RDEPEND=${DEPEND}
+
+KMEXTRACTONLY=
+   libkpgp/
+
+
+KMLOADLIBS=libkdepim
+
+src_unpack() {
+   if use handbook; then
+   KMEXTRA=
+   doc/kioslave/news
+   
+   fi
+
+   kde4-meta_src_unpack
+}



[gentoo-commits] dev/blueness:master commit in: app-portage/grs/

2015-06-30 Thread Anthony G. Basile
commit: 24fd2176cbf158c9181567094bf5a91975b120e5
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jun 30 12:15:13 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jun 30 12:15:13 2015 +
URL:https://gitweb.gentoo.org/dev/blueness.git/commit/?id=24fd2176

app-portage/grs: fix RDEPEND.

 app-portage/grs/grs-.ebuild | 10 +-
 app-portage/grs/metadata.xml| 21 ++---
 2 files changed, 11 insertions(+), 20 deletions(-)

diff --git a/app-portage/grs/grs-.ebuild b/app-portage/grs/grs-.ebuild
index 026cd64..732d819 100644
--- a/app-portage/grs/grs-.ebuild
+++ b/app-portage/grs/grs-.ebuild
@@ -23,4 +23,12 @@ LICENSE=GPL-2
 SLOT=0
 IUSE=
 
-RDEPEND=dev-libs/libcgroup
+DEPEND=
+RDEPEND=
+   app-arch/tar[xattr]
+   app-crypt/md5deep
+   dev-libs/libcgroup
+   dev-vcs/git
+   net-misc/rsync
+   sys-apps/portage
+   sys-kernel/genkernel

diff --git a/app-portage/grs/metadata.xml b/app-portage/grs/metadata.xml
index 5f6237c..1e75873 100644
--- a/app-portage/grs/metadata.xml
+++ b/app-portage/grs/metadata.xml
@@ -1,25 +1,8 @@
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
-   herdtools-portage/herd
maintainer
-   emaildol...@gentoo.org/email
-   nameBrian Dolbec/name
+   emailbluen...@gentoo.org/email
+   nameAnthony G. Basile/name
/maintainer
-   maintainer
-   emailtwitch...@gentoo.org/email
-   nameDevan Franchini/name
-   /maintainer
-   use
-   flag name=bazaarSupport pkgdev-vcs/bzr/pkg based 
overlays/flag
-   flag name=cvsSupport pkgdev-vcs/cvs/pkg based 
overlays/flag
-   flag name=darcsSupport pkgdev-vcs/darcs/pkg based 
overlays/flag
-   flag name=g-sorcerySupport pkgapp-portage/g-sorcery/pkg 
based overlays/flag
-   flag name=gitSupport pkgdev-vcs/git/pkg based 
overlays/flag
-   flag name=gpgSupport pkgapp-crypt/gnupg/pkg signed 
overlays lists and manifests/flag
-   flag name=mercurialSupport pkgdev-vcs/mercurial/pkg 
based overlays/flag
-   flag name=squashfsSupport mounting squashfs image overlays 
locally read-only/flag
-   flag name=subversionSupport pkgdev-vcs/subversion/pkg 
based overlays/flag
-   flag name=sync-plugin-portageInstall the 
pkgsys-apps/portage/pkg sync module/flag
-   /use
 /pkgmetadata



[gentoo-commits] dev/blueness:master commit in: app-portage/grs/

2015-06-30 Thread Anthony G. Basile
commit: 4f41952dec528cce54b1e3dfb38b1b29dd4b4ec1
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Tue Jun 30 12:25:21 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Tue Jun 30 12:25:21 2015 +
URL:https://gitweb.gentoo.org/dev/blueness.git/commit/?id=4f41952d

app-portage/grs: fix manifest

 app-portage/grs/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/grs/Manifest b/app-portage/grs/Manifest
index 57cff97..671baef 100644
--- a/app-portage/grs/Manifest
+++ b/app-portage/grs/Manifest
@@ -1,3 +1,3 @@
-EBUILD grs-.ebuild 661 SHA256 
397b2ba5290e0e12e4f674aa987262aac095eb64549a11ddd8f2ad4103933c08 SHA512 
4e6ac8509d64ff73f4265242790daf4fcec8606a4e3d4c55aebab2e0b5fa8240b3cd49d519bc7383ee17504257a08fb5e50864606bb25965a77138efbbe74d8b
 WHIRLPOOL 
004918321204ed0c2cfd0263145f259411092614dcfecb57487a2cd1c75e97390097876e51ef220e481de1ae24d777ed52b00d96caef722976c93e5ef25a2ca3
+EBUILD grs-.ebuild 782 SHA256 
4f88e1d422597fd45e1ca088f6746312a9fd76a9ef8e923fc10c7a85304c03d1 SHA512 
1993d64a242579cfeb53192b3a7dc45fb11eddbc48617a7803ab71c3f84ebdd870a03eb98712f910e8ce89a66b8fbcabea7a5dcacadcda21afe0cb525c3c4986
 WHIRLPOOL 
c9d8645beda8da54983cd26b98c289bf1d57a28ef5fa279ba5d659511f840c6959144fd9fe2ca9adfb3659296023f554df9416abe0d4f183e98ca092a5f65694
 MISC ChangeLog 116 SHA256 
3e682050913b2876b143946396b366986cc2cc884515342f3dcabca8dc252127 SHA512 
f531b8622cd7023916d03d21b6bf0a8b8f3bbc328c1973226135a21131b59dad04d020fa1570c778af3e2cf453c9027445f45a398b76f8639b0cc99a9224f824
 WHIRLPOOL 
d25a19a674e1530ea02693697c28cf02701c40f59b17d401b1ad090c2b1d31fedff8013c042b9f159e3e0d2d86385a291ef4b882e3c087b5fd61cbcd769a451a
-MISC metadata.xml 1206 SHA256 
91ecca0f2e8a69033cb48416df21f41ef72bbb36a290d76f6339759f5a5ddf90 SHA512 
536aacb83998f905b5c6525e4d6e633ec970552b2d3e87897b14f8b64f40c19036f21d8f2f4687ae90bd4ccf341efec0f5c3cd4d002121998522894c2ab9e62d
 WHIRLPOOL 
5f109b206942a9dcf045d521e7acc40f5f81a9d6a1f1679ebc308b44b94eac84ffaa558bfaba817a8ac0e4d019d902a030cd0e493b7eed177d81867470c01897
+MISC metadata.xml 238 SHA256 
f13e6e7b65d20beb9ae945d520160ef0dba80c1965754958945904d7e3c0a75f SHA512 
3c3d75f1cb90ffcfb98df47481fbde6d451254a29fa87577acd25bc27cbcc3e5dbc0c1efce5974be905428f0b7caf912c8b051417aff92763847fa377493a153
 WHIRLPOOL 
6ec3d597b87aff99014404b8b732e6f600aafc3c3eeebfab135c9c19cde2e43161cfa23f841bd72826cc3393b724e1dac115c15dcce2b74ace6f1d6ec209dbf3



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

2015-06-30 Thread Andreas Hüttel
commit: bff115349897d58b7c2318089519007a0cac8da6
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 12:54:42 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 12:54:42 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bff11534

[kde-base/akregator] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/akregator/akregator-4.4.2015.06.ebuild | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/kde-base/akregator/akregator-4.4.2015.06.ebuild 
b/kde-base/akregator/akregator-4.4.2015.06.ebuild
new file mode 100644
index 000..1d7e5d4
--- /dev/null
+++ b/kde-base/akregator/akregator-4.4.2015.06.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/akregator/akregator-4.4.11.1-r1.ebuild,v 1.12 
2014/08/05 18:17:07 mrueg Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=KDE news feed aggregator (noakonadi branch)
+HOMEPAGE=http://www.kde.org/applications/internet/akregator;
+KEYWORDS=
+IUSE=debug
+
+DEPEND=
+   $(add_kdebase_dep kdelibs '' 4.6)
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+   $(add_kdebase_dep libkdepim)
+
+RDEPEND=${DEPEND}
+
+KMLOADLIBS=libkdepim



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

2015-06-30 Thread Andreas Hüttel
commit: ad1686fc8518ab820a5c6c2eb383245291a50437
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 12:32:09 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 12:32:09 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ad1686fc

[kde-base/kabcclient] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/kabcclient/kabcclient-4.4.2015.06.ebuild | 26 +++
 1 file changed, 26 insertions(+)

diff --git a/kde-base/kabcclient/kabcclient-4.4.2015.06.ebuild 
b/kde-base/kabcclient/kabcclient-4.4.2015.06.ebuild
new file mode 100644
index 000..e4cec7c
--- /dev/null
+++ b/kde-base/kabcclient/kabcclient-4.4.2015.06.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/kabcclient/kabcclient-4.4.11.1.ebuild,v 1.9 
2014/04/05 17:55:53 dilfridge Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KMMODULE=console/${PN}
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=A command line client for accessing the KDE addressbook 
(noakonadi branch)
+KEYWORDS=
+IUSE=debug
+
+DEPEND=
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+
+RDEPEND=${DEPEND}
+
+src_install() {
+   kde4-meta_src_install
+
+   # work around NULL DT_RPATH in kabc2mutt
+   dosym kabcclient ${PREFIX}/bin/kabc2mutt || die couldn't symlink 
kabc2mutt to kabcclient
+}



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

2015-06-30 Thread Andreas Hüttel
commit: bf4ca256fb552439e29ca5837b333c3dbf5fd714
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 13:03:30 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 13:03:30 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bf4ca256

[kde-base/blogilo] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/blogilo/blogilo-4.4.2015.06.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/kde-base/blogilo/blogilo-4.4.2015.06.ebuild 
b/kde-base/blogilo/blogilo-4.4.2015.06.ebuild
new file mode 100644
index 000..c8bd03d
--- /dev/null
+++ b/kde-base/blogilo/blogilo-4.4.2015.06.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/blogilo/blogilo-4.4.11.1.ebuild,v 
1.11 2014/04/05 18:14:15 dilfridge Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=KDE Blogging Client (noakonadi branch)
+HOMEPAGE=http://www.kde.org/applications/internet/blogilo;
+KEYWORDS=
+IUSE=debug
+
+DEPEND=
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+
+RDEPEND=${DEPEND}
+   !kde-misc/bilbo
+   !kde-misc/blogilo
+



[gentoo-commits] gentoo-x86 commit in app-emulation/xen: xen-4.5.0-r8.ebuild ChangeLog xen-4.4.2-r4.ebuild xen-4.2.5-r9.ebuild xen-4.5.0-r6.ebuild xen-4.4.2-r2.ebuild

2015-06-30 Thread Yixun Lan (dlan)
dlan15/06/30 09:32:01

  Modified: xen-4.5.0-r8.ebuild ChangeLog
  Removed:  xen-4.4.2-r4.ebuild xen-4.2.5-r9.ebuild
xen-4.5.0-r6.ebuild xen-4.4.2-r2.ebuild
  Log:
  clean vulnerable ebuild, drop 4.2.x series
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.3  app-emulation/xen/xen-4.5.0-r8.ebuild

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

Index: xen-4.5.0-r8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.5.0-r8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xen-4.5.0-r8.ebuild 16 Jun 2015 07:07:46 -  1.2
+++ xen-4.5.0-r8.ebuild 30 Jun 2015 09:32:00 -  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-emulation/xen/xen-4.5.0-r8.ebuild,v 1.2 
2015/06/16 07:07:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-4.5.0-r8.ebuild,v 1.3 
2015/06/30 09:32:00 dlan Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
EGIT_REPO_URI=git://xenbits.xen.org/${PN}.git
live_eclass=git-2
 else
-   KEYWORDS=amd64 ~arm ~arm64
+   KEYWORDS=amd64 ~arm ~arm64 -x86
UPSTREAM_VER=6
SECURITY_VER=3
GENTOO_VER=



1.211app-emulation/xen/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog   16 Jun 2015 07:09:10 -  1.210
+++ ChangeLog   30 Jun 2015 09:32:00 -  1.211
@@ -1,6 +1,11 @@
 # ChangeLog for app-emulation/xen
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.210 
2015/06/16 07:09:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.211 
2015/06/30 09:32:00 dlan Exp $
+
+  30 Jun 2015; Yixun Lan d...@gentoo.org -xen-4.2.5-r9.ebuild,
+  -xen-4.4.2-r2.ebuild, -xen-4.4.2-r4.ebuild, -xen-4.5.0-r6.ebuild,
+  xen-4.5.0-r8.ebuild:
+  clean vulnerable ebuild, drop 4.2.x series
 
   16 Jun 2015; Agostino Sarubbo a...@gentoo.org xen-4.2.5-r11.ebuild:
   Stable for x86, wrt bug #550658






[gentoo-commits] gentoo-x86 commit in dev-ruby/rubygems: rubygems-2.2.5.ebuild ChangeLog

2015-06-30 Thread Agostino Sarubbo (ago)
ago 15/06/30 10:07:42

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

Revision  ChangesPath
1.4  dev-ruby/rubygems/rubygems-2.2.5.ebuild

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

Index: rubygems-2.2.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.2.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rubygems-2.2.5.ebuild   29 Jun 2015 06:31:46 -  1.3
+++ rubygems-2.2.5.ebuild   30 Jun 2015 10:07:42 -  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-ruby/rubygems/rubygems-2.2.5.ebuild,v 
1.3 2015/06/29 06:31:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.2.5.ebuild,v 
1.4 2015/06/30 10:07:42 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 SRC_URI=http://production.cf.rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 SLOT=0
 IUSE=server test
 



1.269dev-ruby/rubygems/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/ChangeLog,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -r1.268 -r1.269
--- ChangeLog   29 Jun 2015 06:31:46 -  1.268
+++ ChangeLog   30 Jun 2015 10:07:42 -  1.269
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rubygems
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/ChangeLog,v 1.268 
2015/06/29 06:31:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/ChangeLog,v 1.269 
2015/06/30 10:07:42 ago Exp $
+
+  30 Jun 2015; Agostino Sarubbo a...@gentoo.org rubygems-2.2.5.ebuild:
+  Stable for amd64, wrt bug #553298
 
   29 Jun 2015; Jeroen Roovers j...@gentoo.org rubygems-2.2.5.ebuild:
   Stable for PPC64 (bug #553298).






[gentoo-commits] gentoo-x86 commit in dev-ruby/rubygems: rubygems-2.2.5.ebuild ChangeLog

2015-06-30 Thread Agostino Sarubbo (ago)
ago 15/06/30 10:07:56

  Modified: rubygems-2.2.5.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #553298
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: 
--include-arches=x86, signed Manifest commit with key 7194459F)

Revision  ChangesPath
1.5  dev-ruby/rubygems/rubygems-2.2.5.ebuild

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

Index: rubygems-2.2.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.2.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rubygems-2.2.5.ebuild   30 Jun 2015 10:07:42 -  1.4
+++ rubygems-2.2.5.ebuild   30 Jun 2015 10:07:56 -  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-ruby/rubygems/rubygems-2.2.5.ebuild,v 
1.4 2015/06/30 10:07:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/rubygems-2.2.5.ebuild,v 
1.5 2015/06/30 10:07:56 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 SRC_URI=http://production.cf.rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 SLOT=0
 IUSE=server test
 



1.270dev-ruby/rubygems/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/ChangeLog,v
retrieving revision 1.269
retrieving revision 1.270
diff -u -r1.269 -r1.270
--- ChangeLog   30 Jun 2015 10:07:42 -  1.269
+++ ChangeLog   30 Jun 2015 10:07:56 -  1.270
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rubygems
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/ChangeLog,v 1.269 
2015/06/30 10:07:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubygems/ChangeLog,v 1.270 
2015/06/30 10:07:56 ago Exp $
+
+  30 Jun 2015; Agostino Sarubbo a...@gentoo.org rubygems-2.2.5.ebuild:
+  Stable for x86, wrt bug #553298
 
   30 Jun 2015; Agostino Sarubbo a...@gentoo.org rubygems-2.2.5.ebuild:
   Stable for amd64, wrt bug #553298






[gentoo-commits] proj/kde:master commit in: kde-base/kdepim-icons/

2015-06-30 Thread Andreas Hüttel
commit: 2c9556440ecfcd59c4b679a37321b1212766f0eb
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 10:31:22 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 10:31:22 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2c955644

[kde-base/kdepim-icons] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/kdepim-icons/kdepim-icons-4.4.2015.06.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/kde-base/kdepim-icons/kdepim-icons-4.4.2015.06.ebuild 
b/kde-base/kdepim-icons/kdepim-icons-4.4.2015.06.ebuild
new file mode 100644
index 000..ffc3c05
--- /dev/null
+++ b/kde-base/kdepim-icons/kdepim-icons-4.4.2015.06.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/kdepim-icons/kdepim-icons-4.4.11.1.ebuild,v 
1.9 2014/04/05 18:12:23 dilfridge Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KMMODULE=icons
+inherit kde4-meta
+
+DESCRIPTION=KDE PIM icons (noakonadi branch)
+IUSE=
+KEYWORDS=
+
+src_install() {
+   kde4-meta_src_install
+   # colliding with oxygen icons
+   rm -rf 
${ED}/${KDEDIR}/share/icons/oxygen/16x16/status/meeting-organizer.png
+}



[gentoo-commits] gentoo-x86 commit in dev-python/sqlobject: sqlobject-2.1.1-r1.ebuild ChangeLog sqlobject-2.0.0.ebuild sqlobject-2.1.0.ebuild sqlobject-2.1.1.ebuild

2015-06-30 Thread Justin Lecher (jlec)
jlec15/06/30 13:02:01

  Modified: ChangeLog
  Added:sqlobject-2.1.1-r1.ebuild
  Removed:  sqlobject-2.0.0.ebuild sqlobject-2.1.0.ebuild
sqlobject-2.1.1.ebuild
  Log:
  Don't install docs into side-packages
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.62 dev-python/sqlobject/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   26 Mar 2015 04:46:04 -  1.61
+++ ChangeLog   30 Jun 2015 13:02:01 -  1.62
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/sqlobject
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v 1.61 
2015/03/26 04:46:04 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v 1.62 
2015/06/30 13:02:01 jlec Exp $
+
+*sqlobject-2.1.1-r1 (30 Jun 2015)
+
+  30 Jun 2015; Justin Lecher j...@gentoo.org +sqlobject-2.1.1-r1.ebuild,
+  -sqlobject-2.0.0.ebuild, -sqlobject-2.1.0.ebuild, -sqlobject-2.1.1.ebuild:
+  Don't install docs into side-packages
 
 *sqlobject-2.1.1 (26 Mar 2015)
 



1.1  dev-python/sqlobject/sqlobject-2.1.1-r1.ebuild

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

Index: sqlobject-2.1.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sqlobject/sqlobject-2.1.1-r1.ebuild,v 1.1 
2015/06/30 13:02:01 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=sqlite?

inherit distutils-r1

MY_PN=SQLObject
MY_P=${MY_PN}-${PV}

DESCRIPTION=Object-Relational Manager, aka database wrapper
HOMEPAGE=http://sqlobject.org/ http://pypi.python.org/pypi/SQLObject;
SRC_URI=mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos
IUSE=doc mysql postgres sqlite

RDEPEND=
=dev-python/formencode-1.1.1[${PYTHON_USEDEP}]
mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
postgres? ( dev-python/psycopg[${PYTHON_USEDEP}] )
DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]

S=${WORKDIR}/${MY_P}

python_prepare_all() {
sed -e '/..docs/d' -i setup.py || die
distutils-r1_python_prepare_all
}

python_install_all() {
if use doc; then
HTML_DOCS=( docs/html/. )
DOCS=( docs/europython/. )
fi

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-python/sqlobject: ChangeLog

2015-06-30 Thread Justin Lecher (jlec)
jlec15/06/30 13:04:19

  Modified: ChangeLog
  Log:
  Add missing bug 553638 reference
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.63 dev-python/sqlobject/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog   30 Jun 2015 13:02:01 -  1.62
+++ ChangeLog   30 Jun 2015 13:04:19 -  1.63
@@ -1,12 +1,12 @@
 # ChangeLog for dev-python/sqlobject
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v 1.62 
2015/06/30 13:02:01 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlobject/ChangeLog,v 1.63 
2015/06/30 13:04:19 jlec Exp $
 
 *sqlobject-2.1.1-r1 (30 Jun 2015)
 
   30 Jun 2015; Justin Lecher j...@gentoo.org +sqlobject-2.1.1-r1.ebuild,
   -sqlobject-2.0.0.ebuild, -sqlobject-2.1.0.ebuild, -sqlobject-2.1.1.ebuild:
-  Don't install docs into side-packages
+  Don't install docs into side-packages, bug 553638
 
 *sqlobject-2.1.1 (26 Mar 2015)
 






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

2015-06-30 Thread Justin Lecher (jlec)
jlec15/06/30 13:09:16

  Modified: ChangeLog
  Added:formencode-1.3.0-r1.ebuild
  Removed:  formencode-1.2.6-r1.ebuild formencode-1.3.0.ebuild
  Log:
  Don't install docs into side-packages, bug #553638
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  ChangesPath
1.37 dev-python/formencode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   8 Apr 2015 08:05:27 -   1.36
+++ ChangeLog   30 Jun 2015 13:09:16 -  1.37
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/formencode
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v 1.36 
2015/04/08 08:05:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v 1.37 
2015/06/30 13:09:16 jlec Exp $
+
+*formencode-1.3.0-r1 (30 Jun 2015)
+
+  30 Jun 2015; Justin Lecher j...@gentoo.org +formencode-1.3.0-r1.ebuild,
+  -formencode-1.2.6-r1.ebuild, -formencode-1.3.0.ebuild:
+  Don't install docs into side-packages, bug #553638
 
   08 Apr 2015; Michał Górny mgo...@gentoo.org formencode-1.2.6-r1.ebuild:
   Drop old Python implementations



1.1  dev-python/formencode/formencode-1.3.0-r1.ebuild

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

Index: formencode-1.3.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/formencode/formencode-1.3.0-r1.ebuild,v 1.1 
2015/06/30 13:09:16 jlec Exp $

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

inherit distutils-r1

MY_PN=FormEncode
MY_P=${MY_PN}-${PV}

DESCRIPTION=HTML form validation, generation, and conversion package
HOMEPAGE=http://formencode.org/ http://pypi.python.org/pypi/FormEncode;
SRC_URI=mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip

LICENSE=PSF-2
SLOT=0
KEYWORDS=~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos
IUSE=doc test

DEPEND=dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]
=dev-python/dnspython-1.12.0-r1[${PYTHON_USEDEP}] )
RDEPEND=

RESTRICT=test
DOCS=( docs/. )

S=${WORKDIR}/${MY_P}
DISTUTILS_IN_SOURCE_BUILD=1

python_prepare_all() {
sed -e '/package_data.*..docs/d' -i setup.py || die
distutils-r1_python_prepare_all
}

python_test() {
# https://github.com/formencode/formencode/issues/78
# 5 failures under py2.7. Although the package claims to cater to py3, 
the suite fails horribly
# Main problem is that it is written requiring to be system installed, 
then run.
# Suite found to pass on extended testing using tox.
nosetests || die tests failed under ${EPYTHON}
}






[gentoo-commits] proj/linux-patches:3.10 commit in: /

2015-06-30 Thread Mike Pagano
commit: 522c40275ae0a217e0c6ca0507d8e22e000f53ef
Author: Mike Pagano mpagano AT gentoo DOT org
AuthorDate: Tue Jun 30 13:01:16 2015 +
Commit: Mike Pagano mpagano AT gentoo DOT org
CommitDate: Tue Jun 30 13:01:16 2015 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=522c4027

Linux patch 3.10.82

 _README  |   4 +
 1081_linux-3.10.82.patch | 263 +++
 2 files changed, 267 insertions(+)

diff --git a/_README b/_README
index 574c6c0..5e45831 100644
--- a/_README
+++ b/_README
@@ -366,6 +366,10 @@ Patch:  1080_linux-3.10.81.patch
 From:   http://www.kernel.org
 Desc:   Linux 3.10.81
 
+Patch:  1081_linux-3.10.82.patch
+From:   http://www.kernel.org
+Desc:   Linux 3.10.82
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1081_linux-3.10.82.patch b/1081_linux-3.10.82.patch
new file mode 100644
index 000..b14a1fe
--- /dev/null
+++ b/1081_linux-3.10.82.patch
@@ -0,0 +1,263 @@
+diff --git a/Makefile b/Makefile
+index 6d19e37d36d5..5e3e665a10b7 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 3
+ PATCHLEVEL = 10
+-SUBLEVEL = 81
++SUBLEVEL = 82
+ EXTRAVERSION =
+ NAME = TOSSUG Baby Fish
+ 
+diff --git a/drivers/crypto/caam/caamrng.c b/drivers/crypto/caam/caamrng.c
+index d1939a9539c0..04aefffb4dd9 100644
+--- a/drivers/crypto/caam/caamrng.c
 b/drivers/crypto/caam/caamrng.c
+@@ -56,7 +56,7 @@
+ 
+ /* Buffer, its dma address and lock */
+ struct buf_data {
+-  u8 buf[RN_BUF_SIZE];
++  u8 buf[RN_BUF_SIZE] cacheline_aligned;
+   dma_addr_t addr;
+   struct completion filled;
+   u32 hw_desc[DESC_JOB_O_LEN];
+diff --git a/drivers/gpu/drm/mgag200/mgag200_mode.c 
b/drivers/gpu/drm/mgag200/mgag200_mode.c
+index f6341e8622ee..7bd2acce9f81 100644
+--- a/drivers/gpu/drm/mgag200/mgag200_mode.c
 b/drivers/gpu/drm/mgag200/mgag200_mode.c
+@@ -1487,6 +1487,11 @@ static int mga_vga_mode_valid(struct drm_connector 
*connector,
+   return MODE_BANDWIDTH;
+   }
+ 
++  if ((mode-hdisplay % 8) != 0 || (mode-hsync_start % 8) != 0 ||
++  (mode-hsync_end % 8) != 0 || (mode-htotal % 8) != 0) {
++  return MODE_H_ILLEGAL;
++  }
++
+   if (mode-crtc_hdisplay  2048 || mode-crtc_hsync_start  4096 ||
+   mode-crtc_hsync_end  4096 || mode-crtc_htotal  4096 ||
+   mode-crtc_vdisplay  2048 || mode-crtc_vsync_start  4096 ||
+diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
+index 572579f87de4..90861416b9e9 100644
+--- a/drivers/scsi/lpfc/lpfc_sli.c
 b/drivers/scsi/lpfc/lpfc_sli.c
+@@ -263,6 +263,16 @@ lpfc_sli4_eq_get(struct lpfc_queue *q)
+   return NULL;
+ 
+   q-hba_index = idx;
++
++  /*
++   * insert barrier for instruction interlock : data from the hardware
++   * must have the valid bit checked before it can be copied and acted
++   * upon. Given what was seen in lpfc_sli4_cq_get() of speculative
++   * instructions allowing action on content before valid bit checked,
++   * add barrier here as well. May not be needed as content is a
++   * single 32-bit entity here (vs multi word structure for cq's).
++   */
++  mb();
+   return eqe;
+ }
+ 
+@@ -368,6 +378,17 @@ lpfc_sli4_cq_get(struct lpfc_queue *q)
+ 
+   cqe = q-qe[q-hba_index].cqe;
+   q-hba_index = idx;
++
++  /*
++   * insert barrier for instruction interlock : data from the hardware
++   * must have the valid bit checked before it can be copied and acted
++   * upon. Speculative instructions were allowing a bcopy at the start
++   * of lpfc_sli4_fp_handle_wcqe(), which is called immediately
++   * after our return, to copy data before the valid bit check above
++   * was done. As such, some of the copied data was stale. The barrier
++   * ensures the check is before any data is copied.
++   */
++  mb();
+   return cqe;
+ }
+ 
+diff --git a/fs/pipe.c b/fs/pipe.c
+index 0e0752ef2715..3e7ab278bb0c 100644
+--- a/fs/pipe.c
 b/fs/pipe.c
+@@ -117,25 +117,27 @@ void pipe_wait(struct pipe_inode_info *pipe)
+ }
+ 
+ static int
+-pipe_iov_copy_from_user(void *to, struct iovec *iov, unsigned long len,
+-  int atomic)
++pipe_iov_copy_from_user(void *addr, int *offset, struct iovec *iov,
++  size_t *remaining, int atomic)
+ {
+   unsigned long copy;
+ 
+-  while (len  0) {
++  while (*remaining  0) {
+   while (!iov-iov_len)
+   iov++;
+-  copy = min_t(unsigned long, len, iov-iov_len);
++  copy = min_t(unsigned long, *remaining, iov-iov_len);
+ 
+   if (atomic) {
+-  if (__copy_from_user_inatomic(to, iov-iov_base, copy))
++  if (__copy_from_user_inatomic(addr + 

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

2015-06-30 Thread Andreas Hüttel
commit: 42b3bf8e49262b8a1b79b783f00ef316f02cad49
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 13:31:34 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 13:31:34 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=42b3bf8e

[kde-base/kadressbook] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 .../kaddressbook/kaddressbook-4.4.2015.06.ebuild   | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/kde-base/kaddressbook/kaddressbook-4.4.2015.06.ebuild 
b/kde-base/kaddressbook/kaddressbook-4.4.2015.06.ebuild
new file mode 100644
index 000..d423acf
--- /dev/null
+++ b/kde-base/kaddressbook/kaddressbook-4.4.2015.06.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-4.4.11.1-r2.ebuild,v 
1.4 2015/02/16 08:31:48 ago Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=The KDE Address Book (noakonadi branch)
+KEYWORDS=
+IUSE=debug
+
+DEPEND=
+   $(add_kdebase_dep kdelibs '' 4.13.1)
+   $(add_kdebase_dep kdepimlibs '' 4.13.1)
+   $(add_kdebase_dep libkdepim)
+   $(add_kdebase_dep libkleo)
+
+RDEPEND=${DEPEND}
+   $(add_kdebase_dep kdepim-runtime)
+
+
+KMEXTRA=
+   plugins/kaddressbook/
+   plugins/ktexteditor/
+
+KMEXTRACTONLY=
+   libkleo/
+
+
+KMLOADLIBS=libkdepim
+
+pkg_postinst() {
+   kde4-meta_pkg_postinst
+
+   if ! has_version kde-base/kdepim-kresources:${SLOT}; then
+   echo
+   elog For groupware functionality, please install 
kde-base/kdepim-kresources:${SLOT}
+   echo
+   fi
+}



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

2015-06-30 Thread Andreas Hüttel
commit: c5ee035bf5e54c6946d65ac53144e33079a16806
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 13:52:43 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 13:52:43 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c5ee035b

[kde-base/kalarm] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/kalarm/files/kalarm-4.4.11.1-crash.patch  | 34 +++
 .../files/kalarm-4.4.11.1-underlinking.patch   | 14 
 kde-base/kalarm/kalarm-4.4.2015.06.ebuild  | 38 ++
 3 files changed, 86 insertions(+)

diff --git a/kde-base/kalarm/files/kalarm-4.4.11.1-crash.patch 
b/kde-base/kalarm/files/kalarm-4.4.11.1-crash.patch
new file mode 100644
index 000..2c05d75
--- /dev/null
+++ b/kde-base/kalarm/files/kalarm-4.4.11.1-crash.patch
@@ -0,0 +1,34 @@
+diff --git a/kalarm/lib/spinbox2.cpp b/kalarm/lib/spinbox2.cpp
+index cc10882..f1e8ab9 100644
+--- a/kalarm/lib/spinbox2.cpp
 b/kalarm/lib/spinbox2.cpp
+@@ -1,7 +1,7 @@
+ /*
+  *  spinbox2.cpp  -  spin box with extra pair of spin buttons (for Qt 3)
+  *  Program:  kalarm
+- *  Copyright © 2001-2009 by David Jarvie djar...@kde.org
++ *  Copyright © 2001-2009,2011 by David Jarvie djar...@kde.org
+  *
+  *  This program is free software; you can redistribute it and/or modify
+  *  it under the terms of the GNU General Public License as published by
+@@ -28,7 +28,7 @@
+ #include QMouseEvent
+ #include QStyleOptionSpinBox
+ #include QGraphicsPixmapItem
+-#include QPaintEngine
++#include QPainter
+ #include QTimer
+ #include QFrame
+ #include QBrush
+@@ -588,8 +588,9 @@ void SpinMirror::setFrame()
+   p = grabWidget(mMainSpinbox, QRect(x, 0, 1, height()));
+   // Blot out edit field stuff from the middle of the slice
+   QPixmap dot = grabWidget(mMainSpinbox, QRect(x, editOffsetY, 1, 
1));
+-  QPaintEngine* pe = p.paintEngine();
+-  pe-drawTiledPixmap(QRectF(0, editOffsetY, 1, height() - 
2*editOffsetY), dot, QPointF(0, 0));
++  QPainter painter(p);
++  painter.drawTiledPixmap(0, editOffsetY, 1, height() - 
2*editOffsetY, dot, 0, 0);
++  painter.end();
+   // Horizontally fill the mirror widget with the vertical slice
+   p = p.scaled(size());
+   // Grab the left hand border of the main spinbox, and draw it 
into the mirror widget.

diff --git a/kde-base/kalarm/files/kalarm-4.4.11.1-underlinking.patch 
b/kde-base/kalarm/files/kalarm-4.4.11.1-underlinking.patch
new file mode 100644
index 000..87eadc8
--- /dev/null
+++ b/kde-base/kalarm/files/kalarm-4.4.11.1-underlinking.patch
@@ -0,0 +1,14 @@
+diff -ruN kalarm-4.4.11.1.orig/kalarm/CMakeLists.txt 
kalarm-4.4.11.1/kalarm/CMakeLists.txt
+--- kalarm-4.4.11.1.orig/kalarm/CMakeLists.txt 2011-04-20 22:03:31.0 
+0200
 kalarm-4.4.11.1/kalarm/CMakeLists.txt  2011-08-11 22:03:27.096295681 
+0200
+@@ -130,7 +130,9 @@
+ 
+ set_target_properties(kalarm_bin PROPERTIES OUTPUT_NAME kalarm)
+ 
+-target_link_libraries(kalarm_bin ${KDE4_KUTILS_LIBS} kalarm_resources 
kalarm_calendar ${KDEPIMLIBS_KCAL_LIBS} ${KDE4_KABC_LIBRARY} 
${KDE4_KMIME_LIBRARY} ${KDEPIMLIBS_KPIMIDENTITIES_LIBS} 
${KDEPIMLIBS_MAILTRANSPORT_LIBS} ${KDEPIMLIBS_KHOLIDAYS_LIBS} 
${KDE4_PHONON_LIBS} ${X11_X11_LIB} kdepim)
++target_link_libraries(kalarm_bin ${KDE4_KUTILS_LIBS} kalarm_resources 
kalarm_calendar ${KDEPIMLIBS_KCAL_LIBS} ${KDE4_KABC_LIBRARY} 
++  ${KDE4_KMIME_LIBRARY} ${KDEPIMLIBS_KPIMIDENTITIES_LIBS} 
${KDEPIMLIBS_MAILTRANSPORT_LIBS} ${KDEPIMLIBS_KHOLIDAYS_LIBS} 
++  ${KDEPIMLIBS_AKONADI_LIBS} ${KDEPIMLIBS_KPIMUTILS_LIBS} 
${KDE4_PHONON_LIBS} ${X11_X11_LIB} kdepim)
+ 
+ install(TARGETS kalarm_bin ${INSTALL_TARGETS_DEFAULT_ARGS} )
+ #endif (UNIX)

diff --git a/kde-base/kalarm/kalarm-4.4.2015.06.ebuild 
b/kde-base/kalarm/kalarm-4.4.2015.06.ebuild
new file mode 100644
index 000..3320fd2
--- /dev/null
+++ b/kde-base/kalarm/kalarm-4.4.2015.06.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kalarm/kalarm-4.4.11.1-r2.ebuild,v 
1.9 2014/04/05 18:08:59 dilfridge Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=Personal alarm message, command and email scheduler for KDE 
(noakonadi branch)
+KEYWORDS=
+IUSE=debug
+
+RDEPEND=
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+   $(add_kdebase_dep libkdepim)
+
+DEPEND=${RDEPEND}
+   dev-libs/boost:=
+   dev-libs/libxslt
+
+
+KMEXTRACTONLY=
+   kmail/
+
+
+PATCHES=(
+   ${FILESDIR}/${PN}-4.4.11.1-underlinking.patch
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DBUILD_akonadi=OFF
+   -DXSLTPROC_EXECUTABLE=${EPREFIX}/usr/bin/xsltproc
+   )
+   

[gentoo-commits] gentoo-x86 commit in dev-util/xfce4-dev-tools: xfce4-dev-tools-4.12.0.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:05:12

  Modified: xfce4-dev-tools-4.12.0.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  dev-util/xfce4-dev-tools/xfce4-dev-tools-4.12.0.ebuild

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

Index: xfce4-dev-tools-4.12.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.12.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-dev-tools-4.12.0.ebuild   8 Mar 2015 15:06:40 -   1.1
+++ xfce4-dev-tools-4.12.0.ebuild   1 Jul 2015 05:05:12 -   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-util/xfce4-dev-tools/xfce4-dev-tools-4.12.0.ebuild,v
 1.1 2015/03/08 15:06:40 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.12.0.ebuild,v
 1.2 2015/07/01 05:05:12 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris
 IUSE=
 
 RDEPEND==dev-libs/glib-2.30



1.66 dev-util/xfce4-dev-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/xfce4-dev-tools/ChangeLog?rev=1.66view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/xfce4-dev-tools/ChangeLog?rev=1.66content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/xfce4-dev-tools/ChangeLog?r1=1.65r2=1.66

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   8 Mar 2015 15:06:40 -   1.65
+++ ChangeLog   1 Jul 2015 05:05:12 -   1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/xfce4-dev-tools
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/ChangeLog,v 1.65 
2015/03/08 15:06:40 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/ChangeLog,v 1.66 
2015/07/01 05:05:12 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-dev-tools-4.12.0.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-dev-tools-4.12.0 (08 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in app-office/orage: ChangeLog orage-4.12.1.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:04:11

  Modified: ChangeLog orage-4.12.1.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.84 app-office/orage/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-office/orage/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog   26 May 2015 20:25:32 -  1.83
+++ ChangeLog   1 Jul 2015 05:04:11 -   1.84
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/orage
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/orage/ChangeLog,v 1.83 
2015/05/26 20:25:32 perfinion Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/orage/ChangeLog,v 1.84 
2015/07/01 05:04:11 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org orage-4.12.1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *orage-4.12.1 (26 May 2015)
 



1.2  app-office/orage/orage-4.12.1.ebuild

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

Index: orage-4.12.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-office/orage/orage-4.12.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- orage-4.12.1.ebuild 26 May 2015 20:25:32 -  1.1
+++ orage-4.12.1.ebuild 1 Jul 2015 05:04: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/app-office/orage/orage-4.12.1.ebuild,v 1.1 
2015/05/26 20:25:32 perfinion Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/orage/orage-4.12.1.ebuild,v 1.2 
2015/07/01 05:04:11 jer Exp $
 
 EAPI=5
 inherit multilib xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
 IUSE=berkdb dbus debug libnotify +xfce_plugins_clock
 
 RDEPEND==dev-libs/libical-0.48:=






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

2015-06-30 Thread Michael Weber (xmw)
xmw 15/07/01 05:36:55

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



[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-timer-plugin: ChangeLog xfce4-timer-plugin-1.6.0.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:55:20

  Modified: ChangeLog xfce4-timer-plugin-1.6.0.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.50 xfce-extra/xfce4-timer-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-timer-plugin/ChangeLog?rev=1.50view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-timer-plugin/ChangeLog?rev=1.50content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-timer-plugin/ChangeLog?r1=1.49r2=1.50

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-timer-plugin/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   12 Apr 2015 19:54:57 -  1.49
+++ ChangeLog   1 Jul 2015 05:55:20 -   1.50
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-extra/xfce4-timer-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-timer-plugin/ChangeLog,v 
1.49 2015/04/12 19:54:57 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-timer-plugin/ChangeLog,v 
1.50 2015/07/01 05:55:20 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org 
xfce4-timer-plugin-1.6.0.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-timer-plugin-1.6.0 (12 Apr 2015)
 



1.2  
xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild?r1=1.1r2=1.2

Index: xfce4-timer-plugin-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-timer-plugin-1.6.0.ebuild 12 Apr 2015 19:54:57 -  1.1
+++ xfce4-timer-plugin-1.6.0.ebuild 1 Jul 2015 05:55:20 -   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/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild,v
 1.1 2015/04/12 19:54:57 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.6.0.ebuild,v
 1.2 2015/07/01 05:55:20 jer Exp $
 
 EAPI=5
 inherit multilib xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=
 
 RDEPEND=x11-libs/gtk+:2=






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-time-out-plugin: ChangeLog xfce4-time-out-plugin-1.0.2.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:55:34

  Modified: ChangeLog xfce4-time-out-plugin-1.0.2.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.23 xfce-extra/xfce4-time-out-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-time-out-plugin/ChangeLog?rev=1.23view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-time-out-plugin/ChangeLog?rev=1.23content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-time-out-plugin/ChangeLog?r1=1.22r2=1.23

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   12 Apr 2015 19:54:56 -  1.22
+++ ChangeLog   1 Jul 2015 05:55:34 -   1.23
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-extra/xfce4-time-out-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/ChangeLog,v 1.22 
2015/04/12 19:54:56 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/ChangeLog,v 1.23 
2015/07/01 05:55:34 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  xfce4-time-out-plugin-1.0.2.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-time-out-plugin-1.0.2 (12 Apr 2015)
 



1.2  
xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild?r1=1.1r2=1.2

Index: xfce4-time-out-plugin-1.0.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-time-out-plugin-1.0.2.ebuild  12 Apr 2015 19:54:56 -  1.1
+++ xfce4-time-out-plugin-1.0.2.ebuild  1 Jul 2015 05:55:34 -   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/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild,v
 1.1 2015/04/12 19:54:56 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2.ebuild,v
 1.2 2015/07/01 05:55:34 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=debug
 
 RDEPEND=x11-libs/gtk+:2=






[gentoo-commits] gentoo-x86 commit in xfce-base/libxfce4ui: libxfce4ui-4.12.1-r2.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:12:39

  Modified: libxfce4ui-4.12.1-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.3  xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild?r1=1.2r2=1.3

Index: libxfce4ui-4.12.1-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libxfce4ui-4.12.1-r2.ebuild 20 Jun 2015 20:02:05 -  1.2
+++ libxfce4ui-4.12.1-r2.ebuild 1 Jul 2015 05:12:39 -   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/xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild,v 1.2 
2015/06/20 20:02:05 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/libxfce4ui-4.12.1-r2.ebuild,v 1.3 
2015/07/01 05:12:39 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=LGPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
 IUSE=debug +gtk3 startup-notification
 
 RDEPEND==dev-libs/glib-2.30:2=



1.61 xfce-base/libxfce4ui/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/ChangeLog?rev=1.61view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/ChangeLog?rev=1.61content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/libxfce4ui/ChangeLog?r1=1.60r2=1.61

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   20 Jun 2015 20:02:05 -  1.60
+++ ChangeLog   1 Jul 2015 05:12:39 -   1.61
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/libxfce4ui
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/ChangeLog,v 1.60 
2015/06/20 20:02:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4ui/ChangeLog,v 1.61 
2015/07/01 05:12:39 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org libxfce4ui-4.12.1-r2.ebuild:
+  Stable for HPPA (bug #553500).
 
   20 Jun 2015; Michał Górny mgo...@gentoo.org libxfce4ui-4.12.1-r2.ebuild:
   Fix gtk-doc install location






[gentoo-commits] gentoo-x86 commit in xfce-base/xfconf: ChangeLog xfconf-4.12.0-r1.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:12:12

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

Revision  ChangesPath
1.81 xfce-base/xfconf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.81view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?rev=1.81content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfconf/ChangeLog?r1=1.80r2=1.81

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog   22 Jun 2015 05:56:55 -  1.80
+++ ChangeLog   1 Jul 2015 05:12:12 -   1.81
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfconf
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.80 
2015/06/22 05:56:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.81 
2015/07/01 05:12:12 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfconf-4.12.0-r1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfconf-4.12.0-r1 (22 Jun 2015)
 



1.2  xfce-base/xfconf/xfconf-4.12.0-r1.ebuild

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

Index: xfconf-4.12.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfconf-4.12.0-r1.ebuild 22 Jun 2015 05:56:55 -  1.1
+++ xfconf-4.12.0-r1.ebuild 1 Jul 2015 05:12:12 -   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/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild,v 
1.1 2015/06/22 05:56:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild,v 
1.2 2015/07/01 05:12:12 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux ~x64-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux 
~x86-linux ~x64-solaris
 IUSE=debug perl
 
 RDEPEND==dev-libs/dbus-glib-0.98






[gentoo-commits] gentoo-x86 commit in media-video/smplayer/files: smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch

2015-06-30 Thread Ben de Groot (yngwin)
yngwin  15/07/01 05:39:40

  Added:   
smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch
  Log:
  Unbundle qtsingleapplication (bug #487544). Also fixes compilation with Qt 
5.5 (bug #552376).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.1  
media-video/smplayer/files/smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/smplayer/files/smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/smplayer/files/smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch?rev=1.1content-type=text/plain

Index: smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch
===
--- smplayer-14.9.0.6966.orig/src/smplayer.pro  2015-04-18 10:11:32.0 
+0800
+++ smplayer-14.9.0.6966/src/smplayer.pro   2015-07-01 13:18:39.283850646 
+0800
@@ -285,11 +285,7 @@
 
 # qtsingleapplication
 contains( DEFINES, SINGLE_INSTANCE ) {
-   INCLUDEPATH += qtsingleapplication
-   DEPENDPATH += qtsingleapplication
-
-   SOURCES += qtsingleapplication/qtsingleapplication.cpp 
qtsingleapplication/qtlocalpeer.cpp
-   HEADERS += qtsingleapplication/qtsingleapplication.h 
qtsingleapplication/qtlocalpeer.h
+   CONFIG += qtsingleapplication
 }
 
 # Find subtitles dialog






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-verve-plugin: xfce4-verve-plugin-1.0.1.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:56:48

  Modified: xfce4-verve-plugin-1.0.1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  
xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild?r1=1.1r2=1.2

Index: xfce4-verve-plugin-1.0.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-verve-plugin-1.0.1.ebuild 12 Apr 2015 19:58:17 -  1.1
+++ xfce4-verve-plugin-1.0.1.ebuild 1 Jul 2015 05:56:48 -   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/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild,v
 1.1 2015/04/12 19:58:17 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.0.1.ebuild,v
 1.2 2015/07/01 05:56:48 jer Exp $
 
 EAPI=5
 inherit multilib xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=dbus
 
 RDEPEND==xfce-base/exo-0.6:=



1.18 xfce-extra/xfce4-verve-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog?r1=1.17r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   12 Apr 2015 19:58:17 -  1.17
+++ ChangeLog   1 Jul 2015 05:56:48 -   1.18
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-extra/xfce4-verve-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog,v 
1.17 2015/04/12 19:58:17 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-verve-plugin/ChangeLog,v 
1.18 2015/07/01 05:56:48 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org 
xfce4-verve-plugin-1.0.1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-verve-plugin-1.0.1 (12 Apr 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-eyes-plugin: xfce4-eyes-plugin-4.4.4.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:58:00

  Modified: xfce4-eyes-plugin-4.4.4.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild?r1=1.1r2=1.2

Index: xfce4-eyes-plugin-4.4.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-eyes-plugin-4.4.4.ebuild  28 Mar 2015 20:46:39 -  1.1
+++ xfce4-eyes-plugin-4.4.4.ebuild  1 Jul 2015 05:58:00 -   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/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild,v
 1.1 2015/03/28 20:46:39 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.4.ebuild,v
 1.2 2015/07/01 05:58:00 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=debug
 
 RDEPEND==dev-libs/glib-2.20:=



1.26 xfce-extra/xfce4-eyes-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog?rev=1.26view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog?rev=1.26content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog?r1=1.25r2=1.26

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog   28 Mar 2015 20:46:39 -  1.25
+++ ChangeLog   1 Jul 2015 05:58:00 -   1.26
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-extra/xfce4-eyes-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog,v 
1.25 2015/03/28 20:46:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog,v 
1.26 2015/07/01 05:58:00 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-eyes-plugin-4.4.4.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-eyes-plugin-4.4.4 (28 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in www-client/opera-developer: ChangeLog opera-developer-32.0.1910.0.ebuild opera-developer-31.0.1876.0.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 04:27:40

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

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

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/opera-developer/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   20 Jun 2015 04:56:46 -  1.47
+++ ChangeLog   1 Jul 2015 04:27:40 -   1.48
@@ -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.47 
2015/06/20 04:56:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/opera-developer/ChangeLog,v 1.48 
2015/07/01 04:27:40 jer Exp $
+
+*opera-developer-32.0.1910.0 (01 Jul 2015)
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  -opera-developer-31.0.1876.0.ebuild, +opera-developer-32.0.1910.0.ebuild:
+  Version bump.
 
 *opera-developer-32.0.1899.0 (20 Jun 2015)
 



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

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

Index: opera-developer-32.0.1910.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-32.0.1910.0.ebuild,v
 1.1 2015/07/01 04:27:40 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 )
x86?( ${SRC_URI_BASE}${PN}/${PV}/linux/${PN}_${PV}_i386.deb )

KEYWORDS=~amd64 ~x86

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/libnotify
x11-libs/pango[X]


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

src_unpack() {
unpack_deb ${A}
}

src_prepare() {
case ${ARCH} in
amd64)
mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
rm -r usr/lib || die
;;
x86)
mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
;;
esac

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 app-arch/xarchiver: ChangeLog xarchiver-0.5.4.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 04:43:04

  Modified: ChangeLog xarchiver-0.5.4.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.46 app-arch/xarchiver/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/xarchiver/ChangeLog?rev=1.46view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/xarchiver/ChangeLog?rev=1.46content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/xarchiver/ChangeLog?r1=1.45r2=1.46

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/xarchiver/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   9 Jun 2015 08:59:20 -   1.45
+++ ChangeLog   1 Jul 2015 04:43:04 -   1.46
@@ -1,6 +1,9 @@
 # ChangeLog for app-arch/xarchiver
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/xarchiver/ChangeLog,v 1.45 
2015/06/09 08:59:20 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/xarchiver/ChangeLog,v 1.46 
2015/07/01 04:43:04 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xarchiver-0.5.4.ebuild:
+  Stable for HPPA (bug #553500).
 
   09 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Updating remote-id in metadata.xml



1.2  app-arch/xarchiver/xarchiver-0.5.4.ebuild

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

Index: xarchiver-0.5.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/xarchiver/xarchiver-0.5.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xarchiver-0.5.4.ebuild  21 Apr 2015 04:04:46 -  1.1
+++ xarchiver-0.5.4.ebuild  1 Jul 2015 04:43:04 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/xarchiver/xarchiver-0.5.4.ebuild,v 
1.1 2015/04/21 04:04:46 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/xarchiver/xarchiver-0.5.4.ebuild,v 
1.2 2015/07/01 04:43:04 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
 IUSE=debug
 
 RDEPEND==dev-libs/glib-2






[gentoo-commits] gentoo-x86 commit in x11-themes/gtk-engines-xfce: gtk-engines-xfce-3.2.0-r300.ebuild ChangeLog gtk-engines-xfce-3.2.0-r200.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:06:48

  Modified: gtk-engines-xfce-3.2.0-r300.ebuild ChangeLog
gtk-engines-xfce-3.2.0-r200.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  
x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild?r1=1.1r2=1.2

Index: gtk-engines-xfce-3.2.0-r300.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gtk-engines-xfce-3.2.0-r300.ebuild  8 Mar 2015 15:06:39 -   1.1
+++ gtk-engines-xfce-3.2.0-r300.ebuild  1 Jul 2015 05:06:48 -   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/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild,v
 1.1 2015/03/08 15:06:39 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r300.ebuild,v
 1.2 2015/07/01 05:06:48 jer Exp $
 
 EAPI=5
 MY_PN=gtk-xfce-engine
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=3
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris
 IUSE=debug
 
 COMMON_DEPEND==dev-libs/glib-2.24[${MULTILIB_USEDEP}]



1.182x11-themes/gtk-engines-xfce/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog?rev=1.182view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog?rev=1.182content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog?r1=1.181r2=1.182

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog   8 Mar 2015 15:06:39 -   1.181
+++ ChangeLog   1 Jul 2015 05:06:48 -   1.182
@@ -1,6 +1,10 @@
 # ChangeLog for x11-themes/gtk-engines-xfce
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog,v 
1.181 2015/03/08 15:06:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/ChangeLog,v 
1.182 2015/07/01 05:06:48 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  gtk-engines-xfce-3.2.0-r200.ebuild, gtk-engines-xfce-3.2.0-r300.ebuild:
+  Stable for HPPA (bug #553500).
 
 *gtk-engines-xfce-3.2.0-r200 (08 Mar 2015)
 *gtk-engines-xfce-3.2.0-r300 (08 Mar 2015)



1.2  
x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild?r1=1.1r2=1.2

Index: gtk-engines-xfce-3.2.0-r200.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gtk-engines-xfce-3.2.0-r200.ebuild  8 Mar 2015 15:06:39 -   1.1
+++ gtk-engines-xfce-3.2.0-r200.ebuild  1 Jul 2015 05:06:48 -   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/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild,v
 1.1 2015/03/08 15:06:39 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-themes/gtk-engines-xfce/gtk-engines-xfce-3.2.0-r200.ebuild,v
 1.2 2015/07/01 05:06:48 jer Exp $
 
 EAPI=5
 MY_PN=gtk-xfce-engine
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 

[gentoo-commits] gentoo-x86 commit in xfce-base/exo: ChangeLog exo-0.10.6.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:07:42

  Modified: ChangeLog exo-0.10.6.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.116xfce-base/exo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.116view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.116content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?r1=1.115r2=1.116

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   25 May 2015 21:12:11 -  1.115
+++ ChangeLog   1 Jul 2015 05:07:42 -   1.116
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/exo
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.115 2015/05/25 
21:12:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.116 2015/07/01 
05:07:42 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org exo-0.10.6.ebuild:
+  Stable for HPPA (bug #553500).
 
 *exo-0.10.6 (25 May 2015)
 



1.2  xfce-base/exo/exo-0.10.6.ebuild

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

Index: exo-0.10.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.10.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- exo-0.10.6.ebuild   25 May 2015 21:12:11 -  1.1
+++ exo-0.10.6.ebuild   1 Jul 2015 05:07:42 -   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/xfce-base/exo/exo-0.10.6.ebuild,v 1.1 
2015/05/25 21:12:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.10.6.ebuild,v 1.2 
2015/07/01 05:07:42 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris
 IUSE=debug
 
 RDEPEND==dev-lang/perl-5.6






[gentoo-commits] gentoo-x86 commit in xfce-base/xfce4-session: xfce4-session-4.12.1.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:15:53

  Modified: xfce4-session-4.12.1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.2  xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild?r1=1.1r2=1.2

Index: xfce4-session-4.12.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-session-4.12.1.ebuild 16 Mar 2015 16:02:47 -  1.1
+++ xfce4-session-4.12.1.ebuild 1 Jul 2015 05:15:53 -   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/xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild,v 
1.1 2015/03/16 16:02:47 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.12.1.ebuild,v 
1.2 2015/07/01 05:15:53 jer Exp $
 
 EAPI=5
 EAUTORECONF=1
@@ -12,7 +12,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
 IUSE=debug nls policykit systemd upower +xscreensaver
 
 COMMON_DEPEND==dev-libs/dbus-glib-0.100:=



1.230xfce-base/xfce4-session/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/ChangeLog?rev=1.230view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/ChangeLog?rev=1.230content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-session/ChangeLog?r1=1.229r2=1.230

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -r1.229 -r1.230
--- ChangeLog   16 Mar 2015 16:02:47 -  1.229
+++ ChangeLog   1 Jul 2015 05:15:53 -   1.230
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfce4-session
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v 1.229 
2015/03/16 16:02:47 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v 1.230 
2015/07/01 05:15:53 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-session-4.12.1.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-session-4.12.1 (16 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in xfce-base/xfce4-panel: xfce4-panel-4.12.0.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:15:23

  Modified: xfce4-panel-4.12.0.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.4  xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild?r1=1.3r2=1.4

Index: xfce4-panel-4.12.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xfce4-panel-4.12.0.ebuild   15 Apr 2015 07:47:08 -  1.3
+++ xfce4-panel-4.12.0.ebuild   1 Jul 2015 05:15:23 -   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/xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild,v 1.3 
2015/04/15 07:47:08 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.12.0.ebuild,v 1.4 
2015/07/01 05:15:23 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2 LGPL-2.1
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
 IUSE=debug
 
 RDEPEND==dev-libs/dbus-glib-0.100



1.258xfce-base/xfce4-panel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-panel/ChangeLog?rev=1.258view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-panel/ChangeLog?rev=1.258content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-panel/ChangeLog?r1=1.257r2=1.258

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -r1.257 -r1.258
--- ChangeLog   15 Apr 2015 07:47:08 -  1.257
+++ ChangeLog   1 Jul 2015 05:15:23 -   1.258
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfce4-panel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v 1.257 
2015/04/15 07:47:08 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v 1.258 
2015/07/01 05:15:23 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-panel-4.12.0.ebuild:
+  Stable for HPPA (bug #553500).
 
   15 Apr 2015; Michał Górny mgo...@gentoo.org xfce4-panel-4.12.0.ebuild:
   Revert timezone-data dep bump, the new version does not work either






[gentoo-commits] gentoo-x86 commit in xfce-base/xfce4-settings: ChangeLog xfce4-settings-4.12.0.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:18:58

  Modified: ChangeLog xfce4-settings-4.12.0.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.129xfce-base/xfce4-settings/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-settings/ChangeLog?rev=1.129view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-settings/ChangeLog?rev=1.129content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-settings/ChangeLog?r1=1.128r2=1.129

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   31 May 2015 13:33:04 -  1.128
+++ ChangeLog   1 Jul 2015 05:18:58 -   1.129
@@ -1,6 +1,9 @@
 # ChangeLog for xfce-base/xfce4-settings
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/ChangeLog,v 1.128 
2015/05/31 13:33:04 perfinion Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/ChangeLog,v 1.129 
2015/07/01 05:18:58 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org xfce4-settings-4.12.0.ebuild:
+  Stable for HPPA (bug #553500).
 
   31 May 2015; Jason Zaman perfin...@gentoo.org xfce4-settings-4.10.1.ebuild:
   pin dep libxfce4ui-4.12 bug 549780



1.2  xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild?r1=1.1r2=1.2

Index: xfce4-settings-4.12.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-settings-4.12.0.ebuild8 Mar 2015 15:06:38 -   1.1
+++ xfce4-settings-4.12.0.ebuild1 Jul 2015 05:18:58 -   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/xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild,v 
1.1 2015/03/08 15:06:38 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.12.0.ebuild,v 
1.2 2015/07/01 05:18:58 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=debug libcanberra libinput libnotify upower +xklavier
 
 RDEPEND==dev-libs/dbus-glib-0.100






[gentoo-commits] gentoo-x86 commit in dev-libs/libinput: ChangeLog libinput-0.9.0.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:18:11

  Modified: ChangeLog libinput-0.9.0.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.20 dev-libs/libinput/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libinput/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   23 Jun 2015 09:44:43 -  1.19
+++ ChangeLog   1 Jul 2015 05:18:11 -   1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libinput
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libinput/ChangeLog,v 1.19 
2015/06/23 09:44:43 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libinput/ChangeLog,v 1.20 
2015/07/01 05:18:11 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org libinput-0.9.0.ebuild:
+  Stable for HPPA (bug #553500).
 
 *libinput-0.18.0 (23 Jun 2015)
 



1.8  dev-libs/libinput/libinput-0.9.0.ebuild

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

Index: libinput-0.9.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libinput/libinput-0.9.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libinput-0.9.0.ebuild   17 Mar 2015 17:25:27 -  1.7
+++ libinput-0.9.0.ebuild   1 Jul 2015 05:18: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/dev-libs/libinput/libinput-0.9.0.ebuild,v 
1.7 2015/03/17 17:25:27 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libinput/libinput-0.9.0.ebuild,v 
1.8 2015/07/01 05:18:11 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 # License appears to be a variant of libtiff
 LICENSE=libtiff
 SLOT=0/7
-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
 IUSE=
 RESTRICT=test
 






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-libinput: xf86-input-libinput-0.6.0.ebuild ChangeLog

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:18:32

  Modified: xf86-input-libinput-0.6.0.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.5  
x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild?r1=1.4r2=1.5

Index: xf86-input-libinput-0.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xf86-input-libinput-0.6.0.ebuild28 Feb 2015 19:56:08 -  1.4
+++ xf86-input-libinput-0.6.0.ebuild1 Jul 2015 05:18:32 -   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/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild,v
 1.4 2015/02/28 19:56:08 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.6.0.ebuild,v
 1.5 2015/07/01 05:18:32 jer Exp $
 
 EAPI=5
 
@@ -8,7 +8,7 @@
 
 DESCRIPTION=X.org input driver based on libinput
 
-KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
+KEYWORDS=~amd64 ~arm hppa ~ppc ~ppc64 ~x86
 IUSE=
 
 RDEPEND==dev-libs/libinput-0.8.0:0=



1.7  x11-drivers/xf86-input-libinput/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-libinput/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-libinput/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-libinput/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-libinput/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   23 Jun 2015 12:18:37 -  1.6
+++ ChangeLog   1 Jul 2015 05:18:32 -   1.7
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/xf86-input-libinput
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-libinput/ChangeLog,v 
1.6 2015/06/23 12:18:37 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-libinput/ChangeLog,v 
1.7 2015/07/01 05:18:32 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  xf86-input-libinput-0.6.0.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xf86-input-libinput-0.11.0 (23 Jun 2015)
 






[gentoo-commits] gentoo-x86 commit in media-video/smplayer: smplayer-14.9.0.6966-r1.ebuild ChangeLog

2015-06-30 Thread Ben de Groot (yngwin)
yngwin  15/07/01 05:39:40

  Modified: ChangeLog
  Added:smplayer-14.9.0.6966-r1.ebuild
  Log:
  Unbundle qtsingleapplication (bug #487544). Also fixes compilation with Qt 
5.5 (bug #552376).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.167media-video/smplayer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/smplayer/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog   16 Jun 2015 10:45:41 -  1.166
+++ ChangeLog   1 Jul 2015 05:39:40 -   1.167
@@ -1,6 +1,14 @@
 # ChangeLog for media-video/smplayer
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/smplayer/ChangeLog,v 1.166 
2015/06/16 10:45:41 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/smplayer/ChangeLog,v 1.167 
2015/07/01 05:39:40 yngwin Exp $
+
+*smplayer-14.9.0.6966-r1 (01 Jul 2015)
+
+  01 Jul 2015; Ben de Groot yng...@gentoo.org
+  +files/smplayer-14.9.0.6966-unbundle-qtsingleapplication.patch,
+  +smplayer-14.9.0.6966-r1.ebuild:
+  Unbundle qtsingleapplication (bug #487544). Also fixes compilation with Qt 
5.5
+  (bug #552376).
 
 *smplayer-14.9.0.6966 (16 Jun 2015)
 



1.1  media-video/smplayer/smplayer-14.9.0.6966-r1.ebuild

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

Index: smplayer-14.9.0.6966-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-video/smplayer/smplayer-14.9.0.6966-r1.ebuild,v 
1.1 2015/07/01 05:39:40 yngwin Exp $

EAPI=5
PLOCALES=ar ar_SY bg ca cs da de el_GR en_GB en_US es et eu fi fr gl he_IL hr
hu it ja ka ko ku lt mk ms_MY nl pl pt pt_BR ro_RO ru_RU sk sl_SI sq_AL sr sv
th tr uk_UA vi_VN zh_CN zh_TW
PLOCALE_BACKUP=en_US
inherit eutils l10n qmake-utils

DESCRIPTION=Great Qt GUI front-end for mplayer/mpv
HOMEPAGE=http://smplayer.info/;
SRC_URI=mirror://sourceforge/${PN}/${P}.tar.bz2

LICENSE=GPL-2 BSD
SLOT=0
KEYWORDS=~amd64 ~arm ~ppc64 ~x86 ~x86-fbsd ~amd64-linux
IUSE=autoshutdown bidi debug +qt4 qt5 streaming
REQUIRED_USE=^^ ( qt4 qt5 )

DEPEND=
qt4? ( dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtsingleapplication[qt4]
autoshutdown? ( dev-qt/qtdbus:4 )
streaming? ( dev-qt/qtcore:4[ssl] ) )
qt5? ( dev-qt/linguist-tools:5
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
=dev-qt/qtsingleapplication-2.6.1_p20150629[qt5]
dev-qt/qtwidgets:5
dev-qt/qtxml:5
autoshutdown? ( dev-qt/qtdbus:5 )
streaming? ( dev-qt/qtnetwork:5[ssl]
dev-qt/qtscript:5 ) )
RDEPEND=${DEPEND}
|| ( media-video/mplayer[bidi?,libass,png,X]
( =media-video/mpv-0.6.2[libass,X]
streaming? ( =net-misc/youtube-dl-2014.11.26 ) ) )

src_prepare() {
epatch ${FILESDIR}/${P}-unbundle-qtsingleapplication.patch # bug 
487544
use bidi || epatch ${FILESDIR}/${PN}-14.9.0.6690-zero-bidi.patch

# Upstream Makefile sucks
sed -i -e /^PREFIX=/s:${EPREFIX}/usr/local:${EPREFIX}/usr: \
-e /^DOC_PATH=/s:packages/smplayer:${PF}: \
-e '/\.\/get_svn_revision\.sh/,+2c\
cd src  $(DEFS) $(MAKE)' \
${S}/Makefile || die sed failed

# Toggle autoshutdown option which pulls in dbus, bug #524392
if ! use autoshutdown ; then
sed -e 's:DEFINES += AUTO_SHUTDOWN_PC:#DEFINES += 
AUTO_SHUTDOWN_PC:' \
-i ${S}/src/smplayer.pro || die sed failed
fi

# Turn debug message flooding off
if ! use debug ; then
sed -i 's:#\(DEFINES += NO_DEBUG_ON_CONSOLE\):\1:' \
${S}/src/smplayer.pro || die sed failed
fi

# Turn off online update checker, bug #479902
sed -e 's:DEFINES += UPDATE_CHECKER:#DEFINES += UPDATE_CHECKER:' \
-e 's:DEFINES += CHECK_UPGRADED:#DEFINES += CHECK_UPGRADED:' \
   

[gentoo-commits] gentoo-x86 commit in dev-ruby/samuel: samuel-0.3.3-r2.ebuild ChangeLog

2015-06-30 Thread Hans de Graaff (graaff)
graaff  15/07/01 05:51:48

  Modified: samuel-0.3.3-r2.ebuild ChangeLog
  Log:
  Update mocha dependency.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.2  dev-ruby/samuel/samuel-0.3.3-r2.ebuild

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

Index: samuel-0.3.3-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/samuel/samuel-0.3.3-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- samuel-0.3.3-r2.ebuild  29 Mar 2015 07:15:47 -  1.1
+++ samuel-0.3.3-r2.ebuild  1 Jul 2015 05:51:48 -   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/samuel/samuel-0.3.3-r2.ebuild,v 
1.1 2015/03/29 07:15:47 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/samuel-0.3.3-r2.ebuild,v 
1.2 2015/07/01 05:51:48 graaff Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 inherit ruby-fakegem
 
 DESCRIPTION=An automatic logger for HTTP requests in Ruby
-HOMEPAGE=http://github.com/chrisk/samuel;
+HOMEPAGE=https://github.com/chrisk/samuel;
 
 LICENSE=MIT
 SLOT=0
@@ -23,7 +23,7 @@
=dev-ruby/shoulda-2.11.3
=dev-ruby/fakeweb-1.3
=dev-ruby/httpclient-2.2.3
-   dev-ruby/mocha:0.13
+   dev-ruby/mocha:0.14
dev-ruby/test-unit:2
)
 
@@ -37,7 +37,7 @@
sed -i -e 's:8000:64888:g' test/*.rb || die
 
# Require an old enough version of mocha.
-   sed -i -e '1igem mocha, ~ 0.13.0' test/test_helper.rb || die
+   sed -i -e '1igem mocha, ~ 0.14.0' test/test_helper.rb || die
 
# Use the test-unit gem to make jruby compatible with newer mocha.
sed -i -e '1igem test-unit' test/test_helper.rb || die



1.28 dev-ruby/samuel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/samuel/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   7 Jun 2015 19:44:31 -   1.27
+++ ChangeLog   1 Jul 2015 05:51:48 -   1.28
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/samuel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/ChangeLog,v 1.27 2015/06/07 
19:44:31 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/ChangeLog,v 1.28 2015/07/01 
05:51:48 graaff Exp $
+
+  01 Jul 2015; Hans de Graaff gra...@gentoo.org samuel-0.3.3-r2.ebuild:
+  Update mocha dependency.
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add github to remote-id in metadata.xml






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-smartbookmark-plugin: ChangeLog xfce4-smartbookmark-plugin-0.4.6.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:53:21

  Modified: ChangeLog xfce4-smartbookmark-plugin-0.4.6.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.29 xfce-extra/xfce4-smartbookmark-plugin/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog?rev=1.29view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog?rev=1.29content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog?r1=1.28r2=1.29

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   12 Apr 2015 19:37:48 -  1.28
+++ ChangeLog   1 Jul 2015 05:53:21 -   1.29
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-extra/xfce4-smartbookmark-plugin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog,v 1.28 
2015/04/12 19:37:48 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog,v 1.29 
2015/07/01 05:53:21 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  xfce4-smartbookmark-plugin-0.4.6.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-smartbookmark-plugin-0.4.6 (12 Apr 2015)
 



1.2  
xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild?r1=1.1r2=1.2

Index: xfce4-smartbookmark-plugin-0.4.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-smartbookmark-plugin-0.4.6.ebuild 12 Apr 2015 19:37:48 -  
1.1
+++ xfce4-smartbookmark-plugin-0.4.6.ebuild 1 Jul 2015 05:53:21 -   
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/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild,v
 1.1 2015/04/12 19:37:48 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.6.ebuild,v
 1.2 2015/07/01 05:53:21 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux
 IUSE=debug
 
 COMMON_DEPEND=x11-libs/gtk+:2=






[gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-screenshooter: ChangeLog xfce4-screenshooter-1.8.2.ebuild

2015-06-30 Thread Jeroen Roovers (jer)
jer 15/07/01 05:52:21

  Modified: ChangeLog xfce4-screenshooter-1.8.2.ebuild
  Log:
  Stable for HPPA (bug #553500).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --ignore-arches, 
signed Manifest commit with key A792A613)

Revision  ChangesPath
1.104xfce-extra/xfce4-screenshooter/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-screenshooter/ChangeLog?rev=1.104view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-screenshooter/ChangeLog?rev=1.104content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-screenshooter/ChangeLog?r1=1.103r2=1.104

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-screenshooter/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog   7 May 2015 18:44:52 -   1.103
+++ ChangeLog   1 Jul 2015 05:52:21 -   1.104
@@ -1,6 +1,10 @@
 # ChangeLog for xfce-extra/xfce4-screenshooter
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-screenshooter/ChangeLog,v 
1.103 2015/05/07 18:44:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-screenshooter/ChangeLog,v 
1.104 2015/07/01 05:52:21 jer Exp $
+
+  01 Jul 2015; Jeroen Roovers j...@gentoo.org
+  xfce4-screenshooter-1.8.2.ebuild:
+  Stable for HPPA (bug #553500).
 
 *xfce4-screenshooter-1.8.2 (07 May 2015)
 



1.2  
xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild?r1=1.1r2=1.2

Index: xfce4-screenshooter-1.8.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xfce4-screenshooter-1.8.2.ebuild7 May 2015 18:44:52 -   1.1
+++ xfce4-screenshooter-1.8.2.ebuild1 Jul 2015 05:52:21 -   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/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild,v
 1.1 2015/05/07 18:44:52 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.8.2.ebuild,v
 1.2 2015/07/01 05:52:21 jer Exp $
 
 EAPI=5
 inherit xfconf
@@ -11,7 +11,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
+KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux
 IUSE=debug
 
 RDEPEND==dev-libs/glib-2.16:=






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

2015-06-30 Thread Andreas Hüttel
commit: 182723eda640d68e31960b5caa2b3ddcd32d5e63
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 14:24:42 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 14:24:42 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=182723ed

[kde-base/ktimetracker] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 .../ktimetracker/ktimetracker-4.4.2015.06.ebuild   | 37 ++
 1 file changed, 37 insertions(+)

diff --git a/kde-base/ktimetracker/ktimetracker-4.4.2015.06.ebuild 
b/kde-base/ktimetracker/ktimetracker-4.4.2015.06.ebuild
new file mode 100644
index 000..51ba31a
--- /dev/null
+++ b/kde-base/ktimetracker/ktimetracker-4.4.2015.06.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: 
/var/cvsroot/gentoo-x86/kde-base/ktimetracker/ktimetracker-4.4.11.1.ebuild,v 
1.10 2014/08/05 18:17:16 mrueg Exp $
+
+EAPI=5
+
+KMNAME=kdepim
+KDE_HANDBOOK=optional
+inherit kde4-meta
+
+DESCRIPTION=KTimeTracker tracks time spent on various tasks (noakonadi 
branch)
+KEYWORDS=
+IUSE=debug
+
+RDEPEND=
+   $(add_kdebase_dep kdepim-kresources)
+   $(add_kdebase_dep kdepimlibs '' 4.6)
+   $(add_kdebase_dep libkdepim)
+   x11-libs/libXScrnSaver
+
+DEPEND=${RDEPEND}
+   x11-proto/scrnsaverproto
+
+
+KMEXTRACTONLY=
+   kresources/
+
+
+KMLOADLIBS=libkdepim
+
+src_unpack() {
+   if use kontact; then
+   KMEXTRA=${KMEXTRA} kontact/plugins/ktimetracker
+   fi
+
+   kde4-meta_src_unpack
+}



[gentoo-commits] gentoo-x86 commit in sys-apps/iproute2: ChangeLog iproute2-4.1.0.ebuild

2015-06-30 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/30 15:27:30

  Modified: ChangeLog iproute2-4.1.0.ebuild
  Log:
  Added net-libs/libmnl to RDEPEND (bug #553624)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.265sys-apps/iproute2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog   30 Jun 2015 07:45:44 -  1.264
+++ ChangeLog   30 Jun 2015 15:27:30 -  1.265
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/iproute2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.264 
2015/06/30 07:45:44 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.265 
2015/06/30 15:27:30 polynomial-c Exp $
+
+  30 Jun 2015; Lars Wendler polynomia...@gentoo.org iproute2-4.1.0.ebuild:
+  Added net-libs/libmnl to RDEPEND (bug #553624).
 
 *iproute2-4.1.0 (30 Jun 2015)
 



1.2  sys-apps/iproute2/iproute2-4.1.0.ebuild

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

Index: iproute2-4.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-4.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- iproute2-4.1.0.ebuild   30 Jun 2015 07:45:44 -  1.1
+++ iproute2-4.1.0.ebuild   30 Jun 2015 15:27:30 -  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/iproute2/iproute2-4.1.0.ebuild,v 
1.1 2015/06/30 07:45:44 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-4.1.0.ebuild,v 
1.2 2015/06/30 15:27:30 polynomial-c Exp $
 
 EAPI=5
 
@@ -22,6 +22,7 @@
 IUSE=atm berkdb +iptables ipv6 minimal selinux
 
 RDEPEND=!net-misc/arpd
+   net-libs/libmnl
iptables? ( =net-firewall/iptables-1.4.20:= )
berkdb? ( sys-libs/db:= )
atm? ( net-dialup/linux-atm )






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

2015-06-30 Thread Manuel Rüger
commit: 804d1f7483bc42bd34f1f9208b275f753bce403e
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Tue Jun 30 15:54:12 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Tue Jun 30 15:54:12 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=804d1f74

[eclass] Add SRC_URIs for KDE SC 4.14.10 / Workspaces 4.11.21.

 eclass/kde4-base.eclass | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index f46f2c4..c00c402 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -452,6 +452,9 @@ _calculate_src_uri() {
4.11.20)
# Part of 15.04.2 actually, sigh. Not 
stable for next release!

SRC_URI=mirror://kde/stable/applications/15.04.2/src/${_kmname_pv}.tar.xz ;;
+   4.11.21)
+   # Part of 15.04.3 actually, sigh. Not 
stable for next release!
+   
SRC_URI=mirror://kde/stable/applications/15.04.3/src/${_kmname_pv}.tar.xz ;;
4.14.3)
# Last SC release

SRC_URI=mirror://kde/stable/${PV}/src/${_kmname_pv}.tar.xz ;;
@@ -467,6 +470,9 @@ _calculate_src_uri() {
4.14.9)
# Part of 15.04.2 actually, sigh. Not 
stable for next release!

SRC_URI=mirror://kde/stable/applications/15.04.2/src/${_kmname_pv}.tar.xz ;;
+   4.14.10)
+   # Part of 15.04.3 actually, sigh. Not 
stable for next release!
+   
SRC_URI=mirror://kde/stable/applications/15.04.3/src/${_kmname_pv}.tar.xz ;;
??.?.[6-9]? | ??.??.[4-9]?)
# Unstable KDE Applications releases

SRC_URI=mirror://kde/unstable/applications/${PV}/src/${_kmname}-${PV}.tar.xz 
;;



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

2015-06-30 Thread Mike Pagano (mpagano)
mpagano 15/06/30 15:13:21

  Modified: ChangeLog
  Added:gentoo-sources-4.0.7.ebuild
  Log:
  Linux patch 4.0.7
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1585   sys-kernel/gentoo-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v
retrieving revision 1.1584
retrieving revision 1.1585
diff -u -r1.1584 -r1.1585
--- ChangeLog   30 Jun 2015 14:41:33 -  1.1584
+++ ChangeLog   30 Jun 2015 15:13:21 -  1.1585
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/gentoo-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1584 2015/06/30 14:41:33 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1585 2015/06/30 15:13:21 mpagano Exp $
+
+*gentoo-sources-4.0.7 (30 Jun 2015)
+
+  30 Jun 2015; Mike Pagano mpag...@gentoo.org +gentoo-sources-4.0.7.ebuild:
+  Linux patch 4.0.7
 
 *gentoo-sources-3.14.46 (30 Jun 2015)
 



1.1  sys-kernel/gentoo-sources/gentoo-sources-4.0.7.ebuild

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

Index: gentoo-sources-4.0.7.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-4.0.7.ebuild,v 
1.1 2015/06/30 15:13:21 mpagano Exp $

EAPI=5
ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=9
K_DEBLOB_AVAILABLE=1
inherit kernel-2
detect_version
detect_arch

KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches;
IUSE=deblob experimental

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree
SRC_URI=${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}

pkg_postinst() {
kernel-2_pkg_postinst
einfo For more info on this patchset, and how to report problems, see:
einfo ${HOMEPAGE}
}

pkg_postrm() {
kernel-2_pkg_postrm
}






[gentoo-commits] gentoo-x86 commit in sys-kernel/vanilla-sources: vanilla-sources-3.18.17.ebuild ChangeLog vanilla-sources-3.18.16.ebuild

2015-06-30 Thread Agostino Sarubbo (ago)
ago 15/06/30 15:46:13

  Modified: ChangeLog
  Added:vanilla-sources-3.18.17.ebuild
  Removed:  vanilla-sources-3.18.16.ebuild
  Log:
  Automated version bump to 3.18.17 - remove old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
7194459F)

Revision  ChangesPath
1.1394   sys-kernel/vanilla-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/ChangeLog,v
retrieving revision 1.1393
retrieving revision 1.1394
diff -u -r1.1393 -r1.1394
--- ChangeLog   30 Jun 2015 01:19:47 -  1.1393
+++ ChangeLog   30 Jun 2015 15:46:13 -  1.1394
@@ -1,6 +1,12 @@
 # ChangeLog for sys-kernel/vanilla-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/ChangeLog,v 
1.1393 2015/06/30 01:19:47 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/ChangeLog,v 
1.1394 2015/06/30 15:46:13 ago Exp $
+
+*vanilla-sources-3.18.17 (30 Jun 2015)
+
+  30 Jun 2015; Agostino Sarubbo a...@gentoo.org
+  +vanilla-sources-3.18.17.ebuild, -vanilla-sources-3.18.16.ebuild:
+  Automated version bump to 3.18.17 - remove old.
 
 *vanilla-sources-4.1.1 (30 Jun 2015)
 *vanilla-sources-4.0.7 (30 Jun 2015)



1.1  sys-kernel/vanilla-sources/vanilla-sources-3.18.17.ebuild

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

Index: vanilla-sources-3.18.17.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.18.17.ebuild,v
 1.1 2015/06/30 15:46:13 ago Exp $

EAPI=5
K_NOUSENAME=yes
K_NOSETEXTRAVERSION=yes
K_SECURITY_UNSUPPORTED=1
K_DEBLOB_AVAILABLE=1
ETYPE=sources
inherit kernel-2
detect_version

DESCRIPTION=Full sources for the Linux kernel
HOMEPAGE=http://www.kernel.org;
SRC_URI=${KERNEL_URI}

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






[gentoo-commits] gentoo-x86 commit in dev-util/scanmem: ChangeLog scanmem-0.15.2.ebuild

2015-06-30 Thread Lars Wendler (polynomial-c)
polynomial-c15/06/30 15:57:21

  Modified: ChangeLog
  Added:scanmem-0.15.2.ebuild
  Log:
  Version bump (bug #553640)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  ChangesPath
1.14 dev-util/scanmem/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   4 Jun 2015 19:02:21 -   1.13
+++ ChangeLog   30 Jun 2015 15:57:21 -  1.14
@@ -1,6 +1,11 @@
 # 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.13 
2015/06/04 19:02:21 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/scanmem/ChangeLog,v 1.14 
2015/06/30 15:57:21 polynomial-c Exp $
+
+*scanmem-0.15.2 (30 Jun 2015)
+
+  30 Jun 2015; Lars Wendler polynomia...@gentoo.org +scanmem-0.15.2.ebuild:
+  Version bump (bug #553640).
 
   04 Jun 2015; Michael Palimaka kensing...@gentoo.org scanmem-0.13.ebuild:
   Move various kde-base packages to kde-apps.



1.1  dev-util/scanmem/scanmem-0.15.2.ebuild

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

Index: scanmem-0.15.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/scanmem/scanmem-0.15.2.ebuild,v 1.1 
2015/06/30 15:57:21 polynomial-c Exp $

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

inherit autotools eutils python-single-r1

DESCRIPTION=Locate and modify variables in executing processes
HOMEPAGE=https://github.com/scanmem/scanmem;
SRC_URI=https://github.com/scanmem/scanmem/archive/v${PV}.tar.gz - 
${P}.tar.gz

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

DEPEND=sys-libs/readline:=
RDEPEND=${DEPEND}
gui? (
${PYTHON_DEPS}
dev-python/pygobject:3
sys-auth/polkit
)

REQUIRED_USE=gui? ( ${PYTHON_REQUIRED_USE} )

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

src_prepare() {
sed -i /CFLAGS/d Makefile.am || die

eautoreconf
}

src_configure() {
econf \
--docdir=/usr/share/doc/${PF} \
$(use_enable gui)
}

src_install() {
default

if use gui ; then
docinto gui
dodoc gui/{README,TODO}
python_fix_shebang ${D}
fi
}






[gentoo-commits] proj/linux-patches: New tag: 3.14-52

2015-06-30 Thread Mike Pagano
commit: 
Commit: Mike Pagano mpagano AT gentoo DOT org
CommitDate: Tue Jun 30 14:39:11 2015 +

New tag: 3.14-52




[gentoo-commits] gentoo-x86 commit in net-print/cups-filters: cups-filters-1.0.70.ebuild ChangeLog

2015-06-30 Thread Andreas Huettel (dilfridge)
dilfridge15/06/30 14:30:36

  Modified: ChangeLog
  Added:cups-filters-1.0.70.ebuild
  Log:
  Version bump, bug 553644
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
84AD142F)

Revision  ChangesPath
1.149net-print/cups-filters/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups-filters/ChangeLog?rev=1.149view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups-filters/ChangeLog?rev=1.149content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups-filters/ChangeLog?r1=1.148r2=1.149

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-print/cups-filters/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog   18 May 2015 20:44:49 -  1.148
+++ ChangeLog   30 Jun 2015 14:30:36 -  1.149
@@ -1,6 +1,12 @@
 # ChangeLog for net-print/cups-filters
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/cups-filters/ChangeLog,v 1.148 
2015/05/18 20:44:49 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/cups-filters/ChangeLog,v 1.149 
2015/06/30 14:30:36 dilfridge Exp $
+
+*cups-filters-1.0.70 (30 Jun 2015)
+
+  30 Jun 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +cups-filters-1.0.70.ebuild:
+  Version bump, bug 553644
 
 *cups-filters-1.0.68 (18 May 2015)
 



1.1  net-print/cups-filters/cups-filters-1.0.70.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups-filters/cups-filters-1.0.70.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-print/cups-filters/cups-filters-1.0.70.ebuild?rev=1.1content-type=text/plain

Index: cups-filters-1.0.70.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-print/cups-filters/cups-filters-1.0.70.ebuild,v 1.1 
2015/06/30 14:30:36 dilfridge Exp $

EAPI=5

GENTOO_DEPEND_ON_PERL=no

inherit base eutils perl-module autotools systemd

if [[ ${PV} ==  ]] ; then
inherit bzr
EBZR_REPO_URI=http://bzr.linuxfoundation.org/openprinting/cups-filters;
KEYWORDS=
else
SRC_URI=http://www.openprinting.org/download/${PN}/${P}.tar.xz;
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd ~m68k-mint
fi
DESCRIPTION=Cups PDF filters
HOMEPAGE=http://www.linuxfoundation.org/collaborate/workgroups/openprinting/pdfasstandardprintjobformat;

LICENSE=MIT GPL-2
SLOT=0
IUSE=dbus +foomatic jpeg perl png static-libs tiff zeroconf

RDEPEND=
=app-text/ghostscript-gpl-9.09
app-text/poppler:=[cxx,jpeg?,lcms,tiff?,xpdf-headers(+)]
=app-text/qpdf-3.0.2:=
media-libs/fontconfig
media-libs/freetype:2
media-libs/lcms:2
=net-print/cups-1.7.3
!=net-print/cups-1.5.
sys-devel/bc
sys-libs/zlib
dbus? ( sys-apps/dbus )
foomatic? ( !net-print/foomatic-filters )
jpeg? ( virtual/jpeg:0 )
perl? ( dev-lang/perl:= )
png? ( media-libs/libpng:0= )
tiff? ( media-libs/tiff:0 )
zeroconf? ( net-dns/avahi[dbus] )

DEPEND=${RDEPEND}

src_prepare() {
base_src_prepare
sed -e s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/ -i configure.ac || die
eautoreconf
}

src_configure() {
econf \
--docdir=${EPREFIX}/usr/share/doc/${PF} \
$(use_enable dbus) \
$(use_enable zeroconf avahi) \
$(use_enable static-libs static) \
--with-fontdir=fonts/conf.avail \
--with-pdftops=pdftops \
--enable-imagefilters \
$(use_with jpeg) \
$(use_with png) \
$(use_with tiff) \
--with-rcdir=no \
--with-browseremoteprotocols=DNSSD,CUPS \
--without-php
}

src_compile() {
MAKEOPTS=-j1 default

if use perl; then
pushd ${S}/scripting/perl  /dev/null
perl-module_src_configure
perl-module_src_compile
popd  /dev/null
fi
}

src_install() {
default

if use perl; then
pushd ${S}/scripting/perl  /dev/null
perl-module_src_install
perl_delete_localpod
popd  /dev/null
fi

# workaround: some printer drivers still require pstoraster and 
pstopxl, bug #383831
dosym /usr/libexec/cups/filter/gstoraster 
/usr/libexec/cups/filter/pstoraster
dosym /usr/libexec/cups/filter/gstopxl /usr/libexec/cups/filter/pstopxl

prune_libtool_files 

[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2015-06-30 Thread Manuel Rüger
commit: 9dfc5bebe31f8e9e17e67eb2b4d4743378d18886
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Tue Jun 30 15:46:38 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Tue Jun 30 15:46:38 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9dfc5beb

[profiles] Drop pmask for Plasma 5.3.2.

 profiles/package.mask/plasma-5.3.2 | 37 -
 1 file changed, 37 deletions(-)

diff --git a/profiles/package.mask/plasma-5.3.2 
b/profiles/package.mask/plasma-5.3.2
deleted file mode 100644
index 9c9f7d0..000
--- a/profiles/package.mask/plasma-5.3.2
+++ /dev/null
@@ -1,37 +0,0 @@
-# Manuel Rüger mr...@gentoo.org (26 Jun 2015)
-# Not released yet.
-~kde-plasma/baloo-5.9.2
-~kde-plasma/bluedevil-5.3.2
-~kde-plasma/breeze-5.3.2
-~kde-plasma/kde-cli-tools-5.3.2
-~kde-plasma/kde-gtk-config-5.3.2
-~kde-plasma/kdecoration-5.3.2
-~kde-plasma/kdeplasma-addons-5.3.2
-~kde-plasma/kfilemetadata-5.9.2
-~kde-plasma/khelpcenter-5.3.2
-~kde-plasma/khotkeys-5.3.2
-~kde-plasma/kinfocenter-5.3.2
-~kde-plasma/kio-extras-5.3.2
-~kde-plasma/kmenuedit-5.3.2
-~kde-plasma/kscreen-5.3.2
-~kde-plasma/ksshaskpass-5.3.2
-~kde-plasma/ksysguard-5.3.2
-~kde-plasma/kwayland-5.3.2
-~kde-plasma/kwin-5.3.2
-~kde-plasma/kwrited-5.3.2
-~kde-plasma/libkscreen-5.3.2
-~kde-plasma/libksysguard-5.3.2
-~kde-plasma/milou-5.3.2
-~kde-plasma/oxygen-5.3.2
-~kde-plasma/oxygen-fonts-5.3.2
-~kde-plasma/plasma-desktop-5.3.2
-~kde-plasma/plasma-mediacenter-5.3.2
-~kde-plasma/plasma-meta-5.3.2
-~kde-plasma/plasma-nm-5.3.2
-~kde-plasma/plasma-sdk-5.3.2
-~kde-plasma/plasma-workspace-5.3.2
-~kde-plasma/plasma-workspace-wallpapers-5.3.2
-~kde-plasma/polkit-kde-agent-5.3.2
-~kde-plasma/powerdevil-5.3.2
-~kde-plasma/sddm-kcm-5.3.2
-~kde-plasma/systemsettings-5.3.2
\ No newline at end of file



[gentoo-commits] proj/linux-patches: New tag: 3.10-88

2015-06-30 Thread Mike Pagano
commit: 
Commit: Mike Pagano mpagano AT gentoo DOT org
CommitDate: Tue Jun 30 14:17:56 2015 +

New tag: 3.10-88




[gentoo-commits] proj/linux-patches:3.14 commit in: /

2015-06-30 Thread Mike Pagano
commit: bc9b0397988a797ae691094eb7c83c3e210f29ca
Author: Mike Pagano mpagano AT gentoo DOT org
AuthorDate: Tue Jun 30 14:22:10 2015 +
Commit: Mike Pagano mpagano AT gentoo DOT org
CommitDate: Tue Jun 30 14:22:10 2015 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=bc9b0397

Linux patch 3.14.46

 _README  |   4 +
 1045_linux-3.14.46.patch | 829 +++
 2 files changed, 833 insertions(+)

diff --git a/_README b/_README
index ac0012f..a04d242 100644
--- a/_README
+++ b/_README
@@ -222,6 +222,10 @@ Patch:  1044_linux-3.14.45.patch
 From:   http://www.kernel.org
 Desc:   Linux 3.14.45
 
+Patch:  1045_linux-3.14.46.patch
+From:   http://www.kernel.org
+Desc:   Linux 3.14.46
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1045_linux-3.14.46.patch b/1045_linux-3.14.46.patch
new file mode 100644
index 000..11a3c89
--- /dev/null
+++ b/1045_linux-3.14.46.patch
@@ -0,0 +1,829 @@
+diff --git a/Makefile b/Makefile
+index c92186c3efd7..def39fdd9df4 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 3
+ PATCHLEVEL = 14
+-SUBLEVEL = 45
++SUBLEVEL = 46
+ EXTRAVERSION =
+ NAME = Remembering Coco
+ 
+diff --git a/arch/arm/include/asm/kvm_host.h b/arch/arm/include/asm/kvm_host.h
+index 09af14999c9b..530f56e19931 100644
+--- a/arch/arm/include/asm/kvm_host.h
 b/arch/arm/include/asm/kvm_host.h
+@@ -42,7 +42,7 @@
+ 
+ struct kvm_vcpu;
+ u32 *kvm_vcpu_reg(struct kvm_vcpu *vcpu, u8 reg_num, u32 mode);
+-int kvm_target_cpu(void);
++int __attribute_const__ kvm_target_cpu(void);
+ int kvm_reset_vcpu(struct kvm_vcpu *vcpu);
+ void kvm_reset_coprocs(struct kvm_vcpu *vcpu);
+ 
+diff --git a/arch/arm/include/asm/kvm_mmu.h b/arch/arm/include/asm/kvm_mmu.h
+index 7b362bc9c09a..0cbdb8ed71cf 100644
+--- a/arch/arm/include/asm/kvm_mmu.h
 b/arch/arm/include/asm/kvm_mmu.h
+@@ -127,6 +127,18 @@ static inline void kvm_set_s2pmd_writable(pmd_t *pmd)
+   (__boundary - 1  (end) - 1)? __boundary: (end);\
+ })
+ 
++static inline bool kvm_page_empty(void *ptr)
++{
++  struct page *ptr_page = virt_to_page(ptr);
++  return page_count(ptr_page) == 1;
++}
++
++
++#define kvm_pte_table_empty(ptep) kvm_page_empty(ptep)
++#define kvm_pmd_table_empty(pmdp) kvm_page_empty(pmdp)
++#define kvm_pud_table_empty(pudp) (0)
++
++
+ struct kvm;
+ 
+ #define kvm_flush_dcache_to_poc(a,l)  __cpuc_flush_dcache_area((a), (l))
+diff --git a/arch/arm/kernel/hyp-stub.S b/arch/arm/kernel/hyp-stub.S
+index 797b1a6a4906..7e666cfda634 100644
+--- a/arch/arm/kernel/hyp-stub.S
 b/arch/arm/kernel/hyp-stub.S
+@@ -134,9 +134,7 @@ ENTRY(__hyp_stub_install_secondary)
+   mcr p15, 4, r7, c1, c1, 3   @ HSTR
+ 
+ THUMB(orr r7, #(1  30)  )   @ HSCTLR.TE
+-#ifdef CONFIG_CPU_BIG_ENDIAN
+-  orr r7, #(1  9)   @ HSCTLR.EE
+-#endif
++ARM_BE8(orr   r7, r7, #(1  25)) @ HSCTLR.EE
+   mcr p15, 4, r7, c1, c0, 0   @ HSCTLR
+ 
+   mrc p15, 4, r7, c1, c1, 1   @ HDCR
+diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c
+index bd18bb8b2770..df6e75e47ae0 100644
+--- a/arch/arm/kvm/arm.c
 b/arch/arm/kvm/arm.c
+@@ -82,7 +82,7 @@ struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
+ /**
+  * kvm_arm_get_running_vcpus - get the per-CPU array of currently running 
vcpus.
+  */
+-struct kvm_vcpu __percpu **kvm_get_running_vcpus(void)
++struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
+ {
+   return kvm_arm_running_vcpu;
+ }
+@@ -155,16 +155,6 @@ int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct 
vm_fault *vmf)
+   return VM_FAULT_SIGBUS;
+ }
+ 
+-void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
+- struct kvm_memory_slot *dont)
+-{
+-}
+-
+-int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
+-  unsigned long npages)
+-{
+-  return 0;
+-}
+ 
+ /**
+  * kvm_arch_destroy_vm - destroy the VM data structure
+@@ -224,33 +214,6 @@ long kvm_arch_dev_ioctl(struct file *filp,
+   return -EINVAL;
+ }
+ 
+-void kvm_arch_memslots_updated(struct kvm *kvm)
+-{
+-}
+-
+-int kvm_arch_prepare_memory_region(struct kvm *kvm,
+- struct kvm_memory_slot *memslot,
+- struct kvm_userspace_memory_region *mem,
+- enum kvm_mr_change change)
+-{
+-  return 0;
+-}
+-
+-void kvm_arch_commit_memory_region(struct kvm *kvm,
+- struct kvm_userspace_memory_region *mem,
+- const struct kvm_memory_slot *old,
+- enum kvm_mr_change change)
+-{
+-}
+-
+-void kvm_arch_flush_shadow_all(struct kvm *kvm)
+-{
+-}
+-
+-void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
+-

[gentoo-commits] gentoo-x86 commit in dev-libs/libgaminggear/files: - New directory

2015-06-30 Thread Ian Delaney (idella4)
idella4 15/06/30 14:35:16

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-libs/libgaminggear/files added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-java/xalan-serializer: xalan-serializer-2.7.2.ebuild ChangeLog

2015-06-30 Thread James Le Cuirot (chewi)
chewi   15/06/30 14:34:29

  Modified: xalan-serializer-2.7.2.ebuild ChangeLog
  Log:
  Fix bad SRC_URI. Sorry. :(
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
9C6D7DE4)

Revision  ChangesPath
1.2  dev-java/xalan-serializer/xalan-serializer-2.7.2.ebuild

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

Index: xalan-serializer-2.7.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-java/xalan-serializer/xalan-serializer-2.7.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xalan-serializer-2.7.2.ebuild   30 Jun 2015 11:02:04 -  1.1
+++ xalan-serializer-2.7.2.ebuild   30 Jun 2015 14:34:29 -  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-java/xalan-serializer/xalan-serializer-2.7.2.ebuild,v
 1.1 2015/06/30 11:02:04 chewi Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-java/xalan-serializer/xalan-serializer-2.7.2.ebuild,v
 1.2 2015/06/30 14:34:29 chewi Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 DESCRIPTION=DOM Level 3 serializer from Apache Xalan, shared by Xalan and 
Xerces
 HOMEPAGE=http://xalan.apache.org/;
-SRC_URI=mirror://apache/${PN}/${MY_PN}/source/${MY_P}-src.tar.gz
+SRC_URI=mirror://apache/xalan/${MY_PN}/source/${MY_P}-src.tar.gz
 LICENSE=Apache-2.0
 SLOT=0
 KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris



1.19 dev-java/xalan-serializer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xalan-serializer/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xalan-serializer/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xalan-serializer/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/xalan-serializer/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   30 Jun 2015 11:02:04 -  1.18
+++ ChangeLog   30 Jun 2015 14:34:29 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/xalan-serializer
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/xalan-serializer/ChangeLog,v 1.18 
2015/06/30 11:02:04 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/xalan-serializer/ChangeLog,v 1.19 
2015/06/30 14:34:29 chewi Exp $
+
+  30 Jun 2015; James Le Cuirot ch...@gentoo.org 
xalan-serializer-2.7.2.ebuild:
+  Fix bad SRC_URI. Sorry. :(
 
 *xalan-serializer-2.7.2 (30 Jun 2015)
 






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

2015-06-30 Thread Mike Pagano (mpagano)
mpagano 15/06/30 14:26:40

  Modified: ChangeLog
  Added:gentoo-sources-3.10.82.ebuild
  Log:
  Linux patch 3.10.82
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1583   sys-kernel/gentoo-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v
retrieving revision 1.1582
retrieving revision 1.1583
diff -u -r1.1582 -r1.1583
--- ChangeLog   29 Jun 2015 06:38:25 -  1.1582
+++ ChangeLog   30 Jun 2015 14:26:40 -  1.1583
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/gentoo-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1582 2015/06/29 06:38:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1583 2015/06/30 14:26:40 mpagano Exp $
+
+*gentoo-sources-3.10.82 (30 Jun 2015)
+
+  30 Jun 2015; Mike Pagano mpag...@gentoo.org +gentoo-sources-3.10.82.ebuild:
+  Linux patch 3.10.82
 
   29 Jun 2015; Jeroen Roovers j...@gentoo.org gentoo-sources-4.0.5.ebuild:
   Mark -hppa (bug #552336).



1.1  sys-kernel/gentoo-sources/gentoo-sources-3.10.82.ebuild

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

Index: gentoo-sources-3.10.82.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.10.82.ebuild,v
 1.1 2015/06/30 14:26:40 mpagano Exp $

EAPI=5
ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=88
K_DEBLOB_AVAILABLE=1
inherit kernel-2
detect_version
detect_arch

KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches;
IUSE=deblob experimental

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree
SRC_URI=${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}

pkg_postinst() {
kernel-2_pkg_postinst
einfo For more info on this patchset, and how to report problems, see:
einfo ${HOMEPAGE}

}

pkg_postrm() {
kernel-2_pkg_postrm
}






[gentoo-commits] gentoo-x86 commit in dev-lang/ekopath: ekopath-6.0.430_p20150629.ebuild ChangeLog ekopath-5.0.1_pre20131115.ebuild ekopath-5.0.5_pre20150226.ebuild ekopath-6.0.373_p20150519.ebuild ek

2015-06-30 Thread Michal Gorny (mgorny)
mgorny  15/06/30 14:27:39

  Modified: ChangeLog
  Added:ekopath-6.0.430_p20150629.ebuild
  Removed:  ekopath-5.0.1_pre20131115.ebuild
ekopath-5.0.5_pre20150226.ebuild
ekopath-6.0.373_p20150519.ebuild
ekopath-6.0.396_p20150605.ebuild
  Log:
  Bump. Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.30 dev-lang/ekopath/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog   6 Jun 2015 11:46:50 -   1.29
+++ ChangeLog   30 Jun 2015 14:27:39 -  1.30
@@ -1,6 +1,14 @@
 # ChangeLog for dev-lang/ekopath
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.29 
2015/06/06 11:46:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.30 
2015/06/30 14:27:39 mgorny Exp $
+
+*ekopath-6.0.430_p20150629 (30 Jun 2015)
+
+  30 Jun 2015; Michał Górny mgo...@gentoo.org
+  +ekopath-6.0.430_p20150629.ebuild, -ekopath-5.0.1_pre20131115.ebuild,
+  -ekopath-5.0.5_pre20150226.ebuild, -ekopath-6.0.373_p20150519.ebuild,
+  -ekopath-6.0.396_p20150605.ebuild:
+  Bump. Remove old.
 
 *ekopath-6.0.396_p20150605 (06 Jun 2015)
 



1.1  dev-lang/ekopath/ekopath-6.0.430_p20150629.ebuild

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

Index: ekopath-6.0.430_p20150629.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-6.0.430_p20150629.ebuild,v 1.1 
2015/06/30 14:27:39 mgorny Exp $

EAPI=5

inherit versionator multilib pax-utils

MY_PV=$(get_version_component_range 1-3)
DATE=$(get_version_component_range 4)
DATE=${DATE#p}
DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6}
INSTALLER=${PN}-${DATE}-installer.run

DESCRIPTION=PathScale EKOPath Compiler Suite
HOMEPAGE=http://www.pathscale.com/ekopath-compiler-suite;
SRC_URI=http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER};

LICENSE=all-rights-reserved
SLOT=0
KEYWORDS=~amd64
IUSE=

DEPEND=!!app-arch/rpm
RDEPEND=

RESTRICT=bindist mirror

QA_PREBUILT=
opt/${PN}/lib/${MY_PV}/x8664/*
opt/${PN}/bin/*

S=${WORKDIR}

src_unpack() {
cp ${DISTDIR}/${INSTALLER} ${S}/ || die
chmod +x ${S}/${INSTALLER} || die
}

src_prepare() {
cat  99${PN} -EOF
PATH=${EROOT%/}/opt/${PN}/bin
ROOTPATH=${EROOT%/}/opt/${PN}/bin

LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64
MANPATH=${EROOT%/}/opt/${PN}/docs/man
EOF
}

src_install() {
# EI_PAX marking is obsolete and PT_PAX breaks the binary.
# We must use XT_PAX to run the installer.
if [[ ${PAX_MARKINGS} == XT ]]; then
pax-mark m ${INSTALLER}
fi

./${INSTALLER} \
--prefix ${ED%/}/opt/${PN} \
--mode unattended || die

if [[ ! -d ${ED%/}/opt/${PN}/lib/${MY_PV} ]]; then
local guess
cd ${ED%/}/opt/${PN}/lib  guess=( * )

if [[ ${guess[@]} ]]; then
die Incorrect release version in PV, guessing it 
should be: ${guess[*]}
else
die No libdir installed
fi
fi
[[ -x ${ED%}/opt/${PN}/bin/pathcc ]] || die No pathcc executable was 
installed, your hardware is unsupported most likely

rm -r ${ED}/opt/${PN}/uninstall* || die
doenvd 99${PN}
}






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

2015-06-30 Thread Mike Pagano (mpagano)
mpagano 15/06/30 15:31:30

  Modified: ChangeLog
  Added:gentoo-sources-4.1.1.ebuild
  Log:
  Linux patch 4.1.1
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1586   sys-kernel/gentoo-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v
retrieving revision 1.1585
retrieving revision 1.1586
diff -u -r1.1585 -r1.1586
--- ChangeLog   30 Jun 2015 15:13:21 -  1.1585
+++ ChangeLog   30 Jun 2015 15:31:30 -  1.1586
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/gentoo-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1585 2015/06/30 15:13:21 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1586 2015/06/30 15:31:30 mpagano Exp $
+
+*gentoo-sources-4.1.1 (30 Jun 2015)
+
+  30 Jun 2015; Mike Pagano mpag...@gentoo.org +gentoo-sources-4.1.1.ebuild:
+  Linux patch 4.1.1
 
 *gentoo-sources-4.0.7 (30 Jun 2015)
 



1.1  sys-kernel/gentoo-sources/gentoo-sources-4.1.1.ebuild

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

Index: gentoo-sources-4.1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-4.1.1.ebuild,v 
1.1 2015/06/30 15:31:30 mpagano Exp $

EAPI=5
ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=4
K_DEBLOB_AVAILABLE=1
K_KDBUS_AVAILABLE=1

inherit kernel-2
detect_version
detect_arch

KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches;
IUSE=deblob experimental

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree
SRC_URI=${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}

pkg_postinst() {
kernel-2_pkg_postinst
einfo For more info on this patchset, and how to report problems, see:
einfo ${HOMEPAGE}
}

pkg_postrm() {
kernel-2_pkg_postrm
}






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

2015-06-30 Thread Andreas Hüttel
commit: a6f45dfa46bab9d6e246dff19adf4adc9495b162
Author: Andreas K. Huettel (dilfridge) dilfridge AT gentoo DOT org
AuthorDate: Tue Jun 30 14:27:21 2015 +
Commit: Andreas Hüttel dilfridge AT gentoo DOT org
CommitDate: Tue Jun 30 14:27:21 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a6f45dfa

[kde-base/libkpgp] Add 4.4-noakonadi snapshot

Package-Manager: portage-2.2.20

 kde-base/libkpgp/libkpgp-4.4.2015.06.ebuild | 13 +
 kde-base/libkpgp/metadata.xml   |  5 +
 2 files changed, 18 insertions(+)

diff --git a/kde-base/libkpgp/libkpgp-4.4.2015.06.ebuild 
b/kde-base/libkpgp/libkpgp-4.4.2015.06.ebuild
new file mode 100644
index 000..dc95266
--- /dev/null
+++ b/kde-base/libkpgp/libkpgp-4.4.2015.06.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/libkpgp/libkpgp-4.4.11.1.ebuild,v 
1.9 2014/04/05 18:12:56 dilfridge Exp $
+
+EAPI=5
+
+KDE_MINIMAL=4.6
+KMNAME=kdepim
+inherit kde4-meta
+
+DESCRIPTION=KDE pgp abstraction library
+KEYWORDS=
+IUSE=debug

diff --git a/kde-base/libkpgp/metadata.xml b/kde-base/libkpgp/metadata.xml
new file mode 100644
index 000..8d1e86a
--- /dev/null
+++ b/kde-base/libkpgp/metadata.xml
@@ -0,0 +1,5 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+herdkde/herd
+/pkgmetadata



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

2015-06-30 Thread Mike Pagano (mpagano)
mpagano 15/06/30 14:41:33

  Modified: ChangeLog
  Added:gentoo-sources-3.14.46.ebuild
  Log:
  Linux patch 3.14.46
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
B576E4E3)

Revision  ChangesPath
1.1584   sys-kernel/gentoo-sources/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v
retrieving revision 1.1583
retrieving revision 1.1584
diff -u -r1.1583 -r1.1584
--- ChangeLog   30 Jun 2015 14:26:40 -  1.1583
+++ ChangeLog   30 Jun 2015 14:41:33 -  1.1584
@@ -1,6 +1,11 @@
 # ChangeLog for sys-kernel/gentoo-sources
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1583 2015/06/30 14:26:40 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 
1.1584 2015/06/30 14:41:33 mpagano Exp $
+
+*gentoo-sources-3.14.46 (30 Jun 2015)
+
+  30 Jun 2015; Mike Pagano mpag...@gentoo.org +gentoo-sources-3.14.46.ebuild:
+  Linux patch 3.14.46
 
 *gentoo-sources-3.10.82 (30 Jun 2015)
 



1.1  sys-kernel/gentoo-sources/gentoo-sources-3.14.46.ebuild

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

Index: gentoo-sources-3.14.46.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.46.ebuild,v
 1.1 2015/06/30 14:41:33 mpagano Exp $

EAPI=5
ETYPE=sources
K_WANT_GENPATCHES=base extras experimental
K_GENPATCHES_VER=52
K_DEBLOB_AVAILABLE=1
inherit kernel-2
detect_version
detect_arch

KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86
HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches;
IUSE=deblob experimental

DESCRIPTION=Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree
SRC_URI=${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}

pkg_postinst() {
kernel-2_pkg_postinst
einfo For more info on this patchset, and how to report problems, see:
einfo ${HOMEPAGE}
}

pkg_postrm() {
kernel-2_pkg_postrm
}






[gentoo-commits] gentoo-x86 commit in dev-libs/libgaminggear/files: libgaminggear-0.10.0-doc.patch

2015-06-30 Thread Ian Delaney (idella4)
idella4 15/06/30 14:41:23

  Added:libgaminggear-0.10.0-doc.patch
  Log:
  bump; ebuild submitted via bug #548388 by proxy maintainer
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.1  dev-libs/libgaminggear/files/libgaminggear-0.10.0-doc.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgaminggear/files/libgaminggear-0.10.0-doc.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgaminggear/files/libgaminggear-0.10.0-doc.patch?rev=1.1content-type=text/plain

Index: libgaminggear-0.10.0-doc.patch
===
Set install of the docs to DOCDIR
--- libgaminggear-0.10.0.orig/include/gaminggear/CMakeLists.txt 2015-06-28 
12:46:22.615985840 +0100
+++ libgaminggear-0.10.0/include/gaminggear/CMakeLists.txt  2015-06-28 
13:01:35.511970664 +0100
@@ -14,10 +14,10 @@ IF(WITH_DOC)
 DEPENDS
   ${CMAKE_CURRENT_BINARY_DIR}/html/index.html
   )
-  
+
   INSTALL(
 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html
-DESTINATION share/doc/libgaminggear
+DESTINATION ${DOCDIR}
   )
 ENDIF()






  1   2   3   >