[gentoo-commits] gentoo-x86 commit in mail-mta/nullmailer: ChangeLog nullmailer-1.13-r5.ebuild

2014-12-14 Thread Justin Lecher (jlec)
jlec14/12/15 07:51:09

  Modified: ChangeLog
  Added:nullmailer-1.13-r5.ebuild
  Log:
  mail-mta/nullmailer: Drop einstall in favour of plain emake, #521552; prepend 
chmod/chown calls in pkg_* with ROOT, #532588
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.87 mail-mta/nullmailer/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.87&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.87&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   27 Mar 2014 07:15:09 -  1.86
+++ ChangeLog   15 Dec 2014 07:51:09 -  1.87
@@ -1,6 +1,12 @@
 # ChangeLog for mail-mta/nullmailer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.86 
2014/03/27 07:15:09 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.87 
2014/12/15 07:51:09 jlec Exp $
+
+*nullmailer-1.13-r5 (15 Dec 2014)
+
+  15 Dec 2014; Justin Lecher  +nullmailer-1.13-r5.ebuild:
+  Drop einstall in favour of plain emake, #521552; prepend chmod/chown calls in
+  pkg_* with ROOT, #532588
 
   27 Mar 2014; Justin Lecher  -nullmailer-1.13-r2.ebuild,
   -files/init.d-nullmailer-r3:



1.1  mail-mta/nullmailer/nullmailer-1.13-r5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.13-r5.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.13-r5.ebuild?rev=1.1&content-type=text/plain

Index: nullmailer-1.13-r5.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.13-r5.ebuild,v 1.1 
2014/12/15 07:51:09 jlec Exp $

EAPI=5

inherit autotools eutils flag-o-matic multilib systemd user

MY_P="${P/_rc/RC}"

DEBIAN_PV=1.11
DEBIAN_PR="2"
DEBIAN_P="${PN}-${DEBIAN_PV}"
DEBIAN_PF="${DEBIAN_P/-/_}-${DEBIAN_PR}"
DEBIAN_SRC="${DEBIAN_PF}.debian.tar.gz"

DESCRIPTION="Simple relay-only local mail transport agent"
HOMEPAGE="http://untroubled.org/nullmailer/";
SRC_URI="
http://untroubled.org/${PN}/archive/${MY_P}.tar.gz
http://dev.gentoo.org/~jlec/distfiles/${PN}-patches-${PV}.tar.xz";
#   mirror://debian/pool/main/n/${PN}/${DEBIAN_SRC}"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ssl"

DEPEND="
sys-apps/groff
ssl? ( net-libs/gnutls )"
RDEPEND="
virtual/logger
virtual/shadow
ssl? ( net-libs/gnutls )
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/opensmtpd
!mail-mta/ssmtp"

S=${WORKDIR}/${MY_P}

pkg_setup() {
enewgroup nullmail 88
enewuser nullmail 88 -1 /var/nullmailer nullmail
}

src_prepare() {
#   sed -i -e 's/nullmailer-1.10/nullmailer-1.11/g' \
#   "${WORKDIR}"/debian/patches/*.diff || die
#   EPATCH_OPTS="-d ${S} -p1" \
#   epatch "${DISTDIR}"/${DEBIAN_SRC}
# why revert?  Ask Robin when he is back!
#   EPATCH_OPTS="-d ${WORKDIR} -p0 -R" \
#   epatch "${WORKDIR}"/debian/patches/02_ipv6.diff
# this fixes the debian daemon/syslog to actually compile

# old debian patches from 1.11
# DO NOT APPLY patch 0009... It breaks
epatch "${WORKDIR}"/patches/000{1..8}*patch

sed -i.orig \
-e '/^nullmailer_send_LDADD/s, =, = ../lib/cli++/libcli++.a,' \
"${S}"/src/Makefile.am || die "Sed failed"
sed -i.orig \
-e '/\$(localstatedir)\/trigger/d' \
"${S}"/Makefile.am || die "Sed failed"
sed \
-e "s:^AC_PROG_RANLIB:AC_CHECK_TOOL(AR, ar, 
false)\nAC_PROG_RANLIB:g" \
-i configure.in || die
sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.in || die
eautoreconf
}

src_configure() {
# Note that we pass a different directory below due to bugs in the 
makefile!
econf \
--localstatedir=/var \
$(use_enable ssl tls)
}

src_install () {
emake DESTDIR="${D}" localstatedir=/var/nullmailer install

dodoc AUTHORS BUGS HOWTO INSTALL ChangeLog NEWS

[gentoo-commits] gentoo-x86 commit in dev-python/wsgiintercept: ChangeLog wsgiintercept-0.9.1.ebuild

2014-12-14 Thread Justin Lecher (jlec)
jlec14/12/15 07:50:59

  Modified: ChangeLog
  Added:wsgiintercept-0.9.1.ebuild
  Log:
  dev-python/wsgiintercept: Version BUmp
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  ChangesPath
1.14 dev-python/wsgiintercept/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog   9 Dec 2014 06:55:32 -   1.13
+++ ChangeLog   15 Dec 2014 07:50:59 -  1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/wsgiintercept
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.13 
2014/12/09 06:55:32 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.14 
2014/12/15 07:50:59 jlec Exp $
+
+*wsgiintercept-0.9.1 (15 Dec 2014)
+
+  15 Dec 2014; Justin Lecher  +wsgiintercept-0.9.1.ebuild:
+  Version BUmp
 
 *wsgiintercept-0.9.0 (09 Dec 2014)
 



1.1  dev-python/wsgiintercept/wsgiintercept-0.9.1.ebuild

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

Index: wsgiintercept-0.9.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.9.1.ebuild,v 
1.1 2014/12/15 07:50:59 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )

inherit distutils-r1

MY_PN="wsgi_intercept"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="WSGI application in place of a real URI for testing"
HOMEPAGE="https://github.com/cdent/python3-wsgi-intercept";
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND=""
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/httplib2[${PYTHON_USEDEP}]
>=dev-python/pytest-2.4[${PYTHON_USEDEP}]
>=dev-python/requests-2.0.1[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/mechanize[${PYTHON_USEDEP}]' 
python2_7 pypy)
)"
S="${WORKDIR}/${MY_P}"

python_prepare_all() {
# .pyc files cause failure of tests
rm -rf test/__pycache__/ || die
distutils-r1_python_prepare_all
}

python_compile_all() {
use doc && emake -C docs html
}

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

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






[gentoo-commits] gentoo-x86 commit in net-libs/gsoap: gsoap-2.8.21.ebuild ChangeLog

2014-12-14 Thread Patrick Lauer (patrick)
patrick 14/12/15 07:40:55

  Modified: ChangeLog
  Added:gsoap-2.8.21.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.33 net-libs/gsoap/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/gsoap/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   17 Nov 2014 07:19:25 -  1.32
+++ ChangeLog   15 Dec 2014 07:40:55 -  1.33
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/gsoap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/ChangeLog,v 1.32 2014/11/17 
07:19:25 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/ChangeLog,v 1.33 2014/12/15 
07:40:55 patrick Exp $
+
+*gsoap-2.8.21 (15 Dec 2014)
+
+  15 Dec 2014; Patrick Lauer  +gsoap-2.8.21.ebuild:
+  Bump
 
 *gsoap-2.8.19 (17 Nov 2014)
 



1.1  net-libs/gsoap/gsoap-2.8.21.ebuild

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

Index: gsoap-2.8.21.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gsoap/gsoap-2.8.21.ebuild,v 1.1 
2014/12/15 07:40:55 patrick Exp $

EAPI=4

inherit autotools eutils

MY_P="${PN}-2.8"

DESCRIPTION="A cross-platform open source C and C++ SDK to ease the development 
of SOAP/XML Web services"
HOMEPAGE="http://gsoap2.sourceforge.net";
SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip"

LICENSE="GPL-2 gSOAP"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc debug examples ipv6 gnutls +ssl"

DEPEND="app-arch/unzip
sys-devel/flex
sys-devel/bison
sys-libs/zlib
gnutls? ( net-libs/gnutls )
ssl? ( dev-libs/openssl )"
RDEPEND=""

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

src_prepare() {
# Fix Pre-ISO headers
epatch 
"${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch"

eautoreconf
}

src_configure() {
local myconf=
use ssl || myconf+="--disable-ssl "
use gnutls && myconf+="--enable-gnutls "
use ipv6 && myconf+="--enable-ipv6 "
econf \
${myconf} \
$(use_enable debug) \
$(use_enable examples samples)
}

src_compile() {
emake -j1
}

src_install() {
emake DESTDIR="${D}" install

# yes, we also install the license-file since
# it contains info about how to apply the licenses
dodoc *.txt

dohtml changelog.html

find "${D}"/usr/ -name "*.la" -exec rm {} \;

if use examples; then
rm -rf gsoap/samples/Makefile* gsoap/samples/*/Makefile* 
gsoap/samples/*/*.o
insinto /usr/share/doc/${PF}/examples
doins -r gsoap/samples/*
fi

if use doc; then
dohtml -r gsoap/doc/*
fi
}






[gentoo-commits] gentoo-x86 commit in dev-python/py2neo: py2neo-2.0.1.ebuild ChangeLog py2neo-1.6.4.ebuild py2neo-1.5.1.ebuild py2neo-1.6.0.ebuild py2neo-1.6.1.ebuild py2neo-1.6.3.ebuild

2014-12-14 Thread Ian Delaney (idella4)
idella4 14/12/15 07:38:46

  Modified: ChangeLog
  Added:py2neo-2.0.1.ebuild
  Removed:  py2neo-1.6.4.ebuild py2neo-1.5.1.ebuild
py2neo-1.6.0.ebuild py2neo-1.6.1.ebuild
py2neo-1.6.3.ebuild
  Log:
  bump; add pypy3, remove old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.6  dev-python/py2neo/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/py2neo/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   15 May 2014 01:52:54 -  1.5
+++ ChangeLog   15 Dec 2014 07:38:46 -  1.6
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/py2neo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/py2neo/ChangeLog,v 1.5 
2014/05/15 01:52:54 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/py2neo/ChangeLog,v 1.6 
2014/12/15 07:38:46 idella4 Exp $
+
+*py2neo-2.0.1 (15 Dec 2014)
+
+  15 Dec 2014; Ian Delaney  +py2neo-2.0.1.ebuild,
+  -py2neo-1.5.1.ebuild, -py2neo-1.6.0.ebuild, -py2neo-1.6.1.ebuild,
+  -py2neo-1.6.3.ebuild, -py2neo-1.6.4.ebuild:
+  bump; add pypy3, remove old
 
 *py2neo-1.6.4 (15 May 2014)
 



1.1  dev-python/py2neo/py2neo-2.0.1.ebuild

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

Index: py2neo-2.0.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/py2neo/py2neo-2.0.1.ebuild,v 1.1 
2014/12/15 07:38:46 idella4 Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION="A simple and pragmatic library which accesses the Neo4j graph 
database"
HOMEPAGE="http://py2neo.org";
SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"

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






[gentoo-commits] gentoo-x86 commit in sci-libs/openfoam: openfoam-2.3.1.ebuild ChangeLog

2014-12-14 Thread Patrick Lauer (patrick)
patrick 14/12/15 07:29:22

  Modified: ChangeLog
  Added:openfoam-2.3.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.20 sci-libs/openfoam/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/openfoam/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   21 Nov 2014 09:54:26 -  1.19
+++ ChangeLog   15 Dec 2014 07:29:22 -  1.20
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/openfoam
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/openfoam/ChangeLog,v 1.19 
2014/11/21 09:54:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/openfoam/ChangeLog,v 1.20 
2014/12/15 07:29:22 patrick Exp $
+
+*openfoam-2.3.1 (15 Dec 2014)
+
+  15 Dec 2014; Patrick Lauer  +openfoam-2.3.1.ebuild:
+  Bump
 
   21 Nov 2014; Mike Frysinger  openfoam-2.2.1.ebuild,
   openfoam-2.2.2.ebuild, openfoam-2.3.0.ebuild:



1.1  sci-libs/openfoam/openfoam-2.3.1.ebuild

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

Index: openfoam-2.3.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/openfoam/openfoam-2.3.1.ebuild,v 
1.1 2014/12/15 07:29:22 patrick Exp $

EAPI="5"

inherit eutils versionator multilib toolchain-funcs multiprocessing

MY_PN="OpenFOAM"
MY_PV=$(get_version_component_range 1-2)
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Open Field Operation and Manipulation - CFD Simulation Toolbox"
HOMEPAGE="http://www.openfoam.org";
SRC_URI="http://downloads.sourceforge.net/foam/${MY_P}.tgz";

LICENSE="GPL-2"
SLOT="2.2"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples opendx src paraview"

RDEPEND="!=sci-libs/openfoam-bin-${MY_PV}*
!=sci-libs/openfoam-kernel-${MY_PV}*
!=sci-libs/openfoam-meta-${MY_PV}*
!=sci-libs/openfoam-solvers-${MY_PV}*
!=sci-libs/openfoam-utilities-${MY_PV}*
!=sci-libs/openfoam-wmake-${MY_PV}*
sci-libs/parmetis
sci-libs/parmgridgen
sci-libs/scotch
virtual/mpi
opendx? ( sci-visualization/opendx )
paraview? ( ~sci-visualization/paraview-4.1.0[development] )"
DEPEND="${DEPEND}
doc? ( app-doc/doxygen[dot] )"

S=${WORKDIR}/${MY_P}
INSDIR="/usr/$(get_libdir)/${MY_PN}/${MY_P}"

pkg_setup() {
# just to be sure the right profile is selected (gcc-config)
if ! version_is_at_least 4.3 $(gcc-version) ; then
die "${PN} requires >=sys-devel/gcc-4.3 to compile."
fi

elog
elog "In order to use ${MY_PN} you should add the following line to 
~/.bashrc :"
elog
elog "alias startOF$(delete_all_version_separators ${MY_PV})='source 
${INSDIR}/etc/bashrc'"
elog
elog "And everytime you want to use OpenFOAM you have to execute 
startOF$(delete_all_version_separators ${MY_PV})"
ewarn
ewarn "FoamX is deprecated since ${MY_PN}-1.5! "
ewarn
}

src_configure() {
if has_version sys-cluster/mpich2 ; then
export WM_MPLIB=MPICH
elif has_version sys-cluster/openmpi ; then
export WM_MPLIB=OPENMPI
else
die "You need one of the following mpi implementations: openmpi 
or mpich2"
fi

sed -i -e "s|WM_MPLIB:=OPENMPI|WM_MPLIB:="${WM_MPLIB}"|" etc/bashrc
sed -i -e "s|setenv WM_MPLIB OPENMPI|setenv WM_MPLIB "${WM_MPLIB}"|" 
etc/cshrc

sed -i -e "s|^foamInstall=\$HOME|foamInstall=/usr/$(get_libdir)|" 
etc/bashrc
sed -i -e "s|^set foamInstall = \$HOME|set foamInstall = 
/usr/$(get_libdir)|" etc/cshrc

sed -i -e 's|^export 
ParaView_DIR=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$paraviewArchName|export
 ParaView_DIR=/usr|' etc/config/paraview.sh
sed -i -e 's|^setenv ParaView_DIR 
$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$paraviewArchName|setenv 
ParaView_DIR /usr|' etc/config/paraview.csh
}

src_compile() {
export WM_NCOMPPROCS=$(makeopts_jobs)

export FOAM_INST_DIR=${WORKDIR}
source etc/bashrc

find wmake -name dirToString -exec rm -rf {} +
find wmake -name wm

[gentoo-commits] gentoo-x86 commit in dev-ruby/mail: ChangeLog mail-2.6.3.ebuild

2014-12-14 Thread Hans de Graaff (graaff)
graaff  14/12/15 07:06:32

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

Revision  ChangesPath
1.40 dev-ruby/mail/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog   6 Nov 2014 07:02:28 -   1.39
+++ ChangeLog   15 Dec 2014 07:06:32 -  1.40
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/mail
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v 1.39 2014/11/06 
07:02:28 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v 1.40 2014/12/15 
07:06:32 graaff Exp $
+
+*mail-2.6.3 (15 Dec 2014)
+
+  15 Dec 2014; Hans de Graaff  +mail-2.6.3.ebuild:
+  Version bump.
 
 *mail-2.6.2 (06 Nov 2014)
 



1.1  dev-ruby/mail/mail-2.6.3.ebuild

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

Index: mail-2.6.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.6.3.ebuild,v 1.1 
2014/12/15 07:06:32 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_RECIPE_TEST="rspec"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.md ROADMAP TODO.rdoc"

RUBY_FAKEGEM_GEMSPEC="mail.gemspec"

inherit ruby-fakegem versionator

GITHUB_USER="mikel"

DESCRIPTION="An email handling library"
HOMEPAGE="https://github.com/mikel/mail";
SRC_URI="https://github.com/${GITHUB_USER}/mail/archive/${PV}.tar.gz -> 
${P}-git.tar.gz"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""

ruby_add_rdepend "
>=dev-ruby/mime-types-1.16 

[gentoo-commits] gentoo-x86 commit in net-wireless/broadcom-sta/files: broadcom-sta-6.30.223.248-linux-3.17.patch broadcom-sta-6.30.223.248-linux-3.18.patch

2014-12-14 Thread Yixun Lan (dlan)
dlan14/12/15 06:25:39

  Added:broadcom-sta-6.30.223.248-linux-3.17.patch
broadcom-sta-6.30.223.248-linux-3.18.patch
  Log:
  fix build err with kernel 3.17/3.18, bug 523326
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.1  
net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.248-linux-3.17.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.248-linux-3.17.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.248-linux-3.17.patch?rev=1.1&content-type=text/plain

Index: broadcom-sta-6.30.223.248-linux-3.17.patch
===
>From 5f7db08c046bd31b162a102ca868fa334a0357b9 Mon Sep 17 00:00:00 2001
From: Michael Marineau 
Date: Sat, 20 Sep 2014 12:49:43 -0700
Subject: [PATCH] linux 3.17

http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c835a677331495cf137a7f8a023463afd9f032f8
---
 src/wl/sys/wl_linux.c | 4 
 1 file changed, 4 insertions(+)

diff --git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
index 1622127..11c4ec2 100644
--- a/src/wl/sys/wl_linux.c
+++ b/src/wl/sys/wl_linux.c
@@ -1308,7 +1308,11 @@ wl_alloc_linux_if(wl_if_t *wlif)
dev->priv = priv_link;
 #else
 
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 17, 0))
dev = alloc_netdev(sizeof(priv_link_t), intf_name, ether_setup);
+#else
+   dev = alloc_netdev(sizeof(priv_link_t), intf_name, NET_NAME_UNKNOWN, 
ether_setup);
+#endif
if (!dev) {
WL_ERROR(("wl%d: %s: alloc_netdev failed\n",
(wl->pub)?wl->pub->unit:wlif->subunit, __FUNCTION__));
-- 
1.8.5.5




1.1  
net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.248-linux-3.18.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.248-linux-3.18.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.248-linux-3.18.patch?rev=1.1&content-type=text/plain

Index: broadcom-sta-6.30.223.248-linux-3.18.patch
===
>From 5aae9ccfda6dfc680403b4a5ff9a36dcd5331dfd Mon Sep 17 00:00:00 2001
From: Michael Marineau 
Date: Tue, 11 Nov 2014 15:17:46 -0800
Subject: [PATCH] linux 3.18

http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=5bc8c1f2b070bab82ed738f98ecfac725e33c57f
---
 src/wl/sys/wl_cfg80211_hybrid.c | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/wl/sys/wl_cfg80211_hybrid.c b/src/wl/sys/wl_cfg80211_hybrid.c
index 514a892..e3ebef2 100644
--- a/src/wl/sys/wl_cfg80211_hybrid.c
+++ b/src/wl/sys/wl_cfg80211_hybrid.c
@@ -2010,7 +2010,11 @@ static s32 wl_inform_single_bss(struct wl_cfg80211_priv 
*wl, struct wl_bss_info
 
notify_ie = (u8 *)bi + le16_to_cpu(bi->ie_offset);
notify_ielen = le32_to_cpu(bi->ie_length);
-   cbss = cfg80211_inform_bss(wiphy, channel, (const u8 
*)(bi->BSSID.octet),
+   cbss = cfg80211_inform_bss(wiphy, channel,
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0)
+   CFG80211_BSS_FTYPE_UNKNOWN,
+#endif
+   (const u8 *)(bi->BSSID.octet),
0, beacon_proberesp->capab_info, beacon_proberesp->beacon_int,
(const u8 *)notify_ie, notify_ielen, signal, GFP_KERNEL);
 
-- 
2.0.4







[gentoo-commits] gentoo-x86 commit in net-wireless/broadcom-sta: ChangeLog broadcom-sta-6.30.223.248-r2.ebuild

2014-12-14 Thread Yixun Lan (dlan)
dlan14/12/15 06:25:39

  Modified: ChangeLog
  Added:broadcom-sta-6.30.223.248-r2.ebuild
  Log:
  fix build err with kernel 3.17/3.18, bug 523326
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

Revision  ChangesPath
1.63 net-wireless/broadcom-sta/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/ChangeLog?rev=1.63&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/ChangeLog?rev=1.63&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/broadcom-sta/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog   10 Aug 2014 20:34:33 -  1.62
+++ ChangeLog   15 Dec 2014 06:25:39 -  1.63
@@ -1,6 +1,14 @@
 # ChangeLog for net-wireless/broadcom-sta
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/ChangeLog,v 1.62 
2014/08/10 20:34:33 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/ChangeLog,v 1.63 
2014/12/15 06:25:39 dlan Exp $
+
+*broadcom-sta-6.30.223.248-r2 (15 Dec 2014)
+
+  15 Dec 2014; Yixun Lan 
+  +broadcom-sta-6.30.223.248-r2.ebuild,
+  +files/broadcom-sta-6.30.223.248-linux-3.17.patch,
+  +files/broadcom-sta-6.30.223.248-linux-3.18.patch:
+  fix build err with kernel 3.17/3.18, bug 523326
 
   10 Aug 2014; Sergei Trofimovich 
   broadcom-sta-6.30.223.30-r2.ebuild:



1.1  
net-wireless/broadcom-sta/broadcom-sta-6.30.223.248-r2.ebuild

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

Index: broadcom-sta-6.30.223.248-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/broadcom-sta-6.30.223.248-r2.ebuild,v
 1.1 2014/12/15 06:25:39 dlan Exp $

EAPI=5
inherit eutils linux-info linux-mod

DESCRIPTION="Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver"
HOMEPAGE="http://www.broadcom.com/support/802.11/linux_sta.php";
SRC_BASE="http://www.broadcom.com/docs/linux_sta/hybrid-v35";
SRC_URI="x86? ( ${SRC_BASE}-nodebug-pcoem-${PV//\./_}.tar.gz )
amd64? ( ${SRC_BASE}_64-nodebug-pcoem-${PV//\./_}.tar.gz )
http://www.broadcom.com/docs/linux_sta/README_${PV}.txt -> 
README-${P}.txt"

LICENSE="Broadcom"
KEYWORDS="-* ~amd64 ~x86"

RESTRICT="mirror"

DEPEND="virtual/linux-sources"
RDEPEND=""

S="${WORKDIR}"

MODULE_NAMES="wl(net/wireless)"
MODULESD_WL_ALIASES=("wlan0 wl")

pkg_setup() {
# bug #300570
# NOTE: module builds correctly anyway with b43 and SSB enabled
# make checks non-fatal. The correct fix is blackisting ssb and, perhaps
# b43 via udev rules. Moreover, previous fix broke binpkgs support.
CONFIG_CHECK="~!B43 ~!BCMA ~!SSB"
CONFIG_CHECK2="LIB80211 ~!MAC80211 ~LIB80211_CRYPT_TKIP"
ERROR_B43="B43: If you insist on building this, you must blacklist it!"
ERROR_BCMA="BCMA: If you insist on building this, you must blacklist 
it!"
ERROR_SSB="SSB: If you insist on building this, you must blacklist it!"
ERROR_LIB80211="LIB80211: Please enable it. If you can't find it: 
enabling the driver for \"Intel PRO/Wireless 2100\" or \"Intel PRO/Wireless 
2200BG\" (IPW2100 or IPW2200) should suffice."
ERROR_MAC80211="MAC80211: If you insist on building this, you must 
blacklist it!"
ERROR_PREEMPT_RCU="PREEMPT_RCU: Please do not set the Preemption Model 
to \"Preemptible Kernel\"; choose something else."
ERROR_LIB80211_CRYPT_TKIP="LIB80211_CRYPT_TKIP: You will need this for 
WPA."
if kernel_is ge 3 8 8; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} CFG80211 
~!PREEMPT_RCU ~!PREEMPT"
elif kernel_is ge 2 6 32; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} CFG80211"
elif kernel_is ge 2 6 31; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} WIRELESS_EXT 
~!MAC80211"
elif kernel_is ge 2 6 29; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} WIRELESS_EXT 
COMPAT_NET_DEV_OPS"
else
CONFIG_CHECK="${CONFIG_CHECK} IEEE80211 IEEE80211_CRYPT_TKIP"
fi

linux-mod_pkg_setup

BUILD_PARAMS="-C ${KV_DIR} M=${S}"
BUILD_TARGETS="wl.ko"
}

src_prepare() {
epatc

[gentoo-commits] gentoo-x86 commit in media-video/vlc: vlc-2.1.9999.ebuild vlc-2.1.5.ebuild vlc-9999.ebuild vlc-2.1.2.ebuild vlc-2.2.9999.ebuild vlc-2.1.4.ebuild ChangeLog

2014-12-14 Thread Yixun Lan (dlan)
dlan14/12/15 05:50:49

  Modified: vlc-2.1..ebuild vlc-2.1.5.ebuild
vlc-.ebuild vlc-2.1.2.ebuild
vlc-2.2..ebuild vlc-2.1.4.ebuild ChangeLog
  Log:
  1) drop keywords=amd64-fbsd from live ebuild 2) vlc-2.1.*: Restricted 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-2.1..ebuild?rev=1.27&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-2.1..ebuild?rev=1.27&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-2.1..ebuild?r1=1.26&r2=1.27

Index: vlc-2.1..ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1..ebuild,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- vlc-2.1..ebuild 16 Nov 2014 14:37:22 -  1.26
+++ vlc-2.1..ebuild 15 Dec 2014 05:50:48 -  1.27
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1..ebuild,v 1.26 
2014/11/16 14:37:22 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1..ebuild,v 1.27 
2014/12/15 05:50:48 dlan Exp $
 
 EAPI="5"
 
@@ -35,7 +35,7 @@
 SLOT="0/5-7" # vlc - vlccore
 
 if [ "${PV%}" = "${PV}" ] ; then
-   KEYWORDS="~amd64 ~arm ~ppc -sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="~amd64 ~arm ~ppc -sparc ~x86 ~x86-fbsd"
 else
KEYWORDS=""
 fi
@@ -119,7 +119,7 @@
projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 )
pulseaudio? ( >=media-sound/pulseaudio-0.9.22:0 )
qt4? ( >=dev-qt/qtgui-4.6.0:4 >=dev-qt/qtcore-4.6.0:4 )
-   rdp? ( net-misc/freerdp:0= )
+   rdp? ( =net-fs/samba-3.4.6:0[smbclient] 
>=net-fs/samba-4.0.0:0[client] ) )
schroedinger? ( >=media-libs/schroedinger-1.0.10:0 )
sdl? ( >=media-libs/libsdl-1.2.10:0
@@ -247,6 +247,14 @@
 
# Disable automatic running of tests.
find . -name 'Makefile.in' -exec sed -i 's/\(..*\)check-TESTS/\1/' {} 
\; || die
+
+   # If qtchooser is installed, it may break the build, because moc,rcc 
and uic binaries for wrong qt version may be used.
+   # Setting QT_SELECT environment variable will enforce correct binaries.
+   if use qt4; then
+   export QT_SELECT=qt4
+   elif use qt5; then
+   export QT_SELECT=qt5
+   fi
 }
 
 src_configure() {



1.5  media-video/vlc/vlc-2.1.5.ebuild

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

Index: vlc-2.1.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vlc-2.1.5.ebuild16 Nov 2014 14:37:22 -  1.4
+++ vlc-2.1.5.ebuild15 Dec 2014 05:50:48 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1.5.ebuild,v 1.4 
2014/11/16 14:37:22 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1.5.ebuild,v 1.5 
2014/12/15 05:50:48 dlan Exp $
 
 EAPI="5"
 
@@ -119,7 +119,7 @@
projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 )
pulseaudio? ( >=media-sound/pulseaudio-0.9.22:0 )
qt4? ( >=dev-qt/qtgui-4.6.0:4 >=dev-qt/qtcore-4.6.0:4 )
-   rdp? ( net-misc/freerdp:0= )
+   rdp? ( =net-fs/samba-3.4.6:0[smbclient] 
>=net-fs/samba-4.0.0:0[client] ) )
schroedinger? ( >=media-libs/schroedinger-1.0.10:0 )
sdl? ( >=media-libs/libsdl-1.2.10:0
@@ -250,6 +250,14 @@
 
# Disable automatic running of tests.
find . -name 'Makefile.in' -exec sed -i 's/\(..*\)check-TESTS/\1/' {} 
\; || die
+
+   # If qtchooser is installed, it may break the build, because moc,rcc 
and uic binaries for wrong qt version may be used.
+   # Setting QT_SELECT environment variable will enforce correct binaries.
+   if use qt4; then
+   export QT_SELECT=qt4
+   elif use qt5; then
+   export QT_SELECT=qt5
+   fi
 }
 
 src_configure() {



1.228media-video/vlc/vlc-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-.ebuild?rev=1.228&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/vlc/vlc-.ebuild

[gentoo-commits] gentoo-x86 commit in app-admin/syslog-summary: syslog-summary-1.14-r1.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/15 05:26:43

  Modified: ChangeLog
  Added:syslog-summary-1.14-r1.ebuild
  Log:
  Convert to python-single-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.7  app-admin/syslog-summary/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-summary/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-summary/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-summary/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/syslog-summary/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   10 Aug 2014 01:37:44 -  1.6
+++ ChangeLog   15 Dec 2014 05:26:43 -  1.7
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/syslog-summary
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-summary/ChangeLog,v 1.6 
2014/08/10 01:37:44 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-summary/ChangeLog,v 1.7 
2014/12/15 05:26:43 mgorny Exp $
+
+*syslog-summary-1.14-r1 (15 Dec 2014)
+
+  15 Dec 2014; Michał Górny  +syslog-summary-1.14-r1.ebuild:
+  Convert to python-single-r1.
 
   10 Aug 2014; Patrick Lauer  syslog-summary-1.14.ebuild:
   Fix description for more repoman happy



1.1  app-admin/syslog-summary/syslog-summary-1.14-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-summary/syslog-summary-1.14-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/syslog-summary/syslog-summary-1.14-r1.ebuild?rev=1.1&content-type=text/plain

Index: syslog-summary-1.14-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/syslog-summary/syslog-summary-1.14-r1.ebuild,v
 1.1 2014/12/15 05:26:43 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit eutils python-single-r1

DESCRIPTION="Summarizes the contents of a syslog log file"
HOMEPAGE="http://github.com/dpaleino/syslog-summary";
SRC_URI="mirror://github/dpaleino/${PN}/${P}.tar.gz"

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

DEPEND=""
RDEPEND=""

src_prepare() {
python_fix_shebang -f syslog-summary

# Sadly, the makefile is useless for us.
rm Makefile || die
}

src_install() {
dobin syslog-summary || die
dodoc AUTHORS ChangeLog NEWS README || die
doman syslog-summary.1 || die

insinto /etc/syslog-summary
doins ignore.rules || die
}






[gentoo-commits] gentoo-x86 commit in app-admin/sulfur: sulfur-1.0_rc104-r1.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/15 05:22:07

  Modified: ChangeLog
  Added:sulfur-1.0_rc104-r1.ebuild
  Log:
  Convert to python-single-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.19 app-admin/sulfur/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sulfur/ChangeLog?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sulfur/ChangeLog?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sulfur/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/sulfur/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   25 Aug 2012 05:17:03 -  1.18
+++ ChangeLog   15 Dec 2014 05:22:07 -  1.19
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/sulfur
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sulfur/ChangeLog,v 1.18 
2012/08/25 05:17:03 lxnay Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sulfur/ChangeLog,v 1.19 
2014/12/15 05:22:07 mgorny Exp $
+
+*sulfur-1.0_rc104-r1 (15 Dec 2014)
+
+  15 Dec 2014; Michał Górny  +sulfur-1.0_rc104-r1.ebuild:
+  Convert to python-single-r1.
 
 *sulfur-1.0_rc104 (25 Aug 2012)
 
@@ -87,4 +92,3 @@
   19 Jul 2011; Fabio Erculiani  +sulfur-1.0_rc27.ebuild,
   +metadata.xml:
   new ebuild
-



1.1  app-admin/sulfur/sulfur-1.0_rc104-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sulfur/sulfur-1.0_rc104-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sulfur/sulfur-1.0_rc104-r1.ebuild?rev=1.1&content-type=text/plain

Index: sulfur-1.0_rc104-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/sulfur/sulfur-1.0_rc104-r1.ebuild,v 1.1 
2014/12/15 05:22:07 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit eutils gnome2-utils fdo-mime python-single-r1

DESCRIPTION="Sulfur, the Entropy Package Manager Store"
HOMEPAGE="http://www.sabayon.org";
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""

SRC_URI="mirror://sabayon/app-admin/sulfur-${PV}.tar.bz2"

RDEPEND="dev-python/pygtk:2[${PYTHON_USEDEP}]
>=sys-apps/entropy-${PV}[${PYTHON_USEDEP}]
sys-apps/file[python,${PYTHON_USEDEP}]
sys-devel/gettext
x11-libs/vte:0[python,${PYTHON_USEDEP}]
x11-misc/xdg-utils"
DEPEND="sys-devel/gettext"

src_compile() {
emake || die "make failed"
}

src_install() {
emake DESTDIR="${D}" LIBDIR="usr/lib" install || die "make install 
failed"
dodir /etc/gconf/schemas
insinto /etc/gconf/schemas
doins "${S}/misc/entropy-handler.schemas"

python_fix_shebang "${ED}"
python_optimize "${ED%/}"/usr/lib/entropy
}

pkg_postinst() {
fdo-mime_mime_database_update
fdo-mime_desktop_database_update
gnome2_gconf_savelist
gnome2_gconf_install
}

pkg_postrm() {
gnome2_gconf_savelist
gnome2_gconf_uninstall
}






[gentoo-commits] gentoo-x86 commit in app-admin/kedpm: kedpm-0.4.0-r2.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/15 05:18:32

  Modified: ChangeLog
  Added:kedpm-0.4.0-r2.ebuild
  Log:
  Convert to distutils-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.18 app-admin/kedpm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/kedpm/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/kedpm/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/kedpm/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/kedpm/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   20 Jul 2011 13:38:34 -  1.17
+++ ChangeLog   15 Dec 2014 05:18:32 -  1.18
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/kedpm
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/kedpm/ChangeLog,v 1.17 2011/07/20 
13:38:34 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/kedpm/ChangeLog,v 1.18 2014/12/15 
05:18:32 mgorny Exp $
+
+*kedpm-0.4.0-r2 (15 Dec 2014)
+
+  15 Dec 2014; Michał Górny  +kedpm-0.4.0-r2.ebuild:
+  Convert to distutils-r1.
 
   20 Jul 2011; Pacho Ramos  metadata.xml:
   Drop maintainer due retirement, bug #34534
@@ -56,4 +61,3 @@
   19 Apr 2004; Daniel Black  kedpm-0.4.0.ebuild,
   metadata.xml, files/setup-doc.patch:
   Initial Ebuild thanks to Lukasz Strzygowski  in bug 46270
-



1.1  app-admin/kedpm/kedpm-0.4.0-r2.ebuild

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

Index: kedpm-0.4.0-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/kedpm/kedpm-0.4.0-r2.ebuild,v 1.1 
2014/12/15 05:18:32 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1 eutils

DESCRIPTION="Ked Password Manager helps to manage large amounts of passwords 
and related information"
HOMEPAGE="http://kedpm.sourceforge.net/";
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gtk"

DEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]
gtk? ( >=dev-python/pygtk-2[${PYTHON_USEDEP}] )"
RDEPEND="${DEPEND}"

DOCS=( AUTHORS CHANGES NEWS )

python_prepare_all() {
# We want documentation to install in /usr/share/doc/kedpm
# not in /usr/share/kedpm as in original setup.py.
local PATCHES=(
"${FILESDIR}/setup-doc.patch"
)

# If we don't compiling with GTK support, let's change default
# frontend for kedpm to CLI.
use gtk || sed -i -e 's/"gtk"  # default/"cli"  # default/' 
scripts/kedpm

distutils-r1_python_prepare_all
}

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

python_install_all() {
distutils-r1_python_install_all

# menu item
domenu "${FILESDIR}/${PN}.desktop"
}






[gentoo-commits] gentoo-x86 commit in app-admin/bcfg2: bcfg2-1.2.4-r1.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/15 05:15:53

  Modified: ChangeLog
  Added:bcfg2-1.2.4-r1.ebuild
  Log:
  Convert to distutils-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.33 app-admin/bcfg2/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/bcfg2/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   23 Dec 2013 00:35:07 -  1.32
+++ ChangeLog   15 Dec 2014 05:15:53 -  1.33
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/bcfg2
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/ChangeLog,v 1.32 2013/12/23 
00:35:07 tomwij Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/ChangeLog,v 1.33 2014/12/15 
05:15:53 mgorny Exp $
+
+*bcfg2-1.2.4-r1 (15 Dec 2014)
+
+  15 Dec 2014; Michał Górny  +bcfg2-1.2.4-r1.ebuild:
+  Convert to distutils-r1.
 
   23 Dec 2013; Tom Wijsman 
   -files/bcfg2-1.2.2-CVE-2012-3366-Trigger-plugin.patch:



1.1  app-admin/bcfg2/bcfg2-1.2.4-r1.ebuild

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

Index: bcfg2-1.2.4-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.4-r1.ebuild,v 1.1 
2014/12/15 05:15:53 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE='ssl'

inherit distutils-r1

DESCRIPTION="Configuration management tool"
HOMEPAGE="http://bcfg2.org";
SRC_URI="ftp://ftp.mcs.anl.gov/pub/bcfg/${P}.tar.gz";

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
IUSE="doc cheetah genshi server"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
RDEPEND="app-portage/gentoolkit[${PYTHON_USEDEP}]
cheetah? ( dev-python/cheetah[${PYTHON_USEDEP}] )
genshi? ( dev-python/genshi[${PYTHON_USEDEP}] )
server? (
dev-libs/libgamin[python,${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
virtual/fam )"

python_compile_all() {
if use doc; then
einfo "Building Bcfg2 documentation"
sphinx-build doc doc_output || die
fi
}

python_install() {
distutils-r1_python_install \
--record=PY_SERVER_LIBS

if ! use server; then
rm -f "${ED%/}"/usr/bin/bcfg2-* || die
rm -f "${D%/}$(python_get_scriptdir)"/bcfg2-* || die
rm -rf "${ED%/}"/usr/share/bcfg2 || die
rm -rf "${ED%/}"/usr/share/man/man8 || die
else
newinitd "${FILESDIR}/${PN}-server-1.2.0.rc" bcfg2-server
fi

insinto /etc
doins examples/bcfg2.conf

if use doc; then
cd doc_output || die
docinto html
dodoc -r [a-z]* _images _static
fi
}

pkg_postinst () {
if use server; then
einfo "If this is a new installation, you probably need to run:"
einfo "bcfg2-admin init"
fi
}






[gentoo-commits] gentoo-x86 commit in app-admin/abrt: abrt-2.0.12-r2.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/15 05:10:05

  Modified: ChangeLog
  Added:abrt-2.0.12-r2.ebuild
  Log:
  Convert to python-single-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.21 app-admin/abrt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/ChangeLog?rev=1.21&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/ChangeLog?rev=1.21&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/abrt/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   12 Sep 2013 03:48:23 -  1.20
+++ ChangeLog   15 Dec 2014 05:10:05 -  1.21
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/abrt
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/ChangeLog,v 1.20 2013/09/12 
03:48:23 tetromino Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/ChangeLog,v 1.21 2014/12/15 
05:10:05 mgorny Exp $
+
+*abrt-2.0.12-r2 (15 Dec 2014)
+
+  15 Dec 2014; Michał Górny  +abrt-2.0.12-r2.ebuild:
+  Convert to python-single-r1.
 
   12 Sep 2013; Alexandre Rostovtsev  -abrt-2.0.8.ebuild,
   -files/abrt-2.0.5-conf, -files/abrt-2.0.5-init,



1.1  app-admin/abrt/abrt-2.0.12-r2.ebuild

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

Index: abrt-2.0.12-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/abrt-2.0.12-r2.ebuild,v 1.1 
2014/12/15 05:10:05 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

# Need gnome2-utils for gnome2_icon_cache_update
inherit autotools eutils gnome2-utils python-single-r1 systemd user

DESCRIPTION="Automatic bug detection and reporting tool"
HOMEPAGE="https://fedorahosted.org/abrt/";
SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.gz";

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

COMMON_DEPEND="${PYTHON_DEPS}
>=dev-libs/btparser-0.18
>=dev-libs/glib-2.21:2
>=dev-libs/libreport-2.0.11[${PYTHON_USEDEP}]
dev-libs/libxml2
dev-libs/nss
sys-apps/dbus
sys-auth/polkit
sys-fs/inotify-tools
x11-libs/gtk+:3
x11-libs/libnotify"
RDEPEND="${COMMON_DEPEND}
app-arch/cpio
dev-libs/elfutils
>=sys-devel/gdb-7"
DEPEND="${COMMON_DEPEND}
app-text/asciidoc
app-text/xmlto
>=dev-util/intltool-0.35.0
virtual/pkgconfig
>=sys-devel/gettext-0.17"

REQUIRED_USE=${PYTHON_REQUIRED_USE}

pkg_setup() {
python-single-r1_pkg_setup

enewgroup abrt
enewuser abrt -1 -1 -1 abrt
}

src_prepare() {
# Disable redhat-specific code not usable in gentoo, or that requires
# bugs.gentoo.org infra support.
epatch "${FILESDIR}/${PN}-2.0.12-gentoo.patch"

# Using a server response as a format string is a bad idea
epatch "${FILESDIR}/${PN}-2.0.6-format-security.patch"

# pyhook test is sensitive to the format of python's error messages, and
# fails with certain python versions
sed -e '/pyhook.at/ d' \
-i tests/Makefile.* tests/testsuite.at || die "sed 2 failed"

# automake-1.12, #427926
epatch "${FILESDIR}/${PN}-2.0.12-automake-1.12.patch"

# Fix dbus timeout in gui; in next release
epatch "${FILESDIR}/${P}-dbus-fallback.patch"

eautoreconf

python_fix_shebang .
}

src_configure() {
myeconfargs=(
"--localstatedir=${EPREFIX}/var"
"$(systemd_with_unitdir)"
)
# --disable-debug enables debug!
use debug && myeconfargs=( "${myeconfargs[@]}" --enable-debug )
econf "${myeconfargs[@]}"
}

src_install() {
default

keepdir /var/run/abrt
# /var/spool/abrt is created by dev-libs/libreport

diropts -m 700 -o abrt -g abrt
keepdir /var/spool/abrt-upload

diropts -m 775 -o abrt -g abrt
keepdir /var/cache/abrt-di

find "${D}" -name '*.la' -exec rm -f {} + || die

newinitd "${FILESDIR}/${PN}-2.0.12-r1-init" abrt
newconfd "${FILESDIR}/${PN}-2.0.12-r1-conf" abrt
}

pkg_preinst() {
gnome2_icon_savelist
}

pkg_postinst() {
gnome2_icon_cache_update
elog "To star

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

2014-12-14 Thread Zac Medico
commit: bee778e7fe62c238cb73eae46e762a4fa4afb579
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Dec 14 22:50:43 2014 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Dec 14 22:50:43 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=bee778e7

_compute_abi_rebuild_info: fix bug #532594

Since commit 3f0799054b4e5ef88feb59d20d262668ca79df33, there has been
a faulty variable assignment inside _compute_abi_rebuild_info which
assigns a bool value to the inst_pkg variable which is intended to
refer to a Package instance. Fix it to assign a correct value.

Fixes: 3f0799054b4e ("_compute_abi_rebuild_info: fix bug #521990")
X-Gentoo-Bug: 532594
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=532594

---
 pym/_emerge/depgraph.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index 4a42ed5..fcc1a90 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -713,7 +713,7 @@ class depgraph(object):
if child is None:
continue
 
-   inst_child = dep.child.installed
+   inst_child = dep.child
 
else:
child = dep.child



[gentoo-commits] gentoo-x86 commit in sys-fs/fuse: ChangeLog fuse-2.9.2.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 03:13:20

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

Revision  ChangesPath
1.200sys-fs/fuse/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.200&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.200&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.199&r2=1.200

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog   10 Aug 2014 20:19:38 -  1.199
+++ ChangeLog   15 Dec 2014 03:13:20 -  1.200
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.199 2014/08/10 
20:19:38 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.200 2014/12/15 
03:13:20 radhermit Exp $
+
+  15 Dec 2014; Tim Harder  -fuse-2.9.2.ebuild:
+  Remove old.
 
   10 Aug 2014; Sergei Trofimovich  fuse-2.9.2.ebuild,
   fuse-2.9.3.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-fs/ecryptfs-utils: ChangeLog ecryptfs-utils-103.ebuild ecryptfs-utils-101.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 03:11:41

  Modified: ChangeLog
  Removed:  ecryptfs-utils-103.ebuild ecryptfs-utils-101.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.58 sys-fs/ecryptfs-utils/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ecryptfs-utils/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog   12 Nov 2014 00:46:24 -  1.57
+++ ChangeLog   15 Dec 2014 03:11:41 -  1.58
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/ecryptfs-utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ecryptfs-utils/ChangeLog,v 1.57 
2014/11/12 00:46:24 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ecryptfs-utils/ChangeLog,v 1.58 
2014/12/15 03:11:41 radhermit Exp $
+
+  15 Dec 2014; Tim Harder  -ecryptfs-utils-101.ebuild,
+  -ecryptfs-utils-103.ebuild:
+  Remove old.
 
   12 Nov 2014; Anthony G. Basile 
   ecryptfs-utils-101.ebuild, ecryptfs-utils-103.ebuild,






[gentoo-commits] gentoo-x86 commit in sys-fs/dosfstools: ChangeLog dosfstools-3.0.24.ebuild dosfstools-3.0.22.ebuild dosfstools-3.0.25.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 03:10:28

  Modified: ChangeLog
  Removed:  dosfstools-3.0.24.ebuild dosfstools-3.0.22.ebuild
dosfstools-3.0.25.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.150sys-fs/dosfstools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dosfstools/ChangeLog?rev=1.150&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dosfstools/ChangeLog?rev=1.150&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dosfstools/ChangeLog?r1=1.149&r2=1.150

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog   11 Jul 2014 11:32:27 -  1.149
+++ ChangeLog   15 Dec 2014 03:10:28 -  1.150
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/dosfstools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/ChangeLog,v 1.149 
2014/07/11 11:32:27 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/ChangeLog,v 1.150 
2014/12/15 03:10:28 radhermit Exp $
+
+  15 Dec 2014; Tim Harder  -dosfstools-3.0.22.ebuild,
+  -dosfstools-3.0.24.ebuild, -dosfstools-3.0.25.ebuild,
+  -files/dosfstools-3.0.20-parallel-install.patch,
+  -files/dosfstools-3.0.21-parallel-install.patch:
+  Remove old.
 
   11 Jul 2014; Mikle Kolyada  dosfstools-3.0.26.ebuild:
   Add ~arm64 keyword






[gentoo-commits] gentoo-x86 commit in dev-db/mariadb: mariadb-10.0.15-r1.ebuild ChangeLog

2014-12-14 Thread Brian Evans (grknight)
grknight14/12/15 03:10:25

  Modified: ChangeLog
  Added:mariadb-10.0.15-r1.ebuild
  Log:
  Fix sparc build and critical replication issue wrt MDEV-7237
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
67C78E1D)

Revision  ChangesPath
1.73 dev-db/mariadb/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   26 Nov 2014 01:18:31 -  1.72
+++ ChangeLog   15 Dec 2014 03:10:25 -  1.73
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/mariadb
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v 1.72 2014/11/26 
01:18:31 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/ChangeLog,v 1.73 2014/12/15 
03:10:25 grknight Exp $
+
+*mariadb-10.0.15-r1 (15 Dec 2014)
+
+  15 Dec 2014; Brian Evans  +mariadb-10.0.15-r1.ebuild:
+  Fix sparc build and critical replication issue wrt MDEV-7237
 
 *mariadb-10.0.15 (26 Nov 2014)
 



1.1  dev-db/mariadb/mariadb-10.0.15-r1.ebuild

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

Index: mariadb-10.0.15-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-10.0.15-r1.ebuild,v 
1.1 2014/12/15 03:10:25 grknight Exp $

EAPI="5"
MY_EXTRAS_VER="20141215-0144Z"

inherit toolchain-funcs mysql-multilib
# only to make repoman happy. it is really set in the eclass
IUSE="$IUSE"

# REMEMBER: also update eclass/mysql*.eclass before committing!
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"

# When MY_EXTRAS is bumped, the index should be revised to exclude these.
EPATCH_EXCLUDE=''

DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )"
RDEPEND="${RDEPEND}"

# Official test instructions:
# USE='-cluster embedded extraengine perl ssl static-libs community' \
# FEATURES='test userpriv -usersandbox' \
# ebuild mariadb-X.X.XX.ebuild \
# digest clean package
multilib_src_test() {

if ! multilib_is_native_abi ; then
einfo "Server tests not available on non-native abi".
return 0;
fi

local TESTDIR="${BUILD_DIR}/mysql-test"
local retstatus_unit
local retstatus_tests

# Bug #213475 - MySQL _will_ object strenously if your machine is named
# localhost. Also causes weird failures.
[[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be 
named localhost"

if ! use "minimal" ; then

if [[ $UID -eq 0 ]]; then
die "Testing with FEATURES=-userpriv is no longer 
supported by upstream. Tests MUST be run as non-root."
fi
has usersandbox $FEATURES && eerror "Some tests may fail with 
FEATURES=usersandbox"

einfo ">>> Test phase [test]: ${CATEGORY}/${PF}"
addpredict /this-dir-does-not-exist/t9.MYI

# Run CTest (test-units)
cmake-utils_src_test
retstatus_unit=$?
[[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed"

# Ensure that parallel runs don't die
export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
# Enable parallel testing, auto will try to detect number of 
cores
# You may set this by hand.
# The default maximum is 8 unless MTR_MAX_PARALLEL is increased
export MTR_PARALLEL="${MTR_PARALLEL:-auto}"

# create directories because mysqladmin might right out of order
mkdir -p "${T}"/var-tests{,/log}

# These are failing in MariaDB 10.0 for now and are believed to 
be
# false positives:
#
# main.information_schema, 
binlog.binlog_statement_insert_delayed,
# main.mysqld--help, funcs_1.is_triggers, 
funcs_1.is_tables_mysql,
# funcs_1.is_columns_mysql
# fails due to USE=-l

[gentoo-commits] gentoo-x86 commit in sys-fs/dosfstools/files: dosfstools-3.0.20-parallel-install.patch dosfstools-3.0.21-parallel-install.patch

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 03:10:28

  Removed:  dosfstools-3.0.20-parallel-install.patch
dosfstools-3.0.21-parallel-install.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)



[gentoo-commits] gentoo-x86 commit in sys-fs/multipath-tools: ChangeLog multipath-tools-0.4.9-r5.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 03:08:13

  Modified: ChangeLog
  Removed:  multipath-tools-0.4.9-r5.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.69 sys-fs/multipath-tools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/multipath-tools/ChangeLog?rev=1.69&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/multipath-tools/ChangeLog?rev=1.69&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/multipath-tools/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   30 Jul 2014 19:27:36 -  1.68
+++ ChangeLog   15 Dec 2014 03:08:13 -  1.69
@@ -1,6 +1,14 @@
 # ChangeLog for sys-fs/multipath-tools
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/ChangeLog,v 1.68 
2014/07/30 19:27:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/ChangeLog,v 1.69 
2014/12/15 03:08:13 radhermit Exp $
+
+  15 Dec 2014; Tim Harder 
+  -multipath-tools-0.4.9-r5.ebuild,
+  -files/multipath-tools-0.4.8-kparted-ext-partitions.patch,
+  -files/multipath-tools-0.4.9-buffer-overflows.patch,
+  -files/multipath-tools-0.4.9-build.patch,
+  -files/multipath-tools-0.4.9-log_enquery_overflow.patch:
+  Remove old.
 
   30 Jul 2014; Samuli Suominen 
   multipath-tools-0.4.9-r5.ebuild, multipath-tools-0.5.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-fs/multipath-tools/files: multipath-tools-0.4.9-build.patch multipath-tools-0.4.8-kparted-ext-partitions.patch multipath-tools-0.4.9-buffer-overflows.patch mu

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 03:08:13

  Removed:  multipath-tools-0.4.9-build.patch
multipath-tools-0.4.8-kparted-ext-partitions.patch
multipath-tools-0.4.9-buffer-overflows.patch
multipath-tools-0.4.9-log_enquery_overflow.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)



[gentoo-commits] gentoo-x86 commit in dev-python/peewee: peewee-2.4.4.ebuild ChangeLog peewee-2.4.2.ebuild peewee-2.4.0.ebuild

2014-12-14 Thread Ian Delaney (idella4)
idella4 14/12/15 02:21:26

  Modified: ChangeLog
  Added:peewee-2.4.4.ebuild
  Removed:  peewee-2.4.2.ebuild peewee-2.4.0.ebuild
  Log:
  bump; remove old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.22 dev-python/peewee/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   30 Nov 2014 04:23:55 -  1.21
+++ ChangeLog   15 Dec 2014 02:21:26 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/peewee
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.21 
2014/11/30 04:23:55 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/ChangeLog,v 1.22 
2014/12/15 02:21:26 idella4 Exp $
+
+*peewee-2.4.4 (15 Dec 2014)
+
+  15 Dec 2014; Ian Delaney  +peewee-2.4.4.ebuild,
+  -peewee-2.4.0.ebuild, -peewee-2.4.2.ebuild, peewee-2.4.1.ebuild:
+  bump; remove old
 
 *peewee-2.4.3 (30 Nov 2014)
 



1.1  dev-python/peewee/peewee-2.4.4.ebuild

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

Index: peewee-2.4.4.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/peewee/peewee-2.4.4.ebuild,v 1.1 
2014/12/15 02:21:26 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
PYTHON_REQ_USE="sqlite(+)"

inherit distutils-r1

DESCRIPTION="Small python ORM"
HOMEPAGE="https://github.com/coleifer/peewee/";
SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples test"

RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/apsw[${PYTHON_USEDEP}]
dev-python/psycopg[${PYTHON_USEDEP}]
dev-python/django[${PYTHON_USEDEP}]
)"
# Req'd to ensure a unique tmp.db for each python impl running the testsuite.
DISTUTILS_IN_SOURCE_BUILD=1

python_compile_all() {
use doc && emake -C docs html
}

python_test() {
"${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
}

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






[gentoo-commits] gentoo-x86 commit in sys-apps/pkgcore: metadata.xml ChangeLog pkgcore-9999.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 02:06:06

  Modified: metadata.xml ChangeLog pkgcore-.ebuild
  Log:
  Don't build html docs by default. Drop dolsen as a maintainer.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.11 sys-apps/pkgcore/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/metadata.xml?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/metadata.xml?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/metadata.xml?r1=1.10&r2=1.11

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/metadata.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- metadata.xml22 Oct 2013 19:48:38 -  1.10
+++ metadata.xml15 Dec 2014 02:06:05 -  1.11
@@ -5,10 +5,6 @@
radher...@gentoo.org
Tim Harder

-   
-   dol...@gentoo.org
-   Brian Dolbec
-   

Build and install API docs.




1.179sys-apps/pkgcore/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.179&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.179&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog   25 May 2014 03:50:44 -  1.178
+++ ChangeLog   15 Dec 2014 02:06:05 -  1.179
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/pkgcore
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.178 
2014/05/25 03:50:44 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.179 
2014/12/15 02:06:05 radhermit Exp $
+
+  15 Dec 2014; Tim Harder  pkgcore-.ebuild,
+  metadata.xml:
+  Don't build html docs by default. Drop dolsen as a maintainer.
 
   25 May 2014; Tim Harder  pkgcore-.ebuild:
   Drop python2_6 support.



1.20 sys-apps/pkgcore/pkgcore-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-.ebuild?rev=1.20&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-.ebuild?rev=1.20&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-.ebuild?r1=1.19&r2=1.20

Index: pkgcore-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-.ebuild,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- pkgcore-.ebuild 25 May 2014 03:50:44 -  1.19
+++ pkgcore-.ebuild 15 Dec 2014 02:06:05 -  1.20
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-.ebuild,v 1.19 
2014/05/25 03:50:44 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-.ebuild,v 1.20 
2014/12/15 02:06:05 radhermit Exp $
 
 EAPI=4
 PYTHON_COMPAT=( python2_7 )
@@ -19,7 +19,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+doc"
+IUSE="doc"
 
 RDEPEND="=dev-python/snakeoil-[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}






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

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 02:03:46

  Modified: metadata.xml ChangeLog
  Log:
  Drop dolsen as a maintainer and update upstream metadata.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.10 dev-python/snakeoil/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/snakeoil/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml26 Sep 2013 11:16:50 -  1.9
+++ metadata.xml15 Dec 2014 02:03:46 -  1.10
@@ -5,11 +5,7 @@
radher...@gentoo.org
Tim Harder

-   
-   dol...@gentoo.org
-   Brian Dolbec
-   

-   snakeoil
+   pkgcore/snakeoil

 



1.73 dev-python/snakeoil/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   18 Oct 2014 17:29:33 -  1.72
+++ ChangeLog   15 Dec 2014 02:03:46 -  1.73
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/snakeoil
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.72 
2014/10/18 17:29:33 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.73 
2014/12/15 02:03:46 radhermit Exp $
+
+  15 Dec 2014; Tim Harder  metadata.xml:
+  Drop dolsen as a maintainer and update upstream metadata.
 
   18 Oct 2014; Mike Frysinger  snakeoil-0.5.2.ebuild,
   snakeoil-0.5.3.ebuild, snakeoil-.ebuild:






[gentoo-commits] proj/mysql-extras:master commit in: /

2014-12-14 Thread Brian Evans
commit: 2e2fc2d9bae78de6c0d085070605f2464cdce1f3
Author: Brian Evans  tuffmail  com>
AuthorDate: Mon Dec 15 02:02:30 2014 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 15 02:02:30 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=2e2fc2d9

Note upstream bug

---
 0_index.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/0_index.txt b/0_index.txt
index c96910e..db297e1 100644
--- a/0_index.txt
+++ b/0_index.txt
@@ -1817,4 +1817,4 @@
 @pn mariadb
 @pn mariadb-galera
 @@ Fix build on sparc and other arches with no atomics
-@@ Also fix critical replication bug discovered shortly after release
+@@ Also fix critical replication bug discovered shortly after release MDEV-7237



[gentoo-commits] gentoo-x86 commit in sys-apps/ethtool: ChangeLog ethtool-3.18.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 01:51:09

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

Revision  ChangesPath
1.115sys-apps/ethtool/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ChangeLog?rev=1.115&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ChangeLog?rev=1.115&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/ethtool/ChangeLog?r1=1.114&r2=1.115

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog   9 Oct 2014 16:40:05 -   1.114
+++ ChangeLog   15 Dec 2014 01:51:09 -  1.115
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/ethtool
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ChangeLog,v 1.114 
2014/10/09 16:40:05 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ChangeLog,v 1.115 
2014/12/15 01:51:09 radhermit Exp $
+
+*ethtool-3.18 (15 Dec 2014)
+
+  15 Dec 2014; Tim Harder  +ethtool-3.18.ebuild:
+  Version bump.
 
 *ethtool-3.16 (09 Oct 2014)
 



1.1  sys-apps/ethtool/ethtool-3.18.ebuild

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

Index: ethtool-3.18.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ethtool/ethtool-3.18.ebuild,v 1.1 
2014/12/15 01:51:09 radhermit Exp $

EAPI="5"

DESCRIPTION="Utility for examining and tuning ethernet-based network interfaces"
HOMEPAGE="http://www.kernel.org/pub/software/network/ethtool/";
SRC_URI="mirror://kernel/software/network/ethtool/${P}.tar.xz"

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

DEPEND="app-arch/xz-utils"






[gentoo-commits] proj/mysql-extras: New tag: mysql-extras-20141215-0144Z

2014-12-14 Thread Brian Evans
commit: 
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 15 01:44:32 2014 +

New tag: mysql-extras-20141215-0144Z




[gentoo-commits] proj/mysql-extras:master commit in: /

2014-12-14 Thread Brian Evans
commit: c4a66f0ac469a3aae6b552633e07191132aaabe7
Author: Brian Evans  tuffmail  com>
AuthorDate: Mon Dec 15 01:43:56 2014 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Dec 15 01:43:56 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=c4a66f0a

Add patch for mariadb-10.0.15 with critical replication bug and non-atomic arch 
compile fix

---
 0_index.txt|   7 +
 ..._mariadb-parallel-replication-fix-10.0.15.patch | 213 +
 2 files changed, 220 insertions(+)

diff --git a/0_index.txt b/0_index.txt
index 8174521..c96910e 100644
--- a/0_index.txt
+++ b/0_index.txt
@@ -1811,3 +1811,10 @@
 @ver 10.01.01.00 to 10.99.99.99
 @pn mariadb
 @@ Allow mariadb.pc to be installed in libdir instead of sharedir
+
+@patch 20016_all_mariadb-parallel-replication-fix-10.0.15.patch
+@ver 10.00.15.00 to 10.00.15.99
+@pn mariadb
+@pn mariadb-galera
+@@ Fix build on sparc and other arches with no atomics
+@@ Also fix critical replication bug discovered shortly after release

diff --git a/20016_all_mariadb-parallel-replication-fix-10.0.15.patch 
b/20016_all_mariadb-parallel-replication-fix-10.0.15.patch
new file mode 100644
index 000..54a0169
--- /dev/null
+++ b/20016_all_mariadb-parallel-replication-fix-10.0.15.patch
@@ -0,0 +1,213 @@
+=== modified file 'mysql-test/suite/rpl/r/rpl_parallel.result'
+--- mysql-test/suite/rpl/r/rpl_parallel.result 2014-11-13 09:31:20 +
 mysql-test/suite/rpl/r/rpl_parallel.result 2014-12-01 12:53:57 +
+@@ -972,6 +972,54 @@
+ SET GLOBAL slave_parallel_threads=0;
+ SET GLOBAL slave_parallel_threads=10;
+ include/start_slave.inc
++*** MDEV-7237: Parallel replication: incorrect relaylog position after 
stop/start the slave ***
++INSERT INTO t2 VALUES (40);
++include/stop_slave.inc
++CHANGE MASTER TO master_use_gtid=no;
++SET @old_dbug= @@GLOBAL.debug_dbug;
++SET GLOBAL debug_dbug="+d,rpl_parallel_scheduled_gtid_0_x_100";
++SET GLOBAL debug_dbug="+d,rpl_parallel_wait_for_done_trigger";
++SET GLOBAL slave_parallel_threads=0;
++SET GLOBAL slave_parallel_threads=10;
++INSERT INTO t2 VALUES (41);
++INSERT INTO t2 VALUES (42);
++DELETE FROM t2 WHERE a=40;
++INSERT INTO t2 VALUES (43);
++INSERT INTO t2 VALUES (44);
++FLUSH LOGS;
++INSERT INTO t2 VALUES (45);
++SET gtid_seq_no=100;
++INSERT INTO t2 VALUES (46);
++BEGIN;
++SELECT * FROM t2 WHERE a=40 FOR UPDATE;
++a
++40
++include/start_slave.inc
++SET debug_sync= 'now WAIT_FOR scheduled_gtid_0_x_100';
++STOP SLAVE;
++SET debug_sync= 'now WAIT_FOR wait_for_done_waiting';
++ROLLBACK;
++include/wait_for_slave_sql_to_stop.inc
++SELECT * FROM t2 WHERE a >= 40 ORDER BY a;
++a
++41
++42
++include/start_slave.inc
++SELECT * FROM t2 WHERE a >= 40 ORDER BY a;
++a
++41
++42
++43
++44
++45
++46
++include/stop_slave.inc
++SET GLOBAL debug_dbug=@old_dbug;
++SET DEBUG_SYNC= 'RESET';
++SET GLOBAL slave_parallel_threads=0;
++SET GLOBAL slave_parallel_threads=10;
++CHANGE MASTER TO master_use_gtid=slave_pos;
++include/start_slave.inc
+ include/stop_slave.inc
+ SET GLOBAL slave_parallel_threads=@old_parallel_threads;
+ include/start_slave.inc
+
+=== modified file 'mysql-test/suite/rpl/t/rpl_parallel.test'
+--- mysql-test/suite/rpl/t/rpl_parallel.test   2014-11-13 09:31:20 +
 mysql-test/suite/rpl/t/rpl_parallel.test   2014-12-01 12:53:57 +
+@@ -1535,6 +1535,99 @@
+ --source include/start_slave.inc
+ 
+ 
++--echo *** MDEV-7237: Parallel replication: incorrect relaylog position after 
stop/start the slave ***
++--connection server_1
++INSERT INTO t2 VALUES (40);
++--save_master_pos
++
++--connection server_2
++--sync_with_master
++--source include/stop_slave.inc
++CHANGE MASTER TO master_use_gtid=no;
++SET @old_dbug= @@GLOBAL.debug_dbug;
++# This DBUG injection causes a DEBUG_SYNC signal "scheduled_gtid_0_x_100" when
++# GTID 0-1-100 has been scheduled for and fetched by a worker thread.
++SET GLOBAL debug_dbug="+d,rpl_parallel_scheduled_gtid_0_x_100";
++# This DBUG injection causes a DEBUG_SYNC signal "wait_for_done_waiting" when
++# STOP SLAVE has signalled all worker threads to stop.
++SET GLOBAL debug_dbug="+d,rpl_parallel_wait_for_done_trigger";
++# Reset worker threads to make DBUG setting catch on.
++SET GLOBAL slave_parallel_threads=0;
++SET GLOBAL slave_parallel_threads=10;
++
++
++--connection server_1
++# Setup some transaction for the slave to replicate.
++INSERT INTO t2 VALUES (41);
++INSERT INTO t2 VALUES (42);
++DELETE FROM t2 WHERE a=40;
++INSERT INTO t2 VALUES (43);
++INSERT INTO t2 VALUES (44);
++# Force the slave to switch to a new relay log file.
++FLUSH LOGS;
++INSERT INTO t2 VALUES (45);
++# Inject a GTID 0-1-100, which will trigger a DEBUG_SYNC signal when this
++# transaction has been fetched by a worker thread.
++SET gtid_seq_no=100;
++INSERT INTO t2 VALUES (46);
++--save_master_pos
++
++--connection con_temp2
++# Temporarily block the DELETE on a=40 from completing.
++BEGIN;
++SELECT * FROM t2 WHE

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

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/15 00:49:02

  Modified: ChangeLog package.mask
  Log:
  Restore Gnome 3.14 mask, without the unrelated noise.

Revision  ChangesPath
1.9614   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9613
retrieving revision 1.9614
diff -u -r1.9613 -r1.9614
--- ChangeLog   15 Dec 2014 00:45:18 -  1.9613
+++ ChangeLog   15 Dec 2014 00:49:02 -  1.9614
@@ -1,12 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9613 2014/12/15 
00:45:18 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9614 2014/12/15 
00:49:02 floppym 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!
 
   15 Dec 2014; Mike Gilbert  package.mask:
+  Restore Gnome 3.14 mask, without the unrelated noise.
+
+  15 Dec 2014; Mike Gilbert  package.mask:
   Revert previous change.
 
   14 Dec 2014; Gilles Dartiguelongue  package.mask:



1.16222  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16221
retrieving revision 1.16222
diff -u -r1.16221 -r1.16222
--- package.mask15 Dec 2014 00:45:18 -  1.16221
+++ package.mask15 Dec 2014 00:49:02 -  1.16222
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16221 2014/12/15 
00:45:18 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16222 2014/12/15 
00:49:02 floppym 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,134 @@
 
 #--- END OF EXAMPLES ---
 
+# Gilles Dartiguelongue  (14 Dec 2014)
+# Gnome 3.14 mask
+>=app-accessibility/accerciser-3.13
+>=app-accessibility/at-spi2-atk-2.13
+>=app-accessibility/at-spi2-core-2.13
+>=app-accessibility/orca-3.13
+>=app-arch/file-roller-3.13
+>=app-crypt/gcr-3.13
+>=app-crypt/seahorse-3.13
+>=app-dicts/gnome-dictionary-3.13
+>=app-editors/gedit-3.13
+>=app-editors/gedit-plugins-3.13
+>=app-misc/bijiben-3.13
+>=app-misc/gnote-3.13
+>=app-text/evince-3.13
+>=app-text/yelp-tools-3.13
+>=dev-cpp/glibmm-2.41
+>=dev-cpp/gtkmm-3.13
+>=dev-lang/vala-0.25
+>=dev-libs/atk-2.13
+>=dev-libs/folks-0.10
+>=dev-libs/gdl-3.13
+>=dev-libs/gjs-1.41
+>=dev-libs/glib-2.41
+>=dev-libs/gobject-introspection-1.41
+>=dev-libs/gobject-introspection-common-1.41
+>=dev-libs/libgee-0.15
+>=dev-libs/libgweather-3.13
+>=dev-libs/libpeas-1.11
+>=dev-libs/vala-common-0.25
+>=dev-python/pyatspi-2.13
+>=dev-python/pygobject-3.13
+>=dev-util/anjuta-3.13
+>=dev-util/devhelp-3.13
+>=dev-util/gdbus-codegen-2.41
+>=dev-util/gnome-devel-docs-3.13
+>=games-arcade/gnome-nibbles-3.13
+>=games-arcade/gnome-robots-3.13
+>=games-board/four-in-a-row-3.13
+>=games-board/gnome-chess-3.13
+>=games-board/gnome-mahjongg-3.13
+>=games-board/gnome-mines-3.13
+>=games-board/iagno-3.13
+>=games-board/tali-3.13
+>=games-puzzle/five-or-more-3.13
+>=games-puzzle/gnome-klotski-3.13
+>=games-puzzle/gnome-sudoku-3.13
+>=games-puzzle/gnome-tetravex-3.13
+>=games-puzzle/lightsoff-3.13
+>=games-puzzle/quadrapassel-3.13
+>=games-puzzle/swell-foop-3.13
+>=gnome-base/dconf-0.21
+>=gnome-base/gdm-3.13
+>=gnome-base/gnome-3.13
+>=gnome-base/gnome-common-3.13
+>=gnome-base/gnome-control-center-3.13
+>=gnome-base/gnome-core-apps-3.13
+>=gnome-base/gnome-core-libs-3.13
+>=gnome-base/gnome-desktop-3.13
+>=gnome-base/gnome-extra-apps-3.13
+>=gnome-base/gnome-keyring-3.13
+>=gnome-base/gnome-session-3.13
+>=gnome-base/gnome-settings-daemon-3.13
+>=gnome-base/gnome-shell-3.13
+>=gnome-base/gsettings-desktop-schemas-3.13
+>=gnome-base/gvfs-1.21
+>=gnome-base/nautilus-3.13
+>=gnome-extra/at-spi-2.13
+>=gnome-extra/gnome-boxes-3.13
+>=gnome-extra/gnome-calculator-3.13
+>=gnome-extra/gnome-clocks-3.13
+>=gnome-extra/gnome-color-m

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

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/15 00:45:19

  Modified: ChangeLog package.mask
  Log:
  Revert previous change.

Revision  ChangesPath
1.9613   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9612
retrieving revision 1.9613
diff -u -r1.9612 -r1.9613
--- ChangeLog   14 Dec 2014 22:07:04 -  1.9612
+++ ChangeLog   15 Dec 2014 00:45:18 -  1.9613
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9612 2014/12/14 
22:07:04 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9613 2014/12/15 
00:45:18 floppym 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!
 
+  15 Dec 2014; Mike Gilbert  package.mask:
+  Revert previous change.
+
   14 Dec 2014; Gilles Dartiguelongue  package.mask:
   Add mask for Gnome 3.14.
 



1.16221  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16220
retrieving revision 1.16221
diff -u -r1.16220 -r1.16221
--- package.mask14 Dec 2014 22:07:04 -  1.16220
+++ package.mask15 Dec 2014 00:45:18 -  1.16221
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16220 2014/12/14 
22:07:04 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16221 2014/12/15 
00:45:18 floppym 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,133 +30,184 @@
 
 #--- END OF EXAMPLES ---
 
-# Gilles Dartiguelongue  (14 Dec 2014)
-# Gnome 3.14 mask
->=app-accessibility/accerciser-3.13
->=app-accessibility/at-spi2-atk-2.13
->=app-accessibility/at-spi2-core-2.13
->=app-accessibility/orca-3.13
->=app-arch/file-roller-3.13
->=app-crypt/gcr-3.13
->=app-crypt/seahorse-3.13
->=app-dicts/gnome-dictionary-3.13
->=app-editors/gedit-3.13
->=app-editors/gedit-plugins-3.13
->=app-misc/bijiben-3.13
->=app-misc/gnote-3.13
->=app-text/evince-3.13
->=app-text/yelp-tools-3.13
->=dev-cpp/glibmm-2.41
->=dev-cpp/gtkmm-3.13
->=dev-lang/vala-0.25
->=dev-libs/atk-2.13
->=dev-libs/folks-0.10
->=dev-libs/gdl-3.13
->=dev-libs/gjs-1.41
->=dev-libs/glib-2.41
->=dev-libs/gobject-introspection-1.41
->=dev-libs/gobject-introspection-common-1.41
->=dev-libs/libgee-0.15
->=dev-libs/libgweather-3.13
->=dev-libs/libpeas-1.11
->=dev-libs/vala-common-0.25
->=dev-python/pyatspi-2.13
->=dev-python/pygobject-3.13
->=dev-util/anjuta-3.13
->=dev-util/devhelp-3.13
->=dev-util/gdbus-codegen-2.41
->=dev-util/gnome-devel-docs-3.13
->=games-arcade/gnome-nibbles-3.13
->=games-arcade/gnome-robots-3.13
->=games-board/four-in-a-row-3.13
->=games-board/gnome-chess-3.13
->=games-board/gnome-mahjongg-3.13
->=games-board/gnome-mines-3.13
->=games-board/iagno-3.13
->=games-board/tali-3.13
->=games-puzzle/five-or-more-3.13
->=games-puzzle/gnome-klotski-3.13
->=games-puzzle/gnome-sudoku-3.13
->=games-puzzle/gnome-tetravex-3.13
->=games-puzzle/lightsoff-3.13
->=games-puzzle/quadrapassel-3.13
->=games-puzzle/swell-foop-3.13
->=gnome-base/dconf-0.21
->=gnome-base/gdm-3.13
->=gnome-base/gnome-3.13
->=gnome-base/gnome-common-3.13
->=gnome-base/gnome-control-center-3.13
->=gnome-base/gnome-core-apps-3.13
->=gnome-base/gnome-core-libs-3.13
->=gnome-base/gnome-desktop-3.13
->=gnome-base/gnome-extra-apps-3.13
->=gnome-base/gnome-keyring-3.13
->=gnome-base/gnome-session-3.13
->=gnome-base/gnome-settings-daemon-3.13
->=gnome-base/gnome-shell-3.13
->=gnome-base/gsettings-desktop-schemas-3.13
->=gnome-base/gvfs-1.21
->=gnome-base/nautilus-3.13
->=gnome-extra/at-spi-2.13
->=gnome-extra/gnome-boxes-3.13
->=gnome-extra/gnome-calculator-3.13
->=gnome-extra/gnome-clocks-3.13
->=gnome-extra/gnome-color-manager-3.13
->=gnome-extra/gnome-contacts-3.13
->=gnome-extra/gnome-documents-3.13
->=gnome-extra/gnome-getti

[gentoo-commits] gentoo-x86 commit in media-video/mkvtoolnix: ChangeLog mkvtoolnix-6.7.0.ebuild mkvtoolnix-7.0.0.ebuild mkvtoolnix-5.0.1-r1.ebuild mkvtoolnix-6.9.1.ebuild mkvtoolnix-7.2.0.ebuild mkvto

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 00:28:33

  Modified: ChangeLog
  Removed:  mkvtoolnix-6.7.0.ebuild mkvtoolnix-7.0.0.ebuild
mkvtoolnix-5.0.1-r1.ebuild mkvtoolnix-6.9.1.ebuild
mkvtoolnix-7.2.0.ebuild mkvtoolnix-7.4.0.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.210media-video/mkvtoolnix/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog   15 Dec 2014 00:23:11 -  1.209
+++ ChangeLog   15 Dec 2014 00:28:33 -  1.210
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/mkvtoolnix
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.209 
2014/12/15 00:23:11 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.210 
2014/12/15 00:28:33 radhermit Exp $
+
+  15 Dec 2014; Tim Harder  -mkvtoolnix-5.0.1-r1.ebuild,
+  -mkvtoolnix-6.7.0.ebuild, -mkvtoolnix-6.9.1.ebuild, -mkvtoolnix-7.0.0.ebuild,
+  -mkvtoolnix-7.2.0.ebuild, -mkvtoolnix-7.4.0.ebuild:
+  Remove old.
 
 *mkvtoolnix-7.4.0-r1 (15 Dec 2014)
 






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

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/15 00:23:12

  Modified: ChangeLog
  Added:mkvtoolnix-7.4.0-r1.ebuild
  Log:
  Add explicit bdep on virtual/rubygems to workaround bug #509220.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.209media-video/mkvtoolnix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?rev=1.209&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?rev=1.209&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?r1=1.208&r2=1.209

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   13 Dec 2014 05:04:43 -  1.208
+++ ChangeLog   15 Dec 2014 00:23:11 -  1.209
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/mkvtoolnix
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.208 
2014/12/13 05:04:43 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.209 
2014/12/15 00:23:11 radhermit Exp $
+
+*mkvtoolnix-7.4.0-r1 (15 Dec 2014)
+
+  15 Dec 2014; Tim Harder  +mkvtoolnix-7.4.0-r1.ebuild:
+  Add explicit bdep on virtual/rubygems to workaround bug #509220.
 
 *mkvtoolnix-7.4.0 (13 Dec 2014)
 



1.1  media-video/mkvtoolnix/mkvtoolnix-7.4.0-r1.ebuild

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

Index: mkvtoolnix-7.4.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-7.4.0-r1.ebuild,v 1.1 
2014/12/15 00:23:11 radhermit Exp $

EAPI=5
WX_GTK_VER="3.0"
inherit eutils multilib toolchain-funcs versionator wxwidgets multiprocessing 
autotools

DESCRIPTION="Tools to create, alter, and inspect Matroska files"
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix";
SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.xz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug pch qt5 wxwidgets"

ruby_atom() {
local ruby_slot=${1/ruby/}
ruby_slot="${ruby_slot:0:1}.${ruby_slot:1:2}"
echo "dev-lang/ruby:${ruby_slot}"
}

# hacks to avoid using the ruby eclasses since this requires something similar
# to the python-any-r1 eclass for ruby which currently doesn't exist
RUBY_IMPLS=( ruby21 ruby20 )
RUBY_BDEPS="$(for ruby_impl in "${RUBY_IMPLS[@]}"; do
echo "( $(ruby_atom ${ruby_impl}) virtual/rubygems:${ruby_impl} )"; 
done)"

RDEPEND="
>=dev-libs/libebml-1.3.0:=
>=media-libs/libmatroska-1.4.1:=
>=dev-libs/boost-1.46.0:=
dev-libs/pugixml
media-libs/flac
media-libs/libogg
media-libs/libvorbis
sys-apps/file
>=sys-devel/gcc-4.6
sys-libs/zlib
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
)
wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
"
DEPEND="${RDEPEND}
|| ( ${RUBY_BDEPS} )
sys-devel/gettext
virtual/pkgconfig
"

pkg_pretend() {
# http://bugs.gentoo.org/419257
local ver=4.6
local msg="You need at least GCC ${ver}.x for C++11 range-based 'for' 
and nullptr support."
if ! version_is_at_least ${ver} $(gcc-version); then
eerror ${msg}
die ${msg}
fi
}

src_prepare() {
local ruby_impl
for ruby_impl in "${RUBY_IMPLS[@]}"; do
if has_version "$(ruby_atom ${ruby_impl})"; then
export RUBY=${ruby_impl}
break
fi
done

[[ -z ${RUBY} ]] && die "No available ruby implementations to build 
with"

epatch "${FILESDIR}"/${PN}-5.8.0-boost-configure.patch
eautoreconf
}

src_configure() {
local myconf

if use wxwidgets ; then
need-wxwidgets unicode
myconf="--with-wx-config=${WX_CONFIG}"
fi

econf \
$(use_enable debug) \
$(use_enable qt5 qt) \
$(use_enable wxwidgets) \
$(usex pch "" --disable-precompiled-headers) \
${myconf} \
--disable-optimization \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
  

[gentoo-commits] gentoo commit in xml/htdocs/security/en/glsa: glsa-201412-29.xml

2014-12-14 Thread Sean Amoss (ackle)
ackle   14/12/15 00:12:45

  Added:glsa-201412-29.xml
  Log:
  GLSA 201412-29

Revision  ChangesPath
1.1  xml/htdocs/security/en/glsa/glsa-201412-29.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201412-29.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201412-29.xml?rev=1.1&content-type=text/plain

Index: glsa-201412-29.xml
===



http://www.gentoo.org/dtd/glsa.dtd";>

  Apache Tomcat: Multiple vulnerabilities
  Multiple vulnerabilities have been found in Apache Tomcat, the
worst of which may result in Denial of Service.
  
  tomcat
  December 15, 2014
  December 15, 2014: 1
  442014
  469434
  500600
  511762
  517630
  519590
  remote
  

  7.0.56
  6.0.41
  7.0.56

  
  
Apache Tomcat is a Servlet-3.0/JSP-2.2 Container.
  
  
Multiple vulnerabilities have been discovered in Tomcat. Please review
  the CVE identifiers referenced below for details.

  
  
A remote attacker may be able to cause a Denial of Service condition as
  well as obtain sensitive information, bypass protection mechanisms and
  authentication restrictions.

  
  
There is no known workaround at this time.
  
  
All Tomcat 6.0.x users should upgrade to the latest version:


  # emerge --sync
  # emerge --ask --oneshot --verbose ">=www-servers/tomcat-6.0.41"


All Tomcat 7.0.x users should upgrade to the latest version:


  # emerge --sync
  # emerge --ask --oneshot --verbose ">=www-servers/tomcat-7.0.56"

  
  
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-2733";>CVE-2012-2733
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-3544";>CVE-2012-3544
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-3546";>CVE-2012-3546
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-4431";>CVE-2012-4431
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-4534";>CVE-2012-4534
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-5885";>CVE-2012-5885
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-5886";>CVE-2012-5886
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2012-5887";>CVE-2012-5887
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-2067";>CVE-2013-2067
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-2071";>CVE-2013-2071
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-4286";>CVE-2013-4286
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-4322";>CVE-2013-4322
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-4590";>CVE-2013-4590
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0033";>CVE-2014-0033
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0050";>CVE-2014-0050
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0075";>CVE-2014-0075
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0096";>CVE-2014-0096
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0099";>CVE-2014-0099
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2014-0119";>CVE-2014-0119
  
  craig
  ackle







[gentoo-commits] gentoo-x86 commit in sys-apps/portage: portage-2.2.14.ebuild ChangeLog

2014-12-14 Thread Mikle Kolyada (zlogene)
zlogene 14/12/15 00:09:21

  Modified: portage-2.2.14.ebuild ChangeLog
  Log:
  x86 stable wrt bug #531594
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.5  sys-apps/portage/portage-2.2.14.ebuild

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

Index: portage-2.2.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- portage-2.2.14.ebuild   9 Dec 2014 10:05:07 -   1.4
+++ portage-2.2.14.ebuild   15 Dec 2014 00:09:21 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.14.ebuild,v 
1.4 2014/12/09 10:05:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.14.ebuild,v 
1.5 2014/12/15 00:09:21 zlogene Exp $
 
 EAPI=5
 
@@ -18,7 +18,7 @@
 HOMEPAGE="http://www.gentoo.org/proj/en/portage/index.xml";
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 SLOT="0"
 IUSE="build doc epydoc +ipc linguas_ru selinux xattr"
 



1.1422   sys-apps/portage/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?rev=1.1422&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?rev=1.1422&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?r1=1.1421&r2=1.1422

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v
retrieving revision 1.1421
retrieving revision 1.1422
diff -u -r1.1421 -r1.1422
--- ChangeLog   9 Dec 2014 10:05:07 -   1.1421
+++ ChangeLog   15 Dec 2014 00:09:21 -  1.1422
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/portage
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1421 
2014/12/09 10:05:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1422 
2014/12/15 00:09:21 zlogene Exp $
+
+  15 Dec 2014; Mikle Kolyada  portage-2.2.14.ebuild:
+  x86 stable wrt bug #531594
 
   09 Dec 2014; Jeroen Roovers  portage-2.2.14.ebuild:
   Stable for HPPA (bug #531594).






[gentoo-commits] gentoo-x86 commit in net-analyzer/icinga2/files: icinga2.initd

2014-12-14 Thread Matt Thode (prometheanfire)
prometheanfire14/12/14 23:33:24

  Modified: icinga2.initd
  Log:
  final fix for the init I hope
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.4  net-analyzer/icinga2/files/icinga2.initd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd?r1=1.3&r2=1.4

Index: icinga2.initd
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- icinga2.initd   14 Dec 2014 23:27:21 -  1.3
+++ icinga2.initd   14 Dec 2014 23:33:24 -  1.4
@@ -20,8 +20,16 @@
eend 1
 fi
 
-ICINGA2_USER=`$DAEMON variable get --current RunAsUser`
-ICINGA2_GROUP=`$DAEMON variable get --current RunAsGroup`
+ICINGA2_USER=$($DAEMON variable get --current RunAsUser)
+if [ $? != 0 ]; then
+eerror "Could not fetch RunAsUser variable: '$ICINGA2_USER'."
+return 1
+fi
+ICINGA2_GROUP=$($DAEMON variable get --current RunAsGroup)
+if [ $? != 0 ]; then
+eerror "Could not fetch RunAsGroup variable: '$ICINGA2_GROUP'."
+return 1
+fi
 
 checkpath -d -m 0750 -o $ICINGA2_USER:$ICINGA2_GROUP $ICINGA2_RUN_DIR
 checkpath -d -m 0750 -o $ICINGA2_USER:$ICINGA2_COMMAND_GROUP 
$ICINGA2_STATE_DIR






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

2014-12-14 Thread Matt Thode (prometheanfire)
prometheanfire14/12/14 23:33:24

  Modified: ChangeLog
  Log:
  final fix for the init I hope
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.19 net-analyzer/icinga2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/ChangeLog?rev=1.19&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/ChangeLog?rev=1.19&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   14 Dec 2014 23:27:21 -  1.18
+++ ChangeLog   14 Dec 2014 23:33:24 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/icinga2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/ChangeLog,v 1.18 
2014/12/14 23:27:21 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/ChangeLog,v 1.19 
2014/12/14 23:33:24 prometheanfire Exp $
+
+  14 Dec 2014; Matthew Thode  files/icinga2.initd:
+  final fix for the init I hope
 
 *icinga2-2.2.1-r2 (14 Dec 2014)
 






[gentoo-commits] gentoo-x86 commit in net-analyzer/icinga2/files: icinga2.initd icinga2-2.2.1-create_var_cache.patch icinga2.confd

2014-12-14 Thread Matt Thode (prometheanfire)
prometheanfire14/12/14 23:27:21

  Modified: icinga2.initd icinga2.confd
  Added:icinga2-2.2.1-create_var_cache.patch
  Log:
  fixing init script, thanks Feandil :D bug 532582
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.3  net-analyzer/icinga2/files/icinga2.initd

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd?r1=1.2&r2=1.3

Index: icinga2.initd
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/files/icinga2.initd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icinga2.initd   12 Dec 2014 16:47:44 -  1.2
+++ icinga2.initd   14 Dec 2014 23:27:21 -  1.3
@@ -2,10 +2,11 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-DAEMON=/usr/sbin/icinga2
-ICINGA2_CONFIG_FILE=/etc/icinga2/icinga2.conf
-ICINGA2_RUN_DIR=/var/run
-ICINGA2_STATE_DIR=/var
+DAEMON="/usr/sbin/icinga2"
+ICINGA2_CONFIG_FILE="/etc/icinga2/icinga2.conf"
+ICINGA2_RUN_DIR="/run/icinga2"
+ICINGA2_STATE_DIR="/var/cache/icinga2"
+ICINGA2_CMD_DIR="${ICINGA2_RUN_DIR}/cmd"
 ICINGA2_PID_FILE="${ICINGA2_RUN_DIR}/icinga2/icinga2.pid"
 ICINGA2_DAEMON_ARGS="daemon -c $ICINGA2_CONFIG_FILE -e $ICINGA2_ERROR_LOG -d"
 
@@ -18,12 +19,27 @@
ewarn "Config file '$ICINGA2_CONFIG_FILE' does not exist."
eend 1
 fi
+
+ICINGA2_USER=`$DAEMON variable get --current RunAsUser`
+ICINGA2_GROUP=`$DAEMON variable get --current RunAsGroup`
+
+checkpath -d -m 0750 -o $ICINGA2_USER:$ICINGA2_GROUP $ICINGA2_RUN_DIR
+checkpath -d -m 0750 -o $ICINGA2_USER:$ICINGA2_COMMAND_GROUP 
$ICINGA2_STATE_DIR
+checkpath -d -m 2750 -o $ICINGA2_USER:$ICINGA2_COMMAND_GROUP 
$ICINGA2_CMD_DIR
+
+if ! $DAEMON daemon -c $ICINGA2_CONFIG_FILE -C > $ICINGA2_STARTUP_LOG 
2>&1; then
+eerror "Icinga 2 detected configuration errors. Check 
'$ICINGA2_STARTUP_LOG' for details."
+return 1
+fi
 }
 
 start() {
-checkconfig
+checkconfig || return 1
+
 ebegin "Starting icinga2"
-$DAEMON $ICINGA2_DAEMON_ARGS > $ICINGA2_STARTUP_LOG 2>&1
+start-stop-daemon --start --exec "${DAEMON}" \
+--pidfile "${ICINGA2_PID_FILE}" \
+-- $ICINGA2_DAEMON_ARGS > $ICINGA2_STARTUP_LOG 2>&1
 local retval=$?
 if [ $retval -ne 0 ]; then
 ewarn "Error starting icinga2. '$ICINGA2_STARTUP_LOG' for details."



1.3  net-analyzer/icinga2/files/icinga2.confd

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

Index: icinga2.confd
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/files/icinga2.confd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icinga2.confd   12 Dec 2014 16:47:44 -  1.2
+++ icinga2.confd   14 Dec 2014 23:27:21 -  1.3
@@ -1,6 +1,3 @@
 ICINGA2_ERROR_LOG=/var/log/icinga2/error.log
 ICINGA2_STARTUP_LOG=/var/log/icinga2/startup.log
 ICINGA2_LOG=/var/log/icinga2/icinga2.log
-
-ICINGA2_COMMAND_USER=icinga
-ICINGA2_COMMAND_GROUP=icingacmd



1.1  
net-analyzer/icinga2/files/icinga2-2.2.1-create_var_cache.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2-2.2.1-create_var_cache.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/files/icinga2-2.2.1-create_var_cache.patch?rev=1.1&content-type=text/plain

Index: icinga2-2.2.1-create_var_cache.patch
===
--- a/etc/initsystem/prepare-dirs
+++ b/etc/initsystem/prepare-dirs
@@ -31,3 +31,7 @@
 mkdir -p $ICINGA2_RUN_DIR/icinga2/cmd
 chown $ICINGA2_USER:$ICINGA2_COMMAND_GROUP $ICINGA2_RUN_DIR/icinga2/cmd
 chmod 2750 $ICINGA2_RUN_DIR/icinga2/cmd
+
+mkdir -p $ICINGA2_STATE_DIR/cache/icinga2
+chown $ICINGA2_USER:$ICINGA2_COMMAND_GROUP $ICINGA2_STATE_DIR/cache/icinga2
+chmod 750 $ICINGA2_STATE_DIR/cache/icinga2






[gentoo-commits] gentoo-x86 commit in net-analyzer/icinga2: icinga2-2.2.1-r2.ebuild ChangeLog icinga2-2.2.1-r1.ebuild

2014-12-14 Thread Matt Thode (prometheanfire)
prometheanfire14/12/14 23:27:21

  Modified: ChangeLog
  Added:icinga2-2.2.1-r2.ebuild
  Removed:  icinga2-2.2.1-r1.ebuild
  Log:
  fixing init script, thanks Feandil :D bug 532582
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x2471eb3e40ac5ac3)

Revision  ChangesPath
1.18 net-analyzer/icinga2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   12 Dec 2014 16:50:55 -  1.17
+++ ChangeLog   14 Dec 2014 23:27:21 -  1.18
@@ -1,6 +1,13 @@
 # ChangeLog for net-analyzer/icinga2
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/ChangeLog,v 1.17 
2014/12/12 16:50:55 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/icinga2/ChangeLog,v 1.18 
2014/12/14 23:27:21 prometheanfire Exp $
+
+*icinga2-2.2.1-r2 (14 Dec 2014)
+
+  14 Dec 2014; Matthew Thode 
+  +files/icinga2-2.2.1-create_var_cache.patch, +icinga2-2.2.1-r2.ebuild,
+  -icinga2-2.2.1-r1.ebuild, files/icinga2.confd, files/icinga2.initd:
+  fixing init script, thanks Feandil :D bug 532582
 
   12 Dec 2014; Matthew Thode 
   icinga2-2.2.1-r1.ebuild:



1.1  net-analyzer/icinga2/icinga2-2.2.1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/icinga2-2.2.1-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/icinga2/icinga2-2.2.1-r2.ebuild?rev=1.1&content-type=text/plain

Index: icinga2-2.2.1-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/icinga2/icinga2-2.2.1-r2.ebuild,v 1.1 
2014/12/14 23:27:21 prometheanfire Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit depend.apache distutils-r1 eutils cmake-utils toolchain-funcs user 
versionator systemd

DESCRIPTION="Distributed, general purpose, network monitoring engine"
HOMEPAGE="http://icinga.org/icinga2";
#PV=$(replace_version_separator 3 '-')
SRC_URI="http://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
#S="${WORKDIR}/${PN}-${PV}"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+mysql postgres classicui nano-syntax +plugins +vim-syntax"

DEPEND="dev-util/cmake
dev-python/setuptools[${PYTHON_USEDEP}]
dev-libs/openssl
>=dev-libs/boost-1.41
sys-devel/bison
>=sys-devel/flex-2.5.35
mysql? ( virtual/mysql )
postgres? ( virtual/postgresql )"

RDEPEND="${DEPEND}
plugins? ( net-analyzer/nagios-plugins )
classicui? ( net-analyzer/icinga[web] )"

REQUIRED_USE="|| ( mysql postgres )"

want_apache2

pkg_setup() {
enewgroup icinga
enewgroup icingacmd
enewgroup nagios  # for plugins
enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
}

src_prepare() {
#   epatch "${FILESDIR}/${P}-create_var_cache.patch"
epatch_user
}

src_configure() {
local mycmakeargs=(
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_SYSCONFDIR=/etc
-DCMAKE_INSTALL_LOCALSTATEDIR=/var
-DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
-DICINGA2_USER=icinga
-DICINGA2_GROUP=icingacmd
-DICINGA2_COMMAND_USER=icinga
-DICINGA2_COMMAND_GROUP=icingacmd
-DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=yes
)
if use postgres; then
mycmakeargs+=(
-DICINGA2_WITH_PGSQL=ON
)
else
mycmakeargs+=(
-DICINGA2_WITH_PGSQL=OFF
)
fi
if use mysql; then
mycmakeargs+=(
-DICINGA2_WITH_MYSQL=ON
)
else
mycmakeargs+=(
-DICINGA2_WITH_MYSQL=OFF
)
fi
cmake-utils_src_configure
}

src_install() {
BUILDDIR="${WORKDIR}"/icinga2-${PV}_build
cd $BUILDDIR

#if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; 
then

emake DESTDIR="${D}"

[gentoo-commits] gentoo-x86 commit in app-admin/conkyforecast: conkyforecast-2.24-r1.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/14 23:16:02

  Modified: ChangeLog
  Added:conkyforecast-2.24-r1.ebuild
  Log:
  Convert to distutils-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.5  app-admin/conkyforecast/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/conkyforecast/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   5 Jan 2012 15:54:39 -   1.4
+++ ChangeLog   14 Dec 2014 23:16:01 -  1.5
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/conkyforecast
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/conkyforecast/ChangeLog,v 1.4 
2012/01/05 15:54:39 xmw Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/conkyforecast/ChangeLog,v 1.5 
2014/12/14 23:16:01 mgorny Exp $
+
+*conkyforecast-2.24-r1 (14 Dec 2014)
+
+  14 Dec 2014; Michał Górny  +conkyforecast-2.24-r1.ebuild:
+  Convert to distutils-r1.
 
 *conkyforecast-2.24 (05 Jan 2012)
 
@@ -23,4 +28,3 @@
   +conkyforecast-2.12.ebuild, +metadata.xml:
   Initial commit for conkyforecast. Fixes bug #255948, thanks to Hans Meier
   for the report and Christopher Robin Elmersson for the initial ebuilds
-



1.1  app-admin/conkyforecast/conkyforecast-2.24-r1.ebuild

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

Index: conkyforecast-2.24-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/conkyforecast/conkyforecast-2.24-r1.ebuild,v 
1.1 2014/12/14 23:16:01 mgorny Exp $

EAPI=5

# upstream broke setup.py to install into /usr/share...
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Conky weather forecast script with support for language files"
HOMEPAGE="https://launchpad.net/~conky-companions";
SRC_URI="https://launchpad.net/~conky-companions/+archive/ppa/+files/${PN}_${PV}.tar.gz";

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

RDEPEND="app-admin/conky"

S=${WORKDIR}/src

python_prepare_all() {
sed -i -e "s:pythoncmd=.*$:pythoncmd=${EPYTHON}:" conkyForecast* || die

distutils-r1_python_prepare_all
}

python_install() {
distutils-r1_python_install

python_optimize "${ED%/}"/usr/share/${PN}
}

pkg_postinst() {
elog "You have to define a partner id and registration code for "
elog "the weather.com xoap. You need to copy the template from"
elog "/usr/share/conkyforecast/conkyForecast.config into you account"
elog "as ~/.conkyForecast.config and edit the respective fields."
elog
elog "More details can be found in the README file."
}






[gentoo-commits] gentoo-x86 commit in app-admin/checkrestart: checkrestart-0.47-r3.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/14 23:01:28

  Modified: ChangeLog
  Added:checkrestart-0.47-r3.ebuild
  Log:
  Convert to python-single-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.6  app-admin/checkrestart/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/checkrestart/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/checkrestart/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/checkrestart/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/checkrestart/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   19 Jan 2014 16:21:39 -  1.5
+++ ChangeLog   14 Dec 2014 23:01:28 -  1.6
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/checkrestart
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/checkrestart/ChangeLog,v 1.5 
2014/01/19 16:21:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/checkrestart/ChangeLog,v 1.6 
2014/12/14 23:01:28 mgorny Exp $
+
+*checkrestart-0.47-r3 (14 Dec 2014)
+
+  14 Dec 2014; Michał Górny  +checkrestart-0.47-r3.ebuild:
+  Convert to python-single-r1.
 
   19 Jan 2014; Markus Meier  checkrestart-0.47-r2.ebuild:
   add ~arm, bug #496906
@@ -27,4 +32,3 @@
   20 Nov 2008; Jeroen Roovers  +metadata.xml,
   +checkrestart-0.47.ebuild:
   Initial commit.
-



1.1  app-admin/checkrestart/checkrestart-0.47-r3.ebuild

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

Index: checkrestart-0.47-r3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/checkrestart/checkrestart-0.47-r3.ebuild,v 
1.1 2014/12/14 23:01:28 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit eutils python-single-r1

DESCRIPTION="the sysadmin's rolling upgrade tool"
HOMEPAGE="http://arcdraco.net/checkrestart";
SRC_URI="http://arcdraco.net/~dragon/${P}-sep.tar.bz2";

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

RDEPEND="
${PYTHON_DEPS}
sys-apps/lsb-release
app-portage/portage-utils
sys-process/lsof
"

REQUIRED_USE=${PYTHON_REQUIRED_USE}

S=${WORKDIR}

src_prepare() {
epatch "${FILESDIR}"/${P}-list-comprehension-fix.patch
python_fix_shebang ${PN}
}

src_install() {
dosbin ${PN}
}






[gentoo-commits] gentoo-x86 commit in dev-perl/boolean: ChangeLog boolean-0.420.0.ebuild boolean-0.320.0.ebuild

2014-12-14 Thread Andreas HAttel (dilfridge)
dilfridge14/12/14 22:54:26

  Modified: ChangeLog
  Added:boolean-0.420.0.ebuild
  Removed:  boolean-0.320.0.ebuild
  Log:
  Version bump, fixes also bug 527272
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EBE6A336BE19039C!)

Revision  ChangesPath
1.16 dev-perl/boolean/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/boolean/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   29 Aug 2014 05:57:47 -  1.15
+++ ChangeLog   14 Dec 2014 22:54:26 -  1.16
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/boolean
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/boolean/ChangeLog,v 1.15 
2014/08/29 05:57:47 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/boolean/ChangeLog,v 1.16 
2014/12/14 22:54:26 dilfridge Exp $
+
+*boolean-0.420.0 (14 Dec 2014)
+
+  14 Dec 2014; Andreas K. Huettel 
+  -boolean-0.320.0.ebuild, +boolean-0.420.0.ebuild:
+  Version bump, fixes also bug 527272
 
   29 Aug 2014; Mikle Kolyada  -boolean-0.280.0.ebuild,
   -boolean-0.300.0.ebuild:



1.1  dev-perl/boolean/boolean-0.420.0.ebuild

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

Index: boolean-0.420.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/boolean/boolean-0.420.0.ebuild,v 
1.1 2014/12/14 22:54:26 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=INGY
MODULE_VERSION=0.42
inherit perl-module

DESCRIPTION="Boolean support for Perl"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND=""
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/JSON
)
"

SRC_TEST=do






[gentoo-commits] proj/gnome:master commit in: dev-util/gdbus-codegen/

2014-12-14 Thread Gilles Dartiguelongue
commit: 1cd3a8722dd40329e46e5f516251171d11d46e5b
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:37:24 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:40 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=1cd3a872

dev-util/gdbus-codegen: moved to gentoo-x86

---
 dev-util/gdbus-codegen/gdbus-codegen-2.42.1.ebuild | 49 --
 1 file changed, 49 deletions(-)

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.42.1.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.42.1.ebuild
deleted file mode 100644
index a5b8798..000
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.42.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GNOME_ORG_MODULE="glib"
-PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
-PYTHON_REQ_USE="xml"
-
-inherit eutils gnome.org distutils-r1
-
-DESCRIPTION="GDBus code and documentation generator"
-HOMEPAGE="http://www.gtk.org/";
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~x64-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-# To prevent circular dependencies with glib[test]
-PDEPEND=">=dev-libs/glib-${PV}:2"
-
-S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
-
-python_prepare_all() {
-   PATCHES=(
-   "${FILESDIR}/${PN}-2.40.0-sitedir.patch"
-   )
-   distutils-r1_python_prepare_all
-   sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
-   -i config.py || die "sed config.py failed"
-
-   sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > 
gdbus-codegen || die
-   cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
-   sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
-}
-
-src_test() {
-   einfo "Skipping tests. This package is tested by dev-libs/glib"
-   einfo "when merged with FEATURES=test"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all # no-op, but prevents QA warning
-   doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
-}



[gentoo-commits] proj/gnome:master commit in: x11-libs/gtk+/

2014-12-14 Thread Gilles Dartiguelongue
commit: 629e8bf04a43fc64ebcce23e1556b392e567c94c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 21:42:00 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:36 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=629e8bf0

x11-libs/gtk+: 3.14.5 → 3.14.6

---
 x11-libs/gtk+/{gtk+-3.14.5.ebuild => gtk+-3.14.6.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/x11-libs/gtk+/gtk+-3.14.5.ebuild b/x11-libs/gtk+/gtk+-3.14.6.ebuild
similarity index 100%
rename from x11-libs/gtk+/gtk+-3.14.5.ebuild
rename to x11-libs/gtk+/gtk+-3.14.6.ebuild



[gentoo-commits] proj/gnome:master commit in: app-accessibility/at-spi2-atk/

2014-12-14 Thread Gilles Dartiguelongue
commit: 2568fba0eaa51d56011db5d2e2a6b8d50d48eb1d
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:26:49 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:37 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=2568fba0

app-accessibility/at-spi2-atk: moved to gentoo-x86, sync live ebuild

---
 .../at-spi2-atk/at-spi2-atk-2.14.1.ebuild  | 38 --
 .../at-spi2-atk/at-spi2-atk-.ebuild| 26 ++-
 2 files changed, 17 insertions(+), 47 deletions(-)

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild 
b/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild
deleted file mode 100644
index 7ff6288..000
--- a/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils gnome2 virtualx
-
-DESCRIPTION="Gtk module for bridging AT-SPI to Atk"
-HOMEPAGE="http://live.gnome.org/Accessibility";
-
-LICENSE="LGPL-2+"
-SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
-IUSE=""
-
-COMMON_DEPEND="
-   >=app-accessibility/at-spi2-core-2.11.2
-   >=dev-libs/atk-2.11.90
-   >=dev-libs/glib-2.32:2
-   >=sys-apps/dbus-1.5
-"
-RDEPEND="${COMMON_DEPEND}
-   !

[gentoo-commits] proj/gnome:master commit in: x11-libs/gtk+/

2014-12-14 Thread Gilles Dartiguelongue
commit: 4ded56b4dd158ee154e929f4f5d77a1117e2bf0d
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:43:06 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:42 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=4ded56b4

x11-libs/gtk+: moved to gentoo-x86, sync live ebuild

---
 x11-libs/gtk+/gtk+-3.14.6.ebuild | 246 ---
 x11-libs/gtk+/gtk+-.ebuild   |   8 ++
 2 files changed, 8 insertions(+), 246 deletions(-)

diff --git a/x11-libs/gtk+/gtk+-3.14.6.ebuild b/x11-libs/gtk+/gtk+-3.14.6.ebuild
deleted file mode 100644
index 98e6e47..000
--- a/x11-libs/gtk+/gtk+-3.14.6.ebuild
+++ /dev/null
@@ -1,246 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils flag-o-matic autotools gnome2 multilib virtualx multilib-minimal
-
-DESCRIPTION="Gimp ToolKit +"
-HOMEPAGE="http://www.gtk.org/";
-
-LICENSE="LGPL-2+"
-SLOT="3"
-# NOTE: This gtk+ has multi-gdk-backend support, see:
-#  * http://blogs.gnome.org/kris/2010/12/29/gdk-3-0-on-mac-os-x/
-#  * http://mail.gnome.org/archives/gtk-devel-list/2010-November/msg00099.html
-# I tried this and got it all compiling, but the end result is unusable as it
-# horribly mixes up the backends -- grobian
-IUSE="aqua cloudprint colord cups debug examples +introspection test 
vim-syntax wayland X xinerama"
-REQUIRED_USE="
-   || ( aqua wayland X )
-   xinerama? ( X )
-"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
-
-# FIXME: introspection data is built against system installation of gtk+:3
-# NOTE: cairo[svg] dep is due to bug 291283 (not patched to avoid eautoreconf)
-# Use gtk+:2 for gtk-update-icon-cache
-COMMON_DEPEND="
-   >=dev-libs/atk-2.12[introspection?,${MULTILIB_USEDEP}]
-   >=dev-libs/glib-2.41.2:2[${MULTILIB_USEDEP}]
-   media-libs/fontconfig[${MULTILIB_USEDEP}]
-   >=x11-libs/cairo-1.12[aqua?,glib,svg,X?,${MULTILIB_USEDEP}]
-   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,X?,${MULTILIB_USEDEP}]
-   >=x11-libs/gtk+-2.24:2[${MULTILIB_USEDEP}]
-   >=x11-libs/pango-1.36.7[introspection?,${MULTILIB_USEDEP}]
-   x11-misc/shared-mime-info
-
-   cloudprint? (
-   >=net-libs/rest-0.7[${MULTILIB_USEDEP}]
-   >=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] )
-   colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] )
-   cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.39 )
-   wayland? (
-   >=dev-libs/wayland-1.5.91[${MULTILIB_USEDEP}]
-   media-libs/mesa[wayland,${MULTILIB_USEDEP}]
-   >=x11-libs/libxkbcommon-0.2[${MULTILIB_USEDEP}]
-   )
-   X? (
-   >=app-accessibility/at-spi2-atk-2.5.3[${MULTILIB_USEDEP}]
-   x11-libs/libXrender[${MULTILIB_USEDEP}]
-   x11-libs/libX11[${MULTILIB_USEDEP}]
-   >=x11-libs/libXi-1.3[${MULTILIB_USEDEP}]
-   x11-libs/libXext[${MULTILIB_USEDEP}]
-   >=x11-libs/libXrandr-1.3[${MULTILIB_USEDEP}]
-   x11-libs/libXcursor[${MULTILIB_USEDEP}]
-   x11-libs/libXfixes[${MULTILIB_USEDEP}]
-   x11-libs/libXcomposite[${MULTILIB_USEDEP}]
-   x11-libs/libXdamage[${MULTILIB_USEDEP}]
-   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xsl-stylesheets
-   app-text/docbook-xml-dtd:4.1.2
-   dev-libs/libxslt
-   dev-util/gdbus-codegen
-   >=dev-util/gtk-doc-am-1.20
-   sys-devel/gettext
-   virtual/pkgconfig[${MULTILIB_USEDEP}]
-   X? (
-   x11-proto/xextproto[${MULTILIB_USEDEP}]
-   x11-proto/xproto[${MULTILIB_USEDEP}]
-   x11-proto/inputproto[${MULTILIB_USEDEP}]
-   x11-proto/damageproto[${MULTILIB_USEDEP}]
-   xinerama? ( x11-proto/xineramaproto[${MULTILIB_USEDEP}] )
-   )
-   test? (
-   media-fonts/font-misc-misc
-   media-fonts/font-cursor-misc )
-"
-# gtk+-3.2.2 breaks Alt key handling in <=x11-libs/vte-0.30.1:2.90
-# gtk+-3.3.18 breaks scrolling in <=x11-libs/vte-0.31.0:2.90
-# >=xorg-server-1.11.4 needed for
-#  http://mail.gnome.org/archives/desktop-devel-list/2012-March/msg00024.html
-RDEPEND="${COMMON_DEPEND}
-   !https://bugzilla.gnome.org/show_bug.cgi?id=669562
-   if ! has_version '>=x11-themes/gnome-themes-standard-3.6[gtk]'; then
-   ewarn "Tests will be skipped because 
>=gnome-themes-standard-3.6[gtk]"
-   ewarn "is not installed. Plea

[gentoo-commits] proj/gnome:master commit in: app-accessibility/at-spi2-core/

2014-12-14 Thread Gilles Dartiguelongue
commit: 1d20cd3f917455d09c8b63f26ecfda422711be74
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:27:41 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:38 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=1d20cd3f

app-accessibility/at-spi2-core: moved to gentoo-x86, sync live ebuild

---
 .../at-spi2-core/at-spi2-core-2.14.1.ebuild| 59 --
 .../at-spi2-core/at-spi2-core-.ebuild  | 12 +++--
 2 files changed, 9 insertions(+), 62 deletions(-)

diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild 
b/app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild
deleted file mode 100644
index 026f7de..000
--- a/app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils gnome2 multilib-minimal
-
-DESCRIPTION="D-Bus accessibility specifications and registration daemon"
-HOMEPAGE="http://live.gnome.org/Accessibility";
-
-LICENSE="LGPL-2+"
-SLOT="2"
-IUSE="+X +introspection"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
-
-# x11-libs/libSM is needed until upstream #719808 is solved either
-# making the dep unneeded or fixing their configure
-# Only libX11 is optional right now
-RDEPEND="
-   >=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}]
-   >=sys-apps/dbus-1[${MULTILIB_USEDEP}]
-   x11-libs/libSM[${MULTILIB_USEDEP}]
-   x11-libs/libXi[${MULTILIB_USEDEP}]
-   x11-libs/libXtst[${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
-   X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.9
-   >=dev-util/intltool-0.40
-   virtual/pkgconfig[${MULTILIB_USEDEP}]
-"
-
-src_prepare() {
-   # disable teamspaces test since that requires Novell.ICEDesktop.Daemon
-   epatch "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch"
-
-   gnome2_src_prepare
-}
-
-multilib_src_configure() {
-   # xevie is deprecated/broken since xorg-1.6/1.7
-   ECONF_SOURCE=${S} \
-   gnome2_src_configure \
-   --disable-xevie \
-   $(multilib_native_use_enable introspection) \
-   $(use_enable X x11)
-
-   # work-around gtk-doc out-of-source brokedness
-   if multilib_is_native_abi; then
-   ln -s "${S}"/doc/libatspi/html doc/libatspi/html || die
-   fi
-}
-
-multilib_src_compile() { gnome2_src_compile; }
-multilib_src_install() { gnome2_src_install; }

diff --git a/app-accessibility/at-spi2-core/at-spi2-core-.ebuild 
b/app-accessibility/at-spi2-core/at-spi2-core-.ebuild
index cab81ab..53e8d14 100644
--- a/app-accessibility/at-spi2-core/at-spi2-core-.ebuild
+++ b/app-accessibility/at-spi2-core/at-spi2-core-.ebuild
@@ -21,13 +21,13 @@ if [[ ${PV} =  ]]; then
KEYWORDS=""
IUSE="${IUSE} doc"
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
 fi
 
 # x11-libs/libSM is needed until upstream #719808 is solved either
 # making the dep unneeded or fixing their configure
 # Only libX11 is optional right now
-RDEPEND="
+COMMON_DEPEND="
>=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}]
>=sys-apps/dbus-1[${MULTILIB_USEDEP}]
x11-libs/libSM[${MULTILIB_USEDEP}]
@@ -36,7 +36,13 @@ RDEPEND="
introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
 "
-DEPEND="${RDEPEND}
+RDEPEND="${COMMON_DEPEND}
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-gtklibs-20140508-r3
+   !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
+   )
+"
+DEPEND="${COMMON_DEPEND}
>=dev-util/gtk-doc-am-1.9
>=dev-util/intltool-0.40
virtual/pkgconfig[${MULTILIB_USEDEP}]



[gentoo-commits] proj/gnome:master commit in: app-accessibility/orca/

2014-12-14 Thread Gilles Dartiguelongue
commit: 918bf23b4dfd0a9d742bb16f438c2be3d7aedc83
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:27:55 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:39 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=918bf23b

app-accessibility/orca: moved to gentoo-x86

---
 app-accessibility/orca/orca-3.14.3.ebuild | 78 ---
 1 file changed, 78 deletions(-)

diff --git a/app-accessibility/orca/orca-3.14.3.ebuild 
b/app-accessibility/orca/orca-3.14.3.ebuild
deleted file mode 100644
index 0ef0602..000
--- a/app-accessibility/orca/orca-3.14.3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-3.12.2.ebuild,v 
1.3 2014/07/23 15:12:57 ago Exp $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python3_3 )
-PYTHON_REQ_USE="threads"
-
-inherit gnome2 python-r1
-
-DESCRIPTION="Extensible screen reader that provides access to the desktop"
-HOMEPAGE="https://wiki.gnome.org/Projects/Orca";
-
-LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-
-IUSE="+braille"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# liblouis is not in portage yet
-# it is used to provide contracted braille support
-# XXX: Check deps for correctness
-COMMON_DEPEND="
-   >=app-accessibility/at-spi2-atk-2.10:2
-   >=app-accessibility/at-spi2-core-2.10:2[introspection]
-   >=dev-libs/atk-2.10
-   >=dev-libs/glib-2.28:2
-   >=dev-python/pygobject-3.10:3[${PYTHON_USEDEP}]
-   >=x11-libs/gtk+-3.6.2:3[introspection]
-   braille? (
-   >=app-accessibility/brltty-5.0-r3[${PYTHON_USEDEP}]
-   dev-libs/liblouis[python,${PYTHON_USEDEP}] )
-   ${PYTHON_DEPS}
-"
-RDEPEND="${COMMON_DEPEND}
-   >=app-accessibility/speech-dispatcher-0.8[python,${PYTHON_USEDEP}]
-   dev-libs/atk[introspection]
-   dev-python/pyatspi[${PYTHON_USEDEP}]
-   dev-python/setproctitle[${PYTHON_USEDEP}]
-   x11-libs/libwnck:3[introspection]
-   x11-libs/pango[introspection]
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.50
-   virtual/pkgconfig
-"
-#  app-text/yelp-tools
-
-src_prepare() {
-   gnome2_src_prepare
-
-   python_copy_sources
-}
-
-src_configure() {
-   python_foreach_impl run_in_build_dir gnome2_src_configure \
-   ITSTOOL="$(type -P true)" \
-   $(use_with braille liblouis)
-}
-
-src_compile() {
-   python_foreach_impl run_in_build_dir gnome2_src_compile
-}
-
-src_install() {
-   DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README TODO"
-   installing() {
-   gnome2_src_install
-   # Massage shebang to make python_doscript happy
-   sed -e 's:#!'"${PYTHON}:#!/usr/bin/python:" \
-   -i src/orca/orca || die
-   python_doscript src/orca/orca
-   }
-   python_foreach_impl run_in_build_dir installing
-}



[gentoo-commits] proj/gnome:master commit in: dev-vcs/gitg/

2014-12-14 Thread Gilles Dartiguelongue
commit: 0b7898eba5d805e46164bd3b13ce77b85cd4465c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 21:37:17 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:35 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=0b7898eb

dev-vcs/gitg: 3.14.0 → 3.14.1

---
 dev-vcs/gitg/{gitg-3.14.0.ebuild => gitg-3.14.1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-vcs/gitg/gitg-3.14.0.ebuild b/dev-vcs/gitg/gitg-3.14.1.ebuild
similarity index 100%
rename from dev-vcs/gitg/gitg-3.14.0.ebuild
rename to dev-vcs/gitg/gitg-3.14.1.ebuild



[gentoo-commits] proj/gnome:master commit in: app-accessibility/accerciser/

2014-12-14 Thread Gilles Dartiguelongue
commit: a0ae8df4fd27af7ac523a2f172da0353ab5fe5b8
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:24:52 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:37 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=a0ae8df4

app-accessibility/accerciser: moved to gentoo-x86

---
 .../accerciser/accerciser-3.14.0.ebuild| 67 --
 1 file changed, 67 deletions(-)

diff --git a/app-accessibility/accerciser/accerciser-3.14.0.ebuild 
b/app-accessibility/accerciser/accerciser-3.14.0.ebuild
deleted file mode 100644
index 9e14168..000
--- a/app-accessibility/accerciser/accerciser-3.14.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-PYTHON_COMPAT=( python{3_2,3_3} )
-PYTHON_REQ_USE="xml"
-
-inherit gnome2 python-r1
-
-DESCRIPTION="Interactive Python accessibility explorer"
-HOMEPAGE="http://live.gnome.org/Accerciser";
-
-LICENSE="BSD CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.5.2:2
-   >=dev-python/pygobject-2.90.3:3[${PYTHON_USEDEP}]
-   >=x11-libs/gtk+-3.1.13:3[introspection]
-
-   dev-libs/atk[introspection]
-   >=dev-libs/glib-2.28:2
-   dev-libs/gobject-introspection
-   >=dev-python/ipython-0.11[${PYTHON_USEDEP}]
-   >=dev-python/pyatspi-2.1.5[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   x11-libs/gdk-pixbuf[introspection]
-   x11-libs/libwnck:3[introspection]
-   x11-libs/pango[introspection]
-   ${PYTHON_DEPS}
-"
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.35
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   gnome2_src_prepare
-
-   # Leave shebang alone
-   sed 's:@PYTHON@:/usr/bin/python:' -i src/accerciser.in || die
-
-   python_copy_sources
-}
-
-src_configure() {
-   python_foreach_impl run_in_build_dir gnome2_src_configure \
-   ITSTOOL=$(type -P true)
-}
-
-src_compile() {
-   python_foreach_impl run_in_build_dir gnome2_src_compile
-}
-
-src_install() {
-   installing() {
-   gnome2_src_install
-   python_doscript src/accerciser
-   }
-   python_foreach_impl run_in_build_dir installing
-}



[gentoo-commits] proj/gnome:master commit in: app-arch/file-roller/

2014-12-14 Thread Gilles Dartiguelongue
commit: 12cc4094be740c831cac1ac82dbfdc45d6555e17
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:44:47 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:43 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=12cc4094

app-arch/file-roller: moved to gentoo-x86

---
 app-arch/file-roller/file-roller-3.14.2.ebuild | 99 --
 1 file changed, 99 deletions(-)

diff --git a/app-arch/file-roller/file-roller-3.14.2.ebuild 
b/app-arch/file-roller/file-roller-3.14.2.ebuild
deleted file mode 100644
index 8050ea6..000
--- a/app-arch/file-roller/file-roller-3.14.2.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils gnome2 readme.gentoo
-
-DESCRIPTION="Archive manager for GNOME"
-HOMEPAGE="http://fileroller.sourceforge.net/ 
https://wiki.gnome.org/Apps/FileRoller";
-
-LICENSE="GPL-2+ CC-BY-SA-3.0"
-SLOT="0"
-IUSE="nautilus packagekit"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux"
-
-# gdk-pixbuf used extensively in the source
-# cairo used in eggtreemultidnd.c
-# pango used in fr-window
-RDEPEND="
-   >=app-arch/libarchive-3:=
-   >=dev-libs/glib-2.36:2
-   >=dev-libs/json-glib-0.14
-   >=x11-libs/gtk+-3.13.2:3
-   >=x11-libs/libnotify-0.4.3:=
-   sys-apps/file
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/pango
-   nautilus? ( >=gnome-base/nautilus-3 )
-   packagekit? ( app-admin/packagekit-base )
-"
-DEPEND="${RDEPEND}
-   dev-util/desktop-file-utils
-   >=dev-util/intltool-0.40.0
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-# eautoreconf needs:
-#  gnome-base/gnome-common
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="
-${PN} is a frontend for several archiving utilities. If you want a
-particular archive format support, see ${HOMEPAGE}
-and install the relevant package. For example:
-7-zip   - app-arch/p7zip
-ace - app-arch/unace
-arj - app-arch/arj
-cpio- app-arch/cpio
-deb - app-arch/dpkg
-iso - app-cdr/cdrtools
-jar,zip - app-arch/zip and app-arch/unzip
-lha - app-arch/lha
-lzop- app-arch/lzop
-rar - app-arch/unrar or app-arch/unar
-rpm - app-arch/rpm
-unstuff - app-arch/stuffit
-zoo - app-arch/zoo"
-
-src_prepare() {
-   # Use absolute path to GNU tar since star doesn't have the same
-   # options. On Gentoo, star is /usr/bin/tar, GNU tar is /bin/tar
-   epatch "${FILESDIR}"/${PN}-2.10.3-use_bin_tar.patch
-
-   # File providing Gentoo package names for various archivers
-   cp -f "${FILESDIR}/3.6.0-packages.match" data/packages.match || die
-
-   gnome2_src_prepare
-}
-
-src_configure() {
-   DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* TODO"
-   # --disable-debug because enabling it adds -O0 to CFLAGS
-   gnome2_src_configure \
-   --disable-run-in-place \
-   --disable-static \
-   --disable-debug \
-   --enable-magic \
-   --enable-libarchive \
-   --with-smclient=xsmp \
-   $(use_enable nautilus nautilus-actions) \
-   $(use_enable packagekit) \
-   ITSTOOL=$(type -P true)
-}
-
-src_install() {
-   gnome2_src_install
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   readme.gentoo_print_elog
-}



[gentoo-commits] proj/gnome:master commit in: dev-libs/glib/

2014-12-14 Thread Gilles Dartiguelongue
commit: a8a04bf74f655d88a646ffd07bb6cca98c6a7fc1
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 22:37:49 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:40 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=a8a04bf7

dev-libs/glib: moved to gentoo-x86

---
 dev-libs/glib/glib-2.42.1.ebuild | 273 ---
 dev-libs/glib/glib-.ebuild   |   2 +-
 2 files changed, 1 insertion(+), 274 deletions(-)

diff --git a/dev-libs/glib/glib-2.42.1.ebuild b/dev-libs/glib/glib-2.42.1.ebuild
deleted file mode 100644
index fbaa8d3..000
--- a/dev-libs/glib/glib-2.42.1.ebuild
+++ /dev/null
@@ -1,273 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-PYTHON_COMPAT=( python2_{6,7} )
-# Building with --disable-debug highly unrecommended.  It will build glib in
-# an unusable form as it disables some commonly used API.  Please do not
-# convert this to the use_enable form, as it results in a broken build.
-GCONF_DEBUG="yes"
-# Completely useless with or without USE static-libs, people need to use
-# pkg-config
-GNOME2_LA_PUNT="yes"
-
-inherit autotools bash-completion-r1 gnome2 libtool eutils flag-o-matic
multilib \
-   pax-utils python-r1 toolchain-funcs versionator virtualx linux-info 
multilib-minimal
-
-DESCRIPTION="The GLib library of C routines"
-HOMEPAGE="http://www.gtk.org/";
-SRC_URI="${SRC_URI}
-   http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz"; # 
pkg.m4 for eautoreconf
-
-LICENSE="LGPL-2+"
-SLOT="2"
-IUSE="fam kernel_linux +mime selinux static-libs systemtap test utils xattr"
-REQUIRED_USE="
-   utils? ( ${PYTHON_REQUIRED_USE} )
-   test? ( ${PYTHON_REQUIRED_USE} )
-"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
-
-RDEPEND="
-   !=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
-   >=virtual/libffi-3.0.13-r1[${MULTILIB_USEDEP}]
-   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   || (
-   >=dev-libs/elfutils-0.142
-   >=dev-libs/libelf-0.8.12
-   >=sys-freebsd/freebsd-lib-9.2_rc1
-   )
-   selinux? ( >=sys-libs/libselinux-2.2.2-r5[${MULTILIB_USEDEP}] )
-   xattr? ( >=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] )
-   fam? ( >=virtual/fam-0-r1[${MULTILIB_USEDEP}] )
-   utils? (
-   ${PYTHON_DEPS}
-   >=dev-util/gdbus-codegen-${PV}[${PYTHON_USEDEP}] )
-   abi_x86_32? (
-   !<=app-emulation/emul-linux-x86-baselibs-20130224-r9
-   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
-   )
-"
-DEPEND="${RDEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   >=dev-libs/libxslt-1.0
-   >=sys-devel/gettext-0.11
-   >=dev-util/gtk-doc-am-1.20
-   systemtap? ( >=dev-util/systemtap-1.3 )
-   test? (
-   sys-devel/gdb
-   ${PYTHON_DEPS}
-   >=dev-util/gdbus-codegen-${PV}[${PYTHON_USEDEP}]
-   >=sys-apps/dbus-1.2.14 )
-   !& 
/dev/null; then
-   if has_version sys-apps/dbus; then
-   export DBUS1_CFLAGS="-I/usr/include/dbus-1.0 
-I/usr/$(get_libdir)/dbus-1.0/include"
-   export DBUS1_LIBS="-ldbus-1"
-   fi
-   export LIBFFI_CFLAGS="-I$(echo 
/usr/$(get_libdir)/libffi-*/include)"
-   export LIBFFI_LIBS="-lffi"
-   fi
-
-   local myconf
-
-   case "${CHOST}" in
-   *-mingw*) myconf="${myconf} --with-threads=win32" ;;
-   *)myconf="${myconf} --with-threads=posix" ;;
-   esac
-
-   # Only used by the gresource bin
-   multilib_is_native_abi || myconf="${myconf} --disable-libelf"
-
-   # Always use internal libpcre, bug #254659
-   ECONF_SOURCE="${S}" gnome2_src_configure ${myconf} \
-   $(use_enable xattr) \
-   $(use_enable fam) \
-   $(use_enable selinux) \
-   $(use_enable static-libs static) \
-   $(use_enable systemtap dtrace) \
-   $(use_enable systemtap systemtap) \
-   --disable-compile-warnings \
-   --enable-man \
-   --with-pcre=internal \
-   --with-xml-catalog="${EPREFIX}/etc/xml/catalog"
-
-   if multilib_is_native_abi; then
-   local d
-   for d in glib gio gobject; do
-   ln -s "${S}"/docs/reference/${d}/html 
docs/reference/${d}/html || die
-   done
-   fi
-}
-
-multilib_src_test() {
-   unset DBUS_SESSION_BUS_ADDRESS
-   export XDG_CONFIG_DIRS=/etc/xdg
-   export XDG_DATA_DIRS=/usr/local/share:/usr/share
-   export G_DBUS_COOKIE_SHA1_KEYRING_DIR="${T}/temp"
-   unset GSETTINGS_BA

[gentoo-commits] proj/gnome:master commit in: gnome-extra/nautilus-tracker-tags/

2014-12-14 Thread Gilles Dartiguelongue
commit: 3e400f7bed5bb187071f0bda712683f3d3574353
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 21:33:52 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:24 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=3e400f7b

gnome-extra/nautilus-tracker-tags: 1.2.4 → 1.2.5

---
 ...tilus-tracker-tags-1.2.4.ebuild => nautilus-tracker-tags-1.2.5.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.2.4.ebuild 
b/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.2.5.ebuild
similarity index 100%
rename from gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.2.4.ebuild
rename to gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.2.5.ebuild



[gentoo-commits] proj/gnome:master commit in: app-misc/tracker/

2014-12-14 Thread Gilles Dartiguelongue
commit: b0d9d283eb77bcad623bec8797b39f9176de6321
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 21:33:29 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 21:33:29 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=b0d9d283

app-misc/tracker: 1.2.4 → 1.2.5

---
 .../tracker/{tracker-1.2.4.ebuild => tracker-1.2.5.ebuild}| 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/app-misc/tracker/tracker-1.2.4.ebuild 
b/app-misc/tracker/tracker-1.2.5.ebuild
similarity index 99%
rename from app-misc/tracker/tracker-1.2.4.ebuild
rename to app-misc/tracker/tracker-1.2.5.ebuild
index 22bdbdd..3d23341 100644
--- a/app-misc/tracker/tracker-1.2.4.ebuild
+++ b/app-misc/tracker/tracker-1.2.5.ebuild
@@ -34,7 +34,7 @@ REQUIRED_USE="
 RDEPEND="
>=app-i18n/enca-1.9
>=dev-db/sqlite-3.7.16:=
-   >=dev-libs/glib-2.38:2
+   >=dev-libs/glib-2.40:2
>=dev-libs/gobject-introspection-0.9.5
>=dev-libs/icu-4.8.1.1:=
|| (
@@ -173,17 +173,18 @@ src_configure() {
--enable-abiword \
--enable-artwork \
--enable-dvi \
+   --enable-enca \
+   --enable-guarantee-metadata \
--enable-icon \
-   --enable-ps \
-   --enable-text \
--enable-introspection \
-   --enable-libpng \
--enable-libmediaart \
+   --enable-libpng \
--enable-miner-apps \
--enable-miner-user-guides \
+   --enable-ps \
+   --enable-text \
--enable-tracker-fts \
--enable-tracker-writeback \
-   --enable-enca \
--with-unicode-support=libicu \
$(use_enable cue libcue) \
$(use_enable eds miner-evolution) \



[gentoo-commits] proj/gnome:master commit in: gnome-extra/california/

2014-12-14 Thread Gilles Dartiguelongue
commit: ec82fc55368acfdeaa8be01d9ac92ba18057163c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Dec 14 21:35:41 2014 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Dec 14 22:45:34 2014 +
URL:
http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=ec82fc55

gnome-extra/california: 0.2.0 → 0.3.0

---
 .../california/{california-0.2.0.ebuild => california-0.3.0.ebuild}  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnome-extra/california/california-0.2.0.ebuild 
b/gnome-extra/california/california-0.3.0.ebuild
similarity index 97%
rename from gnome-extra/california/california-0.2.0.ebuild
rename to gnome-extra/california/california-0.3.0.ebuild
index 7935c2d..6a11939 100644
--- a/gnome-extra/california/california-0.2.0.ebuild
+++ b/gnome-extra/california/california-0.3.0.ebuild
@@ -25,6 +25,7 @@ RDEPEND="
>=net-libs/libsoup-2.44:2.4
>=gnome-extra/evolution-data-server-3.8
>=x11-libs/gtk+-3.12.2:3
+   x11-misc/xdg-utils
 "
 DEPEND="${RDEPEND}
$(vala_depend)



[gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-2.1.2-r2.ebuild ChangeLog

2014-12-14 Thread Matthias Maier (tamiko)
tamiko  14/12/14 22:45:07

  Modified: ChangeLog
  Added:qemu-2.1.2-r2.ebuild
  Log:
  backport fixes for bugs #530498, #531666 (CVE-2014-8106), #529030 
(CVE-2014-7840), #528922 (528922)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
BD3A97A3)

Revision  ChangesPath
1.308app-emulation/qemu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.308&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.308&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.307&r2=1.308

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -r1.307 -r1.308
--- ChangeLog   14 Dec 2014 15:40:22 -  1.307
+++ ChangeLog   14 Dec 2014 22:45:07 -  1.308
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.307 
2014/12/14 15:40:22 tamiko Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.308 
2014/12/14 22:45:07 tamiko Exp $
+
+*qemu-2.1.2-r2 (14 Dec 2014)
+
+  14 Dec 2014; Matthias Maier  +qemu-2.1.2-r2.ebuild:
+  backport fixes for bugs #530498, #531666 (CVE-2014-8106), #529030
+  (CVE-2014-7840), #528922 (528922)
 
 *qemu-2.2.0 (14 Dec 2014)
 



1.1  app-emulation/qemu/qemu-2.1.2-r2.ebuild

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

Index: qemu-2.1.2-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-2.1.2-r2.ebuild,v 
1.1 2014/12/14 22:45:07 tamiko Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE="ncurses,readline"

inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
user udev fcaps readme.gentoo pax-utils

BACKPORTS="20141214"

if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="git://git.qemu.org/qemu.git"
inherit git-2
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.bz2
${BACKPORTS:+

http://dev.gentoo.org/~tamiko/distfiles/${P}-${BACKPORTS}.tar.xz}";
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
fi

DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org";

LICENSE="GPL-2 LGPL-2 BSD-2"
SLOT="0"
IUSE="accessibility +aio alsa bluetooth +caps +curl debug +fdt glusterfs \
gtk infiniband iscsi +jpeg \
kernel_linux kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs
+png pulseaudio python \
rbd sasl +seccomp sdl selinux smartcard snappy spice ssh static static-softmmu \
static-user systemtap tci test +threads tls usb usbredir +uuid vde +vhost-net \
virtfs +vnc xattr xen xfs"

COMMON_TARGETS="aarch64 alpha arm cris i386 m68k microblaze microblazeel mips
mips64 mips64el mipsel or32 ppc ppc64 s390x sh4 sh4eb sparc sparc64 unicore32
x86_64"
IUSE_SOFTMMU_TARGETS="${COMMON_TARGETS} lm32 moxie ppcemb xtensa xtensaeb"
IUSE_USER_TARGETS="${COMMON_TARGETS} armeb mipsn32 mipsn32el ppc64abi32 
sparc32plus"

use_targets="
$(printf ' qemu_softmmu_targets_%s' ${IUSE_SOFTMMU_TARGETS})
$(printf ' qemu_user_targets_%s' ${IUSE_USER_TARGETS})
"
IUSE+=" ${use_targets}"

# Require at least one softmmu or user target.
# Block USE flag configurations known to not work.
REQUIRED_USE="|| ( ${use_targets} )
${PYTHON_REQUIRED_USE}
qemu_softmmu_targets_arm? ( fdt )
qemu_softmmu_targets_microblaze? ( fdt )
qemu_softmmu_targets_ppc? ( fdt )
qemu_softmmu_targets_ppc64? ( fdt )
static? ( static-softmmu static-user )
static-softmmu? ( !alsa !pulseaudio !bluetooth !opengl !gtk )
virtfs? ( xattr )"

# Yep, you need both libcap and libcap-ng since virtfs only uses libcap.
#
# The attr lib isn't always linked in (although the USE flag is always
# respected).  This is because qemu supports using the C library's API
# when available rather than always using the extranl library.
COMMON_LIB_DEPEND=">=dev-libs/glib-2.0[static-libs(+)]
sys-libs/zlib[static-l

[gentoo-commits] gentoo-x86 commit in x11-libs/gtk+/files: gtk+-non-bash-support.patch

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:42:54

  Added:gtk+-non-bash-support.patch
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.1  x11-libs/gtk+/files/gtk+-non-bash-support.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+/files/gtk+-non-bash-support.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+/files/gtk+-non-bash-support.patch?rev=1.1&content-type=text/plain

Index: gtk+-non-bash-support.patch
===
>From c8ef010024db794e25ca58ef3c02663de685f1bb Mon Sep 17 00:00:00 2001
From: Alexander Tsoy 
Date: Sun, 26 Oct 2014 01:59:33 +0400
Subject: [PATCH] gtk/Makefile.am: improve portability of ECHO

---
 gtk/Makefile.am | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index f60bec8..e923940 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -19,11 +19,7 @@ GTK_PRINT_PREVIEW_COMMAND="evince --unlink-tempfile 
--preview --print-settings %
 endif
 
 SUBDIRS = inspector native .
-if OS_DARWIN
-  ECHO="echo"
-else
-  ECHO=echo -e
-endif
+ECHO=printf '%b\n'
 
 if HAVE_CLOUDPRINT
 if HAVE_PAPI_CUPS
-- 
2.0.4







[gentoo-commits] gentoo-x86 commit in x11-libs/gtk+: ChangeLog gtk+-3.14.6.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:42:54

  Modified: ChangeLog
  Added:gtk+-3.14.6.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.743x11-libs/gtk+/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v
retrieving revision 1.742
retrieving revision 1.743
diff -u -r1.742 -r1.743
--- ChangeLog   12 Dec 2014 11:59:02 -  1.742
+++ ChangeLog   14 Dec 2014 22:42:54 -  1.743
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/gtk+
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.742 2014/12/12 
11:59:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.743 2014/12/14 
22:42:54 eva Exp $
+
+*gtk+-3.14.6 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue  +gtk+-3.14.6.ebuild,
+  +files/gtk+-non-bash-support.patch:
+  Version bump for Gnome 3.14.
 
   12 Dec 2014; Jeroen Roovers  gtk+-2.24.25.ebuild:
   Stable for HPPA (bug #529964).



1.1  x11-libs/gtk+/gtk+-3.14.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+/gtk+-3.14.6.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+/gtk+-3.14.6.ebuild?rev=1.1&content-type=text/plain

Index: gtk+-3.14.6.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-3.14.6.ebuild,v 1.1 
2014/12/14 22:42:54 eva Exp $

EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"

inherit eutils flag-o-matic autotools gnome2 multilib virtualx multilib-minimal

DESCRIPTION="Gimp ToolKit +"
HOMEPAGE="http://www.gtk.org/";

LICENSE="LGPL-2+"
SLOT="3"
# NOTE: This gtk+ has multi-gdk-backend support, see:
#  * http://blogs.gnome.org/kris/2010/12/29/gdk-3-0-on-mac-os-x/
#  * http://mail.gnome.org/archives/gtk-devel-list/2010-November/msg00099.html
# I tried this and got it all compiling, but the end result is unusable as it
# horribly mixes up the backends -- grobian
IUSE="aqua cloudprint colord cups debug examples +introspection test vim-syntax 
wayland X xinerama"
REQUIRED_USE="
|| ( aqua wayland X )
xinerama? ( X )
"

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"

# FIXME: introspection data is built against system installation of gtk+:3
# NOTE: cairo[svg] dep is due to bug 291283 (not patched to avoid eautoreconf)
# Use gtk+:2 for gtk-update-icon-cache
COMMON_DEPEND="
>=dev-libs/atk-2.12[introspection?,${MULTILIB_USEDEP}]
>=dev-libs/glib-2.41.2:2[${MULTILIB_USEDEP}]
media-libs/fontconfig[${MULTILIB_USEDEP}]
>=x11-libs/cairo-1.12[aqua?,glib,svg,X?,${MULTILIB_USEDEP}]
>=x11-libs/gdk-pixbuf-2.30:2[introspection?,X?,${MULTILIB_USEDEP}]
>=x11-libs/gtk+-2.24:2[${MULTILIB_USEDEP}]
>=x11-libs/pango-1.36.7[introspection?,${MULTILIB_USEDEP}]
x11-misc/shared-mime-info

cloudprint? (
>=net-libs/rest-0.7[${MULTILIB_USEDEP}]
>=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] )
colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] )
cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] )
introspection? ( >=dev-libs/gobject-introspection-1.39 )
wayland? (
>=dev-libs/wayland-1.5.91[${MULTILIB_USEDEP}]
media-libs/mesa[wayland,${MULTILIB_USEDEP}]
>=x11-libs/libxkbcommon-0.2[${MULTILIB_USEDEP}]
)
X? (
>=app-accessibility/at-spi2-atk-2.5.3[${MULTILIB_USEDEP}]
x11-libs/libXrender[${MULTILIB_USEDEP}]
x11-libs/libX11[${MULTILIB_USEDEP}]
>=x11-libs/libXi-1.3[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
>=x11-libs/libXrandr-1.3[${MULTILIB_USEDEP}]
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXfixes[${MULTILIB_USEDEP}]
x11-libs/libXcomposite[${MULTILIB_USEDEP}]
x11-libs/libXdamage[${MULTILIB_USEDEP}]
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
)
"
DEPEND="${COMMON_DEPEND}
  

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

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:37:29

  Modified: ChangeLog
  Added:glib-2.42.1.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.627dev-libs/glib/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
retrieving revision 1.626
retrieving revision 1.627
diff -u -r1.626 -r1.627
--- ChangeLog   12 Dec 2014 11:47:17 -  1.626
+++ ChangeLog   14 Dec 2014 22:37:29 -  1.627
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/glib
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.626 2014/12/12 
11:47:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.627 2014/12/14 
22:37:29 eva Exp $
+
+*glib-2.42.1 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue  +glib-2.42.1.ebuild:
+  Version bump for Gnome 3.14.
 
   12 Dec 2014; Jeroen Roovers  glib-2.40.2.ebuild:
   Stable for HPPA (bug #529964).



1.1  dev-libs/glib/glib-2.42.1.ebuild

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

Index: glib-2.42.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.42.1.ebuild,v 1.1 
2014/12/14 22:37:29 eva Exp $

EAPI="5"
PYTHON_COMPAT=( python2_7 )
# Building with --disable-debug highly unrecommended.  It will build glib in
# an unusable form as it disables some commonly used API.  Please do not
# convert this to the use_enable form, as it results in a broken build.
GCONF_DEBUG="yes"
# Completely useless with or without USE static-libs, people need to use
# pkg-config
GNOME2_LA_PUNT="yes"

inherit autotools bash-completion-r1 gnome2 libtool eutils flag-o-matic 
multilib \
pax-utils python-r1 toolchain-funcs versionator virtualx linux-info 
multilib-minimal

DESCRIPTION="The GLib library of C routines"
HOMEPAGE="http://www.gtk.org/";
SRC_URI="${SRC_URI}
http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz"; # 
pkg.m4 for eautoreconf

LICENSE="LGPL-2+"
SLOT="2"
IUSE="fam kernel_linux +mime selinux static-libs systemtap test utils xattr"
REQUIRED_USE="
utils? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )
"

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

RDEPEND="
!=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
>=virtual/libffi-3.0.13-r1[${MULTILIB_USEDEP}]
>=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
|| (
>=dev-libs/elfutils-0.142
>=dev-libs/libelf-0.8.12
>=sys-freebsd/freebsd-lib-9.2_rc1
)
selinux? ( >=sys-libs/libselinux-2.2.2-r5[${MULTILIB_USEDEP}] )
xattr? ( >=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] )
fam? ( >=virtual/fam-0-r1[${MULTILIB_USEDEP}] )
utils? (
${PYTHON_DEPS}
>=dev-util/gdbus-codegen-${PV}[${PYTHON_USEDEP}] )
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r9
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)
"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
>=dev-libs/libxslt-1.0
>=sys-devel/gettext-0.11
>=dev-util/gtk-doc-am-1.20
systemtap? ( >=dev-util/systemtap-1.3 )
test? (
sys-devel/gdb
${PYTHON_DEPS}
>=dev-util/gdbus-codegen-${PV}[${PYTHON_USEDEP}]
>=sys-apps/dbus-1.2.14 )
!& 
/dev/null; then
if has_version sys-apps/dbus; then
export DBUS1_CFLAGS="-I/usr/include/dbus-1.0 
-I/usr/$(get_libdir)/dbus-1.0/include"
export DBUS1_LIBS="-ldbus-1"
fi
export LIBFFI_CFLAGS="-I$(echo 
/usr/$(get_libdir)/libffi-*/include)"
export LIBFFI_LIBS="-lffi"
fi

local myconf

case "${CHOST}" in
*-mingw*) myconf="${myconf} --with-threads=win32" ;;
*)myconf="${myconf} --with-threads=pos

[gentoo-commits] gentoo-x86 commit in dev-util/gdbus-codegen: ChangeLog gdbus-codegen-2.42.1.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:33:54

  Modified: ChangeLog
  Added:gdbus-codegen-2.42.1.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.100dev-util/gdbus-codegen/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog   12 Dec 2014 11:46:33 -  1.99
+++ ChangeLog   14 Dec 2014 22:33:54 -  1.100
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/gdbus-codegen
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/ChangeLog,v 1.99 
2014/12/12 11:46:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/ChangeLog,v 1.100 
2014/12/14 22:33:54 eva Exp $
+
+*gdbus-codegen-2.42.1 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue 
+  +gdbus-codegen-2.42.1.ebuild:
+  Version bump for Gnome 3.14.
 
   12 Dec 2014; Jeroen Roovers  gdbus-codegen-2.40.2.ebuild:
   Stable for HPPA (bug #529964).



1.1  dev-util/gdbus-codegen/gdbus-codegen-2.42.1.ebuild

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

Index: gdbus-codegen-2.42.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.42.1.ebuild,v 
1.1 2014/12/14 22:33:54 eva Exp $

EAPI="5"
GNOME_ORG_MODULE="glib"
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
PYTHON_REQ_USE="xml"

inherit eutils gnome.org distutils-r1

DESCRIPTION="GDBus code and documentation generator"
HOMEPAGE="http://www.gtk.org/";

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

RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}"

# To prevent circular dependencies with glib[test]
PDEPEND=">=dev-libs/glib-${PV}:2"

S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"

python_prepare_all() {
PATCHES=(
"${FILESDIR}/${PN}-2.40.0-sitedir.patch"
)
distutils-r1_python_prepare_all
sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
-i config.py || die "sed config.py failed"

sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > 
gdbus-codegen || die
cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
}

src_test() {
einfo "Skipping tests. This package is tested by dev-libs/glib"
einfo "when merged with FEATURES=test"
}

python_install_all() {
distutils-r1_python_install_all # no-op, but prevents QA warning
doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
}






[gentoo-commits] gentoo-x86 commit in app-arch/file-roller: file-roller-3.14.2.ebuild ChangeLog

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:31:48

  Modified: ChangeLog
  Added:file-roller-3.14.2.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.341app-arch/file-roller/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/file-roller/ChangeLog?rev=1.341&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/file-roller/ChangeLog?rev=1.341&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/file-roller/ChangeLog?r1=1.340&r2=1.341

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v
retrieving revision 1.340
retrieving revision 1.341
diff -u -r1.340 -r1.341
--- ChangeLog   13 Nov 2014 10:42:12 -  1.340
+++ ChangeLog   14 Dec 2014 22:31:48 -  1.341
@@ -1,6 +1,12 @@
 # ChangeLog for app-arch/file-roller
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v 1.340 
2014/11/13 10:42:12 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v 1.341 
2014/12/14 22:31:48 eva Exp $
+
+*file-roller-3.14.2 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue 
+  +file-roller-3.14.2.ebuild:
+  Version bump for Gnome 3.14.
 
   13 Nov 2014; Pacho Ramos  -file-roller-2.32.2.ebuild,
   -file-roller-3.10.2.1.ebuild, -file-roller-3.12.1.ebuild,



1.1  app-arch/file-roller/file-roller-3.14.2.ebuild

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

Index: file-roller-3.14.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-arch/file-roller/file-roller-3.14.2.ebuild,v 1.1 
2014/12/14 22:31:48 eva Exp $

EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"

inherit eutils gnome2 readme.gentoo

DESCRIPTION="Archive manager for GNOME"
HOMEPAGE="http://fileroller.sourceforge.net/ 
https://wiki.gnome.org/Apps/FileRoller";

LICENSE="GPL-2+ CC-BY-SA-3.0"
SLOT="0"
IUSE="nautilus packagekit"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux"

# gdk-pixbuf used extensively in the source
# cairo used in eggtreemultidnd.c
# pango used in fr-window
RDEPEND="
>=app-arch/libarchive-3:=
>=dev-libs/glib-2.36:2
>=dev-libs/json-glib-0.14
>=x11-libs/gtk+-3.13.2:3
>=x11-libs/libnotify-0.4.3:=
sys-apps/file
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/libICE
x11-libs/libSM
x11-libs/pango
nautilus? ( >=gnome-base/nautilus-3 )
packagekit? ( app-admin/packagekit-base )
"
DEPEND="${RDEPEND}
dev-util/desktop-file-utils
>=dev-util/intltool-0.40.0
sys-devel/gettext
virtual/pkgconfig
"
# eautoreconf needs:
#   gnome-base/gnome-common

DISABLE_AUTOFORMATTING="yes"
DOC_CONTENTS="
${PN} is a frontend for several archiving utilities. If you want a
particular archive format support, see ${HOMEPAGE}
and install the relevant package. For example:
7-zip   - app-arch/p7zip
ace - app-arch/unace
arj - app-arch/arj
cpio- app-arch/cpio
deb - app-arch/dpkg
iso - app-cdr/cdrtools
jar,zip - app-arch/zip and app-arch/unzip
lha - app-arch/lha
lzop- app-arch/lzop
rar - app-arch/unrar or app-arch/unar
rpm - app-arch/rpm
unstuff - app-arch/stuffit
zoo - app-arch/zoo"

src_prepare() {
# Use absolute path to GNU tar since star doesn't have the same
# options. On Gentoo, star is /usr/bin/tar, GNU tar is /bin/tar
epatch "${FILESDIR}"/${PN}-2.10.3-use_bin_tar.patch

# File providing Gentoo package names for various archivers
cp -f "${FILESDIR}/3.6.0-packages.match" data/packages.match || die

gnome2_src_prepare
}

src_configure() {
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* TODO"
# --disable-debug because enabling it adds -O0 to CFLAGS
gnome2_src_configure \
--disable-run-in-place \
--disable-static \
--disable-debug \
--enable-magic \
--enable-libarchive \
--with-smclient=xsmp \
$(use_enable nautilus nautilus-actions) \
$(use_enable packagekit) \
ITSTOOL=$(type -P true)
}

src_install() {
gnome2_src_install
readme.gentoo_create_doc
}

pkg_postinst() {
gnome2_pkg_postins

[gentoo-commits] gentoo-x86 commit in app-accessibility/sphinx3: sphinx3-0.8-r1.ebuild ChangeLog

2014-12-14 Thread Michal Gorny (mgorny)
mgorny  14/12/14 22:30:18

  Modified: ChangeLog
  Added:sphinx3-0.8-r1.ebuild
  Log:
  Convert to distutils-r1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.11 app-accessibility/sphinx3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   9 Oct 2013 02:03:56 -   1.10
+++ ChangeLog   14 Dec 2014 22:30:18 -  1.11
@@ -1,6 +1,11 @@
 # ChangeLog for app-accessibility/sphinx3
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.10 
2013/10/09 02:03:56 teiresias Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.11 
2014/12/14 22:30:18 mgorny Exp $
+
+*sphinx3-0.8-r1 (14 Dec 2014)
+
+  14 Dec 2014; Michał Górny  +sphinx3-0.8-r1.ebuild:
+  Convert to distutils-r1.
 
   09 Oct 2013; Christopher Brannon  sphinx3-0.8.ebuild,
   +files/sphinx3-0.8-libutil.patch:
@@ -42,4 +47,3 @@
   +sphinx3-0.6.ebuild:
   Initial import, bug #129149 with help from Franklin Marmon
   .
-



1.1  app-accessibility/sphinx3/sphinx3-0.8-r1.ebuild

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

Index: sphinx3-0.8-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/sphinx3/sphinx3-0.8-r1.ebuild,v 1.1 
2014/12/14 22:30:18 mgorny Exp $

EAPI=5

# disable automatic phase exports and deps
DISTUTILS_OPTIONAL=1
PYTHON_COMPAT=( python2_7 )

inherit autotools-utils distutils-r1 prefix eutils

DESCRIPTION="CMU Speech Recognition engine"
HOMEPAGE="http://cmusphinx.sourceforge.net/";
SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc python static-libs"

RDEPEND=">=app-accessibility/sphinxbase-0.7[static-libs?,python?,${PYTHON_USEDEP}]
python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}"

REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"

# Due to generated Python setup.py.
AUTOTOOLS_IN_SOURCE_BUILD=1

src_prepare() {
epatch "${FILESDIR}/${P}_heap_fix.patch" \
"${FILESDIR}/${P}-libutil.patch"
eprefixify 'python/setup.py'
}

src_compile() {
autotools-utils_src_compile

if use python; then
cd python || die
distutils-r1_src_compile
fi
}

src_install() {
local DOCS=( AUTHORS ChangeLog NEWS README )
autotools-utils_src_install

if use doc; then
cd doc || die
dohtml -r -x CVS s3* s3 *.html
fi

if use python; then
unset DOCS

cd "${S}"/python || die
distutils-r1_src_install
fi
}






[gentoo-commits] gentoo-x86 commit in app-accessibility/orca: ChangeLog orca-3.14.3.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:25:46

  Modified: ChangeLog
  Added:orca-3.14.3.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.141app-accessibility/orca/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/orca/ChangeLog?rev=1.141&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/orca/ChangeLog?rev=1.141&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/orca/ChangeLog?r1=1.140&r2=1.141

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/orca/ChangeLog,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- ChangeLog   27 Nov 2014 10:16:21 -  1.140
+++ ChangeLog   14 Dec 2014 22:25:46 -  1.141
@@ -1,6 +1,11 @@
 # ChangeLog for app-accessibility/orca
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/ChangeLog,v 1.140 
2014/11/27 10:16:21 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/ChangeLog,v 1.141 
2014/12/14 22:25:46 eva Exp $
+
+*orca-3.14.3 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue  +orca-3.14.3.ebuild:
+  Version bump for Gnome 3.14.
 
   27 Nov 2014; Pacho Ramos  orca-3.12.3.ebuild:
   Support python 3.4



1.1  app-accessibility/orca/orca-3.14.3.ebuild

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

Index: orca-3.14.3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-3.14.3.ebuild,v 
1.1 2014/12/14 22:25:46 eva Exp $

EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python3_{3,4} )
PYTHON_REQ_USE="threads"

inherit gnome2 python-r1

DESCRIPTION="Extensible screen reader that provides access to the desktop"
HOMEPAGE="https://wiki.gnome.org/Projects/Orca";

LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"

IUSE="+braille"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

# liblouis is not in portage yet
# it is used to provide contracted braille support
# XXX: Check deps for correctness
COMMON_DEPEND="
>=app-accessibility/at-spi2-atk-2.10:2
>=app-accessibility/at-spi2-core-2.10:2[introspection]
>=dev-libs/atk-2.10
>=dev-libs/glib-2.28:2
>=dev-python/pygobject-3.10:3[${PYTHON_USEDEP}]
>=x11-libs/gtk+-3.6.2:3[introspection]
braille? (
>=app-accessibility/brltty-5.0-r3[python,${PYTHON_USEDEP}]
dev-libs/liblouis[python,${PYTHON_USEDEP}] )
${PYTHON_DEPS}
"
RDEPEND="${COMMON_DEPEND}
>=app-accessibility/speech-dispatcher-0.8[python,${PYTHON_USEDEP}]
dev-libs/atk[introspection]
dev-python/pyatspi[${PYTHON_USEDEP}]
dev-python/setproctitle[${PYTHON_USEDEP}]
x11-libs/libwnck:3[introspection]
x11-libs/pango[introspection]
"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.50
virtual/pkgconfig
"
#   app-text/yelp-tools

src_prepare() {
gnome2_src_prepare

python_copy_sources
}

src_configure() {
python_foreach_impl run_in_build_dir gnome2_src_configure \
ITSTOOL="$(type -P true)" \
$(use_with braille liblouis)
}

src_compile() {
python_foreach_impl run_in_build_dir gnome2_src_compile
}

src_install() {
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README TODO"
installing() {
gnome2_src_install
# Massage shebang to make python_doscript happy
sed -e 's:#!'"${PYTHON}:#!/usr/bin/python:" \
-i src/orca/orca || die
python_doscript src/orca/orca
}
python_foreach_impl run_in_build_dir installing
}






[gentoo-commits] gentoo-x86 commit in app-accessibility/at-spi2-atk: ChangeLog at-spi2-atk-2.14.1.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:22:28

  Modified: ChangeLog at-spi2-atk-2.14.1.ebuild
  Log:
  Restore dropped keyword.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.62 app-accessibility/at-spi2-atk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog?rev=1.62&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog?rev=1.62&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   14 Dec 2014 22:13:48 -  1.61
+++ ChangeLog   14 Dec 2014 22:22:28 -  1.62
@@ -1,6 +1,10 @@
 # ChangeLog for app-accessibility/at-spi2-atk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog,v 
1.61 2014/12/14 22:13:48 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog,v 
1.62 2014/12/14 22:22:28 eva Exp $
+
+  14 Dec 2014; Gilles Dartiguelongue 
+  at-spi2-atk-2.14.1.ebuild:
+  Restore dropped keyword.
 
 *at-spi2-atk-2.14.1 (14 Dec 2014)
 



1.2  app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild?r1=1.1&r2=1.2

Index: at-spi2-atk-2.14.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- at-spi2-atk-2.14.1.ebuild   14 Dec 2014 22:13:48 -  1.1
+++ at-spi2-atk-2.14.1.ebuild   14 Dec 2014 22:22:28 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild,v
 1.1 2014/12/14 22:13:48 eva Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild,v
 1.2 2014/12/14 22:22:28 eva Exp $
 
 EAPI="5"
 GCONF_DEBUG="no"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2+"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 COMMON_DEPEND="






[gentoo-commits] gentoo-x86 commit in app-accessibility/at-spi2-core: ChangeLog at-spi2-core-2.14.1.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:17:37

  Modified: ChangeLog
  Added:at-spi2-core-2.14.1.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.76 app-accessibility/at-spi2-core/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog?rev=1.76&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog?rev=1.76&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   24 Nov 2014 01:40:34 -  1.75
+++ ChangeLog   14 Dec 2014 22:17:37 -  1.76
@@ -1,6 +1,12 @@
 # ChangeLog for app-accessibility/at-spi2-core
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog,v 
1.75 2014/11/24 01:40:34 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog,v 
1.76 2014/12/14 22:17:37 eva Exp $
+
+*at-spi2-core-2.14.1 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue 
+  +at-spi2-core-2.14.1.ebuild:
+  Version bump for Gnome 3.14.
 
   24 Nov 2014; Alexandre Rostovtsev 
   at-spi2-core-2.12.0-r1.ebuild:



1.1  app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild?rev=1.1&content-type=text/plain

Index: at-spi2-core-2.14.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.14.1.ebuild,v
 1.1 2014/12/14 22:17:37 eva Exp $

EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"

inherit eutils gnome2 multilib-minimal

DESCRIPTION="D-Bus accessibility specifications and registration daemon"
HOMEPAGE="http://live.gnome.org/Accessibility";

LICENSE="LGPL-2+"
SLOT="2"
IUSE="+X +introspection"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"

# x11-libs/libSM is needed until upstream #719808 is solved either
# making the dep unneeded or fixing their configure
# Only libX11 is optional right now
COMMON_DEPEND="
>=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}]
>=sys-apps/dbus-1[${MULTILIB_USEDEP}]
x11-libs/libSM[${MULTILIB_USEDEP}]
x11-libs/libXi[${MULTILIB_USEDEP}]
x11-libs/libXtst[${MULTILIB_USEDEP}]
introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
"
RDEPEND="${COMMON_DEPEND}
abi_x86_32? (
!<=app-emulation/emul-linux-x86-gtklibs-20140508-r3
!app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
)
"
DEPEND="${COMMON_DEPEND}
>=dev-util/gtk-doc-am-1.9
>=dev-util/intltool-0.40
virtual/pkgconfig[${MULTILIB_USEDEP}]
"

src_prepare() {
# disable teamspaces test since that requires Novell.ICEDesktop.Daemon
epatch "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch"

gnome2_src_prepare
}

multilib_src_configure() {
# xevie is deprecated/broken since xorg-1.6/1.7
ECONF_SOURCE=${S} \
gnome2_src_configure \
--disable-xevie \
$(multilib_native_use_enable introspection) \
$(use_enable X x11)

# work-around gtk-doc out-of-source brokedness
if multilib_is_native_abi; then
ln -s "${S}"/doc/libatspi/html doc/libatspi/html || die
fi
}

multilib_src_compile() { gnome2_src_compile; }
multilib_src_install() { gnome2_src_install; }






[gentoo-commits] gentoo-x86 commit in app-accessibility/at-spi2-atk: ChangeLog at-spi2-atk-2.14.1.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:13:48

  Modified: ChangeLog
  Added:at-spi2-atk-2.14.1.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.61 app-accessibility/at-spi2-atk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog?rev=1.61&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog?rev=1.61&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   24 Nov 2014 01:41:11 -  1.60
+++ ChangeLog   14 Dec 2014 22:13:48 -  1.61
@@ -1,6 +1,12 @@
 # ChangeLog for app-accessibility/at-spi2-atk
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog,v 
1.60 2014/11/24 01:41:11 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/ChangeLog,v 
1.61 2014/12/14 22:13:48 eva Exp $
+
+*at-spi2-atk-2.14.1 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue 
+  +at-spi2-atk-2.14.1.ebuild:
+  Version bump for Gnome 3.14.
 
   24 Nov 2014; Alexandre Rostovtsev 
   at-spi2-atk-2.12.1-r1.ebuild:



1.1  app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild?rev=1.1&content-type=text/plain

Index: at-spi2-atk-2.14.1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/at-spi2-atk/at-spi2-atk-2.14.1.ebuild,v
 1.1 2014/12/14 22:13:48 eva Exp $

EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"

inherit eutils gnome2 multilib-minimal virtualx

DESCRIPTION="Gtk module for bridging AT-SPI to Atk"
HOMEPAGE="http://live.gnome.org/Accessibility";

LICENSE="LGPL-2+"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
IUSE=""

COMMON_DEPEND="
>=app-accessibility/at-spi2-core-2.11.2[${MULTILIB_USEDEP}]
>=dev-libs/atk-2.11.90[${MULTILIB_USEDEP}]
>=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
>=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
"
RDEPEND="${COMMON_DEPEND}
!

[gentoo-commits] gentoo-x86 commit in app-accessibility/accerciser: ChangeLog accerciser-3.14.0.ebuild

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:10:54

  Modified: ChangeLog
  Added:accerciser-3.14.0.ebuild
  Log:
  Version bump for Gnome 3.14.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  ChangesPath
1.43 app-accessibility/accerciser/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/ChangeLog?rev=1.43&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/ChangeLog?rev=1.43&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog   24 Nov 2014 11:49:17 -  1.42
+++ ChangeLog   14 Dec 2014 22:10:54 -  1.43
@@ -1,6 +1,12 @@
 # ChangeLog for app-accessibility/accerciser
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 
1.42 2014/11/24 11:49:17 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 
1.43 2014/12/14 22:10:54 eva Exp $
+
+*accerciser-3.14.0 (14 Dec 2014)
+
+  14 Dec 2014; Gilles Dartiguelongue 
+  +accerciser-3.14.0.ebuild:
+  Version bump for Gnome 3.14.
 
 *accerciser-3.12.0-r1 (24 Nov 2014)
 



1.1  app-accessibility/accerciser/accerciser-3.14.0.ebuild

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

Index: accerciser-3.14.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-accessibility/accerciser/accerciser-3.14.0.ebuild,v 
1.1 2014/12/14 22:10:54 eva Exp $

EAPI="5"
GCONF_DEBUG="no"
PYTHON_COMPAT=( python{3_2,3_3,3_4} )
PYTHON_REQ_USE="xml"

inherit gnome2 python-r1

DESCRIPTION="Interactive Python accessibility explorer"
HOMEPAGE="https://wiki.gnome.org/Apps/Accerciser";

LICENSE="BSD CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="
>=app-accessibility/at-spi2-core-2.5.2:2
>=dev-python/pygobject-2.90.3:3[${PYTHON_USEDEP}]
>=x11-libs/gtk+-3.1.13:3[introspection]

dev-libs/atk[introspection]
>=dev-libs/glib-2.28:2
dev-libs/gobject-introspection
>=dev-python/ipython-0.11[${PYTHON_USEDEP}]
>=dev-python/pyatspi-2.1.5[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
x11-libs/gdk-pixbuf[introspection]
x11-libs/libwnck:3[introspection]
x11-libs/pango[introspection]
${PYTHON_DEPS}
"
DEPEND="${RDEPEND}
app-text/yelp-tools
>=dev-util/intltool-0.35
sys-devel/gettext
virtual/pkgconfig
"

src_prepare() {
gnome2_src_prepare

# Leave shebang alone
sed 's:@PYTHON@:/usr/bin/python:' -i src/accerciser.in || die

python_copy_sources
}

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

src_compile() {
python_foreach_impl run_in_build_dir gnome2_src_compile
}

src_install() {
installing() {
gnome2_src_install
python_doscript src/accerciser
}
python_foreach_impl run_in_build_dir installing
}






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

2014-12-14 Thread Gilles Dartiguelongue (eva)
eva 14/12/14 22:07:05

  Modified: ChangeLog package.mask
  Log:
  Add mask for Gnome 3.14

Revision  ChangesPath
1.9612   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9611
retrieving revision 1.9612
diff -u -r1.9611 -r1.9612
--- ChangeLog   14 Dec 2014 19:04:53 -  1.9611
+++ ChangeLog   14 Dec 2014 22:07:04 -  1.9612
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9611 2014/12/14 
19:04:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9612 2014/12/14 
22:07:04 eva 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!
 
+  14 Dec 2014; Gilles Dartiguelongue  package.mask:
+  Add mask for Gnome 3.14.
+
   14 Dec 2014; Tim Harder  package.mask:
   Mask inkscape pre-releases.
 



1.16220  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16219
retrieving revision 1.16220
diff -u -r1.16219 -r1.16220
--- package.mask14 Dec 2014 19:04:53 -  1.16219
+++ package.mask14 Dec 2014 22:07:04 -  1.16220
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16219 2014/12/14 
19:04:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16220 2014/12/14 
22:07:04 eva 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,184 +30,133 @@
 
 #--- END OF EXAMPLES ---
 
-# Tim Harder  (14 Dec 2014)
-# Mask pre-releases
-=media-gfx/inkscape-0.91_pre*
-
-# Tim Harder  (14 Dec 2014)
-# Deprecated plugins, use app-vim/vcscommand instead.
-# Removal in 30 days.
-app-vim/cvscommand
-app-vim/svncommand
-
-# Michał Górny  (12 Dec 2014)
-# No longer used by any package in the tree, and unlikely to be ever
-# needed again for its main use is updating package code. Bug #532394.
-# Removal in 30 days.
-net-zope/zope-fixers
-
-# Jeroen Roovers  (12 Dec 2014)
-# The 96 and 173 branches are no longer supported and remain vulnerable to
-# CVE-2014-8298 (bug #532342). You may be able to mitigate the vulnerability by
-# disabling GLX indirect rendering protocol support on the X server.
- (09 Dec 2014)
-# Security mask, wrt bug #529728
- (08 Dec 2014)
-# Various bugs (466506, 490798, 493532, 498928, 498936), no maintainer,
-# hasn't built in a year. Removal in a month.
-sys-apps/kmscon
-
-# Michał Górny  (08 Dec 2014)
-# Complete redesign, masked for testing.
->=app-admin/eselect-opengl-1.3.0
-=media-libs/mesa-10.3.4-r1
->=media-libs/mesa-10.3.5-r1
-=x11-base/xorg-server-1.16.2-r1
->=x11-base/xorg-server-1.16.2.901-r1
->=x11-proto/glproto-1.4.17-r1
-
-# Ian Stakenvicius  (03 Dec 2014)
-# masked for testing
-media-libs/openh264
-
-# Justin Lecher  (02 Dec 2014)
-# Not supported by upstream anymore
-# Revdeps broken, #531392
-net-analyzer/openvas-administrator
-
-# Pacho Ramos  (01 Dec 2014)
-# Doesn't work ok, upstream dead since 2007 (#321277).
-# Removal in a month.
-net-im/linpopup
-
-# Pacho Ramos  (01 Dec 2014)
-# Multiple pending bugs, #380435, #460508, #481150,
-# #481310, #481312, #530856. Removal in a month (#380435)
-app-office/teapot
-
-# Pacho Ramos  (01 Dec 2014)
-# Multiple problems and security issues (#425634).
-# Removal in a month.
-net-irc/bitchx
-
-# Pacho Ramos  (01 Dec 2014)
-# Upstream dead for a long time, use sys-power/cpupower
-# instead. Removal in a month.
-sys-power/cpufrequtils
-x11-plugins/gkrellm-cpufreq
-
-# Pacho Ramos  (01 Dec 2014)
-# Dead since 2004, fails to build (#488028). Relying
-# on deprecated gnome2 libs, you can use volti, volwheel,
-# volumeicon and other mixers in the tree. Removal in a month.
-media-sound/gnome-alsamixer
-
-# Pacho Ramos  (01 Dec 2014)
-# Fails to build, use sys-

[gentoo-commits] gentoo-x86 commit in x11-misc/sunflower: ChangeLog sunflower-0.2_alpha59.ebuild sunflower-0.1_alpha58.ebuild sunflower-0.1_alpha57.ebuild sunflower-0.1_alpha56.ebuild

2014-12-14 Thread Julian Ospald (hasufell)
hasufell14/12/14 21:44:52

  Modified: ChangeLog sunflower-0.2_alpha59.ebuild
  Removed:  sunflower-0.1_alpha58.ebuild
sunflower-0.1_alpha57.ebuild
sunflower-0.1_alpha56.ebuild
  Log:
  update HOMEPAGE, rm old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
BDEED020)

Revision  ChangesPath
1.16 x11-misc/sunflower/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/sunflower/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   14 Dec 2014 10:21:08 -  1.15
+++ ChangeLog   14 Dec 2014 21:44:52 -  1.16
@@ -1,6 +1,11 @@
 # ChangeLog for x11-misc/sunflower
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/sunflower/ChangeLog,v 1.15 
2014/12/14 10:21:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/sunflower/ChangeLog,v 1.16 
2014/12/14 21:44:52 hasufell Exp $
+
+  14 Dec 2014; Julian Ospald 
+  -sunflower-0.1_alpha56.ebuild, -sunflower-0.1_alpha57.ebuild,
+  -sunflower-0.1_alpha58.ebuild, sunflower-0.2_alpha59.ebuild:
+  update HOMEPAGE, rm old
 
   14 Dec 2014; Jeroen Roovers  metadata.xml:
   New line at end of file.



1.3  x11-misc/sunflower/sunflower-0.2_alpha59.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/sunflower-0.2_alpha59.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/sunflower-0.2_alpha59.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sunflower/sunflower-0.2_alpha59.ebuild?r1=1.2&r2=1.3

Index: sunflower-0.2_alpha59.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-misc/sunflower/sunflower-0.2_alpha59.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sunflower-0.2_alpha59.ebuild24 Aug 2014 18:37:14 -  1.2
+++ sunflower-0.2_alpha59.ebuild14 Dec 2014 21:44:52 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/sunflower/sunflower-0.2_alpha59.ebuild,v 1.2 
2014/08/24 18:37:14 hasufell Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-misc/sunflower/sunflower-0.2_alpha59.ebuild,v 1.3 
2014/12/14 21:44:52 hasufell Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 MY_PN="Sunflower"
 DESCRIPTION="Small and highly customizable twin-panel file manager with 
plugin-support"
 HOMEPAGE="https://github.com/MeanEYE/Sunflower
-   http://code.google.com/p/sunflower-fm";
+   http://sunflower-fm.org/";
 SRC_URI="http://sunflower-fm.org/pub/sunflower-${PV/_alpha/-}.tgz";
 
 LICENSE="GPL-3"






[gentoo-commits] gentoo-x86 commit in www-client/pybugz: pybugz-0.11.1.ebuild ChangeLog

2014-12-14 Thread Mikle Kolyada (zlogene)
zlogene 14/12/14 20:56:13

  Modified: pybugz-0.11.1.ebuild ChangeLog
  Log:
  ppc/ppc64 stable wrt bug #531826
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.9  www-client/pybugz/pybugz-0.11.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.11.1.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.11.1.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/pybugz-0.11.1.ebuild?r1=1.8&r2=1.9

Index: pybugz-0.11.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.11.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pybugz-0.11.1.ebuild12 Dec 2014 16:24:07 -  1.8
+++ pybugz-0.11.1.ebuild14 Dec 2014 20:56:13 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.11.1.ebuild,v 
1.8 2014/12/12 16:24:07 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.11.1.ebuild,v 
1.9 2014/12/14 20:56:13 zlogene Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python3_3 python3_4 )
@@ -12,7 +12,7 @@
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
inherit vcs-snapshot
 fi
 



1.137www-client/pybugz/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.137&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?rev=1.137&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/pybugz/ChangeLog?r1=1.136&r2=1.137

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog   12 Dec 2014 16:24:07 -  1.136
+++ ChangeLog   14 Dec 2014 20:56:13 -  1.137
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/pybugz
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.136 
2014/12/12 16:24:07 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/ChangeLog,v 1.137 
2014/12/14 20:56:13 zlogene Exp $
+
+  14 Dec 2014; Mikle Kolyada  pybugz-0.11.1.ebuild:
+  ppc/ppc64 stable wrt bug #531826
 
   12 Dec 2014; Mikle Kolyada  pybugz-0.11.1.ebuild:
   sparc stable wrt bug #531826






[gentoo-commits] gentoo-x86 commit in media-libs/freetype/files: 2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch 2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 20:35:02

  Added:   

2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch
2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch
  Log:
  Backport fixes for bug 532506.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.1  
media-libs/freetype/files/2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/files/2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/files/2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch?rev=1.1&content-type=text/plain

Index: 2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch
===
>From 8d62e1a4b393c8b1f1aed189582894216cd879d8 Mon Sep 17 00:00:00 2001
From: Werner Lemberg 
Date: Sat, 13 Dec 2014 07:42:51 +0100
Subject: [PATCH 2/2] * src/pcf/pcfread.c (pcf_read_TOC): Improve fix from
 2014-12-08.

Conflicts:
ChangeLog
---
 src/pcf/pcfread.c | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
index e3caf82..a29a9e3 100644
--- a/src/pcf/pcfread.c
+++ b/src/pcf/pcfread.c
@@ -192,14 +192,15 @@ THE SOFTWARE.
   tables++;
 }
 
-/* no check of `tables->size' for last table element ... */
+/* only check `tables->offset' for last table element ... */
 if ( ( tables->offset > size ) )
 {
   error = FT_THROW( Invalid_Table );
   goto Exit;
 }
-/* ... instead, we adjust `tables->size' to the real value */
-tables->size = size - tables->offset;
+/* ... and adjust `tables->size' to the real value if necessary */
+if ( tables->size > size - tables->offset )
+  tables->size = size - tables->offset;
 
 #ifdef FT_DEBUG_LEVEL_TRACE
 
-- 
2.2.0




1.1  
media-libs/freetype/files/2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/files/2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/files/2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch?rev=1.1&content-type=text/plain

Index: 2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch
===
>From 9c5f73f7a978ec4b071e7bb7fef3e0f016322a68 Mon Sep 17 00:00:00 2001
From: Werner Lemberg 
Date: Mon, 8 Dec 2014 16:01:50 +0100
Subject: [PATCH 1/2] [pcf] Fix Savannah bug #43774.

Work around `features' of X11's `pcfWriteFont' and `pcfReadFont'
functions.  Since the PCF format doesn't have an official
specification, we have to exactly follow these functions' behaviour.

The problem was unveiled with a patch from 2014-11-06, fixing issue #43547.

* src/pcf/pcfread.c (pcf_read_TOC): Don't check table size for last
element.  Instead, assign real size.

Conflicts:
ChangeLog
---
 src/pcf/pcfread.c | 54 +++---
 1 file changed, 43 insertions(+), 11 deletions(-)

diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
index 998cbed..e3caf82 100644
--- a/src/pcf/pcfread.c
+++ b/src/pcf/pcfread.c
@@ -2,7 +2,7 @@
 
 FreeType font driver for pcf fonts
 
-  Copyright 2000-2010, 2012, 2013 by
+  Copyright 2000-2010, 2012-2014 by
   Francesco Zappa Nardelli
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -78,7 +78,7 @@ THE SOFTWARE.
 FT_FRAME_START( 16  ),
   FT_FRAME_ULONG_LE( type ),
   FT_FRAME_ULONG_LE( format ),
-  FT_FRAME_ULONG_LE( size ),
+  FT_FRAME_ULONG_LE( size ),   /* rounded up to a multiple of 4 */
   FT_FRAME_ULONG_LE( offset ),
 FT_FRAME_END
   };
@@ -95,9 +95,11 @@ THE SOFTWARE.
 FT_Memory  memory = FT_FACE( face )->memory;
 FT_UIntn;
 
+FT_ULong   size;
 
-if ( FT_STREAM_SEEK ( 0 )  ||
- FT_STREAM_READ_FIELDS ( pcf_toc_header, toc ) )
+
+if ( FT_STREAM_SEEK( 0 )  ||
+ FT_STREAM_READ_FIELDS( pcf_toc_header, toc ) )
   return FT_THROW( Cannot_Open_Resource );
 
 if ( toc->version != PCF_FILE_VERSION ||
@@ -154,14 +156,35 @@ THE SOFTWARE.
 break;
 }
 
-/* we now check whether the `size' and `offset' values are reasonable: */
-/* `offset' + `size' must not exceed the stream size   */
+/*
+ *  We now check whether the `size' and `offset' values are reasonable:
+ *  `offset' + `size' must not exceed the stream size.
+ *
+ *  Note, however, that X11's `pcfWriteFont' routine (used by the
+ *  `bdftopcf' program to create PDF font files) has two special
+ *

[gentoo-commits] gentoo-x86 commit in media-libs/freetype: freetype-2.5.4-r1.ebuild ChangeLog freetype-2.5.4.ebuild

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 20:35:02

  Modified: ChangeLog
  Added:freetype-2.5.4-r1.ebuild
  Removed:  freetype-2.5.4.ebuild
  Log:
  Backport fixes for bug 532506.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.411media-libs/freetype/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/ChangeLog?rev=1.411&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/ChangeLog?rev=1.411&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/ChangeLog?r1=1.410&r2=1.411

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v
retrieving revision 1.410
retrieving revision 1.411
diff -u -r1.410 -r1.411
--- ChangeLog   14 Dec 2014 19:40:58 -  1.410
+++ ChangeLog   14 Dec 2014 20:35:02 -  1.411
@@ -1,6 +1,14 @@
 # ChangeLog for media-libs/freetype
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v 1.410 
2014/12/14 19:40:58 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v 1.411 
2014/12/14 20:35:02 floppym Exp $
+
+*freetype-2.5.4-r1 (14 Dec 2014)
+
+  14 Dec 2014; Mike Gilbert 
+  +files/2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch,
+  +files/2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch,
+  +freetype-2.5.4-r1.ebuild, -freetype-2.5.4.ebuild:
+  Backport fixes for bug 532506.
 
   14 Dec 2014; Mike Gilbert  freetype-2.5.4.ebuild:
   Switch back to ${S} after sedding the ftdemos Makefile so that epatch_user



1.1  media-libs/freetype/freetype-2.5.4-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/freetype-2.5.4-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/freetype-2.5.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: freetype-2.5.4-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.5.4-r1.ebuild,v 1.1 
2014/12/14 20:35:02 floppym Exp $

EAPI=5
inherit autotools-multilib flag-o-matic multilib toolchain-funcs

DESCRIPTION="A high-quality and portable font engine"
HOMEPAGE="http://www.freetype.org/";
SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.bz2
utils?  ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.bz2 )
doc?( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.bz2 )
infinality? ( 
http://dev.gentoo.org/~yngwin/distfiles/${P}-infinality-patches.tar.xz )"

LICENSE="|| ( FTL GPL-2+ )"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
IUSE="X +adobe-cff auto-hinter bindist bzip2 debug doc fontforge harfbuzz
infinality png static-libs utils"
REQUIRED_USE="harfbuzz? ( auto-hinter )"

CDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
harfbuzz? ( >=media-libs/harfbuzz-0.9.19[truetype,${MULTILIB_USEDEP}] )
png? ( >=media-libs/libpng-1.2.51[${MULTILIB_USEDEP}] )
utils? (
X? (
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libXau-1.0.7-r1[${MULTILIB_USEDEP}]
>=x11-libs/libXdmcp-1.1.1-r1[${MULTILIB_USEDEP}]
)
)"
DEPEND="${CDEPEND}
virtual/pkgconfig"
RDEPEND="${CDEPEND}
abi_x86_32? ( utils? ( 
!app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] ) )"
PDEPEND="infinality? ( media-libs/fontconfig-infinality )"

PATCHES=(
"${FILESDIR}/2.5.4-0001-pcf-Fix-Savannah-bug-43774.patch"

"${FILESDIR}/2.5.4-0002-src-pcf-pcfread.c-pcf_read_TOC-Improve-fix-from-2014.patch"
)

src_prepare() {
enable_option() {
sed -i -e "/#define $1/a #define $1" \
include/config/ftoption.h \
|| die "unable to enable option $1"
}

disable_option() {
sed -i -e "/#define $1/ { s:^:/*:; s:$:*/: }" \
include/config/ftoption.h \
|| die "unable to disable option $1"
}

# This is the same as the 01 patch from infinality
epatch "${FILESDIR}"/${PN}-2.3.2-enable-valid.patch

if use infinality; then
EPATCH_SOU

[gentoo-commits] gentoo commit in xml/htdocs/security/en/glsa: glsa-201412-28.xml

2014-12-14 Thread Sean Amoss (ackle)
ackle   14/12/14 20:14:16

  Added:glsa-201412-28.xml
  Log:
  GLSA 201412-28

Revision  ChangesPath
1.1  xml/htdocs/security/en/glsa/glsa-201412-28.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201412-28.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/security/en/glsa/glsa-201412-28.xml?rev=1.1&content-type=text/plain

Index: glsa-201412-28.xml
===



http://www.gentoo.org/dtd/glsa.dtd";>

  Ruby on Rails: Multiple vulnerabilities
  Multiple vulnerabilities were found in Ruby on Rails, the worst of
which allowing for execution of arbitrary code.
  
  rails
  December 14, 2014
  December 14, 2014: 1
  354249
  379511
  386377
  450974
  453844
  456840
  462452
  remote
  

  2.3.18
  2.3.18

  
  
Ruby on Rails is a web-application and persistence framework.
  
  
Multiple vulnerabilities have been discovered in Ruby on Rails. Please
  review the CVE identifiers referenced below for details.

  
  
A remote attacker could execute arbitrary code or cause a Denial of
  Service condition. Furthermore, a remote attacker may be able to execute
  arbitrary SQL commands, change parameter names for form inputs and make
  changes to arbitrary records in the system, bypass intended access
  restrictions, render arbitrary views, inject arbitrary web script or
  HTML, or conduct cross-site request forgery (CSRF) attacks.

  
  
There is no known workaround at this time.
  
  
All Ruby on Rails 2.x users should upgrade to the latest version:


  # emerge --sync
  # emerge --ask --oneshot --verbose ">=dev-ruby/rails-2.3.18"


NOTE: All applications using Ruby on Rails should also be configured to
  use the latest version available by running “rake rails:update”
  inside the application directory.


NOTE: This is a legacy GLSA and stable updates for Ruby on Rails,
  including the unaffected version listed above, are no longer available
  from Gentoo. It may be possible to upgrade to the 3.2, 4.0, or 4.1
  branches, however these packages are not currently stable.

  
  
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3933";>CVE-2010-3933
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0446";>CVE-2011-0446
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0447";>CVE-2011-0447
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0448";>CVE-2011-0448
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0449";>CVE-2011-0449
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-2929";>CVE-2011-2929
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-2930";>CVE-2011-2930
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-2931";>CVE-2011-2931
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-2932";>CVE-2011-2932
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3186";>CVE-2011-3186
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-0155";>CVE-2013-0155
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-0156";>CVE-2013-0156
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-0276";>CVE-2013-0276
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-0277";>CVE-2013-0277
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-0333";>CVE-2013-0333
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-1854";>CVE-2013-1854
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-1855";>CVE-2013-1855
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-1856";>CVE-2013-1856
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2013-1857";>CVE-2013-1857
  
  craig
  
keytoaster
  







[gentoo-commits] gentoo-x86 commit in media-gfx/inkscape/files: inkscape-0.48.4-fix-member-decl.patch inkscape-0.48.4-python2.patch inkscape-0.48.1-libpng15.patch inkscape-0.48.4-gc74.patch inkscape-0

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 20:11:41

  Removed:  inkscape-0.48.4-fix-member-decl.patch
inkscape-0.48.4-python2.patch
inkscape-0.48.1-libpng15.patch
inkscape-0.48.4-gc74.patch
inkscape-0.48.4-poppler26.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)



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

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 20:11:41

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

Revision  ChangesPath
1.217media-gfx/inkscape/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -r1.216 -r1.217
--- ChangeLog   14 Dec 2014 20:08:56 -  1.216
+++ ChangeLog   14 Dec 2014 20:11:41 -  1.217
@@ -1,6 +1,13 @@
 # ChangeLog for media-gfx/inkscape
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.216 
2014/12/14 20:08:56 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.217 
2014/12/14 20:11:41 radhermit Exp $
+
+  14 Dec 2014; Tim Harder  -inkscape-0.48.4.ebuild,
+  -inkscape-0.48.4-r1.ebuild, -files/inkscape-0.48.1-libpng15.patch,
+  -files/inkscape-0.48.4-fix-member-decl.patch,
+  -files/inkscape-0.48.4-gc74.patch, -files/inkscape-0.48.4-poppler26.patch,
+  -files/inkscape-0.48.4-python2.patch:
+  Remove old.
 
 *inkscape-0.91_pre3 (14 Dec 2014)
 






[gentoo-commits] gentoo-x86 commit in media-gfx/inkscape/files: inkscape-0.91_pre3-automagic.patch inkscape-0.91_pre3-sk-man.patch inkscape-0.91_pre3-desktop.patch inkscape-0.91_pre3-cppflags.patch

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 20:08:56

  Added:inkscape-0.91_pre3-automagic.patch
inkscape-0.91_pre3-sk-man.patch
inkscape-0.91_pre3-desktop.patch
inkscape-0.91_pre3-cppflags.patch
  Log:
  Version bump. Add cdr, dbus, imagemagick, openmp, static-libs, visio, and wpg 
use flags.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.1  media-gfx/inkscape/files/inkscape-0.91_pre3-automagic.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/files/inkscape-0.91_pre3-automagic.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/files/inkscape-0.91_pre3-automagic.patch?rev=1.1&content-type=text/plain

Index: inkscape-0.91_pre3-automagic.patch
===
Add configure options for aspell, gtkspell, and imagemagick.

--- inkscape-0.91pre3/configure.ac
+++ inkscape-0.91pre3/configure.ac
@@ -675,9 +675,16 @@
 dnl Check for ImageMagick Magick++ 
 dnl **
 
-PKG_CHECK_MODULES(IMAGEMAGICK, ImageMagick++, magick_ok=yes, magick_ok=no)
-if test "x$magick_ok" = "xyes"; then
-  AC_DEFINE(WITH_IMAGE_MAGICK,1,[Image Magick++ support for bitmap 
effects])
+AC_ARG_ENABLE(magick,
+   AS_HELP_STRING([--enable-magick], [compile with Image Magick++ support 
for bitmap effects]),
+   enable_magick=$enableval,enable_magick=no)
+
+magick_ok="no"
+if test "x$enable_magick" = "xyes"; then
+   PKG_CHECK_MODULES(IMAGEMAGICK, ImageMagick++, magick_ok=yes, 
magick_ok=no)
+   if test "x$magick_ok" = "xyes"; then
+   AC_DEFINE(WITH_IMAGE_MAGICK,1,[Image Magick++ support for 
bitmap effects])
+   fi
 fi
 AM_CONDITIONAL(USE_IMAGE_MAGICK, test "x$magick_ok" = "xyes")
 
@@ -712,6 +719,10 @@
AC_DEFINE(WITH_GLIBMM_2_32,1,[Build with Glibmm 2.32 or higher])
 fi
 
+
+AC_ARG_WITH([gtkspell],
+   AS_HELP_STRING([--without-gtkspell], [disable gtk spelling 
widget]),[with_gtkspell=$withval], [with_gtkspell=yes])
+
 dnl *
 dnl   Allow experimental GTK+3 build
 dnl *
@@ -723,11 +734,13 @@
 if test "x$enable_gtk3" = "xyes"; then
 
ink_spell_pkg=
-   if pkg-config --exists gtkspell-3.0; then
-   ink_spell_pkg=gtkspell-3.0
-   AC_DEFINE(WITH_GTKSPELL, 1, [enable gtk spelling widget])
+   if test "x$with_gtkspell" = "xyes"; then
+   if pkg-config --exists gtkspell-3.0; then
+   ink_spell_pkg=gtkspell-3.0
+   AC_DEFINE(WITH_GTKSPELL, 1, [enable gtk spelling 
widget])
+   fi
fi
-
+   
PKG_CHECK_MODULES(GTK,
  gtkmm-3.0 >= 3.2
  gdkmm-3.0 >= 3.2
@@ -800,11 +813,13 @@
 else
 
ink_spell_pkg=
-   if pkg-config --exists gtkspell-2.0; then
-   ink_spell_pkg=gtkspell-2.0
-   AC_DEFINE(WITH_GTKSPELL, 1, [enable gtk spelling widget])
+   if test "x$with_gtkspell" = "xyes"; then
+   if pkg-config --exists gtkspell-2.0; then
+   ink_spell_pkg=gtkspell-2.0
+   AC_DEFINE(WITH_GTKSPELL, 1, [enable gtk spelling 
widget])
+   fi
fi
-
+   
PKG_CHECK_MODULES(GTK,
  gtk+-2.0  >= 2.24
  $ink_spell_pkg
@@ -928,12 +943,17 @@
 dnl **
 dnl Check for aspell 
 dnl **
-AC_CHECK_LIB(aspell, new_aspell_config, [AC_CHECK_HEADER(aspell.h, 
aspell_ok=yes, aspell_ok=no)], aspell_ok=no, -lz -lm)
-if test "x$aspell_ok" = "xyes"; then
-   AC_DEFINE(HAVE_ASPELL, 1, [Use aspell for built-in spellchecker])
-  INKSCAPE_LIBS="$INKSCAPE_LIBS -laspell"
-else
-   AC_MSG_CHECKING([Aspell not found, spell checker will be disabled])
+AC_ARG_WITH([aspell],
+   AS_HELP_STRING([--without-aspell], [disable aspell spell 
checker]),[with_aspell=$withval], [with_aspell=yes])
+
+if test "x$with_aspell" = "xyes"; then
+   AC_CHECK_LIB(aspell, new_aspell_config, [AC_CHECK_HEADER(aspell.h, 
aspell_ok=yes, aspell_ok=no)], aspell_ok=no, -lz -lm)
+   if test "x$aspell_ok" = "xyes"; then
+   AC_DEFINE(HAVE_ASPELL, 1, [Use aspell for built-in 
spellchecker])
+   INKSCAPE_LIBS="$INKSCAPE_LIBS -laspell"
+   else
+   AC_MSG_CHECKING([Aspell not found, spell checker will be 
disabled])
+   fi
 fi
 
 dnl Check for bind_textdomain_codeset, including -lintl if GLib brings it in.



1.1  media-gfx/inkscape/files/inkscape-0.91_pre3-sk-man.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/inkscape/files/inkscape-0.91_pre3-sk-man.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x

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

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 20:08:56

  Modified: ChangeLog metadata.xml
  Added:inkscape-0.91_pre3.ebuild
  Log:
  Version bump. Add cdr, dbus, imagemagick, openmp, static-libs, visio, and wpg 
use flags.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.216media-gfx/inkscape/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -r1.215 -r1.216
--- ChangeLog   30 Oct 2014 09:55:21 -  1.215
+++ ChangeLog   14 Dec 2014 20:08:56 -  1.216
@@ -1,6 +1,16 @@
 # ChangeLog for media-gfx/inkscape
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.215 
2014/10/30 09:55:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.216 
2014/12/14 20:08:56 radhermit Exp $
+
+*inkscape-0.91_pre3 (14 Dec 2014)
+
+  14 Dec 2014; Tim Harder  +inkscape-0.91_pre3.ebuild,
+  +files/inkscape-0.91_pre3-automagic.patch,
+  +files/inkscape-0.91_pre3-cppflags.patch,
+  +files/inkscape-0.91_pre3-desktop.patch,
+  +files/inkscape-0.91_pre3-sk-man.patch, metadata.xml:
+  Version bump. Add cdr, dbus, imagemagick, openmp, static-libs, visio, and wpg
+  use flags.
 
   30 Oct 2014; Agostino Sarubbo  inkscape-0.48.5.ebuild:
   Stable for x86, wrt bug #523384



1.9  media-gfx/inkscape/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/inkscape/metadata.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- metadata.xml16 Jun 2012 16:30:05 -  1.8
+++ metadata.xml14 Dec 2014 20:08:56 -  1.9
@@ -3,11 +3,10 @@
 
graphics

-   
-   pull in app-office/dia for dia import 
extension
-   
-   
-   enables support for OpenOffice.org SVG jar files
-   
+   Enable support for CorelDRAW Diagrams
+   pull in app-office/dia for dia 
import extension
+   Enable support for OpenOffice.org SVG jar 
files
+   Enable support for Microsoft Visio 
Diagrams
+   Enable support for WordPerfect Graphics

 



1.1  media-gfx/inkscape/inkscape-0.91_pre3.ebuild

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

Index: inkscape-0.91_pre3.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.91_pre3.ebuild,v 1.1 
2014/12/14 20:08:56 radhermit Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="xml"

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

MY_P=${P/_/}

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

LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
IUSE="cdr dia dbus gnome imagemagick openmp postscript inkjar lcms nls spell 
static-libs visio wpg"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

WPG_DEPS="
|| (
( app-text/libwpg:0.3 dev-libs/librevenge )
( app-text/libwpd:0.9 app-text/libwpg:0.2 )
)
"
COMMON_DEPEND="
${PYTHON_DEPS}
>=app-text/poppler-0.26.0:=[cairo]
>=dev-cpp/glibmm-2.28
>=dev-cpp/gtkmm-2.18.0:2.4
>=dev-cpp/cairomm-1.9.8
>=dev-cpp/glibmm-2.32
>=dev-libs/boehm-gc-6.4
>=dev-libs/glib-2.28
>=dev-libs/libsigc++-2.0.12
>=dev-libs/libxml2-2.6.20
>=dev-libs/libxslt-1.0.15
dev-libs/popt
dev-py

[gentoo-commits] gentoo-x86 commit in media-libs/freetype: freetype-2.5.4.ebuild ChangeLog

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 19:40:58

  Modified: freetype-2.5.4.ebuild ChangeLog
  Log:
  Switch back to ${S} after sedding the ftdemos Makefile so that epatch_user 
works properly. If the user wants to patch ftdemos, they are SOL for now.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.3  media-libs/freetype/freetype-2.5.4.ebuild

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

Index: freetype-2.5.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.5.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- freetype-2.5.4.ebuild   13 Dec 2014 13:29:03 -  1.2
+++ freetype-2.5.4.ebuild   14 Dec 2014 19:40:58 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.5.4.ebuild,v 
1.2 2014/12/13 13:29:03 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.5.4.ebuild,v 
1.3 2014/12/14 19:40:58 floppym Exp $
 
 EAPI=5
 inherit autotools-multilib flag-o-matic multilib toolchain-funcs
@@ -88,6 +88,7 @@
if ! use X; then
sed -i -e "/EXES\ +=\ ftdiff/ s:^:#:" Makefile || die
fi
+   cd "${S}" || die
fi
 
# we need non-/bin/sh to run configure



1.410media-libs/freetype/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/ChangeLog?rev=1.410&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/ChangeLog?rev=1.410&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/ChangeLog?r1=1.409&r2=1.410

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v
retrieving revision 1.409
retrieving revision 1.410
diff -u -r1.409 -r1.410
--- ChangeLog   13 Dec 2014 13:29:03 -  1.409
+++ ChangeLog   14 Dec 2014 19:40:58 -  1.410
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/freetype
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v 1.409 
2014/12/13 13:29:03 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v 1.410 
2014/12/14 19:40:58 floppym Exp $
+
+  14 Dec 2014; Mike Gilbert  freetype-2.5.4.ebuild:
+  Switch back to ${S} after sedding the ftdemos Makefile so that epatch_user
+  works properly. If the user wants to patch ftdemos, they are SOL for now.
 
   13 Dec 2014; Ben de Groot  freetype-2.5.4.ebuild:
   Prevent circular dependencies






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

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 19:04:53

  Modified: ChangeLog package.mask
  Log:
  Mask inkscape pre-releases.

Revision  ChangesPath
1.9611   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9610
retrieving revision 1.9611
diff -u -r1.9610 -r1.9611
--- ChangeLog   14 Dec 2014 10:57:06 -  1.9610
+++ ChangeLog   14 Dec 2014 19:04:53 -  1.9611
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9610 2014/12/14 
10:57:06 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9611 2014/12/14 
19:04:53 radhermit 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!
 
+  14 Dec 2014; Tim Harder  package.mask:
+  Mask inkscape pre-releases.
+
   14 Dec 2014; Ulrich Müller  -updates/1Q-2009,
   -updates/2Q-2009, -updates/3Q-2009, -updates/4Q-2009:
   Clean up updates/*-2009 files. Removing them a few days early, since 2009



1.16219  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16218
retrieving revision 1.16219
diff -u -r1.16218 -r1.16219
--- package.mask14 Dec 2014 04:47:53 -  1.16218
+++ package.mask14 Dec 2014 19:04:53 -  1.16219
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16218 2014/12/14 
04:47:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16219 2014/12/14 
19:04:53 radhermit 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
@@ -31,6 +31,10 @@
 #--- END OF EXAMPLES ---
 
 # Tim Harder  (14 Dec 2014)
+# Mask pre-releases
+=media-gfx/inkscape-0.91_pre*
+
+# Tim Harder  (14 Dec 2014)
 # Deprecated plugins, use app-vim/vcscommand instead.
 # Removal in 30 days.
 app-vim/cvscommand






[gentoo-commits] gentoo-x86 commit in dev-perl/Mail-SRS: Mail-SRS-0.310.0-r2.ebuild ChangeLog

2014-12-14 Thread Patrice Clement (monsieurp)
monsieurp14/12/14 18:56:07

  Modified: ChangeLog
  Added:Mail-SRS-0.310.0-r2.ebuild
  Log:
  Revision bump: add {init,conf}.d files as requested by user. Fix #462920.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.17 dev-perl/Mail-SRS/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   24 Aug 2014 01:14:08 -  1.16
+++ ChangeLog   14 Dec 2014 18:56:07 -  1.17
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Mail-SRS
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/ChangeLog,v 1.16 
2014/08/24 01:14:08 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/ChangeLog,v 1.17 
2014/12/14 18:56:07 monsieurp Exp $
+
+*Mail-SRS-0.310.0-r2 (14 Dec 2014)
+
+  14 Dec 2014; Patrice Clement 
+  +Mail-SRS-0.310.0-r2.ebuild, +files/srsd.conf, +files/srsd.init:
+  Revision bump: add {init,conf}.d files as requested by user. Fix #462920.
 
 *Mail-SRS-0.310.0-r1 (24 Aug 2014)
 



1.1  dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: Mail-SRS-0.310.0-r2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild,v 1.1 
2014/12/14 18:56:07 monsieurp Exp $

EAPI=5

MODULE_AUTHOR=SHEVEK
MODULE_VERSION=0.31
inherit perl-module

DESCRIPTION="Interface to Sender Rewriting Scheme"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND="
>=dev-perl/Digest-HMAC-1.01-r1
>=dev-perl/MLDBM-2.01
>=virtual/perl-DB_File-1.807
>=virtual/perl-Digest-MD5-2.33
>=virtual/perl-Storable-2.04-r1"
DEPEND="${RDEPEND}
test? (
>=dev-perl/Test-Pod-1.00
>=dev-perl/Test-Pod-Coverage-0.02
)"

SRC_TEST="do"

src_install() {
perl-module_src_install

newinitd "${FILESDIR}/srsd.init" srsd
newconfd "${FILESDIR}/srsd.conf" srsd
}

pkg_postinst() {
einfo 'NOTE: srsd default configuration is to use a secret string.'
einfo 'You can configure this value in /etc/conf.d/srsd.'
einfo ''
einfo 'You cannot use both --secret and --secretfile options combined.'
einfo 'The former will override the latter.'
einfo ''
einfo 'If you want to use a secret file, make sure the file'
einfo 'is NOT empty and contains characters.'
}






[gentoo-commits] gentoo-x86 commit in dev-perl/Mail-SRS/files: srsd.init srsd.conf

2014-12-14 Thread Patrice Clement (monsieurp)
monsieurp14/12/14 18:56:07

  Added:srsd.init srsd.conf
  Log:
  Revision bump: add {init,conf}.d files as requested by user. Fix #462920.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.1  dev-perl/Mail-SRS/files/srsd.init

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SRS/files/srsd.init?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SRS/files/srsd.init?rev=1.1&content-type=text/plain

Index: srsd.init
===
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/files/srsd.init,v 1.1 
2014/12/14 18:56:07 monsieurp Exp $

pidfile="/var/run/srsd.pid"
command="/usr/bin/srsd"
command_args="${SRSD_OPTS}"

depend() {
use logger
}

start_pre() {
if [[ ! -z ${SRSD_SECRET_FILE} ]]; then
# check for secret file
checkpath --file --owner root:root --mode 0644 ${SRSD_SECRET_FILE}

# srsd complains if the secret file is empty
# check for characters in it 
grep -q '.' ${SRSD_SECRET_FILE}

# grep returns 0 if a match has been found
# 1 otherwise
local retval=$?
if [[ $retval -ne 0 ]]; then
eerror "Secret file \"${SRSD_SECRET_FILE}\" must NOT be empty."
return 1
fi
fi

return 0
}

start() {
ebegin 'Starting srsd'
start-stop-daemon \
--start \
--background \
--pidfile ${pidfile} \
--make-pidfile \
--exec ${command} \
-- ${command_args}
eend $?
}

stop() {
ebegin 'Stopping srsd'
start-stop-daemon \
--stop \
--pidfile ${pidfile} \
--exec ${command}
eend $?
}



1.1  dev-perl/Mail-SRS/files/srsd.conf

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SRS/files/srsd.conf?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SRS/files/srsd.conf?rev=1.1&content-type=text/plain

Index: srsd.conf
===
# conf.d file for srsd
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/files/srsd.conf,v 1.1 
2014/12/14 18:56:07 monsieurp Exp $

# Options available (copied from the man page):
#
# --separator
# String, specified at most once. Defaults to $SRSSEP ("=").
# Specify the initial separator for the SRS address. See Mail::SRS for
# details.
#
SRSD_SEPARATOR='='

# 
# --secret
# String, may be specified multiple times, at least one of --secret or
# --secretfile must be specified.
#
# --secret will specify a primary secret and override --secretfile if both are
# specified. However, secrets read from --secretfile will still be used for
# decoding if both are specified.
#
# Specify an SRS secret. The first specified secret is used for encoding. All
# secrets are used for decoding.
#
# This is a dummy value. Change it to something more relevant.
SRSD_SECRET_STRING='mysecretstring'

# 
# --secretfile
# String, specified at most once, at least one of --secret or --secretfile must
# be specified.
# 
# A file to read for secrets. Secrets are specified once per line. The first
# specified secret is used for encoding.  Secrets are written one per line. 
Blank
# lines and lines starting with a # are ignored.  If --secret is not given, then
# the secret file must be nonempty.
#
# This is a dummy value. Change the value as you see fit.
# SRSD_SECRET_FILE='/etc/mysecretfile'

# 
# --hashlength 
# Integer, may be specified at most once, defaults to 4.
SRSD_HASHLENGHT=4

#
# Note: You cannot use both --secret and --secretfile options. 
# The former will override the latter.

# Stick options you wish to use in SRSD_OPTS
SRSD_OPTS="
--secret=${SRSD_SECRET_STRING}
--separator=${SRSD_SEPARATOR}
--hashlength=${SRSD_HASHLENGHT}
"






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

2014-12-14 Thread Mikle Kolyada (zlogene)
zlogene 14/12/14 17:52:03

  Modified: Test-Warnings-0.16.0.ebuild ChangeLog
  Log:
  Add ~amd64-fbsd keyword wrt bug #531172
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.7  dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild?r1=1.6&r2=1.7

Index: Test-Warnings-0.16.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Test-Warnings-0.16.0.ebuild 14 Dec 2014 14:42:26 -  1.6
+++ Test-Warnings-0.16.0.ebuild 14 Dec 2014 17:52:03 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild,v 
1.6 2014/12/14 14:42:26 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Warnings/Test-Warnings-0.16.0.ebuild,v 
1.7 2014/12/14 17:52:03 zlogene Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION='Test for warnings and the lack of them'
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-fbsd"
 IUSE="test"
 
 # Test::Builder -> perl-Test-Simple



1.7  dev-perl/Test-Warnings/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-Warnings/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   14 Dec 2014 14:42:26 -  1.6
+++ ChangeLog   14 Dec 2014 17:52:03 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Test-Warnings
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Warnings/ChangeLog,v 1.6 
2014/12/14 14:42:26 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Warnings/ChangeLog,v 1.7 
2014/12/14 17:52:03 zlogene Exp $
+
+  14 Dec 2014; Mikle Kolyada  Test-Warnings-0.16.0.ebuild:
+  Add ~amd64-fbsd keyword wrt bug #531172
 
   14 Dec 2014; Mikle Kolyada  Test-Warnings-0.16.0.ebuild:
   Add ~alpha keyword wrt bug #531172






[gentoo-commits] proj/python-gentoo-patches: New tag: 2.7.9-0

2014-12-14 Thread Mike Gilbert
commit: 
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Dec 14 17:17:07 2014 +

New tag: 2.7.9-0




[gentoo-commits] proj/python-gentoo-patches: New branch: 2.7.9

2014-12-14 Thread Mike Gilbert
commit: 
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Dec 14 17:17:02 2014 +

New branch: 2.7.9




[gentoo-commits] gentoo-x86 commit in dev-lang/python: python-2.7.9.ebuild ChangeLog

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 17:14:57

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

Revision  ChangesPath
1.799dev-lang/python/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v
retrieving revision 1.798
retrieving revision 1.799
diff -u -r1.798 -r1.799
--- ChangeLog   11 Dec 2014 16:05:48 -  1.798
+++ ChangeLog   14 Dec 2014 17:14:57 -  1.799
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.798 
2014/12/11 16:05:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.799 
2014/12/14 17:14:57 floppym Exp $
+
+*python-2.7.9 (14 Dec 2014)
+
+  14 Dec 2014; Mike Gilbert  +python-2.7.9.ebuild:
+  Version bump.
 
   11 Dec 2014; Michał Górny  python-3.2.5-r6.ebuild:
   Add a postinst explaining that Python 3.2 is not supported.



1.1  dev-lang/python/python-2.7.9.ebuild

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

Index: python-2.7.9.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.9.ebuild,v 1.1 
2014/12/14 17:14:57 floppym Exp $

EAPI="4"
WANT_AUTOMAKE="none"
WANT_LIBTOOL="none"

inherit autotools eutils flag-o-matic multilib pax-utils python-utils-r1 
toolchain-funcs multiprocessing

MY_P="Python-${PV}"
PATCHSET_VERSION="2.7.9-0"

DESCRIPTION="An interpreted, interactive, object-oriented programming language"
HOMEPAGE="http://www.python.org/";
SRC_URI="http://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz

http://dev.gentoo.org/~floppym/python/python-gentoo-patches-${PATCHSET_VERSION}.tar.xz";

LICENSE="PSF-2"
SLOT="2.7"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="-berkdb build doc elibc_uclibc examples gdbm hardened ipv6 +ncurses 
+readline sqlite +ssl +threads tk +wide-unicode wininst +xml"

# Do not add a dependency on dev-lang/python to this ebuild.
# If you need to apply a patch which requires python for bootstrapping, please
# run the bootstrap code on your dev box and include the results in the
# patchset. See bug 447752.

RDEPEND="app-arch/bzip2
>=sys-libs/zlib-1.1.3
virtual/libffi
virtual/libintl
!build? (
berkdb? ( || (
sys-libs/db:5.3
sys-libs/db:5.2
sys-libs/db:5.1
sys-libs/db:5.0
sys-libs/db:4.8
sys-libs/db:4.7
sys-libs/db:4.6
sys-libs/db:4.5
sys-libs/db:4.4
sys-libs/db:4.3
sys-libs/db:4.2
) )
gdbm? ( sys-libs/gdbm[berkdb] )
ncurses? (
>=sys-libs/ncurses-5.2
readline? ( >=sys-libs/readline-4.1 )
)
sqlite? ( >=dev-db/sqlite-3.3.8:3 )
ssl? ( dev-libs/openssl )
tk? (
>=dev-lang/tk-8.0
dev-tcltk/blt
dev-tcltk/tix
)
xml? ( >=dev-libs/expat-2.1 )
)
!!https://bugs.gentoo.org/show_bug.cgi?id=50309
if is-flagq -O3; then
is-flagq -fstack-protector-all && replace-flags -O3 -O2
use hardened && replace-flags -O3 -O2
fi

if tc-is-cross-compiler; then
# Force some tests that try to poke fs paths.
export ac_cv_file__dev_ptc=no
export ac_cv_file__dev_ptmx=yes
fi

# Export CXX so it ends up in /usr/lib/python2.X/config/Makefile.
tc-export CXX
# The configure script fails to use pkg-config correctly.
# http://bugs.python.org/issue15506
export ac_cv_path_PKG_CONFIG=$(tc-getPKG_CONFIG)

# Set LDFLAGS so we link modules wit

[gentoo-commits] gentoo-x86 commit in media-gfx/imagemagick: ChangeLog imagemagick-6.8.9.8.ebuild imagemagick-6.8.9.7.ebuild imagemagick-6.8.8.10-r1.ebuild

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 17:07:08

  Modified: ChangeLog
  Removed:  imagemagick-6.8.9.8.ebuild
imagemagick-6.8.9.7.ebuild
imagemagick-6.8.8.10-r1.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  ChangesPath
1.578media-gfx/imagemagick/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v
retrieving revision 1.577
retrieving revision 1.578
diff -u -r1.577 -r1.578
--- ChangeLog   14 Dec 2014 17:06:00 -  1.577
+++ ChangeLog   14 Dec 2014 17:07:08 -  1.578
@@ -1,6 +1,13 @@
 # ChangeLog for media-gfx/imagemagick
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.577 
2014/12/14 17:06:00 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.578 
2014/12/14 17:07:08 radhermit Exp $
+
+  14 Dec 2014; Tim Harder 
+  -imagemagick-6.8.8.10-r1.ebuild, -imagemagick-6.8.9.7.ebuild,
+  -imagemagick-6.8.9.8.ebuild,
+  -files/imagemagick-6.8.8.8-openjpeg-2.0.0-has-no-opj_stream_destroy_v3.patch,
+  -files/imagemagick-6.8.8.10-LIBOPENJP2_DELEGATE_not_JP2_DELEGATE.patch:
+  Remove old.
 
 *imagemagick-6.9.0.0 (14 Dec 2014)
 






[gentoo-commits] gentoo-x86 commit in media-gfx/imagemagick/files: imagemagick-6.8.8.10-LIBOPENJP2_DELEGATE_not_JP2_DELEGATE.patch imagemagick-6.8.8.8-openjpeg-2.0.0-has-no-opj_stream_destroy_v3.patch

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 17:07:08

  Removed: 

imagemagick-6.8.8.10-LIBOPENJP2_DELEGATE_not_JP2_DELEGATE.patch

imagemagick-6.8.8.8-openjpeg-2.0.0-has-no-opj_stream_destroy_v3.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)



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

2014-12-14 Thread Tim Harder (radhermit)
radhermit14/12/14 17:06:00

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

Revision  ChangesPath
1.577media-gfx/imagemagick/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v
retrieving revision 1.576
retrieving revision 1.577
diff -u -r1.576 -r1.577
--- ChangeLog   10 Nov 2014 13:51:54 -  1.576
+++ ChangeLog   14 Dec 2014 17:06:00 -  1.577
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/imagemagick
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.576 
2014/11/10 13:51:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/ChangeLog,v 1.577 
2014/12/14 17:06:00 radhermit Exp $
+
+*imagemagick-6.9.0.0 (14 Dec 2014)
+
+  14 Dec 2014; Tim Harder  +imagemagick-6.9.0.0.ebuild:
+  Version bump.
 
   10 Nov 2014; Agostino Sarubbo  imagemagick-6.8.9.9.ebuild:
   Stable for ppc64, wrt bug #527028



1.1  media-gfx/imagemagick/imagemagick-6.9.0.0.ebuild

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

Index: imagemagick-6.9.0.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.9.0.0.ebuild,v 1.1 
2014/12/14 17:06:00 radhermit Exp $

EAPI=5
inherit eutils flag-o-matic libtool multilib toolchain-funcs versionator

MY_P=ImageMagick-$(replace_version_separator 3 '-')

DESCRIPTION="A collection of tools and libraries for many image formats"
HOMEPAGE="http://www.imagemagick.org/";
SRC_URI="mirror://${PN}/${MY_P}.tar.xz"

LICENSE="imagemagick"
SLOT="0/${PV}"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"

RESTRICT="perl? ( userpriv )"

# Drop the libtool dep once libltdl goes stable.
RDEPEND="|| ( dev-libs/libltdl:0 =media-gfx/autotrace-0.31.1 )
bzip2? ( app-arch/bzip2 )
corefonts? ( media-fonts/corefonts )
djvu? ( app-text/djvu )
fftw? ( sci-libs/fftw:3.0 )
fontconfig? ( media-libs/fontconfig )
fpx? ( >=media-libs/libfpx-1.3.0-r1 )
graphviz? ( media-gfx/graphviz )
jbig? ( >=media-libs/jbigkit-2:= )
jpeg? ( virtual/jpeg:0 )
jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
lcms? ( media-libs/lcms:2= )
lqr? ( media-libs/liblqr )
opencl? ( virtual/opencl )
openexr? ( media-libs/openexr:0= )
pango? ( x11-libs/pango )
perl? ( >=dev-lang/perl-5.8.8:0= )
png? ( media-libs/libpng:0= )
postscript? ( app-text/ghostscript-gpl )
raw? ( media-gfx/ufraw )
svg? ( gnome-base/librsvg )
tiff? ( media-libs/tiff:0= )
truetype? (
media-fonts/urw-fonts
>=media-libs/freetype-2
)
webp? ( media-libs/libwebp:0= )
wmf? ( media-libs/libwmf )
X? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libXext
x11-libs/libXt
)
xml? ( dev-libs/libxml2:= )
lzma? ( app-arch/xz-utils )
zlib? ( sys-libs/zlib:= )"
DEPEND="${RDEPEND}
!media-gfx/graphicsmagick[imagemagick]
virtual/pkgconfig
X? ( x11-proto/xextproto )"

REQUIRED_USE="corefonts? ( truetype )
test? ( corefonts )"

S=${WORKDIR}/${MY_P}

src_prepare() {
epatch_user

elibtoolize # for Darwin modules

# For testsuite, see http://bugs.gentoo.org/show_bug.cgi?id=500580#c3
shopt -s nullglob
mesa_cards=$(echo -n /dev/dri/card* | sed 's/ /:/g')
if test -n "${mesa_cards}"; then
addpredict "${mesa_cards}"
fi

[gentoo-commits] gentoo-x86 commit in dev-ruby/hoe: hoe-3.13.0-r1.ebuild hoe-3.13.0.ebuild ChangeLog

2014-12-14 Thread Manuel Rueger (mrueg)
mrueg   14/12/14 16:58:23

  Modified: hoe-3.13.0.ebuild ChangeLog
  Added:hoe-3.13.0-r1.ebuild
  Log:
  Create a stable candidate of hoe-3.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.3  dev-ruby/hoe/hoe-3.13.0.ebuild

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

Index: hoe-3.13.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/hoe/hoe-3.13.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hoe-3.13.0.ebuild   29 Oct 2014 18:48:28 -  1.2
+++ hoe-3.13.0.ebuild   14 Dec 2014 16:58:23 -  1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/hoe-3.13.0.ebuild,v 1.2 
2014/10/29 18:48:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/hoe-3.13.0.ebuild,v 1.3 
2014/12/14 16:58:23 mrueg Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20"
 
 RUBY_FAKEGEM_TASK_DOC=""
 



1.166dev-ruby/hoe/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog   29 Oct 2014 18:48:28 -  1.165
+++ ChangeLog   14 Dec 2014 16:58:23 -  1.166
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/hoe
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.165 2014/10/29 
18:48:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.166 2014/12/14 
16:58:23 mrueg Exp $
+
+*hoe-3.13.0-r1 (14 Dec 2014)
+
+  14 Dec 2014; Manuel Rüger  +hoe-3.13.0-r1.ebuild,
+  hoe-3.13.0.ebuild:
+  Create a stable candidate of hoe-3.
 
   29 Oct 2014; Manuel Rüger  
-files/hoe-2.10.0-test-fix.patch,
   -files/hoe-2.5.0-tests.patch,



1.1  dev-ruby/hoe/hoe-3.13.0-r1.ebuild

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

Index: hoe-3.13.0-r1.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/hoe-3.13.0-r1.ebuild,v 1.1 
2014/12/14 16:58:23 mrueg Exp $

EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"

RUBY_FAKEGEM_TASK_DOC=""

RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc"

RUBY_FAKEGEM_EXTRAINSTALL="template"

inherit ruby-fakegem

DESCRIPTION="Hoe extends rake to provide full project automation"
HOMEPAGE="http://seattlerb.rubyforge.org/";

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

ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )"

ruby_add_rdepend ">=dev-ruby/rake-0.8.7 >=dev-ruby/rdoc-4.0"

all_ruby_prepare() {
# Skip isolation
sed -i -e '/isolate/ s:^:#:' Rakefile || die

# Skip test depending on specifics of gem command name
sed -i -e '/test_nosudo/,/^  end/ s:^:#:' test/test_hoe.rb || die

# Gem.bin_wrapper does not work as expected on Gentoo.
sed -i -e 's/Gem.bin_wrapper//' lib/hoe/rcov.rb lib/hoe/publish.rb 
test/test_hoe_publish.rb || die
}

all_ruby_compile() {
all_fakegem_compile

rdoc --title "seattlerb's hoe-3.5.1 Documentation" -o doc --main 
README.txt lib History.txt Manifest.txt README.txt || die
}






[gentoo-commits] gentoo-x86 commit in sci-electronics/ngspice: ngspice-24.ebuild ChangeLog ngspice-26.ebuild ngspice-25.ebuild

2014-12-14 Thread Thomas Beierlein (tomjbe)
tomjbe  14/12/14 16:53:03

  Modified: ngspice-24.ebuild ChangeLog ngspice-26.ebuild
ngspice-25.ebuild
  Log:
  Builds also with ncurses[tinfo] (bug #458128)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0x762053D5)

Revision  ChangesPath
1.7  sci-electronics/ngspice/ngspice-24.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?r1=1.6&r2=1.7

Index: ngspice-24.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ngspice-24.ebuild   10 Aug 2014 20:28:24 -  1.6
+++ ngspice-24.ebuild   14 Dec 2014 16:53:03 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 
1.6 2014/08/10 20:28:24 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 
1.7 2014/12/14 16:53:03 tomjbe Exp $
 
 EAPI="3"
 
@@ -30,6 +30,8 @@
sed -e 's/_CFLAGS -O2/_CFLAGS/' -i configure.ac || die "sed failed"
sed -e 's/LDFLAGS =/LDFLAGS +=/' -i src/xspice/icm/makedefs.in || die 
"sed failed"
sed -e '/AM_INIT_AUTOMAKE/s:-Werror::' -i configure.ac || die "sed 
failed"
+   # builds also with ncurses[tinfo] (bug #458128)
+   sed -e 's/ncurses termcap/ncurses termcap tinfo/g' -i configure.ac || 
die
eautoreconf
 }
 



1.10 sci-electronics/ngspice/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   10 Aug 2014 20:28:24 -  1.9
+++ ChangeLog   14 Dec 2014 16:53:03 -  1.10
@@ -1,6 +1,10 @@
 # ChangeLog for sci-electronics/ngspice
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.9 
2014/08/10 20:28:24 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.10 
2014/12/14 16:53:03 tomjbe Exp $
+
+  14 Dec 2014; Thomas Beierlein  ngspice-24.ebuild,
+  ngspice-25.ebuild, ngspice-26.ebuild:
+  Builds also with ncurses[tinfo] (bug #458128)
 
   10 Aug 2014; Sergei Trofimovich  ngspice-24.ebuild,
   ngspice-25.ebuild, ngspice-26.ebuild:



1.3  sci-electronics/ngspice/ngspice-26.ebuild

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

Index: ngspice-26.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-26.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ngspice-26.ebuild   10 Aug 2014 20:28:24 -  1.2
+++ ngspice-26.ebuild   14 Dec 2014 16:53:03 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-26.ebuild,v 
1.2 2014/08/10 20:28:24 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-26.ebuild,v 
1.3 2014/12/14 16:53:03 tomjbe Exp $
 
 EAPI="3"
 
@@ -30,6 +30,8 @@
sed -e 's/_CFLAGS -O2/_CFLAGS/' -i configure.ac || die "sed failed"
sed -e 's/LDFLAGS =/LDFLAGS +=/' -i src/xspice/icm/makedefs.in || die 
"sed failed"
sed -e '/AM_INIT_AUTOMAKE/s:-Werror::' -i configure.ac || die "sed 
failed"
+   # builds also with ncurses[tinfo] (bug #458128)
+   sed -e 's/ncurses termcap/ncurses termcap tinfo/g' -i configure.ac || 
die
eautoreconf
 }
 



1.4  sci-electronics/ngspice/ngspice-25.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-25.ebuild?rev=1

[gentoo-commits] gentoo-x86 commit in dev-python/expects: ChangeLog expects-0.6.2.ebuild

2014-12-14 Thread Alex Brandt (alunduil)
alunduil14/12/14 16:12:00

  Modified: ChangeLog
  Added:expects-0.6.2.ebuild
  Log:
  add version 0.6.2
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
11A8217C!)

Revision  ChangesPath
1.6  dev-python/expects/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   7 Dec 2014 20:01:01 -   1.5
+++ ChangeLog   14 Dec 2014 16:12:00 -  1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/expects
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.5 
2014/12/07 20:01:01 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.6 
2014/12/14 16:12:00 alunduil Exp $
+
+*expects-0.6.2 (14 Dec 2014)
+
+  14 Dec 2014; Alex Brandt  +expects-0.6.2.ebuild:
+  add version 0.6.2
 
 *expects-0.6.1 (07 Dec 2014)
 



1.1  dev-python/expects/expects-0.6.2.ebuild

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

Index: expects-0.6.2.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/expects-0.6.2.ebuild,v 
1.1 2014/12/14 16:12:00 alunduil Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit distutils-r1

DESCRIPTION="Expressive and extensible TDD/BDD assertion library for Python"
HOMEPAGE="https://github.com/jaimegildesagredo/expects";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc test"

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

python_compile_all() {
use doc && emake -C docs html
}

python_test() {
mamba || die "Tests failed under ${EPYTHON}"
}

python_install_all() {
use doc && local HTML_DOCS=( docs/_build/html/. )

distutils-r1_python_install_all
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/nokogiri: ChangeLog nokogiri-1.6.5.ebuild nokogiri-1.6.4.1.ebuild

2014-12-14 Thread Hans de Graaff (graaff)
graaff  14/12/14 16:02:23

  Modified: ChangeLog nokogiri-1.6.5.ebuild
nokogiri-1.6.4.1.ebuild
  Log:
  Remain compatible with all hoe versions, fixing bug 532554.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.116dev-ruby/nokogiri/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog   14 Dec 2014 09:45:12 -  1.115
+++ ChangeLog   14 Dec 2014 16:02:23 -  1.116
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/nokogiri
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/ChangeLog,v 1.115 
2014/12/14 09:45:12 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/ChangeLog,v 1.116 
2014/12/14 16:02:23 graaff Exp $
+
+  14 Dec 2014; Hans de Graaff  nokogiri-1.6.4.1.ebuild,
+  nokogiri-1.6.5.ebuild:
+  Remain compatible with all hoe versions, fixing bug 532554.
 
   14 Dec 2014; Hans de Graaff  -nokogiri-1.6.0.ebuild,
   -nokogiri-1.6.3.1.ebuild, -nokogiri-1.6.4.ebuild:



1.2  dev-ruby/nokogiri/nokogiri-1.6.5.ebuild

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

Index: nokogiri-1.6.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.6.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nokogiri-1.6.5.ebuild   3 Dec 2014 07:06:14 -   1.1
+++ nokogiri-1.6.5.ebuild   14 Dec 2014 16:02:23 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.6.5.ebuild,v 
1.1 2014/12/03 07:06:14 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.6.5.ebuild,v 
1.2 2014/12/14 16:02:23 graaff Exp $
 
 EAPI=5
 
@@ -43,6 +43,7 @@
sed -i \
-e '/tasks\/cross_compile/s:^:#:' \
-e '/:test.*prerequisites/s:^:#:' \
+   -e '/license/ s:^:#:' \
Rakefile || die
# Remove the cross compilation options since they interfere with
# native building.



1.3  dev-ruby/nokogiri/nokogiri-1.6.4.1.ebuild

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

Index: nokogiri-1.6.4.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.6.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nokogiri-1.6.4.1.ebuild 14 Dec 2014 09:44:17 -  1.2
+++ nokogiri-1.6.4.1.ebuild 14 Dec 2014 16:02:23 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.6.4.1.ebuild,v 
1.2 2014/12/14 09:44:17 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.6.4.1.ebuild,v 
1.3 2014/12/14 16:02:23 graaff Exp $
 
 EAPI=5
 
@@ -43,6 +43,7 @@
sed -i \
-e '/tasks\/cross_compile/s:^:#:' \
-e '/:test.*prerequisites/s:^:#:' \
+   -e '/license/ s:^:#:' \
Rakefile || die
# Remove the cross compilation options since they interfere with
# native building.






[gentoo-commits] gentoo-x86 commit in media-sound/mpg123: ChangeLog mpg123-1.15.4.ebuild

2014-12-14 Thread Mikle Kolyada (zlogene)
zlogene 14/12/14 15:59:07

  Modified: ChangeLog
  Removed:  mpg123-1.15.4.ebuild
  Log:
  Security cleanup
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.315media-sound/mpg123/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.315&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.315&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpg123/ChangeLog?r1=1.314&r2=1.315

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v
retrieving revision 1.314
retrieving revision 1.315
diff -u -r1.314 -r1.315
--- ChangeLog   11 Oct 2014 20:45:17 -  1.314
+++ ChangeLog   14 Dec 2014 15:59:07 -  1.315
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/mpg123
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.314 
2014/10/11 20:45:17 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.315 
2014/12/14 15:59:07 zlogene Exp $
+
+  14 Dec 2014; Mikle Kolyada  -mpg123-1.15.4.ebuild:
+  Security cleanup
 
 *mpg123-1.21.0 (11 Oct 2014)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/systemd: systemd-9999.ebuild metadata.xml systemd-218.ebuild ChangeLog

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 15:58:27

  Modified: systemd-.ebuild metadata.xml systemd-218.ebuild
ChangeLog
  Log:
  Optionally depend on libxkbcommon for keymap validation in logind, bug 
532530. Restore systemd-consoled.service.in missing from the tarball.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0BBEEA1FEA4843A4)

Revision  ChangesPath
1.149sys-apps/systemd/systemd-.ebuild

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

Index: systemd-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- systemd-.ebuild 14 Dec 2014 05:27:58 -  1.148
+++ systemd-.ebuild 14 Dec 2014 15:58:27 -  1.149
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v 
1.148 2014/12/14 05:27:58 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-.ebuild,v 
1.149 2014/12/14 15:58:27 floppym Exp $
 
 EAPI=5
 
@@ -27,7 +27,7 @@
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="acl apparmor audit cryptsetup curl doc elfutils gcrypt gudev http
idn introspection kdbus +kmod lz4 lzma pam policykit python qrcode 
+seccomp
-   selinux ssl terminal test vanilla"
+   selinux ssl terminal test vanilla xkb"
 
 MINKV="3.8"
 
@@ -55,9 +55,10 @@
qrcode? ( media-gfx/qrencode:0= )
seccomp? ( sys-libs/libseccomp:0= )
selinux? ( sys-libs/libselinux:0= )
-   terminal? ( dev-libs/libevdev:0=
-   >=x11-libs/libxkbcommon-0.4:0=
-   x11-libs/libdrm:0= )
+   terminal? ( >=dev-libs/libevdev-1.2:0=
+   >=x11-libs/libxkbcommon-0.5:0=
+   >=x11-libs/libdrm-2.4:0= )
+   xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= )
abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )"
 
@@ -231,6 +232,7 @@
$(multilib_native_use_enable terminal)
$(multilib_native_use_enable test tests)
$(multilib_native_use_enable test dbus)
+   $(multilib_native_use_enable xkb xkbcommon)
 
# Disable optional binaries for non-native abis
$(multilib_native_enable backlight)



1.32 sys-apps/systemd/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/metadata.xml?rev=1.32&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/metadata.xml?rev=1.32&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd/metadata.xml?r1=1.31&r2=1.32

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/metadata.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- metadata.xml30 Oct 2014 08:47:31 -  1.31
+++ metadata.xml14 Dec 2014 15:58:27 -  1.32
@@ -21,5 +21,6 @@
Enable system call filtering via 
seccomp
Enable experimental userspace virtual 
terminal support
Disable Gentoo-specific behavior and 
compatibility quirks
+   Validate XKB keymap in logind

 



1.2  sys-apps/systemd/systemd-218.ebuild

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

Index: systemd-218.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-218.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- systemd-218.ebuild  14 Dec 2014 05:27:58 -  1.1
+++ systemd-218.ebuild  14 Dec 2014 15:58:27 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-218.ebuild,v 1.1 
2014/12/14 05:27:58 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-218.ebuild,v 1.2 
2014/12/14 15:58:27 fl

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

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 15:57:34

  Modified: ChangeLog package.use.mask
  Log:
  Mask sys-apps/systemd[xkb].

Revision  ChangesPath
1.238profiles/arch/sparc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -r1.237 -r1.238
--- ChangeLog   14 Dec 2014 06:56:09 -  1.237
+++ ChangeLog   14 Dec 2014 15:57:34 -  1.238
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sparc profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.237 
2014/12/14 06:56:09 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.238 
2014/12/14 15:57:34 floppym Exp $
+
+  14 Dec 2014; Mike Gilbert  package.use.mask:
+  Mask sys-apps/systemd[xkb].
 
   14 Dec 2014; Mark Wright  package.use.mask:
   Mask test for dev-haskell/{haskell-src-exts, text, vector}



1.179profiles/arch/sparc/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- package.use.mask14 Dec 2014 06:56:09 -  1.178
+++ package.use.mask14 Dec 2014 15:57:34 -  1.179
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v 
1.178 2014/12/14 06:56:09 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v 
1.179 2014/12/14 15:57:34 floppym Exp $
 
 # Mark Wright  (14 Dec 2014)
 # test dependencies need keywording
@@ -15,6 +15,7 @@
 # Michał Górny  (30 Oct 2014)
 # Requires non-keyworded >=x11-libs/libxkbcommon-0.4.
 sys-apps/systemd terminal
+sys-apps/systemd xkb
 
 # Pacho Ramos  (03 Oct 2014)
 # Missing keywords, bug #524352






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

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 15:57:02

  Modified: ChangeLog package.use.mask
  Log:
  Mask sys-apps/systemd[xkb].

Revision  ChangesPath
1.299profiles/arch/powerpc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v
retrieving revision 1.298
retrieving revision 1.299
diff -u -r1.298 -r1.299
--- ChangeLog   14 Dec 2014 06:55:58 -  1.298
+++ ChangeLog   14 Dec 2014 15:57:02 -  1.299
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/PPC profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.298 
2014/12/14 06:55:58 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.299 
2014/12/14 15:57:02 floppym Exp $
+
+  14 Dec 2014; Mike Gilbert  package.use.mask:
+  Mask sys-apps/systemd[xkb].
 
   14 Dec 2014; Mark Wright  package.use.mask:
   Mask test for dev-haskell/{haskell-src-exts, text, vector}



1.224profiles/arch/powerpc/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.mask,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -r1.223 -r1.224
--- package.use.mask14 Dec 2014 06:55:58 -  1.223
+++ package.use.mask14 Dec 2014 15:57:02 -  1.224
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.mask,v 
1.223 2014/12/14 06:55:58 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/package.use.mask,v 
1.224 2014/12/14 15:57:02 floppym Exp $
 
 # Mark Wright  (14 Dec 2014)
 # test dependencies need keywording
@@ -11,6 +11,7 @@
 # Michał Górny  (30 Oct 2014)
 # Requires non-keyworded >=x11-libs/libxkbcommon-0.4.
 sys-apps/systemd terminal
+sys-apps/systemd xkb
 
 # Chí-Thanh Christopher Nguyễn  (16 Sep 2014)
 # Needs libepoxy keywording, bug #510940






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

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 15:56:31

  Modified: ChangeLog package.use.mask
  Log:
  Mask sys-apps/systemd[xkb].

Revision  ChangesPath
1.218profiles/arch/ia64/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?rev=1.218&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?rev=1.218&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?r1=1.217&r2=1.218

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -r1.217 -r1.218
--- ChangeLog   14 Dec 2014 06:55:48 -  1.217
+++ ChangeLog   14 Dec 2014 15:56:31 -  1.218
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ia64 profile
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v 1.217 
2014/12/14 06:55:48 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v 1.218 
2014/12/14 15:56:31 floppym Exp $
+
+  14 Dec 2014; Mike Gilbert  package.use.mask:
+  Mask sys-apps/systemd[xkb].
 
   14 Dec 2014; Mark Wright  package.use.mask:
   Mask test for dev-haskell/{text, vector}



1.154profiles/arch/ia64/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- package.use.mask14 Dec 2014 06:55:48 -  1.153
+++ package.use.mask14 Dec 2014 15:56:31 -  1.154
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.153 
2014/12/14 06:55:48 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.154 
2014/12/14 15:56:31 floppym Exp $
 
 # Mark Wright  (14 Dec 2014)
 # test dependencies need keywording
@@ -14,6 +14,7 @@
 # Michał Górny  (30 Oct 2014)
 # Requires non-keyworded >=x11-libs/libxkbcommon-0.4.
 sys-apps/systemd terminal
+sys-apps/systemd xkb
 
 # Chí-Thanh Christopher Nguyễn  (16 Sep 2014)
 # Needs libepoxy keywording, bug #510940






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

2014-12-14 Thread Mike Gilbert (floppym)
floppym 14/12/14 15:52:04

  Modified: ChangeLog package.use.mask
  Log:
  Mask sys-apps/systemd[xkb].

Revision  ChangesPath
1.209profiles/arch/alpha/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog   14 Dec 2014 06:55:39 -  1.208
+++ ChangeLog   14 Dec 2014 15:52:04 -  1.209
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.208 
2014/12/14 06:55:39 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.209 
2014/12/14 15:52:04 floppym Exp $
+
+  14 Dec 2014; Mike Gilbert  package.use.mask:
+  Mask sys-apps/systemd[xkb].
 
   14 Dec 2014; Mark Wright  package.use.mask:
   Mask test for dev-haskell/{text, vector}



1.172profiles/arch/alpha/package.use.mask

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

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- package.use.mask14 Dec 2014 06:55:39 -  1.171
+++ package.use.mask14 Dec 2014 15:52:04 -  1.172
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.171 2014/12/14 06:55:39 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.172 2014/12/14 15:52:04 floppym Exp $
 
 # Mark Wright  (14 Dec 2014)
 # test dependencies need keywording
@@ -18,6 +18,7 @@
 # Michał Górny  (30 Oct 2014)
 # Requires non-keyworded >=x11-libs/libxkbcommon-0.4.
 sys-apps/systemd terminal
+sys-apps/systemd xkb
 
 # Tobias Klausmann  (11 Oct 2014)
 # app-emulation/qemu is not keyworded on alpha, masking flag that triggers






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

2014-12-14 Thread Matthias Maier (tamiko)
tamiko  14/12/14 15:40:22

  Modified: metadata.xml ChangeLog
  Added:qemu-2.2.0.ebuild
  Log:
  version bump; cleanup whitespace in metadata.xml
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
BD3A97A3)

Revision  ChangesPath
1.34 app-emulation/qemu/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/metadata.xml,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- metadata.xml27 Aug 2014 03:17:03 -  1.33
+++ metadata.xml14 Dec 2014 15:40:22 -  1.34
@@ -1,12 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  qemu
-  
-   car...@gentoo.org
+qemu
+
+   car...@gentoo.org
Doug Goldstein
-  
-  
+
+
Adds support for braille displays using 
brltty
Enables support for Linux's Async IO
Enable alsa output for sound emulation
@@ -41,8 +41,7 @@
Enable jpeg image support for the VNC console 
server
Enable png image support for the VNC console 
server
Enable USB passthrough via 
dev-libs/libusb
-   Use sys-apps/usbredir to redirect USB
-   devices to another machine over TCP
+   Use sys-apps/usbredir to redirect USB 
devices to another machine over TCP
Enable UUID support in the vdi block driver
Enable VDE-based networking
Enable accelerated networking using vhost-net, 
see http://www.linux-kvm.org/page/VhostNet
@@ -53,5 +52,5 @@
Enables support for Xen backends
Support xfsctl() notification and syncing for XFS 
backed
virtual disks.
-  
+
 



1.307app-emulation/qemu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.307&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.307&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.306&r2=1.307

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -r1.306 -r1.307
--- ChangeLog   11 Dec 2014 14:17:09 -  1.306
+++ ChangeLog   14 Dec 2014 15:40:22 -  1.307
@@ -1,6 +1,12 @@
 # ChangeLog for app-emulation/qemu
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.306 
2014/12/11 14:17:09 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.307 
2014/12/14 15:40:22 tamiko Exp $
+
+*qemu-2.2.0 (14 Dec 2014)
+
+  14 Dec 2014; Matthias Maier  +qemu-2.2.0.ebuild,
+  metadata.xml:
+  version bump; cleanup whitespace in metadata.xml
 
   11 Dec 2014; Michał Górny  qemu-2.1.2-r1.ebuild,
   qemu-.ebuild:



1.1  app-emulation/qemu/qemu-2.2.0.ebuild

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

Index: qemu-2.2.0.ebuild
===
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-2.2.0.ebuild,v 1.1 
2014/12/14 15:40:22 tamiko Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE="ncurses,readline"

inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
user udev fcaps readme.gentoo pax-utils

BACKPORTS=

if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="git://git.qemu.org/qemu.git"
inherit git-2
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.bz2
${BACKPORTS:+

http://dev.gentoo.org/~cardoe/distfiles/${P}-${BACKPORTS}.tar.xz}";
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
fi

DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org";

LICENSE="GPL-2 LGPL-2 BSD-2"
SLOT="0"
IUSE="accessibility +aio alsa bluetooth +caps +curl debug +fdt glusterfs \
gtk infiniband iscsi +jpeg \
kernel_linux kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs
+png pulseaudio python \
rbd sasl +seccomp sdl selinux smartcard snappy spice ssh s

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

2014-12-14 Thread Michael Palimaka
commit: b3a3aa3589415efb468c5c81fa906d67499ed883
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Dec 14 15:37:24 2014 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec 14 15:37:24 2014 +
URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b3a3aa35

[kde-apps/dolphin] Master is still KDE4.

Package-Manager: portage-2.2.15

---
 kde-apps/dolphin/dolphin-.ebuild | 73 
 1 file changed, 32 insertions(+), 41 deletions(-)

diff --git a/kde-apps/dolphin/dolphin-.ebuild 
b/kde-apps/dolphin/dolphin-.ebuild
index a16ecec..5ff375a 100644
--- a/kde-apps/dolphin/dolphin-.ebuild
+++ b/kde-apps/dolphin/dolphin-.ebuild
@@ -4,63 +4,54 @@
 
 EAPI=5
 
-EGIT_BRANCH="frameworks"
+KDE_HANDBOOK="optional"
 KMNAME="kde-baseapps"
-KDE_HANDBOOK=true
-inherit kde5
+inherit kde4-meta
 
-DESCRIPTION="KDE filemanager focusing on usability"
+DESCRIPTION="A KDE filemanager focusing on usability"
 HOMEPAGE="http://dolphin.kde.org 
http://www.kde.org/applications/system/dolphin";
 KEYWORDS=""
-IUSE="semantic-desktop"
+IUSE="debug semantic-desktop thumbnail"
 
 DEPEND="
-   $(add_frameworks_dep kbookmarks)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
+   $(add_kdebase_dep kactivities '' 4.13)
$(add_kdeapps_dep libkonq)
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   media-libs/phonon[qt5]
+   media-libs/phonon[qt4]
+   x11-libs/libXrender
semantic-desktop? (
-   $(add_kdeplasma_dep baloo)
-   $(add_kdeplasma_dep baloo-widgets)
-   $(add_kdeplasma_dep kfilemetadata)
+   $(add_kdebase_dep baloo)
+   $(add_kdebase_dep baloo-widgets)
+   $(add_kdebase_dep kfilemetadata)
)
 "
 RDEPEND="${DEPEND}
-   !kde-base/dolphin:4
+   $(add_kdeapps_dep kfind)
+   thumbnail? (
+   $(add_kdeapps_dep thumbnailers)
+   || (
+   $(add_kdeapps_dep ffmpegthumbs)
+   $(add_kdeapps_dep mplayerthumbs)
+   )
+   )
 "
 
-S=${S}/${PN}
+RESTRICT="test"
+# bug 393129
 
 src_configure() {
local mycmakeargs=(
-   $(cmake-utils_use_with semantic-desktop KF5Baloo)
-   $(cmake-utils_use_with semantic-desktop KF5BalooWidgets)
-   $(cmake-utils_use_with semantic-desktop KF5FileMetaData)
+   $(cmake-utils_use_with semantic-desktop Baloo)
+   $(cmake-utils_use_with semantic-desktop BalooWidgets)
+   $(cmake-utils_use_with semantic-desktop KFileMetaData)
)
 
-   kde5_src_configure
+   kde4-meta_src_configure
+}
+
+pkg_postinst() {
+   kde4-base_pkg_postinst
+
+   if ! has_version media-gfx/icoutils ; then
+   elog "For .exe file preview support, install 
media-gfx/icoutils."
+   fi
 }



  1   2   3   >