[gentoo-commits] proj/api:master commit in: files/overlays/

2015-03-22 Thread Michał Górny
commit: f7a5d6128b6b5876d1f0b492136d73ae569a86ab
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 23 06:55:49 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 23 06:55:49 2015 +
URL:https://gitweb.gentoo.org/proj/api.git/commit/?id=f7a5d612

Update URIs for yarik-overlay, requested via mail

X-Message-ID: <550F5392.80001  gmail.com>

 files/overlays/repositories.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 58bce86..4f9fdc3 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -5783,13 +5783,13 @@ FIN
   
 yarik-overlay
 Some new packages plus uncommitted patches and 
ebuilds for the main tree
-http://code.google.com/p/yarik-overlay/
+https://github.com/yarikmsu/yarik-overlay
 
   ygorbu...@gmail.com
   Yaroslav Gorbunov
 
-http://yarik-overlay.googlecode.com/svn/trunk/overlay
-https://code.google.com/feeds/p/yarik-overlay/svnchanges/basic
+https://github.com/yarikmsu/yarik-overlay.git
+https://github.com/yarikmsu/yarik-overlay/commits/master.atom
   
   
 yngwin



[gentoo-commits] gentoo-x86 commit in dev-python/sqlalchemy: sqlalchemy-1.0.0_beta3.ebuild ChangeLog

2015-03-22 Thread Patrick Lauer (patrick)
patrick 15/03/23 06:50:41

  Modified: ChangeLog
  Added:sqlalchemy-1.0.0_beta3.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.151dev-python/sqlalchemy/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog   20 Mar 2015 00:11:25 -  1.150
+++ ChangeLog   23 Mar 2015 06:50:41 -  1.151
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/sqlalchemy
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/ChangeLog,v 1.150 
2015/03/20 00:11:25 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/ChangeLog,v 1.151 
2015/03/23 06:50:41 patrick Exp $
+
+*sqlalchemy-1.0.0_beta3 (23 Mar 2015)
+
+  23 Mar 2015; Patrick Lauer 
+  +sqlalchemy-1.0.0_beta3.ebuild:
+  Bump
 
   20 Mar 2015; Ian Delaney  -sqlalchemy-0.7.9-r1.ebuild,
   -sqlalchemy-0.9.1.ebuild, -sqlalchemy-0.9.4.ebuild, -sqlalchemy-0.9.6.ebuild,



1.1  dev-python/sqlalchemy/sqlalchemy-1.0.0_beta3.ebuild

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

Index: sqlalchemy-1.0.0_beta3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-1.0.0_beta3.ebuild,v 
1.1 2015/03/23 06:50:41 patrick Exp $

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

inherit distutils-r1 flag-o-matic

MY_PN="SQLAlchemy"
MY_P="${MY_PN}-${PV/_beta/b}"

DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
HOMEPAGE="http://www.sqlalchemy.org/ http://pypi.python.org/pypi/SQLAlchemy";
SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples +sqlite test"
REQUIRED_USE="test? ( sqlite )"

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

DEPEND="${RDEPEND}
test? ( dev-python/pytest[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7 pypy)
)"
S="${WORKDIR}/${MY_P}"

python_prepare_all() {
# Disable tests hardcoding function call counts specific to Python 
versions.
rm -r test/aaa_profiling || die
distutils-r1_python_prepare_all
}

python_compile() {
if ! python_is_python3; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}

python_test() {
# Create copies of necessary files in BUILD_DIR.
# https://bitbucket.org/zzzeek/sqlalchemy/issue/3144/
cp -pR examples sqla_nose.py setup.cfg test "${BUILD_DIR}" || die
pushd "${BUILD_DIR}" > /dev/null
if [[ "${EPYTHON}" == "python3.2" ]]; then
2to3 --no-diffs -w test
fi
# Recently upstream elected to make the testsuite also pytest capable
# "${PYTHON}" sqla_nose.py || die "Testsuite failed under ${EPYTHON}"
py.test test || die "Testsuite failed under ${EPYTHON}"
popd > /dev/null
}

python_install_all() {
use doc && HTML_DOCS=( doc/. )

use examples && local EXAMPLES=( examples/. )

distutils-r1_python_install_all
}

pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]]; then
if ! has_version dev-python/mysql-python; then
elog "For MySQL support, install 
dev-python/mysql-python"
fi

if ! has_version dev-python/pymssql; then
elog "For mssql support, install dev-python/pymssql"
fi

if ! has_version dev-python/psycopg:2; then
elog "For postgresql support, install 
dev-python/psycopg:2"
fi
fi

elog "mysql backend support can be enabled by installing mysql-python 
for cpython py2.7 only,"
elog "or mysql-connector-python for support of cpythons 2.7 3.3 and 

[gentoo-commits] gentoo-x86 commit in games-rpg/mana/files: mana-0.6.0-gentoo.patch

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 06:44:40

  Removed:  mana-0.6.0-gentoo.patch
  Log:
  old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)



[gentoo-commits] gentoo-x86 commit in games-rpg/mana: ChangeLog mana-0.6.0.ebuild

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 06:44:40

  Modified: ChangeLog
  Removed:  mana-0.6.0.ebuild
  Log:
  old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.21 games-rpg/mana/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-rpg/mana/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   26 Jan 2015 18:20:51 -  1.20
+++ ChangeLog   23 Mar 2015 06:44:40 -  1.21
@@ -1,6 +1,10 @@
 # ChangeLog for games-rpg/mana
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-rpg/mana/ChangeLog,v 1.20 2015/01/26 
18:20:51 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-rpg/mana/ChangeLog,v 1.21 2015/03/23 
06:44:40 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett 
+  -files/mana-0.6.0-gentoo.patch, -mana-0.6.0.ebuild:
+  old
 
   26 Jan 2015; Michael Sterrett 
   -files/mana-0.5.3-gentoo.patch, -mana-0.5.3.ebuild:






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

2015-03-22 Thread Ian Delaney (idella4)
idella4 15/03/23 06:41:02

  Modified: glance-2014.2.2-r2.ebuild ChangeLog
  Log:
  reset border to dep pysendfile ahead of upstream who will in time do it, 
fixing breakage in repoman
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  app-admin/glance/glance-2014.2.2-r2.ebuild

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

Index: glance-2014.2.2-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/glance/glance-2014.2.2-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glance-2014.2.2-r2.ebuild   11 Mar 2015 19:57:00 -  1.1
+++ glance-2014.2.2-r2.ebuild   23 Mar 2015 06:41:02 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-admin/glance/glance-2014.2.2-r2.ebuild,v 1.1 
2015/03/11 19:57:00 prometheanfire Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-admin/glance/glance-2014.2.2-r2.ebuild,v 1.2 
2015/03/23 06:41:02 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -41,7 +41,7 @@
=dev-python/pysendfile-2.0.0[${PYTHON_USEDEP}]
dev-python/qpid-python[${PYTHON_USEDEP}]
>=dev-python/pyxattr-0.5.0[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]



1.62 app-admin/glance/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/glance/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   11 Mar 2015 19:57:00 -  1.61
+++ ChangeLog   23 Mar 2015 06:41:02 -  1.62
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/glance
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/ChangeLog,v 1.61 
2015/03/11 19:57:00 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/ChangeLog,v 1.62 
2015/03/23 06:41:02 idella4 Exp $
+
+  23 Mar 2015; Ian Delaney  glance-2014.2.2-r2.ebuild:
+  reset border to dep pysendfile ahead of upstream who will in time do it,
+  fixing breakage in repoman
 
 *glance-2014.2.2-r2 (11 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in games-simulation/stoned-bin: stoned-bin-1.1.6.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 06:29:31

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

Revision  ChangesPath
1.8  games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild?r1=1.7&r2=1.8

Index: stoned-bin-1.1.6.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- stoned-bin-1.1.6.ebuild 25 Apr 2014 15:51:44 -  1.7
+++ stoned-bin-1.1.6.ebuild 23 Mar 2015 06:29:31 -  1.8
@@ -1,7 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild,v 
1.7 2014/04/25 15:51:44 ulm Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-simulation/stoned-bin/stoned-bin-1.1.6.ebuild,v 
1.8 2015/03/23 06:29:31 mr_bones_ Exp $
 
+EAPI=5
 inherit games
 
 DESCRIPTION="3D curling simulation"
@@ -20,12 +21,13 @@
=media-libs/fmod-3*
sys-libs/zlib
media-libs/libpng"
+DEPEND=${RDEPEND}
 
 S=${WORKDIR}/${P/-bin}-i386-linux
 
 src_install() {
into "${GAMES_PREFIX_OPT}"
-   dobin stoned || die "dobin failed"
+   dobin stoned
dodoc FAQ README
prepgamesdirs
 }



1.13 games-simulation/stoned-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-simulation/stoned-bin/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   25 Apr 2014 15:51:44 -  1.12
+++ ChangeLog   23 Mar 2015 06:29:31 -  1.13
@@ -1,6 +1,9 @@
 # ChangeLog for games-simulation/stoned-bin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/stoned-bin/ChangeLog,v 
1.12 2014/04/25 15:51:44 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/stoned-bin/ChangeLog,v 
1.13 2015/03/23 06:29:31 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett  stoned-bin-1.1.6.ebuild:
+  EAPI=5
 
   25 Apr 2014; Ulrich Müller  stoned-bin-1.1.6.ebuild:
   Fix LICENSE, public domain according to Free Software Directory.






[gentoo-commits] gentoo-x86 commit in games-util/ucon64: ucon64-2.0.0.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 06:18:44

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

Revision  ChangesPath
1.12 games-util/ucon64/ucon64-2.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild?r1=1.11&r2=1.12

Index: ucon64-2.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ucon64-2.0.0.ebuild 2 Mar 2014 09:39:21 -   1.11
+++ ucon64-2.0.0.ebuild 23 Mar 2015 06:18:44 -  1.12
@@ -1,7 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild,v 
1.11 2014/03/02 09:39:21 pacho Exp $
-EAPI=2
+# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild,v 
1.12 2015/03/23 06:18:44 mr_bones_ Exp $
+
+EAPI=5
 inherit eutils
 
 DESCRIPTION="The backup tool and wonderful emulator's Swiss Army knife program"
@@ -24,7 +25,7 @@
sed -i \
-e "/^CFLAGS/s/-O3/${CFLAGS}/" \
-e "/^LDFLAGS/s/-s$/${LDFLAGS}/" \
-   {,libdiscmage/}Makefile.in || die "sed failed"
+   {,libdiscmage/}Makefile.in || die
 }
 
 src_configure() {
@@ -35,12 +36,12 @@
myconf="${myconf} --disable-parallel"
fi
 
-   econf ${myconf} || die
+   econf ${myconf}
 }
 
 src_install() {
-   dobin ucon64 || die "dobin failed"
-   dolib.so libdiscmage/discmage.so || die "dolib.so failed"
+   dobin ucon64
+   dolib.so libdiscmage/discmage.so
cd ..
dohtml -x src -r -A png,jpg *
 }



1.18 games-util/ucon64/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-util/ucon64/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   2 Mar 2014 09:39:21 -   1.17
+++ ChangeLog   23 Mar 2015 06:18:44 -  1.18
@@ -1,6 +1,9 @@
 # ChangeLog for games-util/ucon64
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ChangeLog,v 1.17 
2014/03/02 09:39:21 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ChangeLog,v 1.18 
2015/03/23 06:18:44 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett  ucon64-2.0.0.ebuild:
+  EAPI=5
 
   02 Mar 2014; Pacho Ramos  ucon64-2.0.0.ebuild:
   amd64 stable, bug #382169






[gentoo-commits] gentoo-x86 commit in games-strategy/savage-bin: savage-bin-2.00e-r1.ebuild ChangeLog savage-bin-2.00e.ebuild

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 06:17:27

  Modified: savage-bin-2.00e-r1.ebuild ChangeLog
  Removed:  savage-bin-2.00e.ebuild
  Log:
  mark stable and clean old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.3  games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild?r1=1.2&r2=1.3

Index: savage-bin-2.00e-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- savage-bin-2.00e-r1.ebuild  25 Jun 2014 17:28:07 -  1.2
+++ savage-bin-2.00e-r1.ebuild  23 Mar 2015 06:17:27 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild,v 
1.2 2014/06/25 17:28:07 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00e-r1.ebuild,v 
1.3 2015/03/23 06:17:27 mr_bones_ Exp $
 
 EAPI=5
 inherit eutils games
@@ -18,7 +18,7 @@
 
 LICENSE="all-rights-reserved"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 RESTRICT="mirror bindist strip"
 



1.20 games-strategy/savage-bin/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/savage-bin/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   25 Jun 2014 17:28:07 -  1.19
+++ ChangeLog   23 Mar 2015 06:17:27 -  1.20
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/savage-bin
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/savage-bin/ChangeLog,v 1.19 
2014/06/25 17:28:07 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/savage-bin/ChangeLog,v 1.20 
2015/03/23 06:17:27 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett  
-savage-bin-2.00e.ebuild,
+  savage-bin-2.00e-r1.ebuild:
+  mark stable and clean old
 
   25 Jun 2014; Michał Górny  savage-bin-2.00e-r1.ebuild:
   Update multilib dependencies to use the lowest known EAPI 5 or multilib






[gentoo-commits] gentoo-x86 commit in games-strategy/warmux: warmux-11.04.1.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 06:04:24

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

Revision  ChangesPath
1.9  games-strategy/warmux/warmux-11.04.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/warmux-11.04.1.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/warmux-11.04.1.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/warmux-11.04.1.ebuild?r1=1.8&r2=1.9

Index: warmux-11.04.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/warmux/warmux-11.04.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- warmux-11.04.1.ebuild   11 Mar 2013 01:25:07 -  1.8
+++ warmux-11.04.1.ebuild   23 Mar 2015 06:04:23 -  1.9
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/warmux/warmux-11.04.1.ebuild,v 1.8 
2013/03/11 01:25:07 mr_bones_ Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-strategy/warmux/warmux-11.04.1.ebuild,v 1.9 
2015/03/23 06:04:23 mr_bones_ Exp $
 
-EAPI=2
+EAPI=5
 inherit autotools eutils games
 
 DESCRIPTION="A free Worms clone"
@@ -44,7 +44,6 @@
 
 src_configure() {
egamesconf \
-   --disable-dependency-tracking \
--with-localedir-name=/usr/share/locale \
--with-datadir-name="${GAMES_DATADIR}/${PN}" \
--with-font-path=/usr/share/fonts/dejavu/DejaVuSans.ttf \
@@ -54,10 +53,9 @@
 }
 
 src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc AUTHORS ChangeLog README TODO
+   default
rm -f "${D}${GAMES_DATADIR}/${PN}/font/DejaVuSans.ttf"
-   doicon data/icon/warmux.svg || die
-   make_desktop_entry warmux Warmux || die
+   doicon data/icon/warmux.svg
+   make_desktop_entry warmux Warmux
prepgamesdirs
 }



1.16 games-strategy/warmux/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-strategy/warmux/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   11 Mar 2013 01:25:07 -  1.15
+++ ChangeLog   23 Mar 2015 06:04:24 -  1.16
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/warmux
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/warmux/ChangeLog,v 1.15 
2013/03/11 01:25:07 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/warmux/ChangeLog,v 1.16 
2015/03/23 06:04:24 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett  warmux-11.04.1.ebuild:
+  EAPI=5
 
   11 Mar 2013; Michael Sterrett 
   +files/warmux-11.04.1-stat.patch, warmux-11.04.1.ebuild:






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

2015-03-22 Thread Jeroen Roovers (jer)
jer 15/03/23 05:39:40

  Modified: wireshark-.ebuild wireshark-1.12.4.ebuild
wireshark-1.99.5.ebuild ChangeLog
  Log:
  Use qmake-utils.eclass to find moc/uic (bug #488640).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.9  net-analyzer/wireshark/wireshark-.ebuild

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

Index: wireshark-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- wireshark-.ebuild   28 Jan 2015 23:04:20 -  1.8
+++ wireshark-.ebuild   23 Mar 2015 05:39:40 -  1.9
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild,v 1.8 
2015/01/28 23:04:20 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild,v 1.9 
2015/03/23 05:39:40 jer Exp $
 
 EAPI=5
-inherit autotools eutils fcaps git-r3 multilib qt4-r2 user
+inherit autotools eutils fcaps git-r3 multilib qmake-utils qt4-r2 user
 
 DESCRIPTION="A network protocol analyzer formerly known as ethereal"
 HOMEPAGE="http://www.wireshark.org/";
@@ -153,8 +153,10 @@
$(use_with portaudio) \
$(use_with qt4) \
$(use_with qt5) \
-   $(usex qt5 MOC=/usr/$(get_libdir)/qt5/bin/moc '') \
-   $(usex qt5 UIC=/usr/$(get_libdir)/qt5/bin/uic '') \
+   $(usex qt4 MOC=$(qt4_get_bindir)/moc '') \
+   $(usex qt4 UIC=$(qt4_get_bindir)/uic '') \
+   $(usex qt5 MOC=$(qt5_get_bindir)/moc '') \
+   $(usex qt5 UIC=$(qt5_get_bindir)/uic '') \
$(use_with sbc) \
$(use_with smi libsmi) \
$(use_with ssl gnutls) \



1.5  net-analyzer/wireshark/wireshark-1.12.4.ebuild

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

Index: wireshark-1.12.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.12.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wireshark-1.12.4.ebuild 6 Mar 2015 09:55:37 -   1.4
+++ wireshark-1.12.4.ebuild 23 Mar 2015 05:39:40 -  1.5
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.12.4.ebuild,v 1.4 
2015/03/06 09:55:37 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.12.4.ebuild,v 1.5 
2015/03/23 05:39:40 jer Exp $
 
 EAPI=5
-inherit autotools eutils fcaps multilib qt4-r2 user
+inherit autotools eutils fcaps multilib qmake-utils qt4-r2 user
 
 DESCRIPTION="A network protocol analyzer formerly known as ethereal"
 HOMEPAGE="http://www.wireshark.org/";
@@ -148,8 +148,10 @@
$(use_with portaudio) \
$(use_with qt4) \
$(use_with qt5) \
-   $(usex qt5 MOC=/usr/$(get_libdir)/qt5/bin/moc '') \
-   $(usex qt5 UIC=/usr/$(get_libdir)/qt5/bin/uic '') \
+   $(usex qt4 MOC=$(qt4_get_bindir)/moc '') \
+   $(usex qt4 UIC=$(qt4_get_bindir)/uic '') \
+   $(usex qt5 MOC=$(qt5_get_bindir)/moc '') \
+   $(usex qt5 UIC=$(qt5_get_bindir)/uic '') \
$(use_with sbc) \
$(use_with smi libsmi) \
$(use_with ssl gnutls) \



1.2  net-analyzer/wireshark/wireshark-1.99.5.ebuild

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

Index: wireshark-1.99.5.ebuild
==

[gentoo-commits] gentoo-x86 commit in app-emulation/winetricks: winetricks-99999999.ebuild ChangeLog winetricks-20141130.ebuild

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/23 05:34:46

  Modified: winetricks-.ebuild ChangeLog
winetricks-20141130.ebuild
  Log:
  Move live git uri from google code (shutting down) to github.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.13 app-emulation/winetricks/winetricks-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/winetricks/winetricks-.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/winetricks/winetricks-.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/winetricks/winetricks-.ebuild?r1=1.12&r2=1.13

Index: winetricks-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- winetricks-.ebuild  7 Mar 2015 22:22:23 -   1.12
+++ winetricks-.ebuild  23 Mar 2015 05:34:46 -  1.13
@@ -1,13 +1,13 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-.ebuild,v 
1.12 2015/03/07 22:22:23 tetromino Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-.ebuild,v 
1.13 2015/03/23 05:34:46 tetromino Exp $
 
 EAPI=5
 
 inherit gnome2-utils eutils
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://code.google.com/p/winetricks/";
+   EGIT_REPO_URI="https://github.com/Winetricks/winetricks.git";
inherit git-r3
SRC_URI=""
 else



1.31 app-emulation/winetricks/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog   17 Mar 2015 02:19:02 -  1.30
+++ ChangeLog   23 Mar 2015 05:34:46 -  1.31
@@ -1,6 +1,10 @@
 # ChangeLog for app-emulation/winetricks
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v 1.30 
2015/03/17 02:19:02 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v 1.31 
2015/03/23 05:34:46 tetromino Exp $
+
+  23 Mar 2015; Alexandre Rostovtsev 
+  winetricks-20141130.ebuild, winetricks-.ebuild:
+  Move live git uri from google code (shutting down) to github.
 
   17 Mar 2015; Alexandre Rostovtsev 
   -winetricks-20140302.ebuild:



1.2  app-emulation/winetricks/winetricks-20141130.ebuild

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

Index: winetricks-20141130.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-20141130.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- winetricks-20141130.ebuild  7 Mar 2015 22:22:23 -   1.1
+++ winetricks-20141130.ebuild  23 Mar 2015 05:34:46 -  1.2
@@ -1,13 +1,13 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-20141130.ebuild,v 
1.1 2015/03/07 22:22:23 tetromino Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-20141130.ebuild,v 
1.2 2015/03/23 05:34:46 tetromino Exp $
 
 EAPI=5
 
 inherit gnome2-utils eutils
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://code.google.com/p/winetricks/";
+   EGIT_REPO_URI="https://github.com/Winetricks/winetricks.git";
inherit git-r3
SRC_URI=""
 else






[gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-0.25.2.ebuild ChangeLog

2015-03-22 Thread Patrick Lauer (patrick)
patrick 15/03/23 05:28:21

  Modified: ChangeLog
  Added:pylint-0.25.2.ebuild
  Log:
  Readd 0.25 as dependency of dev-python/oslo-vmware
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.123dev-python/pylint/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog   22 Mar 2015 08:12:18 -  1.122
+++ ChangeLog   23 Mar 2015 05:28:21 -  1.123
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.122 
2015/03/22 08:12:18 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.123 
2015/03/23 05:28:21 patrick Exp $
+
+*pylint-0.25.2 (23 Mar 2015)
+
+  23 Mar 2015; Patrick Lauer  +pylint-0.25.2.ebuild:
+  Readd 0.25 as dependency of dev-python/oslo-vmware
 
   22 Mar 2015; Patrick Lauer  -pylint-0.23.0.ebuild,
   -pylint-0.25.2.ebuild, pylint-1.4.3.ebuild:



1.6  dev-python/pylint/pylint-0.25.2.ebuild

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







[gentoo-commits] proj/dotnet:master commit in: dev-lang/mono/

2015-03-22 Thread Heather Cynede
commit: 264295b0c05fe0c3e7ca872ba5f57bb68953ceb2
Author: Heather  live  ru>
AuthorDate: Mon Mar 23 04:43:44 2015 +
Commit: Heather Cynede  gentoo  org>
CommitDate: Mon Mar 23 04:43:44 2015 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=264295b0

mv mono -r1 into 

 dev-lang/mono/mono--r1.ebuild | 115 --
 dev-lang/mono/mono-.ebuild|   1 +
 2 files changed, 1 insertion(+), 115 deletions(-)

diff --git a/dev-lang/mono/mono--r1.ebuild 
b/dev-lang/mono/mono--r1.ebuild
deleted file mode 100644
index ee8d8bc..000
--- a/dev-lang/mono/mono--r1.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-3.0.11.ebuild $
-
-EAPI="5"
-AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
-
-inherit linux-info mono-env flag-o-matic pax-utils autotools-utils git-2
-
-DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter"
-HOMEPAGE="http://www.mono-project.com/Main_Page";
-
-EGIT_REPO_URI="git://github.com/mono/${PN}.git"
-EGIT_HAS_SUBMODULES="true"
-
-LICENSE="MIT LGPL-2.1 GPL-2 BSD-4 NPL-1.1 Ms-PL GPL-2-with-linking-exception 
IDPL"
-SLOT="0"
-KEYWORDS=""
-IUSE="minimal pax_kernel xen doc"
-
-COMMONDEPEND="
-   !minimal? ( >=dev-dotnet/libgdiplus-2.10 )
-   ia64? ( sys-libs/libunwind )
-"
-RDEPEND="${COMMONDEPEND}
-   || ( www-client/links www-client/lynx )
-"
-DEPEND="${COMMONDEPEND}
-   sys-devel/bc
-   virtual/yacc
-   pax_kernel? ( sys-apps/elfix )
-"
-
-pkg_pretend() {
-   # If CONFIG_SYSVIPC is not set in your kernel .config, mono will hang 
while compiling.
-   # See http://bugs.gentoo.org/261869 for more info."
-   CONFIG_CHECK="SYSVIPC"
-   use kernel_linux && check_extra_config
-}
-
-pkg_setup() {
-   linux-info_pkg_setup
-   mono-env_pkg_setup
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/systemweb.patch"
-   cat "${S}/mono/mini/Makefile.am.in" > "${S}/mono/mini/Makefile.am" || 
die
-
-   eautoreconf
-   # we need to sed in the paxctl-ng -mr in the runtime/mono-wrapper.in so 
it don't
-   # get killed in the build proces when MPROTEC is enable. #286280
-   # RANDMMAP kill the build proces to #347365
-   if use pax_kernel ; then
-   ewarn "We are disabling MPROTECT on the mono binary."
-   sed '/exec/ i\paxctl-ng -mr "$r/@mono_runtime@"' -i 
"${S}"/runtime/mono-wrapper.in
-   fi
-
-   # mono build system can fail otherwise
-   strip-flags
-
-   # Remove this at your own peril. Mono will barf in unexpected ways.
-   append-flags -fno-strict-aliasing
-
-   autotools-utils_src_prepare
-}
-
-src_configure() {
-   # NOTE: We need the static libs for now so mono-debugger works.
-   # See http://bugs.gentoo.org/show_bug.cgi?id=256264 for details
-   #
-   # --without-moonlight since www-plugins/moonlight is not the only one
-   # using mono: https://bugzilla.novell.com/show_bug.cgi?id=641005#c3
-   #
-   # --with-profile4 needs to be always enabled since it's used by default
-   # and, otherwise, problems like bug #340641 appear.
-   #
-   # sgen fails on ppc, bug #359515
-   local myeconfargs=(
-   --enable-system-aot=yes
-   --enable-static
-   --disable-quiet-build
-   --without-moonlight
-   --with-libgdiplus=$(use minimal && printf "no" || printf 
"installed" )
-   $(use_with xen xen_opt)
-   --without-ikvm-native
-   --with-jit
-   --disable-dtrace
-   --with-profile4
-   --with-sgen=$(use ppc && printf "no" || printf "yes" )
-   $(use_with doc mcs-docs)
-   )
-
-   autotools-utils_src_configure
-}
-
-src_make() {
-   # Doesn't require previous mono to be installed
-   emake get-monolite-latest
-   emake EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/gmcs.exe "$@" || die 
"emake failed"
-}
-
-src_test() {
-   emake check || die "tests fails"
-}
-
-src_install() {
-   autotools-utils_src_install
-
-   # Remove files not respecting LDFLAGS and that we are not supposed to 
provide, see Fedora
-   # mono.spec and 
http://www.mail-archive.com/mono-devel-list@lists.ximian.com/msg24870.html
-   # for reference.
-   rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mscorlib.dll.so
-   rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mcs.exe.so
-}

diff --git a/dev-lang/mono/mono-.ebuild b/dev-lang/mono/mono-.ebuild
index fad5226..ee8d8bc 100644
--- a/dev-lang/mono/mono-.ebuild
+++ b/dev-lang/mono/mono-.ebuild
@@ -44,6 +44,7 @@ pkg_setup() {
 }
 
 src_prepare() {
+   epatch "${FILESDIR}/systemweb.patch"
cat "${S}/mono/mini/Makefile.am.in" > "${S}/mono/mini/Makefile.am" || 
die
 
eautoreconf



[gentoo-commits] proj/dotnet:master commit in: dev-dotnet/fake/

2015-03-22 Thread Heather Cynede
commit: 2cfdc4f9d9be59b38eeb06c09cc018c0779060c3
Author: Heather  live  ru>
AuthorDate: Fri Mar 20 08:33:43 2015 +
Commit: Heather Cynede  gentoo  org>
CommitDate: Fri Mar 20 08:33:43 2015 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=2cfdc4f9

bump fake

 dev-dotnet/fake/fake-2.13.0.ebuild | 71 --
 .../{fake-3.13.4.ebuild => fake-3.23.0.ebuild} |  0
 2 files changed, 71 deletions(-)

diff --git a/dev-dotnet/fake/fake-2.13.0.ebuild 
b/dev-dotnet/fake/fake-2.13.0.ebuild
deleted file mode 100644
index 1ec9989..000
--- a/dev-dotnet/fake/fake-2.13.0.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-
-USE_DOTNET="net40"
-NUGET_NO_DEPEND="1"
-
-inherit nuget dotnet eutils
-
-DESCRIPTION="FAKE - F# Make"
-HOMEPAGE="http://nuget.org/packages/FAKE";
-
-SRC_URI="https://github.com/fsharp/FAKE/archive/${NPV}.tar.gz";
-
-LICENSE="MS-PL"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="-nuget"
-
-DEPEND="dev-lang/mono
-   dev-lang/fsharp
-   nuget? ( dev-dotnet/nuget )"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   addpredict /etc/mono/registry/last-btime #nowarn
-}
-
-src_unpack() {
-   if use nuget ; then
-   echo "using nuget"
-   nuget_src_unpack
-   else
-   default;
-   S=${WORKDIR}/FAKE-${NPV}
-   fi
-}
-
-src_compile() {
-   if use nuget ; then
-   echo "installation is done via nuget"
-   else
-   #fake is searching for libraries in source folder
-   ln -s tools/FAKE/tools/Newtonsoft.Json.dll 
"${S}"/Newtonsoft.Json.dll || die
-   ln -s tools/FAKE/tools/NuGet.Core.dll "${S}"/NuGet.Core.dll || 
die
-   ln -s tools/FAKE/tools/Fake.SQL.dll "${S}"/Fake.SQL.dll || die
-   sh "${S}/build.sh" || die "build.sh failed"
-   fi
-}
-
-src_install() {
-   elog "Installing libraries"
-   insinto /usr/lib/mono/FAKE/"${FRAMEWORK}"/
-   if use nuget ; then
-   doins FAKE."${NPV}"/tools/FAKE.exe
-   doins FAKE."${NPV}"/tools/FakeLib.dll
-   nonfatal doins FAKE."${NPV}"/tools/Newtonsoft.Json.dll
-   nonfatal doins FAKE."${NPV}"/tools/Fake.SQL.dll
-   nonfatal doins FAKE."${NPV}"/tools/NuGet.Core.dll
-   else
-   doins build/FAKE.exe
-   doins build/FakeLib.dll
-   nonfatal doins tools/FAKE/tools/Newtonsoft.Json.dll
-   nonfatal doins tools/FAKE/tools/Fake.SQL.dll
-   nonfatal doins tools/FAKE/tools/NuGet.Core.dll
-   fi
-   make_wrapper fake "mono /usr/lib/mono/FAKE/${FRAMEWORK}/FAKE.exe"
-}

diff --git a/dev-dotnet/fake/fake-3.13.4.ebuild 
b/dev-dotnet/fake/fake-3.23.0.ebuild
similarity index 100%
rename from dev-dotnet/fake/fake-3.13.4.ebuild
rename to dev-dotnet/fake/fake-3.23.0.ebuild



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

2015-03-22 Thread Heather Cynede
commit: 7efcd8c3926a63edbcac16fbdd8649719f81f1ec
Author: Heather  live  ru>
AuthorDate: Mon Mar 23 03:46:36 2015 +
Commit: Heather Cynede  gentoo  org>
CommitDate: Mon Mar 23 03:46:36 2015 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=7efcd8c3

Merge pull request #51 from ArsenShnurkov/master

patch for missing asp .net mvc properties

 dev-lang/mono/files/systemweb.patch| 108 +
 .../mono/{mono-.ebuild => mono--r1.ebuild} |   1 +
 2 files changed, 109 insertions(+)



[gentoo-commits] proj/dotnet:master commit in: dev-util/monodevelop/, dev-dotnet/nuget/, dev-dotnet/nuget-for-monodevelop/, ...

2015-03-22 Thread Heather Cynede
commit: 0e44b2156b32a19b5a03ed49980f76fbdd152153
Author: Heather  live  ru>
AuthorDate: Fri Mar 20 08:25:44 2015 +
Commit: Heather Cynede  gentoo  org>
CommitDate: Fri Mar 20 08:25:44 2015 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=0e44b215

nuget for monodevelop -> nuget

 dev-dotnet/{nuget => nuget-codeplex}/metadata.xml   |   0
 .../nuget-codeplex-2015.01.ebuild}  |   0
 .../nuget-codeplex-.ebuild} |   0
 dev-dotnet/nuget-for-monodevelop/metadata.xml   |   7 ---
 .../files/add-keyfile-option-to-csproj.patch|   0
 .../{nuget-for-monodevelop => nuget}/files/rsa-4096.snk | Bin
 .../files/strongnames-for-ebuild-2.8.1.patch|   0
 dev-dotnet/nuget/metadata.xml   |   9 +++--
 .../nuget-2.8.1.ebuild} |   2 +-
 dev-util/monodevelop/monodevelop-5.7.0-r1.ebuild|   2 +-
 10 files changed, 5 insertions(+), 15 deletions(-)

diff --git a/dev-dotnet/nuget/metadata.xml 
b/dev-dotnet/nuget-codeplex/metadata.xml
similarity index 100%
copy from dev-dotnet/nuget/metadata.xml
copy to dev-dotnet/nuget-codeplex/metadata.xml

diff --git a/dev-dotnet/nuget/nuget-2015.01.ebuild 
b/dev-dotnet/nuget-codeplex/nuget-codeplex-2015.01.ebuild
similarity index 100%
rename from dev-dotnet/nuget/nuget-2015.01.ebuild
rename to dev-dotnet/nuget-codeplex/nuget-codeplex-2015.01.ebuild

diff --git a/dev-dotnet/nuget/nuget-.ebuild 
b/dev-dotnet/nuget-codeplex/nuget-codeplex-.ebuild
similarity index 100%
rename from dev-dotnet/nuget/nuget-.ebuild
rename to dev-dotnet/nuget-codeplex/nuget-codeplex-.ebuild

diff --git a/dev-dotnet/nuget-for-monodevelop/metadata.xml 
b/dev-dotnet/nuget-for-monodevelop/metadata.xml
deleted file mode 100644
index 6417277..000
--- a/dev-dotnet/nuget-for-monodevelop/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-  dotnet
-  
-  
-

diff --git 
a/dev-dotnet/nuget-for-monodevelop/files/add-keyfile-option-to-csproj.patch 
b/dev-dotnet/nuget/files/add-keyfile-option-to-csproj.patch
similarity index 100%
rename from 
dev-dotnet/nuget-for-monodevelop/files/add-keyfile-option-to-csproj.patch
rename to dev-dotnet/nuget/files/add-keyfile-option-to-csproj.patch

diff --git a/dev-dotnet/nuget-for-monodevelop/files/rsa-4096.snk 
b/dev-dotnet/nuget/files/rsa-4096.snk
similarity index 100%
rename from dev-dotnet/nuget-for-monodevelop/files/rsa-4096.snk
rename to dev-dotnet/nuget/files/rsa-4096.snk

diff --git 
a/dev-dotnet/nuget-for-monodevelop/files/strongnames-for-ebuild-2.8.1.patch 
b/dev-dotnet/nuget/files/strongnames-for-ebuild-2.8.1.patch
similarity index 100%
rename from 
dev-dotnet/nuget-for-monodevelop/files/strongnames-for-ebuild-2.8.1.patch
rename to dev-dotnet/nuget/files/strongnames-for-ebuild-2.8.1.patch

diff --git a/dev-dotnet/nuget/metadata.xml b/dev-dotnet/nuget/metadata.xml
index c5c8997..6417277 100644
--- a/dev-dotnet/nuget/metadata.xml
+++ b/dev-dotnet/nuget/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
-   heat...@cynede.net
-   
-   
- NuGet - .NET Package Manager
-   
+  dotnet
+  
+  
 

diff --git 
a/dev-dotnet/nuget-for-monodevelop/nuget-for-monodevelop-2.8.1.ebuild 
b/dev-dotnet/nuget/nuget-2.8.1.ebuild
similarity index 97%
rename from dev-dotnet/nuget-for-monodevelop/nuget-for-monodevelop-2.8.1.ebuild
rename to dev-dotnet/nuget/nuget-2.8.1.ebuild
index ff97f5d..ce2646c 100644
--- a/dev-dotnet/nuget-for-monodevelop/nuget-for-monodevelop-2.8.1.ebuild
+++ b/dev-dotnet/nuget/nuget-2.8.1.ebuild
@@ -9,7 +9,7 @@ inherit dotnet eutils
 
 DESCRIPTION="Nuget - .NET Package Manager"
 HOMEPAGE="http://nuget.codeplex.com";
-SRC_URI="https://github.com/mrward/nuget/archive/Release-${PV}-MonoDevelop.tar.gz
 -> nuget-for-monodevelop-${PV}.tar.gz"
+SRC_URI="https://github.com/mrward/nuget/archive/Release-${PV}-MonoDevelop.tar.gz
 -> ${P}.tar.gz"
 S=${WORKDIR}/nuget-Release-${PV}-MonoDevelop
 
 LICENSE="Apache-2.0"

diff --git a/dev-util/monodevelop/monodevelop-5.7.0-r1.ebuild 
b/dev-util/monodevelop/monodevelop-5.7.0-r1.ebuild
index 47263da..9dffdc0 100644
--- a/dev-util/monodevelop/monodevelop-5.7.0-r1.ebuild
+++ b/dev-util/monodevelop/monodevelop-5.7.0-r1.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="+subversion +git doc"
 
 RDEPEND=">=dev-lang/mono-3.2.8
-   <=dev-dotnet/nuget-for-monodevelop-2.8.2
+   <=dev-dotnet/nuget-2.8.2
>=dev-dotnet/gnome-sharp-2.24.2-r1
>=dev-dotnet/gtk-sharp-2.12.21
>=dev-dotnet/mono-addins-1.0[gtk]



[gentoo-commits] proj/dotnet:master commit in: dev-lang/mono/files/, dev-lang/mono/

2015-03-22 Thread Heather Cynede
commit: b8d6e89bd4612b874b2e7d679b5b5cf09880f157
Author: layman  localhost>
AuthorDate: Sun Mar 22 22:42:32 2015 +
Commit: Heather Cynede  gentoo  org>
CommitDate: Sun Mar 22 22:42:32 2015 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=b8d6e89b

patch for missing asp .net mvc properties

 dev-lang/mono/files/systemweb.patch | 108 +
 dev-lang/mono/mono--r1.ebuild   | 115 
 2 files changed, 223 insertions(+)

diff --git a/dev-lang/mono/files/systemweb.patch 
b/dev-lang/mono/files/systemweb.patch
new file mode 100644
index 000..b591ceb
--- /dev/null
+++ b/dev-lang/mono/files/systemweb.patch
@@ -0,0 +1,108 @@
+From 65bd3eea445ee926e85050c848027bb341a1b2dc Mon Sep 17 00:00:00 2001
+From: Chris F Carroll 
+Date: Mon, 20 Jan 2014 21:39:12 +
+Subject: [PATCH] Added missing properties for net 4.5:
+ System.Web.RouteCollection.AppendTrailingSlash and .LowercaseUrl, and
+ RouteBase.RouteExistingFiles
+
+---
+ .../System.Web.Routing/RouteBase.cs|  3 +++
+ .../System.Web.Routing/RouteCollection.cs  |  4 
+ .../Test/System.Web.Routing/RouteCollectionTest.cs | 22 +-
+ .../Test/System.Web.Routing/RouteTest.cs   | 12 
+ 4 files changed, 40 insertions(+), 1 deletion(-)
+
+diff --git a/mcs/class/System.Web.Routing/System.Web.Routing/RouteBase.cs 
b/mcs/class/System.Web.Routing/System.Web.Routing/RouteBase.cs
+index 077f987..eadc047 100644
+--- a/mcs/class/System.Web.Routing/System.Web.Routing/RouteBase.cs
 b/mcs/class/System.Web.Routing/System.Web.Routing/RouteBase.cs
+@@ -41,6 +41,9 @@ namespace System.Web.Routing
+   [AspNetHostingPermission (SecurityAction.LinkDemand, Level = 
AspNetHostingPermissionLevel.Minimal)]
+   public abstract class RouteBase
+   {
++#if NET_4_5
++  public bool RouteExistingFiles { get; set; }
++#endif
+   public abstract RouteData GetRouteData (HttpContextBase 
httpContext);
+   public abstract VirtualPathData GetVirtualPath (RequestContext 
requestContext, RouteValueDictionary values);
+   }
+diff --git 
a/mcs/class/System.Web.Routing/System.Web.Routing/RouteCollection.cs 
b/mcs/class/System.Web.Routing/System.Web.Routing/RouteCollection.cs
+index 7993e44..4a2f1cf 100644
+--- a/mcs/class/System.Web.Routing/System.Web.Routing/RouteCollection.cs
 b/mcs/class/System.Web.Routing/System.Web.Routing/RouteCollection.cs
+@@ -95,6 +95,10 @@ namespace System.Web.Routing
+   }
+ 
+   public bool RouteExistingFiles { get; set; }
++#if NET_4_5
++  public bool AppendTrailingSlash { get; set; }
++  public bool LowercaseUrls { get; set; }
++#endif
+ 
+   public void Add (string name, RouteBase item)
+   {
+diff --git 
a/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteCollectionTest.cs 
b/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteCollectionTest.cs
+index 18b52ea..cd1a12f 100644
+--- 
a/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteCollectionTest.cs
 
b/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteCollectionTest.cs
+@@ -595,7 +595,6 @@ namespace MonoTests.System.Web.Routing
+   }
+ 
+   [Test]
+-  [Ignore ("looks like RouteExistingFiles ( = false) does not 
affect... so this test needs more investigation")]
+   public void GetVirtualPathToExistingFile ()
+   {
+   var c = new RouteCollection ();
+@@ -926,6 +925,27 @@ namespace MonoTests.System.Web.Routing
+   Assert.AreEqual (typeof (PageRouteHandler), 
rd.RouteHandler.GetType (), "#A4-3");
+   Assert.IsFalse (((PageRouteHandler) 
rd.RouteHandler).CheckPhysicalUrlAccess, "#A4-4");
+   }
++
++#if NET_4_5
++  [Test]
++  public void AppendTrailingSlash ()
++  {
++  var c = new RouteCollection ();
++  c.AppendTrailingSlash = true;
++  Assert.IsTrue (c.AppendTrailingSlash);
++  c.AppendTrailingSlash = false;
++  Assert.IsFalse (c.AppendTrailingSlash);
++  }
++  [Test]
++  public void LowercaseUrls ()
++  {
++  var c = new RouteCollection ();
++  c.LowercaseUrls = true;
++  Assert.IsTrue (c.LowercaseUrls);
++  c.LowercaseUrls = false;
++  Assert.IsFalse (c.LowercaseUrls);
++  }
++#endif
+ #endif
+   }
+ }
+diff --git a/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteTest.cs 
b/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteTest.cs
+index e431177..f7a5988 100644
+--- a/mcs/class/System.Web.Routing/Test/System.Web.Routing/RouteTest.cs
 b/mcs/class/System.

[gentoo-commits] gentoo-x86 commit in dev-libs/libparserutils: libparserutils-0.1.2.ebuild ChangeLog

2015-03-22 Thread Patrick Lauer (patrick)
patrick 15/03/23 03:46:45

  Modified: ChangeLog
  Added:libparserutils-0.1.2.ebuild
  Log:
  Re-add version needed by net-libs/hubbub
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.16 dev-libs/libparserutils/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libparserutils/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   21 Mar 2015 23:36:15 -  1.15
+++ ChangeLog   23 Mar 2015 03:46:45 -  1.16
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libparserutils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libparserutils/ChangeLog,v 1.15 
2015/03/21 23:36:15 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libparserutils/ChangeLog,v 1.16 
2015/03/23 03:46:45 patrick Exp $
+
+*libparserutils-0.1.2 (23 Mar 2015)
+
+  23 Mar 2015; Patrick Lauer  +libparserutils-0.1.2.ebuild:
+  Re-add version needed by net-libs/hubbub
 
   21 Mar 2015; Michael Weber  -libparserutils-0.1.1.ebuild,
   -libparserutils-0.1.2.ebuild, -libparserutils-0.2.0.ebuild:



1.5  dev-libs/libparserutils/libparserutils-0.1.2.ebuild

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







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

2015-03-22 Thread Patrick Lauer (patrick)
patrick 15/03/23 03:09:10

  Modified: ChangeLog package.mask
  Log:
  Remove obsolete nodejs mask

Revision  ChangesPath
1.9877   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9876
retrieving revision 1.9877
diff -u -r1.9876 -r1.9877
--- ChangeLog   22 Mar 2015 21:21:03 -  1.9876
+++ ChangeLog   23 Mar 2015 03:09:10 -  1.9877
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9876 2015/03/22 
21:21:03 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9877 2015/03/23 
03:09:10 patrick Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  23 Mar 2015; Patrick Lauer  package.mask:
+  Remove obsolete nodejs mask
+
   22 Mar 2015; Brian Evans  package.mask:
   Fix masked squirrelmail version and spelling mistake
 



1.16434  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16433
retrieving revision 1.16434
diff -u -r1.16433 -r1.16434
--- package.mask22 Mar 2015 21:21:03 -  1.16433
+++ package.mask23 Mar 2015 03:09:10 -  1.16434
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16433 2015/03/22 
21:21:03 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16434 2015/03/23 
03:09:10 patrick Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -924,10 +924,6 @@
 # Masked due test failures
 =app-arch/advancecomp-1.17
 
-# Patrick Lauer  (09 Apr 2013)
-# Masked to get 0.10 tested
-=net-libs/nodejs-0.11*
-
 # Sergey Popov  (02 Apr 2013)
 # Masking =media-libs/ffmpegsource-2.17.4_pre753
 # by maintainer's request.






[gentoo-commits] gentoo-x86 commit in net-libs/nodejs: ChangeLog nodejs-0.11.13.ebuild nodejs-0.11.15.ebuild nodejs-0.10.35.ebuild nodejs-0.10.33.ebuild nodejs-0.11.12.ebuild nodejs-0.11.14.ebuild nod

2015-03-22 Thread Patrick Lauer (patrick)
patrick 15/03/23 03:05:58

  Modified: ChangeLog
  Removed:  nodejs-0.11.13.ebuild nodejs-0.11.15.ebuild
nodejs-0.10.35.ebuild nodejs-0.10.33.ebuild
nodejs-0.11.12.ebuild nodejs-0.11.14.ebuild
nodejs-0.11.13-r1.ebuild nodejs-0.10.32.ebuild
nodejs-0.10.31.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.138net-libs/nodejs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog   8 Mar 2015 18:54:10 -   1.137
+++ ChangeLog   23 Mar 2015 03:05:58 -  1.138
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/nodejs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.137 
2015/03/08 18:54:10 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.138 
2015/03/23 03:05:58 patrick Exp $
+
+  23 Mar 2015; Patrick Lauer  -nodejs-0.10.31.ebuild,
+  -nodejs-0.10.32.ebuild, -nodejs-0.10.33.ebuild, -nodejs-0.10.35.ebuild,
+  -nodejs-0.11.12.ebuild, -nodejs-0.11.13-r1.ebuild, -nodejs-0.11.13.ebuild,
+  -nodejs-0.11.14.ebuild, -nodejs-0.11.15.ebuild:
+  Remove old
 
   08 Mar 2015; Kacper Kowalik  nodejs-0.12.0.ebuild:
   Libraries that are linked to executable belong to both RDEP and DEP






[gentoo-commits] gentoo-x86 commit in dev-ruby/lumberjack: ChangeLog lumberjack-1.0.7.ebuild lumberjack-1.0.6.ebuild

2015-03-22 Thread Manuel Rueger (mrueg)
mrueg   15/03/23 02:53:19

  Modified: ChangeLog
  Removed:  lumberjack-1.0.7.ebuild lumberjack-1.0.6.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.8  dev-ruby/lumberjack/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   22 Mar 2015 16:33:37 -  1.7
+++ ChangeLog   23 Mar 2015 02:53:19 -  1.8
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/lumberjack
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/ChangeLog,v 1.7 
2015/03/22 16:33:37 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/ChangeLog,v 1.8 
2015/03/23 02:53:19 mrueg Exp $
+
+  23 Mar 2015; Manuel Rüger  -lumberjack-1.0.6.ebuild,
+  -lumberjack-1.0.7.ebuild:
+  Remove old.
 
   22 Mar 2015; Hans de Graaff  lumberjack-1.0.9.ebuild:
   Add ruby22.






[gentoo-commits] gentoo-x86 commit in media-sound/patchage/files: ldconfig.patch

2015-03-22 Thread Manuel Rueger (mrueg)
mrueg   15/03/23 02:47:36

  Removed:  ldconfig.patch
  Log:
  Remove old superseded versions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )



[gentoo-commits] gentoo-x86 commit in media-sound/patchage: ChangeLog patchage-0.5.0.ebuild patchage-0.4.5.ebuild patchage-0.4.4.ebuild

2015-03-22 Thread Manuel Rueger (mrueg)
mrueg   15/03/23 02:47:36

  Modified: ChangeLog
  Removed:  patchage-0.5.0.ebuild patchage-0.4.5.ebuild
patchage-0.4.4.ebuild
  Log:
  Remove old superseded versions.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.21 media-sound/patchage/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   3 Jan 2015 14:49:04 -   1.20
+++ ChangeLog   23 Mar 2015 02:47:36 -  1.21
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/patchage
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.20 
2015/01/03 14:49:04 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.21 
2015/03/23 02:47:36 mrueg Exp $
+
+  23 Mar 2015; Manuel Rüger  -files/ldconfig.patch,
+  -patchage-0.4.4.ebuild, -patchage-0.4.5.ebuild, -patchage-0.5.0.ebuild:
+  Remove old superseded versions.
 
   03 Jan 2015; Michał Górny  patchage-0.5.0-r1.ebuild:
   Add PYTHON_REQ_USE as necessary for waf.






[gentoo-commits] gentoo-x86 commit in app-portage/gentoolkit-dev: gentoolkit-dev-9999.ebuild ChangeLog

2015-03-22 Thread Patrick Lauer (patrick)
patrick 15/03/23 02:25:31

  Modified: gentoolkit-dev-.ebuild ChangeLog
  Log:
  Whitespace
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.14 app-portage/gentoolkit-dev/gentoolkit-dev-.ebuild

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

Index: gentoolkit-dev-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-portage/gentoolkit-dev/gentoolkit-dev-.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- gentoolkit-dev-.ebuild  18 Nov 2014 08:53:38 -  1.13
+++ gentoolkit-dev-.ebuild  23 Mar 2015 02:25:31 -  1.14
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-portage/gentoolkit-dev/gentoolkit-dev-.ebuild,v 
1.13 2014/11/18 08:53:38 mgorny Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-portage/gentoolkit-dev/gentoolkit-dev-.ebuild,v 
1.14 2015/03/23 02:25:31 patrick Exp $
 
 EAPI="5"
 
@@ -33,7 +33,6 @@
 RDEPEND="${PYTHON_DEPS}
${CDEPEND}"
 
-
 src_test() {
# echangelog test is not able to run as root
# the EUID check may not work for everybody



1.139app-portage/gentoolkit-dev/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/gentoolkit-dev/ChangeLog?rev=1.139&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/gentoolkit-dev/ChangeLog?rev=1.139&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/gentoolkit-dev/ChangeLog?r1=1.138&r2=1.139

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-portage/gentoolkit-dev/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog   18 Nov 2014 18:17:28 -  1.138
+++ ChangeLog   23 Mar 2015 02:25:31 -  1.139
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/gentoolkit-dev
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit-dev/ChangeLog,v 
1.138 2014/11/18 18:17:28 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit-dev/ChangeLog,v 
1.139 2015/03/23 02:25:31 patrick Exp $
+
+  23 Mar 2015; Patrick Lauer  gentoolkit-dev-.ebuild:
+  Whitespace
 
   18 Nov 2014; Michał Górny 
   gentoolkit-dev-0.2.8.3-r1.ebuild:






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

2015-03-22 Thread Davide Pesavento
commit: 617835996185eeefad4c31ca50fc2be8dbe8b3c2
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon Mar 23 02:16:30 2015 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon Mar 23 02:16:30 2015 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=61783599

[qt4-build-multilib.eclass] Sync.

 eclass/qt4-build-multilib.eclass | 20 ++--
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
index a9764e9..b171ba5 100644
--- a/eclass/qt4-build-multilib.eclass
+++ b/eclass/qt4-build-multilib.eclass
@@ -167,17 +167,25 @@ qt4-build-multilib_src_prepare() {
fi
fi
 
+   if [[ ${PN} == qtcore ]]; then
+   # Bug 373061
+   # qmake bus errors with -O2 or -O3 but -O1 works
+   if [[ ${CHOST} == *86*-apple-darwin* ]]; then
+   replace-flags -O[23] -O1
+   fi
+
+   # Bug 503500
+   # undefined reference with -Os and --as-needed
+   if use x86 || use_if_iuse abi_x86_32; then
+   replace-flags -Os -O2
+   fi
+   fi
+
# Bug 261632
if use ppc64; then
append-flags -mminimal-toc
fi
 
-   # Bug 373061
-   # qmake bus errors with -O2 or -O3 but -O1 works
-   if [[ ${CHOST} == *86*-apple-darwin* ]]; then
-   replace-flags -O[23] -O1
-   fi
-
# Bug 417105
# graphite on gcc 4.7 causes miscompilations
if [[ $(gcc-version) == "4.7" ]]; then



[gentoo-commits] gentoo-x86 commit in eclass: ChangeLog qt4-build-multilib.eclass qt4-build.eclass

2015-03-22 Thread Davide Pesavento (pesa)
pesa15/03/23 02:15:14

  Modified: ChangeLog qt4-build-multilib.eclass
qt4-build.eclass
  Log:
  Workaround toolchain bug on x86 with -Os and --as-needed, see bug #503500.

Revision  ChangesPath
1.1573   eclass/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1572
retrieving revision 1.1573
diff -u -r1.1572 -r1.1573
--- ChangeLog   22 Mar 2015 13:41:16 -  1.1572
+++ ChangeLog   23 Mar 2015 02:15:14 -  1.1573
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1572 2015/03/22 
13:41:16 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1573 2015/03/23 
02:15:14 pesa Exp $
+
+  23 Mar 2015; Davide Pesavento  qt4-build.eclass,
+  qt4-build-multilib.eclass:
+  Workaround toolchain bug on x86 with -Os and --as-needed, see bug #503500.
 
   22 Mar 2015; Michał Górny  python-single-r1.eclass:
   Extend EAPI=4 whitelist to cover crossdev gdb.



1.8  eclass/qt4-build-multilib.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build-multilib.eclass?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build-multilib.eclass?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build-multilib.eclass?r1=1.7&r2=1.8

Index: qt4-build-multilib.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- qt4-build-multilib.eclass   15 Mar 2015 01:25:19 -  1.7
+++ qt4-build-multilib.eclass   23 Mar 2015 02:15:14 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.7 
2015/03/15 01:25:19 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.8 
2015/03/23 02:15:14 pesa Exp $
 
 # @ECLASS: qt4-build-multilib.eclass
 # @MAINTAINER:
@@ -167,17 +167,25 @@
fi
fi
 
+   if [[ ${PN} == qtcore ]]; then
+   # Bug 373061
+   # qmake bus errors with -O2 or -O3 but -O1 works
+   if [[ ${CHOST} == *86*-apple-darwin* ]]; then
+   replace-flags -O[23] -O1
+   fi
+
+   # Bug 503500
+   # undefined reference with -Os and --as-needed
+   if use x86 || use_if_iuse abi_x86_32; then
+   replace-flags -Os -O2
+   fi
+   fi
+
# Bug 261632
if use ppc64; then
append-flags -mminimal-toc
fi
 
-   # Bug 373061
-   # qmake bus errors with -O2 or -O3 but -O1 works
-   if [[ ${CHOST} == *86*-apple-darwin* ]]; then
-   replace-flags -O[23] -O1
-   fi
-
# Bug 417105
# graphite on gcc 4.7 causes miscompilations
if [[ $(gcc-version) == "4.7" ]]; then



1.162eclass/qt4-build.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?rev=1.162&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?rev=1.162&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?r1=1.161&r2=1.162

Index: qt4-build.eclass
===
RCS file: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- qt4-build.eclass15 Mar 2015 01:25:19 -  1.161
+++ qt4-build.eclass23 Mar 2015 02:15:14 -  1.162
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.161 2015/03/15 
01:25:19 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.162 2015/03/23 
02:15:14 pesa Exp $
 
 # @ECLASS: qt4-build.eclass
 # @MAINTAINER:
@@ -172,10 +172,18 @@
skip_qmake_build
skip_project_generation
symlink_binaries_to_buildtree
-   fi
+   else
+   # Bug 373061
+   # qmake bus errors with -O2 or -O3 but -O1 works
+   if [[ ${CHOST} == *86*-appl

[gentoo-commits] gentoo-x86 commit in net-wireless/bladerf: bladerf-2015.02.ebuild bladerf-9999.ebuild ChangeLog bladerf-2015.01_rc2.ebuild bladerf-2014.11_rc3.ebuild bladerf-2014.09_rc2.ebuild

2015-03-22 Thread Richard Farina (zerochaos)
zerochaos15/03/23 01:51:24

  Modified: bladerf-.ebuild ChangeLog
  Added:bladerf-2015.02.ebuild
  Removed:  bladerf-2015.01_rc2.ebuild
bladerf-2014.11_rc3.ebuild
bladerf-2014.09_rc2.ebuild
  Log:
  update to 2015.02 to fix bug #543788
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.6  net-wireless/bladerf/bladerf-.ebuild

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

Index: bladerf-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bladerf/bladerf-.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bladerf-.ebuild 25 Jul 2014 18:54:46 -  1.5
+++ bladerf-.ebuild 23 Mar 2015 01:51:24 -  1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/bladerf/bladerf-.ebuild,v 
1.5 2014/07/25 18:54:46 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bladerf/bladerf-.ebuild,v 
1.6 2015/03/23 01:51:24 zerochaos Exp $
 
 EAPI=5
 
@@ -17,7 +17,7 @@
 #maintainer notes:
 #doc use flag, looks like it can't be disabled right now and will
 #  always build if pandoc and help2man are installed
-#  also ignores when deps are missing and just disabled docs
+#  also ignores when deps are missing and just disables docs
 IUSE="doc +tecla"
 
 MY_PN="bladeRF"
@@ -28,18 +28,18 @@
KEYWORDS=""
 else
MY_PV=${PV/\_/-}
-   S="${WORKDIR}/${MY_PN}-${MY_PN}-${MY_PV}"
-   
SRC_URI="https://github.com/Nuand/${MY_PN}/archive/${MY_PN}-${MY_PV}.tar.gz";
+   S="${WORKDIR}/${MY_PN}-${MY_PV}"
+   SRC_URI="https://github.com/Nuand/${MY_PN}/archive/${MY_PV}.tar.gz";
KEYWORDS="~amd64 ~arm ~x86"
 fi
 
-CDEPEND=">=dev-libs/libusb-1.0.16"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
+CDEPEND=">=dev-libs/libusb-1.0.16
tecla? ( dev-libs/libtecla )"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
 RDEPEND="${CDEPEND}"
-PDEPEND=">=net-wireless/bladerf-firmware-1.7.1
-   >=net-wireless/bladerf-fpga-0.0.6"
+PDEPEND=">=net-wireless/bladerf-firmware-1.8.0
+   >=net-wireless/bladerf-fpga-0.1.2"
 
 src_configure() {
mycmakeargs=(



1.9  net-wireless/bladerf/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-wireless/bladerf/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   10 Feb 2015 17:49:19 -  1.8
+++ ChangeLog   23 Mar 2015 01:51:24 -  1.9
@@ -1,6 +1,13 @@
 # ChangeLog for net-wireless/bladerf
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/bladerf/ChangeLog,v 1.8 
2015/02/10 17:49:19 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/bladerf/ChangeLog,v 1.9 
2015/03/23 01:51:24 zerochaos Exp $
+
+*bladerf-2015.02 (23 Mar 2015)
+
+  23 Mar 2015; Rick Farina  +bladerf-2015.02.ebuild,
+  -bladerf-2014.09_rc2.ebuild, -bladerf-2014.11_rc3.ebuild,
+  -bladerf-2015.01_rc2.ebuild, bladerf-.ebuild:
+  update to 2015.02 to fix bug #543788
 
 *bladerf-2015.01_rc2 (10 Feb 2015)
 



1.1  net-wireless/bladerf/bladerf-2015.02.ebuild

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

Index: bladerf-2015.02.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-wireless/bladerf/bladerf-2015.02.ebuild,v 1.1 
2015/03/23 01:51:24 zerochaos Exp $

EAPI=5

inherit cmake-utils udev

DESCRIPTION="Libraries for supporing the BladeRF hardware from Nuand"
HOMEPAGE="http://nuand.com/";

#lib is LGPL and cli tools are GPL
LICENSE="GPL-2+ LGPL-2.1+"

SLOT="0/${PV}

[gentoo-commits] gentoo-x86 commit in dev-libs/dbus-c++: dbus-c++-0.9.0-r2.ebuild ChangeLog

2015-03-22 Thread Richard Farina (zerochaos)
zerochaos15/03/23 01:35:15

  Modified: dbus-c++-0.9.0-r2.ebuild ChangeLog
  Log:
  fix repoman warning
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  ChangesPath
1.2  dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild

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

Index: dbus-c++-0.9.0-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dbus-c++-0.9.0-r2.ebuild22 Mar 2015 21:36:55 -  1.1
+++ dbus-c++-0.9.0-r2.ebuild23 Mar 2015 01:35:15 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild,v 1.1 
2015/03/22 21:36:55 tetromino Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild,v 1.2 
2015/03/23 01:35:15 zerochaos Exp $
 
 EAPI="5"
 
@@ -61,4 +61,3 @@
dohtml -r "${S}"/doc/html/*
fi
 }
-



1.9  dev-libs/dbus-c++/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   22 Mar 2015 21:36:55 -  1.8
+++ ChangeLog   23 Mar 2015 01:35:15 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/dbus-c++
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/ChangeLog,v 1.8 
2015/03/22 21:36:55 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/ChangeLog,v 1.9 
2015/03/23 01:35:15 zerochaos Exp $
+
+  23 Mar 2015; Rick Farina  dbus-c++-0.9.0-r2.ebuild:
+  fix repoman warning
 
 *dbus-c++-0.9.0-r2 (22 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in games-util/xqf: xqf-1.0.5.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 01:25:08

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

Revision  ChangesPath
1.12 games-util/xqf/xqf-1.0.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xqf/xqf-1.0.5.ebuild?rev=1.12&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xqf/xqf-1.0.5.ebuild?rev=1.12&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xqf/xqf-1.0.5.ebuild?r1=1.11&r2=1.12

Index: xqf-1.0.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-util/xqf/xqf-1.0.5.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- xqf-1.0.5.ebuild3 May 2012 03:41:15 -   1.11
+++ xqf-1.0.5.ebuild23 Mar 2015 01:25:08 -  1.12
@@ -1,9 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/xqf/xqf-1.0.5.ebuild,v 1.11 
2012/05/03 03:41:15 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/xqf/xqf-1.0.5.ebuild,v 1.12 
2015/03/23 01:25:08 mr_bones_ Exp $
 
-EAPI=2
-inherit base eutils
+EAPI=5
+inherit eutils
 
 DESCRIPTION="A server browser for many FPS games (frontend for qstat)"
 HOMEPAGE="http://www.linuxgames.com/xqf/";
@@ -24,9 +24,15 @@
nls? ( sys-devel/gettext )"
 
 # bug #288853
-PATCHES=( "${FILESDIR}"/${P}-cpu-overrun.patch
-   "${FILESDIR}"/${P}-underlink.patch
-   "${FILESDIR}"/${P}-zlib-1.2.5.1-compile-fix.patch )
+src_prepare() {
+   epatch \
+   "${FILESDIR}"/${P}-cpu-overrun.patch \
+   "${FILESDIR}"/${P}-underlink.patch \
+   "${FILESDIR}"/${P}-zlib-1.2.5.1-compile-fix.patch
+   sed -i \
+   -e '/Icon/s/.png//' \
+   xqf.desktop.in || die
+}
 
 src_configure() {
econf \
@@ -35,8 +41,3 @@
$(use_enable bzip2) \
--enable-gtk2
 }
-
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed"
-   dodoc AUTHORS BUGS ChangeLog NEWS README TODO
-}



1.35 games-util/xqf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xqf/ChangeLog?rev=1.35&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xqf/ChangeLog?rev=1.35&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/xqf/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-util/xqf/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   3 May 2012 03:41:15 -   1.34
+++ ChangeLog   23 Mar 2015 01:25:08 -  1.35
@@ -1,6 +1,9 @@
 # ChangeLog for games-util/xqf
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/xqf/ChangeLog,v 1.34 2012/05/03 
03:41:15 jdhore Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/xqf/ChangeLog,v 1.35 2015/03/23 
01:25:08 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett  xqf-1.0.5.ebuild:
+  EAPI=5
 
   03 May 2012; Jeff Horelick  xqf-1.0.5.ebuild:
   dev-util/pkgconfig -> virtual/pkgconfig
@@ -163,7 +166,7 @@
   fix sourceforge mirroring.
  
   13 April 2002; Bart Verwilst : just added a 
-  description, and cleaned up the $Header: 
/var/cvsroot/gentoo-x86/games-util/xqf/ChangeLog,v 1.34 2012/05/03 03:41:15 
jdhore Exp $
+  description, and cleaned up the $Header: 
/var/cvsroot/gentoo-x86/games-util/xqf/ChangeLog,v 1.35 2015/03/23 01:25:08 
mr_bones_ Exp $
 
 *xqf-0.9.8 (6 Apr 2002)
 






[gentoo-commits] gentoo-x86 commit in media-libs/quesoglc: quesoglc-0.7.2.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/23 01:20:06

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

Revision  ChangesPath
1.6  media-libs/quesoglc/quesoglc-0.7.2.ebuild

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

Index: quesoglc-0.7.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/quesoglc/quesoglc-0.7.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- quesoglc-0.7.2.ebuild   5 May 2012 08:02:43 -   1.5
+++ quesoglc-0.7.2.ebuild   23 Mar 2015 01:20:06 -  1.6
@@ -1,8 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/quesoglc/quesoglc-0.7.2.ebuild,v 
1.5 2012/05/05 08:02:43 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/quesoglc/quesoglc-0.7.2.ebuild,v 
1.6 2015/03/23 01:20:06 mr_bones_ Exp $
+
+EAPI=5
+inherit eutils
 
-EAPI=2
 DESCRIPTION="A free implementation of the OpenGL Character Renderer (GLC)"
 HOMEPAGE="http://quesoglc.sourceforge.net/";
 SRC_URI="mirror://sourceforge/${PN}/${P}-free.tar.bz2"
@@ -10,7 +12,7 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 ppc sparc x86"
-IUSE="doc examples"
+IUSE="doc examples static-libs"
 
 RDEPEND="virtual/opengl
virtual/glu
@@ -28,28 +30,28 @@
 src_configure() {
# Uses its own copy of media-libs/glew with GLEW_MX
econf \
-   --disable-dependency-tracking \
--disable-executables \
--with-fribidi \
-   --without-glew
+   --without-glew \
+   $(use_enable static-libs static)
 }
 
 src_compile() {
-   emake || die "emake failed"
+   emake
if use doc ; then
cd docs
-   doxygen -u Doxyfile && doxygen || die "doxygen failed"
+   doxygen -u Doxyfile && doxygen || die
fi
 }
 
 src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed"
-   dodoc AUTHORS ChangeLog README THANKS
+   default
if use doc ; then
-   dohtml docs/html/* || die "dohtml failed"
+   dohtml docs/html/*
fi
if use examples ; then
insinto /usr/share/doc/${PF}/examples
-   doins examples/*.c || die "doins failed"
+   doins examples/*.c
fi
+   prune_libtool_files
 }



1.15 media-libs/quesoglc/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/quesoglc/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   5 May 2012 08:02:43 -   1.14
+++ ChangeLog   23 Mar 2015 01:20:06 -  1.15
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/quesoglc
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/quesoglc/ChangeLog,v 1.14 
2012/05/05 08:02:43 jdhore Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/quesoglc/ChangeLog,v 1.15 
2015/03/23 01:20:06 mr_bones_ Exp $
+
+  23 Mar 2015; Michael Sterrett  quesoglc-0.7.2.ebuild:
+  EAPI=5
 
   05 May 2012; Jeff Horelick  quesoglc-0.7.2.ebuild:
   dev-util/pkgconfig -> virtual/pkgconfig
@@ -50,4 +53,3 @@
   20 Mar 2008; Tristan Heaven  +metadata.xml,
   +quesoglc-0.7.1.ebuild:
   Initial commit, bug #195096
-






[gentoo-commits] gentoo-x86 commit in dev-php/PEAR-Archive_Tar: PEAR-Archive_Tar-1.3.15.ebuild ChangeLog

2015-03-22 Thread Brian Evans (grknight)
grknight15/03/23 00:34:46

  Modified: ChangeLog
  Added:PEAR-Archive_Tar-1.3.15.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xD1F781EFF9F4A3B6)

Revision  ChangesPath
1.66 dev-php/PEAR-Archive_Tar/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog   16 Feb 2015 21:48:02 -  1.65
+++ ChangeLog   23 Mar 2015 00:34:46 -  1.66
@@ -1,6 +1,12 @@
 # ChangeLog for dev-php/PEAR-Archive_Tar
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/ChangeLog,v 1.65 
2015/02/16 21:48:02 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/ChangeLog,v 1.66 
2015/03/23 00:34:46 grknight Exp $
+
+*PEAR-Archive_Tar-1.3.15 (23 Mar 2015)
+
+  23 Mar 2015; Brian Evans 
+  +PEAR-Archive_Tar-1.3.15.ebuild:
+  Version bump
 
   16 Feb 2015; Brian Evans  
PEAR-Archive_Tar-1.3.13.ebuild:
   Add missing RDEPEND for bug 447180



1.1  dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.15.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.15.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.15.ebuild?rev=1.1&content-type=text/plain

Index: PEAR-Archive_Tar-1.3.15.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.15.ebuild,v
 1.1 2015/03/23 00:34:46 grknight Exp $

EAPI="5"

MY_PN="${PN/PEAR-/}"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Tar file management class"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
SRC_URI="http://pear.php.net/get/${MY_P}.tgz";
DEPEND="dev-lang/php:*[pcre(+)]
>=dev-php/PEAR-PEAR-1.8.1
"
RDEPEND="dev-lang/php:*[bzip2,posix,zlib]
${DEPEND}"
PDEPEND="dev-php/pear"
HOMEPAGE="http://pear.php.net/package/Archive_Tar";

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

src_install() {
insinto /usr/share/php/Archive
doins Archive/*

dodoc docs/*
}






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

2015-03-22 Thread Marc Schiffbauer (mschiff)
mschiff 15/03/23 00:05:18

  Modified: ChangeLog
  Added:cliapp-1.20150305.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x296C6CCA35A64134)

Revision  ChangesPath
1.18 dev-python/cliapp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   21 Jan 2015 10:06:59 -  1.17
+++ ChangeLog   23 Mar 2015 00:05:18 -  1.18
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/cliapp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.17 
2015/01/21 10:06:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.18 
2015/03/23 00:05:18 mschiff Exp $
+
+*cliapp-1.20150305 (23 Mar 2015)
+
+  23 Mar 2015; Marc Schiffbauer  +cliapp-1.20150305.ebuild:
+  Version bump
 
   21 Jan 2015; Agostino Sarubbo  cliapp-1.20130808.ebuild,
   cliapp-1.20140315.ebuild:



1.1  dev-python/cliapp/cliapp-1.20150305.ebuild

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

Index: cliapp-1.20150305.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20150305.ebuild,v 
1.1 2015/03/23 00:05:18 mschiff Exp $

EAPI=5

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

inherit distutils-r1

DESCRIPTION="Framework for Unix-like command line programs"
HOMEPAGE="http://liw.fi/cliapp/";
SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp/snapshot/${P}.tar.gz";

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

DEPEND="${PYTHON_DEPS}
test? ( dev-python/CoverageTestRunner )"

src_test() {
use test && addwrite /proc/self/comm
distutils-r1_src_test
}

python_test() {
emake check
}






[gentoo-commits] gentoo-x86 commit in app-backup/obnam: obnam-1.9.ebuild ChangeLog

2015-03-22 Thread Marc Schiffbauer (mschiff)
mschiff 15/03/22 23:57:28

  Modified: ChangeLog
  Added:obnam-1.9.ebuild
  Log:
  Bump version
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x296C6CCA35A64134)

Revision  ChangesPath
1.25 app-backup/obnam/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/obnam/ChangeLog?rev=1.25&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/obnam/ChangeLog?rev=1.25&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/obnam/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-backup/obnam/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog   28 Dec 2014 18:21:45 -  1.24
+++ ChangeLog   22 Mar 2015 23:57:28 -  1.25
@@ -1,6 +1,12 @@
 # ChangeLog for app-backup/obnam
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-backup/obnam/ChangeLog,v 1.24 
2014/12/28 18:21:45 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-backup/obnam/ChangeLog,v 1.25 
2015/03/22 23:57:28 mschiff Exp $
+
+*obnam-1.9 (22 Mar 2015)
+
+  22 Mar 2015; Marc Schiffbauer 
+  +files/obnam-1.9-setup-man.diff, +obnam-1.9.ebuild:
+  Bump version
 
   28 Dec 2014; Mike Gilbert  obnam-1.7.4.ebuild,
   obnam-1.8-r1.ebuild:



1.1  app-backup/obnam/obnam-1.9.ebuild

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

Index: obnam-1.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/obnam/obnam-1.9.ebuild,v 1.1 
2015/03/22 23:57:28 mschiff Exp $

EAPI=5

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

inherit eutils distutils-r1

DESCRIPTION="A backup program that supports encryption and deduplication"
HOMEPAGE="http://obnam.org/";
SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/obnam/snapshot/${P}.tar.gz";

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

DEPEND="${PYTHON_DEPS}
dev-python/cliapp
dev-python/fuse-python
dev-python/larch
!=dev-python/paramiko-1.13.0
|| ( dev-python/paramiko-1.13.0 )
dev-python/tracing
dev-python/ttystatus
"
RDEPEND="${DEPEND}"

PATCHES=( ${FILESDIR}/${P}-setup-man.diff )

src_compile() {
addwrite /proc/self/comm
distutils-r1_src_compile
}

src_install() {
distutils-r1_src_install
find "${D}" -name "obnam-viewprof*" -delete
insinto /etc
doins "${FILESDIR}"/obnam.conf
keepdir /var/log/obnam
}

pkg_postinst() {
if [[ $REPLACING_VERSIONS < "1.2" ]]; then
elog "You will need to setup a config file before running obnam 
for the first time."
elog "For details, please see the obnam(1) manual page."
elog "An example file has been installed as /etc/obnam.conf for 
your convenience."
fi
}






[gentoo-commits] gentoo-x86 commit in app-backup/obnam/files: obnam-1.9-setup-man.diff

2015-03-22 Thread Marc Schiffbauer (mschiff)
mschiff 15/03/22 23:57:28

  Added:obnam-1.9-setup-man.diff
  Log:
  Bump version
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x296C6CCA35A64134)

Revision  ChangesPath
1.1  app-backup/obnam/files/obnam-1.9-setup-man.diff

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/obnam/files/obnam-1.9-setup-man.diff?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/obnam/files/obnam-1.9-setup-man.diff?rev=1.1&content-type=text/plain

Index: obnam-1.9-setup-man.diff
===
--- setup.py.orig   2015-03-23 00:11:50.833110091 +0100
+++ setup.py2015-03-23 00:12:19.892915511 +0100
@@ -78,7 +78,7 @@
 env['MANWIDTH'] = '80'
 with open('%s.1.txt' % program, 'w') as f:
 cliapp.runcmd(
-['man', '-l', '%s.1' % program],
+['man', './%s.1' % program],
 ['col', '-b'],
 stdout=f,
 env=env)






[gentoo-commits] gentoo-x86 commit in app-misc/toilet: ChangeLog toilet-0.3.ebuild

2015-03-22 Thread JosA MarAa Alonso (nimiux)
nimiux  15/03/22 22:34:30

  Modified: ChangeLog toilet-0.3.ebuild
  Log:
  Stable for amd64 wrt bug #534882
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
F253DB15)

Revision  ChangesPath
1.24 app-misc/toilet/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/toilet/ChangeLog?rev=1.24&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/toilet/ChangeLog?rev=1.24&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/toilet/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/toilet/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   27 Feb 2015 10:01:26 -  1.23
+++ ChangeLog   22 Mar 2015 22:34:30 -  1.24
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/toilet
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/toilet/ChangeLog,v 1.23 2015/02/27 
10:01:26 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/toilet/ChangeLog,v 1.24 2015/03/22 
22:34:30 nimiux Exp $
+
+  22 Mar 2015; Chema Alonso  toilet-0.3.ebuild:
+  Stable for amd64 wrt bug #534882
 
   27 Feb 2015; Michael Weber  toilet-0.2.ebuild,
   toilet-0.3.ebuild:



1.5  app-misc/toilet/toilet-0.3.ebuild

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

Index: toilet-0.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-misc/toilet/toilet-0.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- toilet-0.3.ebuild   27 Feb 2015 10:01:26 -  1.4
+++ toilet-0.3.ebuild   22 Mar 2015 22:34:30 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/toilet/toilet-0.3.ebuild,v 1.4 
2015/02/27 10:01:26 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/toilet/toilet-0.3.ebuild,v 1.5 
2015/03/22 22:34:30 nimiux Exp $
 
 EAPI=4
 
@@ -10,7 +10,7 @@
 
 LICENSE="WTFPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/libcaca-0.99_beta18"






[gentoo-commits] gentoo-x86 commit in net-misc/openconnect: openconnect-7.06.ebuild ChangeLog

2015-03-22 Thread Mike Gilbert (floppym)
floppym 15/03/22 22:17:09

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

Revision  ChangesPath
1.41 net-misc/openconnect/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openconnect/ChangeLog?rev=1.41&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openconnect/ChangeLog?rev=1.41&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openconnect/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openconnect/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   13 Mar 2015 01:43:25 -  1.40
+++ ChangeLog   22 Mar 2015 22:17:09 -  1.41
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/openconnect
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openconnect/ChangeLog,v 1.40 
2015/03/13 01:43:25 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openconnect/ChangeLog,v 1.41 
2015/03/22 22:17:09 floppym Exp $
+
+*openconnect-7.06 (22 Mar 2015)
+
+  22 Mar 2015; Mike Gilbert  +openconnect-7.06.ebuild:
+  Version bump.
 
   13 Mar 2015; Mike Gilbert  openconnect-7.05.ebuild:
   Fix category for openresolv.



1.1  net-misc/openconnect/openconnect-7.06.ebuild

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

Index: openconnect-7.06.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-misc/openconnect/openconnect-7.06.ebuild,v 1.1 
2015/03/22 22:17:09 floppym Exp $

EAPI="5"

PYTHON_COMPAT=( python2_{6,7} )
PYTHON_REQ_USE="xml"

inherit eutils java-pkg-opt-2 linux-info python-any-r1 readme.gentoo

DESCRIPTION="Free client for Cisco AnyConnect SSL VPN software"
HOMEPAGE="http://www.infradead.org/openconnect.html";
VPNC_VER=20140806
SRC_URI="ftp://ftp.infradead.org/pub/${PN}/${P}.tar.gz

ftp://ftp.infradead.org/pub/vpnc-scripts/vpnc-scripts-${VPNC_VER}.tar.gz";

LICENSE="LGPL-2.1 GPL-2"
SLOT="0/5"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="doc +gnutls gssapi java libproxy nls static-libs"
ILINGUAS="ar cs de el en_GB en_US es eu fi fr gl id lt nl pa pl pt pt_BR sk sl 
tg ug uk zh_CN zh_TW"
for lang in $ILINGUAS; do
IUSE="${IUSE} linguas_${lang}"
done

DEPEND="dev-libs/libxml2
sys-libs/zlib
!gnutls? (
>=dev-libs/openssl-1.0.1h:0[static-libs?]
)
gnutls? (
>=net-libs/gnutls-3[static-libs?] dev-libs/nettle
app-misc/ca-certificates
)
gssapi? ( app-crypt/mit-krb5 )
libproxy? ( net-libs/libproxy )
nls? ( virtual/libintl )"
RDEPEND="${DEPEND}
sys-apps/iproute2"
DEPEND="${DEPEND}
virtual/pkgconfig
doc? ( ${PYTHON_DEPS} sys-apps/groff )
java? ( >=virtual/jdk-1.6 )
nls? ( sys-devel/gettext )"

tun_tap_check() {
ebegin "Checking for TUN/TAP support"
if { ! linux_chkconfig_present TUN; }; then
eerror "Please enable TUN/TAP support in your kernel config, 
found at:"
eerror
eerror "  Device Drivers  --->"
eerror "[*] Network device support  --->"
eerror "  <*>   Universal TUN/TAP device driver support"
eerror
eerror "and recompile your kernel ..."
die "no CONFIG_TUN support detected!"
fi
eend $?
}

pkg_setup() {
java-pkg-opt-2_pkg_setup

if use doc; then
python-any-r1_pkg_setup
fi

if use kernel_linux; then
get_version
if linux_config_exists; then
tun_tap_check
else
ewarn "Was unable to determine your kernel .config"
ewarn "Please note that OpenConnect requires CONFIG_TUN 
to be set in your"
ewarn "kernel .config, Without it, it will not work 
correctly."
# We don't die here, so it's possible to compile this 
package without
# kernel sources available. Required for 
cross-compilation.
fi
fi
}

src_configure() {
strip-linguas $ILINGUAS
echo ${LINGUAS} > po/LINGUAS
if ! use doc; then
# If the python cannot be found, the doc

[gentoo-commits] gentoo-x86 commit in net-fs/openafs: openafs-1.6.5-r1.ebuild ChangeLog

2015-03-22 Thread Andrew Savchenko (bircoph)
bircoph 15/03/22 21:41:59

  Modified: openafs-1.6.5-r1.ebuild ChangeLog
  Log:
  fix bug 534488
  
  Signed-off-by: Andrew Savchenko 
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
565953B95372756C)

Revision  ChangesPath
1.5  net-fs/openafs/openafs-1.6.5-r1.ebuild

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

Index: openafs-1.6.5-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs/openafs-1.6.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openafs-1.6.5-r1.ebuild 7 Oct 2013 20:27:16 -   1.4
+++ openafs-1.6.5-r1.ebuild 22 Mar 2015 21:41:59 -  1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/openafs-1.6.5-r1.ebuild,v 
1.4 2013/10/07 20:27:16 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/openafs-1.6.5-r1.ebuild,v 
1.5 2015/03/22 21:41:59 bircoph Exp $
 
 EAPI="4"
 
@@ -150,5 +150,5 @@
elog "(warning: it is not yet up to date wrt the new file locations)"
elog
elog "The documentation can be found at:"
-   elog "  http://www.gentoo.org/doc/en/openafs.xml";
+   elog "  https://wiki.gentoo.org/wiki/OpenAFS";
 }



1.202net-fs/openafs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs/ChangeLog?rev=1.202&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs/ChangeLog?rev=1.202&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs/ChangeLog?r1=1.201&r2=1.202

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -r1.201 -r1.202
--- ChangeLog   22 Mar 2015 21:09:06 -  1.201
+++ ChangeLog   22 Mar 2015 21:41:59 -  1.202
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/openafs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v 1.201 2015/03/22 
21:09:06 bircoph Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v 1.202 2015/03/22 
21:41:59 bircoph Exp $
+
+  22 Mar 2015; Andrew Savchenko  openafs-1.6.5-r1.ebuild:
+  Fix bug 534488 for older verion.
 
   22 Mar 2015; Andrew Savchenko  -openafs-1.6.2-r1.ebuild,
   metadata.xml:






[gentoo-commits] gentoo-x86 commit in dev-libs/dbus-c++: dbus-c++-0.9.0-r1.ebuild dbus-c++-0.9.0-r2.ebuild ChangeLog

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 21:36:56

  Modified: dbus-c++-0.9.0-r1.ebuild ChangeLog
  Added:dbus-c++-0.9.0-r2.ebuild
  Log:
  Add multilib support (bug #514006, thanks to Karl Lindén and tokiclover). Fix 
pthread linking weirdness. Fix USE=doc. Update license.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.3  dev-libs/dbus-c++/dbus-c++-0.9.0-r1.ebuild

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

Index: dbus-c++-0.9.0-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dbus-c++-0.9.0-r1.ebuild24 Apr 2013 08:25:42 -  1.2
+++ dbus-c++-0.9.0-r1.ebuild22 Mar 2015 21:36:55 -  1.3
@@ -1,23 +1,23 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r1.ebuild,v 1.2 
2013/04/24 08:25:42 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r1.ebuild,v 1.3 
2015/03/22 21:36:55 tetromino Exp $
 
 EAPI="4"
 
 inherit eutils
 
-DESCRIPTION="provide a C++ API for D-BUS"
+DESCRIPTION="Provides a C++ API for D-BUS"
 HOMEPAGE="http://sourceforge.net/projects/dbus-cplusplus/ 
http://sourceforge.net/apps/mediawiki/dbus-cplusplus/index.php?title=Main_Page";
 SRC_URI="mirror://sourceforge/dbus-cplusplus/lib${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="LGPL-2.1+"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE="doc ecore glib static-libs test"
 
 RDEPEND="sys-apps/dbus
ecore? ( dev-libs/ecore )
-   glib? ( dev-libs/glib )"
+   glib? ( dev-libs/glib:2 )"
 DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
dev-util/cppunit



1.8  dev-libs/dbus-c++/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   16 Feb 2014 10:34:54 -  1.7
+++ ChangeLog   22 Mar 2015 21:36:55 -  1.8
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/dbus-c++
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/ChangeLog,v 1.7 
2014/02/16 10:34:54 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/ChangeLog,v 1.8 
2015/03/22 21:36:55 tetromino Exp $
+
+*dbus-c++-0.9.0-r2 (22 Mar 2015)
+
+  22 Mar 2015; Alexandre Rostovtsev 
+  dbus-c++-0.9.0-r1.ebuild, +dbus-c++-0.9.0-r2.ebuild:
+  Add multilib support (bug #514006, thanks to Karl Lindén and tokiclover).
+  Fix pthread linking weirdness. Fix USE=doc. Update license.
 
   16 Feb 2014; Pacho Ramos  -dbus-c++-0.6.0_p2026.ebuild,
   -dbus-c++-0.9.0.ebuild, metadata.xml:



1.1  dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: dbus-c++-0.9.0-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-c++/dbus-c++-0.9.0-r2.ebuild,v 
1.1 2015/03/22 21:36:55 tetromino Exp $

EAPI="5"

AUTOTOOLS_PRUNE_LIBTOOL_FILES="modules"

inherit autotools-multilib

DESCRIPTION="Provides a C++ API for D-BUS"
HOMEPAGE="http://sourceforge.net/projects/dbus-cplusplus/ 
http://sourceforge.net/apps/mediawiki/dbus-cplusplus/index.php?title=Main_Page";
SRC_URI="mirror://sourceforge/dbus-cplusplus/lib${P}.tar.gz"

LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="doc ecore glib static-libs test"

RDEPEND="sys-apps/dbus[${MULTILIB_USEDEP}]
ecore? ( dev-libs/ecore )
glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
doc? ( 

[gentoo-commits] gentoo-x86 commit in dev-perl/File-NFSLock: File-NFSLock-1.270.0.ebuild ChangeLog

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 21:35:01

  Modified: File-NFSLock-1.270.0.ebuild ChangeLog
  Log:
  Fix whitespace
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.2  dev-perl/File-NFSLock/File-NFSLock-1.270.0.ebuild

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

Index: File-NFSLock-1.270.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/File-NFSLock-1.270.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- File-NFSLock-1.270.0.ebuild 22 Mar 2015 17:00:04 -  1.1
+++ File-NFSLock-1.270.0.ebuild 22 Mar 2015 21:35:01 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/File-NFSLock-1.270.0.ebuild,v 1.1 
2015/03/22 17:00:04 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/File-NFSLock-1.270.0.ebuild,v 1.2 
2015/03/22 21:35:01 dilfridge Exp $
 
 EAPI=5
 
@@ -17,4 +17,3 @@
 DEPEND="virtual/perl-ExtUtils-MakeMaker"
 
 SRC_TEST="do"
-



1.16 dev-perl/File-NFSLock/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   22 Mar 2015 17:00:04 -  1.15
+++ ChangeLog   22 Mar 2015 21:35:01 -  1.16
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/File-NFSLock
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/ChangeLog,v 1.15 
2015/03/22 17:00:04 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/ChangeLog,v 1.16 
2015/03/22 21:35:01 dilfridge Exp $
+
+  22 Mar 2015; Andreas K. Huettel 
+  File-NFSLock-1.270.0.ebuild:
+  Fix whitespace
 
 *File-NFSLock-1.270.0 (22 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/gradm: gradm-3.1.201503211320.ebuild ChangeLog

2015-03-22 Thread Anthony G. Basile (blueness)
blueness15/03/22 21:34:01

  Modified: ChangeLog
  Added:gradm-3.1.201503211320.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.225sys-apps/gradm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- ChangeLog   23 Feb 2015 20:07:38 -  1.224
+++ ChangeLog   22 Mar 2015 21:34:01 -  1.225
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/gradm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.224 2015/02/23 
20:07:38 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/ChangeLog,v 1.225 2015/03/22 
21:34:01 blueness Exp $
+
+*gradm-3.1.201503211320 (22 Mar 2015)
+
+  22 Mar 2015; Anthony G. Basile 
+  +gradm-3.1.201503211320.ebuild:
+  Version bump.
 
   23 Feb 2015; Anthony G. Basile 
   -gradm-3.0.201407222118.ebuild, gradm-3.0.201408301734.ebuild:



1.1  sys-apps/gradm/gradm-3.1.201503211320.ebuild

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

Index: gradm-3.1.201503211320.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-3.1.201503211320.ebuild,v 1.1 
2015/03/22 21:34:01 blueness Exp $

EAPI="5"
inherit flag-o-matic toolchain-funcs versionator eutils udev

MY_PV="$(replace_version_separator 2 -)"

DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
HOMEPAGE="http://www.grsecurity.net/";
SRC_URI="http://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz";
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="pam"

RDEPEND=""
DEPEND="
sys-devel/bison
sys-devel/flex
pam? ( virtual/pam )"

S=${WORKDIR}/${PN}

src_prepare() {
epatch "${FILESDIR}"/respect-gentoo-env-r3.patch
sed -i -e "s:/lib/udev:$(get_udevdir):" Makefile || die
}

src_compile() {
local target
use pam || target="nopam"

emake ${target} CC="$(tc-getCC)" OPT_FLAGS="${CFLAGS}"
}

src_install() {
emake DESTDIR="${D}" install
fperms 711 /sbin/gradm
}

pkg_postinst() {
ewarn
ewarn "Be sure to set a password with 'gradm -P' before enabling 
learning mode."
ewarn
}






[gentoo-commits] gentoo-x86 commit in dev-perl/Devel-Size: Devel-Size-0.795.200.ebuild ChangeLog

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 21:32:51

  Modified: ChangeLog
  Added:Devel-Size-0.795.200.ebuild
  Log:
  Version bump; using a developer release because of bug 543392
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.46 dev-perl/Devel-Size/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Devel-Size/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog   20 Oct 2014 12:27:42 -  1.45
+++ ChangeLog   22 Mar 2015 21:32:51 -  1.46
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Devel-Size
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-Size/ChangeLog,v 1.45 
2014/10/20 12:27:42 zlogene Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-Size/ChangeLog,v 1.46 
2015/03/22 21:32:51 dilfridge Exp $
+
+*Devel-Size-0.795.200 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +Devel-Size-0.795.200.ebuild:
+  Version bump; using a developer release because of bug 543392
 
   20 Oct 2014; Mikle Kolyada  -Devel-Size-0.780.0.ebuild:
   Drop old.



1.1  dev-perl/Devel-Size/Devel-Size-0.795.200.ebuild

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

Index: Devel-Size-0.795.200.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Devel-Size/Devel-Size-0.795.200.ebuild,v 1.1 
2015/03/22 21:32:51 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=NWCLARK
MODULE_VERSION=0.79_52
inherit perl-module

DESCRIPTION="Perl extension for finding the memory usage of Perl variables"

SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"

RDEPEND="
virtual/perl-XSLoader
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? ( virtual/perl-Test-Simple )
"

SRC_TEST="do"






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

2015-03-22 Thread Brian Evans (grknight)
grknight15/03/22 21:21:03

  Modified: ChangeLog package.mask
  Log:
  Fix masked squirrelmail version and spelling mistake

Revision  ChangesPath
1.9876   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9875
retrieving revision 1.9876
diff -u -r1.9875 -r1.9876
--- ChangeLog   22 Mar 2015 18:49:44 -  1.9875
+++ ChangeLog   22 Mar 2015 21:21:03 -  1.9876
@@ -1,12 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9875 2015/03/22 
18:49:44 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9876 2015/03/22 
21:21:03 grknight Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
   22 Mar 2015; Brian Evans  package.mask:
+  Fix masked squirrelmail version and spelling mistake
+
+  22 Mar 2015; Brian Evans  package.mask:
   PHP 5.3.x is vulernable to several security bugs and has
   reached EOL status. (Bugs #533998, #537586, #537590, #538822, #541098)
   Masked pending resolution to bug #538756



1.16433  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16432
retrieving revision 1.16433
diff -u -r1.16432 -r1.16433
--- package.mask22 Mar 2015 18:49:44 -  1.16432
+++ package.mask22 Mar 2015 21:21:03 -  1.16433
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16432 2015/03/22 
18:49:44 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16433 2015/03/22 
21:21:03 grknight Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -31,12 +31,12 @@
 #--- END OF EXAMPLES ---
 
 # Brian Evans  (22 Mar 2015)
-# PHP 5.3.x is vulernable to several security bugs and has
+# PHP 5.3.x is vulnerable to several security bugs and has
 # reached EOL status. (Bugs #533998, #537586, #537590, #538822, #541098)
 # Masked pending resolution to bug #538756
 dev-lang/php:5.3
 virtual/httpd-php:5.3
-=mail-client/squirrelmail-1.4.2
+=mail-client/squirrelmail-1.4.22
 
 # Pacho Ramos  (22 Mar 2015)
 # Cannot be fetched, also has licensing issues (#531270).






[gentoo-commits] gentoo-x86 commit in net-fs/openafs-kernel/files: openafs-1.6.2-kernel-3.8-5.patch openafs-1.6.2-kernel-3.8-4.patch openafs-1.6.2-kernel-3.8-3.patch openafs-1.6.5-kernel-3.11-2.patch

2015-03-22 Thread Andrew Savchenko (bircoph)
bircoph 15/03/22 21:14:48

  Removed:  openafs-1.6.2-kernel-3.8-5.patch
openafs-1.6.2-kernel-3.8-4.patch
openafs-1.6.2-kernel-3.8-3.patch
openafs-1.6.5-kernel-3.11-2.patch
openafs-1.6.2-kernel-3.8-1.patch
openafs-1.6.2-kernel-3.8-2.patch
openafs-1.6.5-kernel-3.11-1.patch
  Log:
  remove old
  
  Signed-off-by: Andrew Savchenko 
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
565953B95372756C)



[gentoo-commits] gentoo-x86 commit in net-fs/openafs-kernel: ChangeLog openafs-kernel-1.6.5-r2.ebuild openafs-kernel-1.6.2-r1.ebuild

2015-03-22 Thread Andrew Savchenko (bircoph)
bircoph 15/03/22 21:14:48

  Modified: ChangeLog
  Removed:  openafs-kernel-1.6.5-r2.ebuild
openafs-kernel-1.6.2-r1.ebuild
  Log:
  remove old
  
  Signed-off-by: Andrew Savchenko 
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
565953B95372756C)

Revision  ChangesPath
1.165net-fs/openafs-kernel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs-kernel/ChangeLog?rev=1.165&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs-kernel/ChangeLog?rev=1.165&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs-kernel/ChangeLog?r1=1.164&r2=1.165

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog   22 Mar 2015 21:00:47 -  1.164
+++ ChangeLog   22 Mar 2015 21:14:48 -  1.165
@@ -1,6 +1,17 @@
 # ChangeLog for net-fs/openafs-kernel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v 1.164 
2015/03/22 21:00:47 bircoph Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v 1.165 
2015/03/22 21:14:48 bircoph Exp $
+
+  22 Mar 2015; Andrew Savchenko 
+  -openafs-kernel-1.6.2-r1.ebuild, -openafs-kernel-1.6.5-r2.ebuild,
+  -files/openafs-1.6.2-kernel-3.8-1.patch,
+  -files/openafs-1.6.2-kernel-3.8-2.patch,
+  -files/openafs-1.6.2-kernel-3.8-3.patch,
+  -files/openafs-1.6.2-kernel-3.8-4.patch,
+  -files/openafs-1.6.2-kernel-3.8-5.patch,
+  -files/openafs-1.6.5-kernel-3.11-1.patch,
+  -files/openafs-1.6.5-kernel-3.11-2.patch:
+  Remove old versions.
 
 *openafs-kernel-1.6.11 (22 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/glfw: glfw-3.0.4.ebuild glfw-3.1.1.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/22 21:10:59

  Modified: glfw-3.0.4.ebuild ChangeLog
  Added:glfw-3.1.1.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.2  media-libs/glfw/glfw-3.0.4.ebuild

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

Index: glfw-3.0.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/glfw/glfw-3.0.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glfw-3.0.4.ebuild   29 Aug 2014 19:52:26 -  1.1
+++ glfw-3.0.4.ebuild   22 Mar 2015 21:10:59 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/glfw-3.0.4.ebuild,v 1.1 
2014/08/29 19:52:26 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/glfw-3.0.4.ebuild,v 1.2 
2015/03/22 21:10:59 mr_bones_ Exp $
 
 EAPI=5
 inherit cmake-utils



1.22 media-libs/glfw/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/glfw/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   4 Sep 2014 21:17:01 -   1.21
+++ ChangeLog   22 Mar 2015 21:10:59 -  1.22
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/glfw
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/ChangeLog,v 1.21 2014/09/04 
21:17:01 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/ChangeLog,v 1.22 2015/03/22 
21:10:59 mr_bones_ Exp $
+
+*glfw-3.1.1 (22 Mar 2015)
+
+  22 Mar 2015; Michael Sterrett  +glfw-3.1.1.ebuild,
+  glfw-3.0.4.ebuild:
+  version bump
 
   04 Sep 2014; Michael Sterrett  -glfw-3.0.3.ebuild:
   old



1.1  media-libs/glfw/glfw-3.1.1.ebuild

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

Index: glfw-3.1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/glfw/glfw-3.1.1.ebuild,v 1.1 
2015/03/22 21:10:59 mr_bones_ Exp $

EAPI=5
inherit cmake-utils

DESCRIPTION="The Portable OpenGL FrameWork"
HOMEPAGE="http://www.glfw.org/";
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="egl examples"

RDEPEND="x11-libs/libXrandr
x11-libs/libX11
x11-libs/libXi
x11-libs/libXxf86vm
virtual/opengl"
DEPEND="${RDEPEND}
virtual/glu"

src_configure() {
local mycmakeargs="
$(cmake-utils_use egl GLFW_USE_EGL)
$(cmake-utils_use examples GLFW_BUILD_EXAMPLES)
-DBUILD_SHARED_LIBS=1
"
cmake-utils_src_configure
}






[gentoo-commits] gentoo-x86 commit in net-fs/openafs: ChangeLog metadata.xml openafs-1.6.2-r1.ebuild

2015-03-22 Thread Andrew Savchenko (bircoph)
bircoph 15/03/22 21:09:06

  Modified: ChangeLog metadata.xml
  Removed:  openafs-1.6.2-r1.ebuild
  Log:
  remove old
  
  Signed-off-by: Andrew Savchenko 
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
565953B95372756C)

Revision  ChangesPath
1.201net-fs/openafs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog   22 Mar 2015 21:01:39 -  1.200
+++ ChangeLog   22 Mar 2015 21:09:06 -  1.201
@@ -1,6 +1,11 @@
 # ChangeLog for net-fs/openafs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v 1.200 2015/03/22 
21:01:39 bircoph Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v 1.201 2015/03/22 
21:09:06 bircoph Exp $
+
+  22 Mar 2015; Andrew Savchenko  -openafs-1.6.2-r1.ebuild,
+  metadata.xml:
+  Add modules flag description (with a warning).
+  Remove old vulnerable version.
 
 *openafs-1.6.11 (22 Mar 2015)
 



1.10 net-fs/openafs/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml17 Mar 2015 18:44:55 -  1.9
+++ metadata.xml22 Mar 2015 21:09:06 -  1.10
@@ -22,4 +22,8 @@
Andrej Filipcic
inactive maintainer
 
+
+   Build libafs kernel module. Disable only if you 
know
+   what you're doing: without this module OpenAFS client will not 
work.
+
 






[gentoo-commits] gentoo-x86 commit in net-fs/openafs: ChangeLog openafs-1.6.11.ebuild

2015-03-22 Thread Andrew Savchenko (bircoph)
bircoph 15/03/22 21:01:39

  Modified: ChangeLog
  Added:openafs-1.6.11.ebuild
  Log:
  version bump
  
  Signed-off-by: Andrew Savchenko 
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
565953B95372756C)

Revision  ChangesPath
1.200net-fs/openafs/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog   17 Mar 2015 18:44:55 -  1.199
+++ ChangeLog   22 Mar 2015 21:01:39 -  1.200
@@ -1,6 +1,13 @@
 # ChangeLog for net-fs/openafs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v 1.199 2015/03/17 
18:44:55 bircoph Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/ChangeLog,v 1.200 2015/03/22 
21:01:39 bircoph Exp $
+
+*openafs-1.6.11 (22 Mar 2015)
+
+  22 Mar 2015; Andrew Savchenko  +openafs-1.6.11.ebuild:
+  Version bump based on proxied maintainer commit from NP-hardass
+  . Fixes bugs 239369, 334413, 412119, 436596,
+  500378, 534488.
 
   17 Mar 2015; Andrew Savchenko  metadata.xml:
   Update maintainers information.



1.1  net-fs/openafs/openafs-1.6.11.ebuild

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

Index: openafs-1.6.11.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs/openafs-1.6.11.ebuild,v 1.1 
2015/03/22 21:01:39 bircoph Exp $

EAPI="5"

inherit autotools eutils flag-o-matic multilib pam systemd toolchain-funcs 
versionator

MY_PV=$(delete_version_separator '_')
MY_P="${PN}-${MY_PV}"

DESCRIPTION="The OpenAFS distributed file system"
HOMEPAGE="http://www.openafs.org/";
# We always d/l the doc tarball as man pages are not USE=doc material
[[ ${PV} == *_pre* ]] && MY_PRE="candidate/" || MY_PRE=""
SRC_URI="
http://openafs.org/dl/openafs/${MY_PRE}${MY_PV}/${MY_P}-src.tar.bz2
http://openafs.org/dl/openafs/${MY_PV}/${MY_P}-doc.tar.bz2
http://dev.gentoo.org/~bircoph/patches/${P}-patches.tar.xz
"

LICENSE="IBM BSD openafs-krb5-a APSL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86 ~amd64-linux ~x86-linux"

IUSE="doc kerberos +modules pam"

CDEPEND="
sys-libs/ncurses
pam? ( sys-libs/pam )
kerberos? ( virtual/krb5 )"

DEPEND="${CDEPEND}
doc? (
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
)"

RDEPEND="${CDEPEND}
modules? ( ~net-fs/openafs-kernel-${PV} )"

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

src_prepare() {
EPATCH_EXCLUDE="050_all_job_server.patch" \
EPATCH_SUFFIX="patch" \
epatch "${WORKDIR}"/gentoo/patches
epatch_user

# fixing 2-nd level makefiles to honor flags
sed -i -r 's/\ "${ED}"/etc/openafs/cacheinfo
echo "openafs.org" > "${ED}"/etc/openafs/ThisCell

# pam_afs and pam_afs.krb have been installed in irregular locations, 
fix
if use pam ; then
dopammod "${ED}"/usr/$(get_libdir)/pam_afs*
fi
rm -f "${ED}"/usr/$(get_libdir)/pam_afs* || die

# remove kdump stuff provided by kexec-tools #222455
rm -rf "${ED}"/usr/sbin/kdump*

# avoid collision with mit_krb5's version of kpasswd
mv "${ED}"/usr/bin/kpasswd{,_afs} || die
mv "${ED}"/usr/share/man/man1/kpasswd{,_afs}.1 || die

# move lwp stuff around #200674 #330061
mv "${ED}"/usr/include/{lwp,lock,timer}.h "${ED}"/usr/include/afs/ || 
die
mv "${ED}"/usr/$(get_libdir)/liblwp* "${ED}"/usr/$(get_libdir)/afs/ || 
die
# update paths to the relocated lwp headers
sed -ri \
-e '/^#include <(lwp|lock|timer).h>/s:<([^>]*)>::' \
"${ED}"/usr/include/*.h \
"${ED}"/usr/include/*/*.h \
|| die

# minimal documentation
use pam && doman src/pam/pam_afs.5
dodoc "${WORKDIR}/gentoo/README" src/afsd/CellServDB

# documentation package
if use doc ; then
dodoc -r doc/{arch,examples,protocol,txt}
dohtml -r doc/xml/*
fi

# Gentoo related scripts
newinitd "${OPENRCDIR}"/openafs-client.initd o

[gentoo-commits] gentoo-x86 commit in app-admin/ec2-ami-tools: ec2-ami-tools-1.5.6.ebuild ChangeLog

2015-03-22 Thread Anthony G. Basile (blueness)
blueness15/03/22 21:01:29

  Modified: ChangeLog
  Added:ec2-ami-tools-1.5.6.ebuild
  Log:
  Version bump.  Switch to ruby 2.0.
  See: https://aws.amazon.com/developertools/368
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.19 app-admin/ec2-ami-tools/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-admin/ec2-ami-tools/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   14 Nov 2014 00:49:32 -  1.18
+++ ChangeLog   22 Mar 2015 21:01:29 -  1.19
@@ -1,6 +1,13 @@
 # ChangeLog for app-admin/ec2-ami-tools
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/ec2-ami-tools/ChangeLog,v 1.18 
2014/11/14 00:49:32 tomwij Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/ec2-ami-tools/ChangeLog,v 1.19 
2015/03/22 21:01:29 blueness Exp $
+
+*ec2-ami-tools-1.5.6 (22 Mar 2015)
+
+  22 Mar 2015; Anthony G. Basile 
+  +ec2-ami-tools-1.5.6.ebuild:
+  Version bump.  Switch to ruby 2.0. See:
+  https://aws.amazon.com/developertools/368
 
   14 Nov 2014; Tom Wijsman  metadata.xml:
   Maintainer needed.



1.1  app-admin/ec2-ami-tools/ec2-ami-tools-1.5.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ec2-ami-tools/ec2-ami-tools-1.5.6.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/ec2-ami-tools/ec2-ami-tools-1.5.6.ebuild?rev=1.1&content-type=text/plain

Index: ec2-ami-tools-1.5.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-admin/ec2-ami-tools/ec2-ami-tools-1.5.6.ebuild,v 
1.1 2015/03/22 21:01:29 blueness Exp $

EAPI="5"

inherit versionator

DESCRIPTION="These command-line tools serve as the client interface to the 
Amazon EC2 web service"
HOMEPAGE="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=368&categoryID=88";
SRC_URI="http://s3.amazonaws.com/ec2-downloads/${P}.zip";

LICENSE="Amazon
|| ( Ruby GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"

ruby_slot="2.0"

DEPEND="app-arch/unzip"
RDEPEND="dev-lang/ruby:${ruby_slot}[ssl]
net-misc/rsync
net-misc/curl"

src_prepare() {
# Simplify the scripts to always run Ruby 20, since Gentoo supports
# alternative implementations as well it is not guaranteed that ruby is 
ruby19.
sed -i -e "\$s:^ruby:exec ruby${ruby_slot/./}:" bin/* || die 'Sed 
failed.'

# Remove a left behind license file.
rm lib/ec2/oem/LICENSE.txt || die 'Removal of LICENSE failed.'
}

src_install() {
dobin bin/*

insinto /usr
doins -r lib

insinto /etc/ec2/amitools
doins etc/ec2/amitools/*

dodir /etc/env.d
echo "EC2_AMITOOL_HOME=/usr" >> "${T}"/99${PN} || die "Can't write 
environment variable."
doenvd "${T}"/99${PN}
}

pkg_postinst() {
ewarn "Remember to run \`env-update && source /etc/profile\` if you 
plan"
ewarn "to use these tools in a shell before logging out (or restarting"
ewarn "your login manager)."
}






[gentoo-commits] gentoo-x86 commit in net-fs/openafs-kernel: openafs-kernel-1.6.11.ebuild ChangeLog

2015-03-22 Thread Andrew Savchenko (bircoph)
bircoph 15/03/22 21:00:48

  Modified: ChangeLog
  Added:openafs-kernel-1.6.11.ebuild
  Log:
  version bump
  
  Signed-off-by: Andrew Savchenko 
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
565953B95372756C)

Revision  ChangesPath
1.164net-fs/openafs-kernel/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog   17 Mar 2015 18:47:57 -  1.163
+++ ChangeLog   22 Mar 2015 21:00:47 -  1.164
@@ -1,6 +1,13 @@
 # ChangeLog for net-fs/openafs-kernel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v 1.163 
2015/03/17 18:47:57 bircoph Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v 1.164 
2015/03/22 21:00:47 bircoph Exp $
+
+*openafs-kernel-1.6.11 (22 Mar 2015)
+
+  22 Mar 2015; Andrew Savchenko 
+  +openafs-kernel-1.6.11.ebuild:
+  Version bump based on proxied maintainer commit from NP-hardass
+  . Fixes bugs 476332, 497006, 500378.
 
   17 Mar 2015; Andrew Savchenko  metadata.xml:
   Update maintainers information.



1.1  net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild?rev=1.1&content-type=text/plain

Index: openafs-kernel-1.6.11.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild,v 
1.1 2015/03/22 21:00:47 bircoph Exp $

EAPI="5"

inherit autotools eutils linux-mod multilib toolchain-funcs versionator

MY_PV=$(delete_version_separator '_')
MY_P="${PN/-kernel}-${MY_PV}"
PVER="1"
OAFS_PVER="1.6.5"

DESCRIPTION="The OpenAFS distributed file system kernel module"
HOMEPAGE="http://www.openafs.org/";
# We always d/l the doc tarball as man pages are not USE=doc material
[[ ${PV} == *_pre* ]] && MY_PRE="candidate/" || MY_PRE=""
SRC_URI="
http://openafs.org/dl/openafs/${MY_PRE}${MY_PV}/${MY_P}-src.tar.bz2
http://openafs.org/dl/openafs/${MY_PV}/${MY_P}-doc.tar.bz2
http://dev.gentoo.org/~bircoph/patches/${MY_P}-patches.tar.xz
"

LICENSE="IBM BSD openafs-krb5-a APSL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE=""

S=${WORKDIR}/${MY_P}

CONFIG_CHECK="!DEBUG_RODATA ~!AFS_FS KEYS"
ERROR_DEBUG_RODATA="OpenAFS is incompatible with linux' CONFIG_DEBUG_RODATA 
option"
ERROR_AFS_FS="OpenAFS conflicts with the in-kernel AFS-support.  Make sure not 
to load both at the same time!"
ERROR_KEYS="OpenAFS needs CONFIG_KEYS option enabled"

QA_TEXTRELS_x86_fbsd="/boot/modules/libafs.ko"
QA_TEXTRELS_amd64_fbsd="/boot/modules/libafs.ko"

pkg_pretend() {
if use kernel_linux && kernel_is ge 4 ; then
ewarn "Gentoo supports kernels which are supported by OpenAFS"
ewarn "which are limited to the kernel versions: <4.0"
ewarn ""
ewarn "You are free to utilize epatch_user to provide whatever"
ewarn "support you feel is appropriate, but will not receive"
ewarn "support as a result of those changes."
ewarn ""
ewarn "Please do not file a bug report about this."
fi
}

pkg_setup() {
if use kernel_linux; then
linux-mod_pkg_setup
fi
}

src_prepare() {
# do not tamper with CFLAGS for the kernel module
EPATCH_EXCLUDE="040_all_flags.patch" \
EPATCH_SUFFIX="patch" \
epatch "${WORKDIR}"/gentoo/patches
epatch_user

# packaging is f-ed up, so we can't run eautoreconf
# run autotools commands based on what is listed in regen.sh
eaclocal -I src/cf
eautoconf
eautoconf -o configure-libafs configure-libafs.ac
eautoheader
einfo "Deleting autom4te.cache directory"
rm -rf autom4te.cache
}

src_configure() {
local myconf=""
# OpenAFS 1.6.11 has a bug with kernels 3.17-3.17.2 that requires a 
config option
if use kernel_linux && kernel_is -ge 3 17 && kernel_is -le 3 17 2; then
mycon

[gentoo-commits] gentoo-x86 commit in sys-libs/glibc: glibc-2.20-r2.ebuild ChangeLog

2015-03-22 Thread Mikle Kolyada (zlogene)
zlogene 15/03/22 20:38:54

  Modified: glibc-2.20-r2.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #544034
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xC42EB5D6)

Revision  ChangesPath
1.2  sys-libs/glibc/glibc-2.20-r2.ebuild

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

Index: glibc-2.20-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.20-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glibc-2.20-r2.ebuild17 Feb 2015 08:13:13 -  1.1
+++ glibc-2.20-r2.ebuild22 Mar 2015 20:38:54 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.20-r2.ebuild,v 1.1 
2015/02/17 08:13:13 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.20-r2.ebuild,v 1.2 
2015/03/22 20:38:54 zlogene Exp $
 
 EAPI="4"
 
@@ -10,7 +10,7 @@
 HOMEPAGE="http://www.gnu.org/software/libc/libc.html";
 
 LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 -hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 -hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
 RESTRICT="strip" # strip ourself #46186
 EMULTILIB_PKG="true"
 



1.1043   sys-libs/glibc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?rev=1.1043&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?rev=1.1043&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?r1=1.1042&r2=1.1043

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v
retrieving revision 1.1042
retrieving revision 1.1043
diff -u -r1.1042 -r1.1043
--- ChangeLog   17 Mar 2015 00:06:40 -  1.1042
+++ ChangeLog   22 Mar 2015 20:38:54 -  1.1043
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/glibc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.1042 
2015/03/17 00:06:40 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.1043 
2015/03/22 20:38:54 zlogene Exp $
+
+  22 Mar 2015; Mikle Kolyada  glibc-2.20-r2.ebuild:
+  amd64 stable wrt bug #544034
 
   17 Mar 2015; Mike Frysinger 
   files/eblits/src_configure.eblit:






[gentoo-commits] proj/hardened-dev:musl commit in: sys-fs/squashfs-tools/

2015-03-22 Thread Anthony G. Basile
commit: 8d5d70500e389884c8596c9d7bfcf0c8f4be7624
Author: Felix Janda  posteo  de>
AuthorDate: Sun Mar 22 18:17:06 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Mar 22 20:28:05 2015 +
URL:https://gitweb.gentoo.org/proj/hardened-dev.git/commit/?id=8d5d7050

sys-fs/squashfs-tools-4.3: stable for amd64

 sys-fs/squashfs-tools/squashfs-tools-4.3-r99.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3-r99.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.3-r99.ebuild
index e99ad77..f186f88 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.3-r99.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.3-r99.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/squashfs/squashfs${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~mips ~ppc ~x86"
 IUSE="+xz lzma lz4 lzo xattr"
 
 RDEPEND="



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

2015-03-22 Thread Anthony G. Basile
commit: a92c270e060cd9a5afb47585739e40caf58e12a3
Author: Felix Janda  posteo  de>
AuthorDate: Sun Mar 22 08:56:30 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Mar 22 20:28:02 2015 +
URL:https://gitweb.gentoo.org/proj/hardened-dev.git/commit/?id=a92c270e

app-emulation/qemu: bump to 2.2.0

 .../qemu/files/qemu-2.2.0-_sigev_un.patch  |  12 +
 app-emulation/qemu/qemu-2.2.0-r99.ebuild   | 607 +
 2 files changed, 619 insertions(+)

diff --git a/app-emulation/qemu/files/qemu-2.2.0-_sigev_un.patch 
b/app-emulation/qemu/files/qemu-2.2.0-_sigev_un.patch
new file mode 100644
index 000..5827c2e
--- /dev/null
+++ b/app-emulation/qemu/files/qemu-2.2.0-_sigev_un.patch
@@ -0,0 +1,12 @@
+diff -ur a/qemu-2.2.0/linux-user/syscall.c b/qemu-2.2.0/linux-user/syscall.c
+--- a/qemu-2.2.0/linux-user/syscall.c  2014-12-09 15:45:43.0 -0100
 b/qemu-2.2.0/linux-user/syscall.c  2015-03-16 19:09:49.050386155 -0100
+@@ -5033,7 +5033,7 @@
+ host_sevp->sigev_signo =
+ target_to_host_signal(tswap32(target_sevp->sigev_signo));
+ host_sevp->sigev_notify = tswap32(target_sevp->sigev_notify);
+-host_sevp->_sigev_un._tid = tswap32(target_sevp->_sigev_un._tid);
++((int*)(&host_sevp->sigev_notify))[1] = 
tswap32(target_sevp->_sigev_un._tid);
+ 
+ unlock_user_struct(target_sevp, target_addr, 1);
+ return 0;

diff --git a/app-emulation/qemu/qemu-2.2.0-r99.ebuild 
b/app-emulation/qemu/qemu-2.2.0-r99.ebuild
new file mode 100644
index 000..8bdbc95
--- /dev/null
+++ b/app-emulation/qemu/qemu-2.2.0-r99.ebuild
@@ -0,0 +1,607 @@
+# Copyright 1999-2015 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.3 
2015/03/12 10:06:51 ago 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
+   
http://dev.gentoo.org/~tamiko/distfiles/${P}-${BACKPORTS}.tar.xz}";
+   KEYWORDS="amd64 ~ppc ~x86"
+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-libs(+)]
+   xattr? ( sys-apps/attr[static-libs(+)] )"
+SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
+   >=x11-libs/pixman-0.28.0[static-libs(+)]
+   aio? ( dev-libs/libaio[static-libs(+)] )
+   caps? ( sys-libs/libcap-ng[static-libs(+)] )
+   curl? ( >=net-misc/curl-7.15.4[static-libs(+)] )
+   fdt? ( >=sys-apps/dtc-1.4.0[static-libs(+)] )
+   glusterfs? ( >=sys-cluster/glusterfs-3.4.0[static-libs(+)] )
+   infiniband? ( sys-infiniband/librdmacm[static-libs(+)] )
+   jpeg? ( virtual/jpeg[

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

2015-03-22 Thread William Hubbs (williamh)
williamh15/03/22 20:20:59

  Modified: cligh-.ebuild ChangeLog
  Log:
  Upstream moved to python 3.x
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  ChangesPath
1.3  dev-util/cligh/cligh-.ebuild

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

Index: cligh-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cligh/cligh-.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cligh-.ebuild   6 Jul 2014 12:51:44 -   1.2
+++ cligh-.ebuild   22 Mar 2015 20:20:59 -  1.3
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cligh/cligh-.ebuild,v 1.2 
2014/07/06 12:51:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cligh/cligh-.ebuild,v 1.3 
2015/03/22 20:20:59 williamh Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python{3_2,3_3,3_4} )
 
 inherit distutils-r1 git-2
 



1.4  dev-util/cligh/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/cligh/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   6 Jul 2014 12:51:44 -   1.3
+++ ChangeLog   22 Mar 2015 20:20:59 -  1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/cligh
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cligh/ChangeLog,v 1.3 2014/07/06 
12:51:44 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cligh/ChangeLog,v 1.4 2015/03/22 
20:20:59 williamh Exp $
+
+  22 Mar 2015; William Hubbs  cligh-.ebuild:
+  Upstream moved to python 3.x
 
   06 Jul 2014; Michał Górny  cligh-0.1_p20120630.ebuild,
   cligh-0.2.ebuild, cligh-.ebuild:






[gentoo-commits] gentoo-x86 commit in app-emulation/wine: ChangeLog

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 20:07:56

  Modified: ChangeLog
  Log:
  wrong announcement link
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.531app-emulation/wine/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v
retrieving revision 1.530
retrieving revision 1.531
diff -u -r1.530 -r1.531
--- ChangeLog   22 Mar 2015 19:58:44 -  1.530
+++ ChangeLog   22 Mar 2015 20:07:55 -  1.531
@@ -1,6 +1,6 @@
 # ChangeLog for app-emulation/wine
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v 1.530 
2015/03/22 19:58:44 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v 1.531 
2015/03/22 20:07:55 tetromino Exp $
 
 *wine-1.7.39 (22 Mar 2015)
 
@@ -8,7 +8,7 @@
   wine-.ebuild, +files/wine-1.7.39-gstreamer-v5-staging-post.patch,
   +files/wine-1.7.39-gstreamer-v5-staging-pre.patch:
   Version bump from NP-Hardass overlay, see
-  https://www.winehq.org/news/2015032001 for the announcement.
+  https://www.winehq.org/announce/1.7.39 for the announcement.
 
   08 Mar 2015; Alexandre Rostovtsev 
   files/wine-1.7.38-gstreamer-v5-staging-post.patch:






[gentoo-commits] gentoo-x86 commit in dev-cpp/libxmlpp: ChangeLog libxmlpp-2.36.0-r1.ebuild

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 20:08:22

  Modified: ChangeLog
  Added:libxmlpp-2.36.0-r1.ebuild
  Log:
  Add multilib support (bug #469180, thanks to Karl Lindén). Install docs where 
upstream expects so other *pp docs can link to them.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.133dev-cpp/libxmlpp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libxmlpp/ChangeLog?rev=1.133&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libxmlpp/ChangeLog?rev=1.133&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libxmlpp/ChangeLog?r1=1.132&r2=1.133

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog   22 Jun 2014 18:43:47 -  1.132
+++ ChangeLog   22 Mar 2015 20:08:22 -  1.133
@@ -1,6 +1,13 @@
 # ChangeLog for dev-cpp/libxmlpp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/ChangeLog,v 1.132 
2014/06/22 18:43:47 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/ChangeLog,v 1.133 
2015/03/22 20:08:22 tetromino Exp $
+
+*libxmlpp-2.36.0-r1 (22 Mar 2015)
+
+  22 Mar 2015; Alexandre Rostovtsev 
+  +libxmlpp-2.36.0-r1.ebuild:
+  Add multilib support (bug #469180, thanks to Karl Lindén). Install docs
+  where upstream expects so other *pp docs can link to them.
 
   22 Jun 2014; Markus Meier  libxmlpp-2.36.0.ebuild:
   add ~arm, bug #511566



1.1  dev-cpp/libxmlpp/libxmlpp-2.36.0-r1.ebuild

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

Index: libxmlpp-2.36.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/libxmlpp-2.36.0-r1.ebuild,v 
1.1 2015/03/22 20:08:22 tetromino Exp $

EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
GNOME_ORG_MODULE="${PN/pp/++}"

inherit gnome2 multilib-minimal

DESCRIPTION="C++ wrapper for the libxml2 XML parser library"
HOMEPAGE="http://libxmlplusplus.sourceforge.net/";

LICENSE="LGPL-2.1"
SLOT="2.6"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x86-solaris"
IUSE="doc test"

RDEPEND=">=dev-libs/libxml2-2.7.3[${MULTILIB_USEDEP}]
>=dev-cpp/glibmm-2.32[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
virtual/pkgconfig"

multilib_src_prepare() {
gnome2_src_prepare
}

multilib_src_configure() {
ECONF_SOURCE="${S}" gnome2_src_configure \
$(use_enable doc documentation)
}

multilib_src_install() {
gnome2_src_install
}






[gentoo-commits] dev/bircoph:master commit in: net-fs/openafs/files/, net-fs/openafs/, net-fs/openafs-kernel/, ...

2015-03-22 Thread Andrew Savchenko
commit: 3594233609e0eef42888ccc23940d0620cb10f01
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Mar 22 20:03:18 2015 +
Commit: Andrew Savchenko  gmail  com>
CommitDate: Sun Mar 22 20:03:18 2015 +
URL:https://gitweb.gentoo.org/dev/bircoph.git/commit/?id=35942336

openafs: next iteration of fixes for testing

 net-fs/openafs-kernel/Manifest |  4 +-
 net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild | 29 +++-
 net-fs/openafs/Manifest|  8 +-
 net-fs/openafs/files/openafs-client.conf   | 54 --
 net-fs/openafs/files/openafs-client.service| 17 -
 net-fs/openafs/files/openafs-server.service| 11 ---
 .../openafs/files/tmpfiles.d/openafs-client.conf   |  1 -
 net-fs/openafs/openafs-1.6.11.ebuild   | 87 --
 8 files changed, 61 insertions(+), 150 deletions(-)

diff --git a/net-fs/openafs-kernel/Manifest b/net-fs/openafs-kernel/Manifest
index 077ba96..1123195 100644
--- a/net-fs/openafs-kernel/Manifest
+++ b/net-fs/openafs-kernel/Manifest
@@ -1,6 +1,6 @@
 DIST openafs-1.6.11-doc.tar.bz2 3530829 SHA256 
d5cfa17ec06812a9961960bfdf54c1a753f512826fbbb41e3fdbb2310b5b5a59 SHA512 
9bd792eae719c6cfa3d250ae31fcc2cd47e40d0b78f5e3453a5b242255bc64d88b9943ac5a7ab2565509904499d6b11a94d27e9c9b48b515aa51bd8f0670ec67
 WHIRLPOOL 
1a6bdc5d0920eb046c6b975b4f17caca2e30295d0b26993edda17bec09adffa9254bfb5897979beb92ccafe4e1fbfc36d82ed715d46e967a6a0b1cb4bf4e05f8
+DIST openafs-1.6.11-patches.tar.xz 9628 SHA256 
16fdf63d81bd986aea4112f43f4005912dd62175aeb355e7b729b309842c970c SHA512 
8227cb156f7498afa70e3086f4bfd26672576229a8f847d24a85b495942270e4964aa715536d43c2e63bbd3f4ced7cd19971c76007cb8e2e5aef17fe0ceb9d1d
 WHIRLPOOL 
9ae675c36ec5fe07b7d095705dc6ee02f4a4ac227d9396e29299d94cde10f18e217c06e3c62f73d3d2b07a43410b35e464e7b328e25710e6c497d093381ce158
 DIST openafs-1.6.11-src.tar.bz2 14605284 SHA256 
cc42da08ef750a2363f7ea291e2264a9334c6ecf1400a75f5dabc170205bd01d SHA512 
4e82553443009f899dfbd3eed0b9ed63c55aff5d5ce02f31657277385f0dfdef7e724b81a25fabb962d03b5a622d8d3fa9eca04879d1b84f4b253a52ea4ab90c
 WHIRLPOOL 
fbf188144643a71f7e505251033ed68c3d684dabd6647b4096c7a4010a76285db46c0cd586c5481635eb7da8406b5adee72c02528e59c4f89c6d923640cc93fb
-DIST openafs-1.6.5-patches-1.tar.bz2 10880 SHA256 
bde25a4ec9ab38cb9864deb38d4d3f4b3affc44969c072a3329844dbbebd1c5c SHA512 
f6cd5916bc072cb855a0edfb640cf53cfdc5fb7d3b9ed0e23e9c739ea4f046653ac60b731cb469838085c92286485fafa00807b857f89ca2c90fea3dce2c9a56
 WHIRLPOOL 
93a6648ddc8e35c05c176a9d835fefcd97afc217bbf80547895e5da40ac4e0a85842dd89c5b3074986045db67548f766a72cd5a2c05eb24c62ae04f26a490e04
-EBUILD openafs-kernel-1.6.11.ebuild 3588 SHA256 
3c67f6934e24ef7515374bc1fed229cad061367161bd5b21afedaa5ec68d5e06 SHA512 
7c2461efc2f20099ec7afb2a4e60701badff03da456690cb6b262c5d9569f2ebcba7d18b32e6594a8fb949f0ee7206a8c00366140df20e1032026e379ed75bce
 WHIRLPOOL 
3cb8c5000112e0a494503be4e62af42463d93ba0e4cf91c2e1d91044b71391832886fc6f02424abf7de28b2c43bf101d1e4f3a0686a4edce3ada9bb970327631
+EBUILD openafs-kernel-1.6.11.ebuild 3375 SHA256 
e14f3ae88fe578cf0c0cfed0ace2da2cfb04fdfa3a7f04814ec550147c7ad437 SHA512 
a2005f1260427294769950701c192b1292e42a5820c1c00ffecfca10356c7368e95101457a14cdfeda151fb2a6b2630ab13901c186dd49e3079326bc4e7bc202
 WHIRLPOOL 
29cb64cba7854b52f0b9b56d793f82d00e7b81a80045b06ff908d19aac25b765e433795470c132a22c507fa0bba51cb9f52f9aee33b58a980042dae1b0edb471
 MISC ChangeLog 27456 SHA256 
a007968bb807bd43b57552bf7fb3c0c10bf5724eb56b7e5f5d5de787be9408b0 SHA512 
f8982a0c1be4ba49b1ec3a218cbab1df7494bd37665ccb194859486d5562feef85465498c4a02f983ce2a1f09b07bc6700cc7594f9ece053a75bd4ee0700adb2
 WHIRLPOOL 
399eb26cd762839426489570b76d64c641ec6bca838665aef501358be2f5f012810097107ca32ae0a2e3dea2a5169b22e641139b3a0c18db4b4ebca1b0d28054
 MISC metadata.xml 777 SHA256 
ec3cab4f468a8af1770926801c13d31ba46aba22cacc231eb40510b811c07c2f SHA512 
4641468811b7c6cad2111a1b21a890c082e1449ba68ae0703cf5096c7dbbd6b22715f9476d4b714048c9fb0630f651b5f68b10be4da867cbd7f8adcff1a2cfb4
 WHIRLPOOL 
4b5ebfaefa3631c6eb3ed7bf03278f85d4b95b0c7e7469d55f3603ae26829c210d31b5ca99d0db2392acbb75406ed2108420ecb5444fcbc9dc9575ad017fd3a5

diff --git a/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild 
b/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild
index e30c728..76d2883 100644
--- a/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild
+++ b/net-fs/openafs-kernel/openafs-kernel-1.6.11.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="5"
 
-inherit autotools eutils multilib linux-mod versionator toolchain-funcs
+inherit autotools eutils linux-mod multilib toolchain-funcs versionator
 
 MY_PV=$(delete_version_separator '_')
 MY_P="${PN/-kernel}-${MY_PV}"
@@ -14,18 +14,12 @@ OAFS_PVER="1.6.5"
 DESCRIPTION="The OpenAFS distributed file system kernel module"
 HOMEPAGE="http://www.openafs.org/";
 # We always d/l the doc tarball as man pages are not USE=doc material
-if [[ ${PV} == *_pre* ]]; then
-   SRC_URI="
-

[gentoo-commits] gentoo-x86 commit in app-emulation/wine/files: wine-1.7.39-gstreamer-v5-staging-pre.patch wine-1.7.39-gstreamer-v5-staging-post.patch

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 19:58:44

  Added:wine-1.7.39-gstreamer-v5-staging-pre.patch
wine-1.7.39-gstreamer-v5-staging-post.patch
  Log:
  Version bump from NP-Hardass overlay, see 
https://www.winehq.org/news/2015032001 for the announcement.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.1  
app-emulation/wine/files/wine-1.7.39-gstreamer-v5-staging-pre.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/files/wine-1.7.39-gstreamer-v5-staging-pre.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/files/wine-1.7.39-gstreamer-v5-staging-pre.patch?rev=1.1&content-type=text/plain

Index: wine-1.7.39-gstreamer-v5-staging-pre.patch
===
>From 1527fb44c331f2c61224514beb758895a5f85c8d Mon Sep 17 00:00:00 2001
From: Sebastian Lackner 
Date: Thu, 19 Mar 2015 07:51:48 +0100
Subject: Revert various changes conflicting with Maarten Lankhorst's gstreamer
 hack v5.

Note: These changes have to be reapplied with the corresponding -post patchset
afterwards.
---
 dlls/ntdll/thread.c | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/dlls/ntdll/thread.c b/dlls/ntdll/thread.c
index 30a4720..843be0f 100644
--- a/dlls/ntdll/thread.c
+++ b/dlls/ntdll/thread.c
@@ -385,8 +385,6 @@ void terminate_thread( int status )
 void exit_thread( int status )
 {
 static void *prev_teb;
-shmlocal_t *shmlocal;
-sigset_t sigset;
 TEB *teb;
 
 if (status)  /* send the exit code to the server (0 is already the 
default) */
@@ -425,11 +423,6 @@ void exit_thread( int status )
 }
 }
 
-sigemptyset( &sigset );
-sigaddset( &sigset, SIGQUIT );
-pthread_sigmask( SIG_BLOCK, &sigset, NULL );
-if (interlocked_xchg_add( &nb_threads, -1 ) <= 1) _exit( status );
-
 close( ntdll_get_thread_data()->wait_fd[0] );
 close( ntdll_get_thread_data()->wait_fd[1] );
 close( ntdll_get_thread_data()->reply_fd );
-- 
2.3.2




1.1  
app-emulation/wine/files/wine-1.7.39-gstreamer-v5-staging-post.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/files/wine-1.7.39-gstreamer-v5-staging-post.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/files/wine-1.7.39-gstreamer-v5-staging-post.patch?rev=1.1&content-type=text/plain

Index: wine-1.7.39-gstreamer-v5-staging-post.patch
===
>From b97783fd33b4d9897c149d7a14747aa4969bd9e9 Mon Sep 17 00:00:00 2001
From: Sebastian Lackner 
Date: Thu, 19 Mar 2015 07:56:04 +0100
Subject: Reapply various changes conflicting with Maarten Lankhorst's
 gstreamer hack v5.

---
 dlls/ntdll/thread.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/dlls/ntdll/thread.c b/dlls/ntdll/thread.c
index 1e7f231..cf0461d 100644
--- a/dlls/ntdll/thread.c
+++ b/dlls/ntdll/thread.c
@@ -461,6 +461,8 @@ static void exit_thread_common( int status )
 static void *prev_teb;
 TEB *teb;
 #endif
+shmlocal_t *shmlocal;
+sigset_t sigset;
 
 if (status)  /* send the exit code to the server (0 is already the 
default) */
 {
@@ -502,6 +504,11 @@ static void exit_thread_common( int status )
 reap_thread(NtCurrentTeb());
 #endif
 
+sigemptyset( &sigset );
+sigaddset( &sigset, SIGQUIT );
+pthread_sigmask( SIG_BLOCK, &sigset, NULL );
+if (interlocked_xchg_add( &nb_threads, -1 ) <= 1) _exit( status );
+
 close( ntdll_get_thread_data()->wait_fd[0] );
 close( ntdll_get_thread_data()->wait_fd[1] );
 close( ntdll_get_thread_data()->reply_fd );
-- 
2.3.2







[gentoo-commits] gentoo-x86 commit in app-emulation/wine: ChangeLog wine-1.7.39.ebuild wine-9999.ebuild

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 19:58:44

  Modified: ChangeLog wine-.ebuild
  Added:wine-1.7.39.ebuild
  Log:
  Version bump from NP-Hardass overlay, see 
https://www.winehq.org/news/2015032001 for the announcement.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.530app-emulation/wine/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v
retrieving revision 1.529
retrieving revision 1.530
diff -u -r1.529 -r1.530
--- ChangeLog   8 Mar 2015 20:42:49 -   1.529
+++ ChangeLog   22 Mar 2015 19:58:44 -  1.530
@@ -1,6 +1,14 @@
 # ChangeLog for app-emulation/wine
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v 1.529 
2015/03/08 20:42:49 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/ChangeLog,v 1.530 
2015/03/22 19:58:44 tetromino Exp $
+
+*wine-1.7.39 (22 Mar 2015)
+
+  22 Mar 2015; Alexandre Rostovtsev  +wine-1.7.39.ebuild,
+  wine-.ebuild, +files/wine-1.7.39-gstreamer-v5-staging-post.patch,
+  +files/wine-1.7.39-gstreamer-v5-staging-pre.patch:
+  Version bump from NP-Hardass overlay, see
+  https://www.winehq.org/news/2015032001 for the announcement.
 
   08 Mar 2015; Alexandre Rostovtsev 
   files/wine-1.7.38-gstreamer-v5-staging-post.patch:



1.175app-emulation/wine/wine-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/wine-.ebuild?rev=1.175&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/wine-.ebuild?rev=1.175&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/wine/wine-.ebuild?r1=1.174&r2=1.175

Index: wine-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-.ebuild,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- wine-.ebuild8 Mar 2015 07:00:24 -   1.174
+++ wine-.ebuild22 Mar 2015 19:58:44 -  1.175
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-.ebuild,v 1.174 
2015/03/08 07:00:24 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-.ebuild,v 1.175 
2015/03/22 19:58:44 tetromino Exp $
 
 EAPI="5"
 
@@ -337,14 +337,16 @@
ewarn "this patch has been reported to cause crashes in certain 
games."
 
# Wine-Staging 1.7.38 "ntdll: Fix race-condition when threads 
are killed
-   # during shutdown" patch prevents the gstreamer patch from 
applying cleanly.
+   # during shutdown" patch and "Added patch to implement shared 
memory
+   # wineserver communication for various user32 functions" 
prevents the
+   # gstreamer patch from applying cleanly.
# So undo the staging patch, apply gstreamer, then re-apply 
rebased staging
# patch on top.
if use staging; then
PATCHES+=(
-   
"${FILESDIR}/${PN}-1.7.38-gstreamer-v5-staging-pre.patch"
+   
"${FILESDIR}/${PN}-1.7.39-gstreamer-v5-staging-pre.patch"
"${WORKDIR}/${GST_P}.patch"
-   
"${FILESDIR}/${PN}-1.7.38-gstreamer-v5-staging-post.patch" )
+   
"${FILESDIR}/${PN}-1.7.39-gstreamer-v5-staging-post.patch" )
else
PATCHES+=( "${WORKDIR}/${GST_P}.patch" )
fi



1.1  app-emulation/wine/wine-1.7.39.ebuild

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

Index: wine-1.7.39.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.7.39.ebuild,v 1.1 
2015/03/22 19:58:44 tetromino Exp $

EAPI="5"

AUTOTOOLS_AUTORECONF=1
PLOCALES="ar bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja ko lt 
ml nb_NO 

[gentoo-commits] gentoo-x86 commit in net-misc/openssh/files: openssh-6.8_p1-ssh-keygen-no-ssh1.patch

2015-03-22 Thread Mike Frysinger (vapier)
vapier  15/03/22 19:48:09

  Added:openssh-6.8_p1-ssh-keygen-no-ssh1.patch
  Log:
  Fix ssh-keygen -A behavior when USE=-ssh1 #544078 by Thomas D.  Update hpn 
patchset to pass tests and work under seccomp sandbox.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.1  
net-misc/openssh/files/openssh-6.8_p1-ssh-keygen-no-ssh1.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.8_p1-ssh-keygen-no-ssh1.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-6.8_p1-ssh-keygen-no-ssh1.patch?rev=1.1&content-type=text/plain

Index: openssh-6.8_p1-ssh-keygen-no-ssh1.patch
===
https://bugs.gentoo.org/544078
https://bugzilla.mindrot.org/show_bug.cgi?id=2369

do not try to generate rsa1 keys when ssh1 support is disabled

--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -948,7 +948,9 @@ do_gen_all_hostkeys(struct passwd *pw)
char *key_type_display;
char *path;
} key_types[] = {
+#ifdef WITH_SSH1
{ "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
+#endif
{ "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
{ "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
 #ifdef OPENSSL_HAS_ECC






[gentoo-commits] gentoo-x86 commit in net-misc/openssh: openssh-6.8_p1-r2.ebuild ChangeLog

2015-03-22 Thread Mike Frysinger (vapier)
vapier  15/03/22 19:48:09

  Modified: ChangeLog
  Added:openssh-6.8_p1-r2.ebuild
  Log:
  Fix ssh-keygen -A behavior when USE=-ssh1 #544078 by Thomas D.  Update hpn 
patchset to pass tests and work under seccomp sandbox.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  ChangesPath
1.552net-misc/openssh/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/ChangeLog?rev=1.552&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/ChangeLog?rev=1.552&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/ChangeLog?r1=1.551&r2=1.552

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v
retrieving revision 1.551
retrieving revision 1.552
diff -u -r1.551 -r1.552
--- ChangeLog   22 Mar 2015 06:54:07 -  1.551
+++ ChangeLog   22 Mar 2015 19:48:09 -  1.552
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/openssh
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.551 
2015/03/22 06:54:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.552 
2015/03/22 19:48:09 vapier Exp $
+
+*openssh-6.8_p1-r2 (22 Mar 2015)
+
+  22 Mar 2015; Mike Frysinger 
+  +files/openssh-6.8_p1-ssh-keygen-no-ssh1.patch, +openssh-6.8_p1-r2.ebuild:
+  Fix ssh-keygen -A behavior when USE=-ssh1 #544078 by Thomas D.  Update hpn
+  patchset to pass tests and work under seccomp sandbox.
 
   22 Mar 2015; Mike Frysinger  openssh-6.8_p1-r1.ebuild:
   Also note hosts.allow in the error message #531156#20 by Arfrever Frehtes



1.1  net-misc/openssh/openssh-6.8_p1-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r2.ebuild?rev=1.1&content-type=text/plain

Index: openssh-6.8_p1-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-6.8_p1-r2.ebuild,v 
1.1 2015/03/22 19:48:09 vapier Exp $

EAPI="4"
inherit eutils user flag-o-matic multilib autotools pam systemd versionator

# Make it more portable between straight releases
# and _p? releases.
PARCH=${P/_}

HPN_PATCH="${PN}-6.8p1-r2-hpnssh14v5.tar.xz"
LDAP_PATCH="${PN}-lpk-6.8p1-0.3.14.patch.xz"
X509_VER="8.3" X509_PATCH="${PARCH}+x509-${X509_VER}.diff.gz"

DESCRIPTION="Port of OpenBSD's free SSH release"
HOMEPAGE="http://www.openssh.org/";
SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
mirror://gentoo/${P}-sctp.patch.xz
${HPN_PATCH:+hpn? (
mirror://gentoo/${HPN_PATCH}
http://dev.gentoo.org/~vapier/dist/${HPN_PATCH}
mirror://sourceforge/hpnssh/${HPN_PATCH}
)}
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
${X509_PATCH:+X509? (
http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH}
mirror://gentoo/${P}-x509-glue.patch.xz
)}
"

LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
# Probably want to drop ssh1/ssl defaulting to on in a future version.
IUSE="bindist ${HPN_PATCH:++}hpn kerberos kernel_linux ldap ldns libedit pam 
+pie sctp selinux skey +ssh1 +ssl static X X509"
REQUIRED_USE="pie? ( !static )
ssh1? ( ssl )
static? ( !kerberos !pam )
X509? ( !ldap ssl )"

LIB_DEPEND="sctp? ( net-misc/lksctp-tools[static-libs(+)] )
selinux? ( >=sys-libs/libselinux-1.28[static-libs(+)] )
skey? ( >=sys-auth/skey-1.1.5-r1[static-libs(+)] )
libedit? ( dev-libs/libedit[static-libs(+)] )
ssl? (
>=dev-libs/openssl-0.9.6d:0[bindist=]
dev-libs/openssl[static-libs(+)]
)
>=sys-libs/zlib-1.2.3[static-libs(+)]"
RDEPEND="
!static? (
${LIB_DEPEND//\[static-libs(+)]}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl] )
bindist? ( net-libs/ldns[-ecdsa,ssl] )
)
)
pam? ( virtual/pam )
kerberos? ( virtual/krb5 )
ldap? ( net-nds/openldap )"
DEPEND="${RDEPEND}
static? (
${LIB_DEPEND}
ldns? (
!bindist? ( net-libs/ldns[ecdsa,ssl,static-libs(+)] )
bindist? ( net-libs/ldns[-ecdsa,ssl,static-libs(+)] )
)
)
virtual/pkgcon

[gentoo-commits] gentoo-x86 commit in app-text/evince: ChangeLog evince-3.14.2-r1.ebuild

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 19:47:18

  Modified: ChangeLog
  Added:evince-3.14.2-r1.ebuild
  Log:
  Make browser plugin optional (bug #535704, thanks to Austin S. Hemmelgarn).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.286app-text/evince/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/evince/ChangeLog?rev=1.286&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/evince/ChangeLog?rev=1.286&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/evince/ChangeLog?r1=1.285&r2=1.286

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog   15 Mar 2015 13:16:01 -  1.285
+++ ChangeLog   22 Mar 2015 19:47:18 -  1.286
@@ -1,6 +1,12 @@
 # ChangeLog for app-text/evince
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v 1.285 
2015/03/15 13:16:01 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/evince/ChangeLog,v 1.286 
2015/03/22 19:47:18 tetromino Exp $
+
+*evince-3.14.2-r1 (22 Mar 2015)
+
+  22 Mar 2015; Alexandre Rostovtsev 
+  +evince-3.14.2-r1.ebuild:
+  Make browser plugin optional (bug #535704, thanks to Austin S. Hemmelgarn).
 
   15 Mar 2015; Pacho Ramos  evince-3.14.2.ebuild:
   x86 stable, bug 534012



1.1  app-text/evince/evince-3.14.2-r1.ebuild

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

Index: evince-3.14.2-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-3.14.2-r1.ebuild,v 
1.1 2015/03/22 19:47:18 tetromino Exp $

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

inherit gnome2

DESCRIPTION="Simple document viewer for GNOME"
HOMEPAGE="https://wiki.gnome.org/Apps/Evince";

LICENSE="GPL-2+ CC-BY-SA-3.0"
# subslot = evd3.(suffix of libevdocument3)-evv3.(suffix of libevview3)
SLOT="0/evd3.4-evv3.3"
IUSE="djvu dvi gnome +introspection libsecret nautilus nsplugin +postscript 
t1lib tiff xps"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"

# Since 2.26.2, can handle poppler without cairo support. Make it optional ?
# not mature enough
# atk used in libview
# gdk-pixbuf used all over the place
# libX11 used for totem-screensaver
COMMON_DEPEND="
dev-libs/atk
>=dev-libs/glib-2.36:2[dbus]
>=dev-libs/libxml2-2.5:2
sys-libs/zlib:=
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-3.14:3[introspection?]
gnome-base/gsettings-desktop-schemas
>=x11-libs/cairo-1.10:=
>=app-text/poppler-0.24:=[cairo]
djvu? ( >=app-text/djvu-3.5.17:= )
dvi? (
virtual/tex-base
dev-libs/kpathsea:=
t1lib? ( >=media-libs/t1lib-5:= ) )
gnome? ( gnome-base/gnome-desktop:3 )
introspection? ( >=dev-libs/gobject-introspection-1 )
libsecret? ( >=app-crypt/libsecret-0.5 )
nautilus? ( >=gnome-base/nautilus-2.91.4[introspection?] )
postscript? ( >=app-text/libspectre-0.2:= )
tiff? ( >=media-libs/tiff-3.6:0= )
xps? ( >=app-text/libgxps-0.2.1:= )
"
RDEPEND="${COMMON_DEPEND}
gnome-base/gvfs
gnome-base/librsvg
|| (
>=x11-themes/adwaita-icon-theme-2.17.1
>=x11-themes/gnome-icon-theme-2.17.1
>=x11-themes/hicolor-icon-theme-0.10 )
x11-themes/gnome-icon-theme-symbolic
"
DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.3
app-text/yelp-tools
dev-util/gdbus-codegen
>=dev-util/gtk-doc-am-1.13
>=dev-util/intltool-0.35
sys-devel/gettext
virtual/pkgconfig
"
# eautoreconf needs:
#  app-text/yelp-tools

src_prepare() {
gnome2_src_prepare

# Do not depend on adwaita-icon-theme, bug #326855, #391859
# https://bugs.freedesktop.org/show_bug.cgi?id=29942
sed -e 's/adwaita-icon-theme >= $ADWAITA_ICON_THEME_REQUIRED//g' \
-i configure || die "sed failed"
}

src_configure() {
gnome2_src_configure \
--disable-static \
--enable-pdf \
--enable-comics \
--enable-thumbnailer \
--with-platform=gnome \
--enable-dbus \
   

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

2015-03-22 Thread Zac Medico
commit: c9aebae4633a972b78f7f999aa755fa6d25c8451
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Mar 22 00:04:12 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Mar 22 19:36:48 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=c9aebae4

_post_src_install_soname_symlinks: fix bug 543818

The SonameDepsProcessor.add() method raises AssertionError if the
multilib category of an ELF file is not recognized. It's not possible
to account for soname dependencies in this case (the file is probably
intended for a foreign architecture), so avoid the AssertionError and
generate an eqawarn message for this case. The eqawarn message is
suppressed for files matched by the QA_PREBUILT variable.

X-Gentoo-Bug: 543818
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=543818
Acked-by: Brian Dolbec  gentoo.org>

 bin/phase-functions.sh |  2 +-
 pym/portage/package/ebuild/doebuild.py | 59 +++---
 2 files changed, 42 insertions(+), 19 deletions(-)

diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh
index def2080..2743e27 100644
--- a/bin/phase-functions.sh
+++ b/bin/phase-functions.sh
@@ -580,7 +580,7 @@ __dyn_install() {
for f in ASFLAGS CBUILD CC CFLAGS CHOST CTARGET CXX \
CXXFLAGS EXTRA_ECONF EXTRA_EINSTALL EXTRA_MAKE \
LDFLAGS LIBCFLAGS LIBCXXFLAGS QA_CONFIGURE_OPTIONS \
-   QA_DESKTOP_FILE PROVIDES_EXCLUDE REQUIRES_EXCLUDE ; do
+   QA_DESKTOP_FILE QA_PREBUILT PROVIDES_EXCLUDE 
REQUIRES_EXCLUDE ; do
x=$(echo -n ${!f})
[[ -n $x ]] && echo "$x" > $f
done

diff --git a/pym/portage/package/ebuild/doebuild.py 
b/pym/portage/package/ebuild/doebuild.py
index 94785b5..1be83ad 100644
--- a/pym/portage/package/ebuild/doebuild.py
+++ b/pym/portage/package/ebuild/doebuild.py
@@ -8,6 +8,7 @@ __all__ = ['doebuild', 'doebuild_environment', 'spawn', 
'spawnebuild']
 import grp
 import gzip
 import errno
+import fnmatch
 import io
 from itertools import chain
 import logging
@@ -2209,24 +2210,29 @@ def _post_src_install_soname_symlinks(mysettings, out):
if f is not None:
f.close()
 
-   qa_no_symlink = ""
-   f = None
-   try:
-   f = io.open(_unicode_encode(os.path.join(
-   mysettings["PORTAGE_BUILDDIR"],
-   "build-info", "QA_SONAME_NO_SYMLINK"),
-   encoding=_encodings['fs'], errors='strict'),
-   mode='r', encoding=_encodings['repo.content'],
-   errors='replace')
-   qa_no_symlink = f.read()
-   except IOError as e:
-   if e.errno not in (errno.ENOENT, errno.ESTALE):
-   raise
-   finally:
-   if f is not None:
-   f.close()
+   metadata = {}
+   for k in ("QA_PREBUILT", "QA_NO_SYMLINK"):
+   try:
+   with io.open(_unicode_encode(os.path.join(
+   mysettings["PORTAGE_BUILDDIR"],
+   "build-info", k),
+   encoding=_encodings['fs'], errors='strict'),
+   mode='r', encoding=_encodings['repo.content'],
+   errors='replace') as f:
+   v = f.read()
+   except IOError as e:
+   if e.errno not in (errno.ENOENT, errno.ESTALE):
+   raise
+   else:
+   metadata[k] = v
+
+   qa_prebuilt = metadata.get("QA_PREBUILT", "").strip()
+   if qa_prebuilt:
+   qa_prebuilt = re.compile("|".join(
+   fnmatch.translate(x.lstrip(os.sep))
+   for x in portage.util.shlex_split(qa_prebuilt)))
 
-   qa_no_symlink = qa_no_symlink.split()
+   qa_no_symlink = metadata.get("QA_NO_SYMLINK", "").split()
if qa_no_symlink:
if len(qa_no_symlink) > 1:
qa_no_symlink = "|".join("(%s)" % x for x in 
qa_no_symlink)
@@ -2297,6 +2303,7 @@ def _post_src_install_soname_symlinks(mysettings, out):
requires_exclude = ""
 
missing_symlinks = []
+   unrecognized_elf_files = []
soname_deps = SonameDepsProcessor(
provides_exclude, requires_exclude)
 
@@ -2326,7 +2333,14 @@ def _post_src_install_soname_symlinks(mysettings, out):
entry.multilib_category = compute_multilib_category(elf_header)
needed_file.write(_unicode(entry))
 
-   soname_deps.add(entry)
+   if entry.multilib_category is None:
+   if not qa_prebuilt or qa_prebuilt.match(
+   
entry.filename[len(mysettings["EPREFIX"]):].lstrip(
+ 

[gentoo-commits] gentoo-x86 commit in games-emulation/higan: higan-094.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/22 19:29:00

  Modified: higan-094.ebuild ChangeLog
  Log:
  use qmake-utils for moc (bug #544112)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.4  games-emulation/higan/higan-094.ebuild

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

Index: higan-094.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/games-emulation/higan/higan-094.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- higan-094.ebuild10 Feb 2015 10:07:17 -  1.3
+++ higan-094.ebuild22 Mar 2015 19:29:00 -  1.4
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/higan/higan-094.ebuild,v 
1.3 2015/02/10 10:07:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/higan/higan-094.ebuild,v 
1.4 2015/03/22 19:29:00 mr_bones_ Exp $
 
 EAPI=5
 
-inherit eutils gnome2-utils toolchain-funcs games
+inherit eutils gnome2-utils toolchain-funcs qmake-utils games
 
 MY_P=${PN}_v${PV}-source
 
@@ -73,7 +73,7 @@
# regenerate .moc if needed
if use qt4; then
cd phoenix/qt || die
-   moc -i -I. -o platform.moc platform.moc.hpp || die
+"$(qt4_get_bindir)"/moc -i -I. -o platform.moc 
platform.moc.hpp || die
fi
 
for i in profile_accuracy profile_balanced profile_performance ; do



1.9  games-emulation/higan/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-emulation/higan/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   19 Feb 2015 01:41:42 -  1.8
+++ ChangeLog   22 Mar 2015 19:29:00 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/higan
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/higan/ChangeLog,v 1.8 
2015/02/19 01:41:42 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/higan/ChangeLog,v 1.9 
2015/03/22 19:29:00 mr_bones_ Exp $
+
+  22 Mar 2015; Michael Sterrett  higan-094.ebuild:
+  use qmake-utils for moc (bug #544112)
 
   19 Feb 2015; Michael Sterrett 
   -files/higan-092-QA.patch, -higan-092.ebuild:






[gentoo-commits] gentoo-x86 commit in games-util/higan-purify: higan-purify-03.ebuild ChangeLog

2015-03-22 Thread Michael Sterrett (mr_bones_)
mr_bones_15/03/22 19:28:10

  Modified: higan-purify-03.ebuild ChangeLog
  Log:
  use qmake-utils for moc (bug #544112)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  ChangesPath
1.6  games-util/higan-purify/higan-purify-03.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/higan-purify/higan-purify-03.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/higan-purify/higan-purify-03.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/higan-purify/higan-purify-03.ebuild?r1=1.5&r2=1.6

Index: higan-purify-03.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/games-util/higan-purify/higan-purify-03.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- higan-purify-03.ebuild  25 Feb 2015 15:53:21 -  1.5
+++ higan-purify-03.ebuild  22 Mar 2015 19:28:10 -  1.6
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/games-util/higan-purify/higan-purify-03.ebuild,v 1.5 
2015/02/25 15:53:21 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/games-util/higan-purify/higan-purify-03.ebuild,v 1.6 
2015/03/22 19:28:10 mr_bones_ Exp $
 
 EAPI=5
 
-inherit eutils multilib toolchain-funcs
+inherit eutils multilib toolchain-funcs qmake-utils
 
 MY_P=purify_v${PV}-source
 
@@ -45,7 +45,7 @@
# regenerate .moc if needed
if use qt4; then
cd phoenix/qt || die
-   moc -i -I. -o platform.moc platform.moc.hpp || die
+"$(qt4_get_bindir)"/moc -i -I. -o platform.moc 
platform.moc.hpp || die
fi
 }
 



1.8  games-util/higan-purify/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/games-util/higan-purify/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   25 Feb 2015 15:53:21 -  1.7
+++ ChangeLog   22 Mar 2015 19:28:10 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for games-util/higan-purify
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/higan-purify/ChangeLog,v 1.7 
2015/02/25 15:53:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/higan-purify/ChangeLog,v 1.8 
2015/03/22 19:28:10 mr_bones_ Exp $
+
+  22 Mar 2015; Michael Sterrett  higan-purify-03.ebuild:
+  use qmake-utils for moc (bug #544112)
 
   25 Feb 2015; Agostino Sarubbo  higan-purify-03.ebuild:
   Stable for x86, wrt bug #540240






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

2015-03-22 Thread Brian Evans (grknight)
grknight15/03/22 18:49:44

  Modified: ChangeLog package.mask
  Log:
  PHP 5.3.x is vulernable to several security bugs and has reached EOL status. 
(Bugs #533998, #537586,
  #537590, #538822, #541098); Masked pending resolution to bug #538756

Revision  ChangesPath
1.9875   profiles/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.9874
retrieving revision 1.9875
diff -u -r1.9874 -r1.9875
--- ChangeLog   22 Mar 2015 13:16:19 -  1.9874
+++ ChangeLog   22 Mar 2015 18:49:44 -  1.9875
@@ -1,11 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9874 2015/03/22 
13:16:19 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9875 2015/03/22 
18:49:44 grknight Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  22 Mar 2015; Brian Evans  package.mask:
+  PHP 5.3.x is vulernable to several security bugs and has
+  reached EOL status. (Bugs #533998, #537586, #537590, #538822, #541098)
+  Masked pending resolution to bug #538756
+
   22 Mar 2015; Pacho Ramos  package.mask:
   Mask some packages for removal
 



1.16432  profiles/package.mask

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

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16431
retrieving revision 1.16432
diff -u -r1.16431 -r1.16432
--- package.mask22 Mar 2015 13:16:19 -  1.16431
+++ package.mask22 Mar 2015 18:49:44 -  1.16432
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16431 2015/03/22 
13:16:19 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16432 2015/03/22 
18:49:44 grknight Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -30,6 +30,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Brian Evans  (22 Mar 2015)
+# PHP 5.3.x is vulernable to several security bugs and has
+# reached EOL status. (Bugs #533998, #537586, #537590, #538822, #541098)
+# Masked pending resolution to bug #538756
+dev-lang/php:5.3
+virtual/httpd-php:5.3
+=mail-client/squirrelmail-1.4.2
+
 # Pacho Ramos  (22 Mar 2015)
 # Cannot be fetched, also has licensing issues (#531270).
 # Removal in a month.






[gentoo-commits] gentoo-x86 commit in x11-misc/i3status: i3status-2.9.ebuild ChangeLog

2015-03-22 Thread Kacper Kowalik (xarthisius)
xarthisius15/03/22 18:25:24

  Modified: ChangeLog
  Added:i3status-2.9.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
0x5D21B852895192F9)

Revision  ChangesPath
1.22 x11-misc/i3status/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-misc/i3status/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   5 Jan 2014 21:48:44 -   1.21
+++ ChangeLog   22 Mar 2015 18:25:24 -  1.22
@@ -1,6 +1,11 @@
 # ChangeLog for x11-misc/i3status
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3status/ChangeLog,v 1.21 
2014/01/05 21:48:44 xarthisius Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3status/ChangeLog,v 1.22 
2015/03/22 18:25:24 xarthisius Exp $
+
+*i3status-2.9 (22 Mar 2015)
+
+  22 Mar 2015; Kacper Kowalik  +i3status-2.9.ebuild:
+  Version bump
 
 *i3status-2.8 (05 Jan 2014)
 



1.1  x11-misc/i3status/i3status-2.9.ebuild

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

Index: i3status-2.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3status/i3status-2.9.ebuild,v 1.1 
2015/03/22 18:25:24 xarthisius Exp $

EAPI=5

inherit toolchain-funcs versionator fcaps

DESCRIPTION="generates a status bar for dzen2, xmobar or similar"
HOMEPAGE="http://i3wm.org/i3status/";
SRC_URI="http://i3wm.org/${PN}/${P}.tar.bz2";

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

RDEPEND="dev-libs/confuse
>=dev-libs/yajl-2.0.2
media-libs/alsa-lib
net-wireless/wireless-tools"
DEPEND="${RDEPEND}"

src_prepare() {
sed -e "/@echo/d" -e "s:@\$(:\$(:g" -e "/setcap/d" \
-e '/CFLAGS+=-g/d' -i Makefile || die
}

src_compile() {
emake CC="$(tc-getCC)"
}

pkg_postinst() {
fcaps cap_net_admin usr/bin/${PN}
einfo "${PN} can be used with any of the following programs:"
einfo "   i3bar (x11-wm/i3)"
einfo "   x11-misc/xmobar"
einfo "   x11-misc/dzen"
einfo "Please refer to manual: man ${PN}"
}






[gentoo-commits] gentoo-x86 commit in x11-themes/adwaita-icon-theme: adwaita-icon-theme-3.14.1-r1.ebuild ChangeLog

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 17:53:27

  Modified: ChangeLog
  Added:adwaita-icon-theme-3.14.1-r1.ebuild
  Log:
  Stop installing the /usr/share/cursors/xorg-x11/default symlink, it messes up 
cursors in some non-GNOME desktop environments (bug #543488). Instead, rely on 
env variables set by the session; for GNOME, make sure you have 
>=gnome-session-3.14.0-r2
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.9  x11-themes/adwaita-icon-theme/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/adwaita-icon-theme/ChangeLog?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/adwaita-icon-theme/ChangeLog?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/adwaita-icon-theme/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-themes/adwaita-icon-theme/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   15 Mar 2015 13:34:31 -  1.8
+++ ChangeLog   22 Mar 2015 17:53:27 -  1.9
@@ -1,6 +1,15 @@
 # ChangeLog for x11-themes/adwaita-icon-theme
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/adwaita-icon-theme/ChangeLog,v 
1.8 2015/03/15 13:34:31 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/adwaita-icon-theme/ChangeLog,v 
1.9 2015/03/22 17:53:27 tetromino Exp $
+
+*adwaita-icon-theme-3.14.1-r1 (22 Mar 2015)
+
+  22 Mar 2015; Alexandre Rostovtsev 
+  +adwaita-icon-theme-3.14.1-r1.ebuild:
+  Stop installing the /usr/share/cursors/xorg-x11/default symlink, it messes up
+  cursors in some non-GNOME desktop environments (bug #543488). Instead, rely
+  on env variables set by the session; for GNOME, make sure you have
+  >=gnome-session-3.14.0-r2
 
   15 Mar 2015; Pacho Ramos  adwaita-icon-theme-3.14.1.ebuild:
   x86 stable, bug 534012



1.1  
x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.14.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.14.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.14.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: adwaita-icon-theme-3.14.1-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.14.1-r1.ebuild,v
 1.1 2015/03/22 17:53:27 tetromino Exp $

EAPI="5"
GCONF_DEBUG="no"

inherit gnome2 versionator

DESCRIPTION="GNOME default icon theme"
HOMEPAGE="http://www.gnome.org/ 
http://people.freedesktop.org/~jimmac/icons/#git";

SRC_URI="${SRC_URI}
branding? ( 
http://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz
 )"

LICENSE="|| ( LGPL-3 CC-BY-SA-3.0 )
branding? ( CC-Sampling-Plus-1.0 )"
SLOT="0"
IUSE="branding"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"

COMMON_DEPEND="
>=x11-themes/hicolor-icon-theme-0.10
"
RDEPEND="${COMMON_DEPEND}
gnome-base/librsvg:2
!=gnome-base/gnome-session-3.14.0-r2"
elog "and then log out and log in again."
}






[gentoo-commits] gentoo-x86 commit in gnome-base/gnome-session/files: 90-xcursor-theme-gnome

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 17:50:32

  Added:90-xcursor-theme-gnome
  Log:
  Set XCURSOR_THEME from current dconf settings so non-gtk applications get the 
right mouse cursor. Note: you will have to log out and back in to update the 
env variable after changing the mouse cursor in gnome-tweak-tool.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.1  gnome-base/gnome-session/files/90-xcursor-theme-gnome

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/files/90-xcursor-theme-gnome?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/files/90-xcursor-theme-gnome?rev=1.1&content-type=text/plain

Index: 90-xcursor-theme-gnome
===
#!/bin/sh

if [ "$DESKTOP_SESSION" = "gnome" -o "$DESKTOP_SESSION" = "cinnamon" ]; then
XCURSOR_THEME=`dconf read /org/gnome/desktop/interface/cursor-theme` 2> 
/dev/null
if [ x"$XCURSOR_THEME" = "x" ]; then
export XCURSOR_THEME="Adwaita"
else
# 'dconf read' wraps string output in single quotes
eval export "XCURSOR_THEME=$XCURSOR_THEME"
fi
fi






[gentoo-commits] gentoo-x86 commit in gnome-base/gnome-session: ChangeLog gnome-session-3.14.0-r2.ebuild

2015-03-22 Thread Alexandre Rostovtsev (tetromino)
tetromino15/03/22 17:50:32

  Modified: ChangeLog
  Added:gnome-session-3.14.0-r2.ebuild
  Log:
  Set XCURSOR_THEME from current dconf settings so non-gtk applications get the 
right mouse cursor. Note: you will have to log out and back in to update the 
env variable after changing the mouse cursor in gnome-tweak-tool.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.349gnome-base/gnome-session/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/ChangeLog?rev=1.349&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/ChangeLog?rev=1.349&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/ChangeLog?r1=1.348&r2=1.349

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-session/ChangeLog,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- ChangeLog   15 Mar 2015 13:23:03 -  1.348
+++ ChangeLog   22 Mar 2015 17:50:31 -  1.349
@@ -1,6 +1,15 @@
 # ChangeLog for gnome-base/gnome-session
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-session/ChangeLog,v 1.348 
2015/03/15 13:23:03 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-session/ChangeLog,v 1.349 
2015/03/22 17:50:31 tetromino Exp $
+
+*gnome-session-3.14.0-r2 (22 Mar 2015)
+
+  22 Mar 2015; Alexandre Rostovtsev 
+  +gnome-session-3.14.0-r2.ebuild, +files/90-xcursor-theme-gnome:
+  Set XCURSOR_THEME from current dconf settings so non-gtk applications get the
+  right mouse cursor.
+  Note: you will have to log out and back in to update the env variable after
+  changing the mouse cursor in gnome-tweak-tool.
 
   15 Mar 2015; Pacho Ramos  gnome-session-3.14.0-r1.ebuild:
   x86 stable, bug 534012



1.1  gnome-base/gnome-session/gnome-session-3.14.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/gnome-session-3.14.0-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-session/gnome-session-3.14.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: gnome-session-3.14.0-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/gnome-base/gnome-session/gnome-session-3.14.0-r2.ebuild,v
 1.1 2015/03/22 17:50:31 tetromino Exp $

EAPI="5"
GCONF_DEBUG="yes"

inherit gnome2

DESCRIPTION="Gnome session manager"
HOMEPAGE="https://git.gnome.org/browse/gnome-session";

LICENSE="GPL-2 LGPL-2 FDL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="doc elibc_FreeBSD gconf ipv6 systemd"

# x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, and
# create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
# xdg-user-dirs-update is run during login (see 10-user-dirs-update-gnome 
below).
# gdk-pixbuf used in the inhibit dialog
COMMON_DEPEND="
>=dev-libs/glib-2.40.0:2
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-2.90.7:3
>=dev-libs/json-glib-0.10
>=dev-libs/dbus-glib-0.76
>=gnome-base/gnome-desktop-3.9.91:3=
elibc_FreeBSD? ( dev-libs/libexecinfo )

virtual/opengl
x11-libs/libSM
x11-libs/libICE
x11-libs/libXau
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXext
x11-libs/libXrender
x11-libs/libXtst
x11-misc/xdg-user-dirs
x11-misc/xdg-user-dirs-gtk
x11-apps/xdpyinfo

gconf? ( >=gnome-base/gconf-2:2 )
systemd? ( >=sys-apps/systemd-183:0= )
"
# Pure-runtime deps from the session files should *NOT* be added here
# Otherwise, things like gdm pull in gnome-shell
# gnome-themes-standard is needed for the failwhale dialog themeing
# sys-apps/dbus[X] is needed for session management
RDEPEND="${COMMON_DEPEND}
gnome-base/gnome-settings-daemon
>=gnome-base/gsettings-desktop-schemas-0.1.7
>=x11-themes/gnome-themes-standard-2.91.92
sys-apps/dbus[X]
!systemd? ( sys-auth/consolekit )
"
DEPEND="${COMMON_DEPEND}
>=dev-lang/perl-5
>=sys-devel/gettext-0.10.40
dev-libs/libxslt
>=dev-util/intltool-0.40.6
virtual/pkgconfig
!https://bugzilla.gnome.org/show_bug.cgi?id=711703
newexe "${FILESDIR}/90-xcursor-theme-gnome" 90-xcursor-theme-gnome
}

pkg_postinst() {
gnome2_pkg_postinst

if ! has_version gnome-base/gdm && ! has_version kde-base/kdm; then
   

[gentoo-commits] gentoo-x86 commit in dev-perl/Crypt-SMIME: ChangeLog Crypt-SMIME-0.150.0.ebuild

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:43:30

  Modified: ChangeLog
  Added:Crypt-SMIME-0.150.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.6  dev-perl/Crypt-SMIME/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SMIME/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   26 Aug 2014 15:07:11 -  1.5
+++ ChangeLog   22 Mar 2015 17:43:29 -  1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Crypt-SMIME
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SMIME/ChangeLog,v 1.5 
2014/08/26 15:07:11 axs Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SMIME/ChangeLog,v 1.6 
2015/03/22 17:43:29 dilfridge Exp $
+
+*Crypt-SMIME-0.150.0 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +Crypt-SMIME-0.150.0.ebuild:
+  Version bump
 
 *Crypt-SMIME-0.100.0-r1 (26 Aug 2014)
 



1.1  dev-perl/Crypt-SMIME/Crypt-SMIME-0.150.0.ebuild

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

Index: Crypt-SMIME-0.150.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Crypt-SMIME/Crypt-SMIME-0.150.0.ebuild,v 1.1 
2015/03/22 17:43:29 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=MIKAGE
MODULE_VERSION=0.15
inherit perl-module

DESCRIPTION="S/MIME message signing, verification, encryption and decryption"

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

RDEPEND="
dev-libs/openssl:0
virtual/perl-XSLoader
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
dev-perl/extutils-pkgconfig
dev-perl/ExtUtils-CChecker
test? (
dev-perl/Test-Exception
virtual/perl-Test-Simple
>=dev-perl/Test-Taint-1.60.0
dev-perl/Test-Dependencies
>=dev-perl/Test-Pod-1.140.0
>=dev-perl/Test-Pod-Coverage-1.40.0
)
"

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Dependencies: - New directory

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:42:10

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-perl/Test-Dependencies added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-perl/Test-Dependencies: metadata.xml ChangeLog Test-Dependencies-0.120.0.ebuild

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:42:33

  Added:metadata.xml ChangeLog
Test-Dependencies-0.120.0.ebuild
  Log:
  New package, needed for dev-perl/Crypt-SMIME
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.1  dev-perl/Test-Dependencies/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Dependencies/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-Dependencies/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

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

  perl




1.1  dev-perl/Test-Dependencies/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-perl/Test-Dependencies
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Dependencies/ChangeLog,v 1.1 
2015/03/22 17:42:33 dilfridge Exp $

*Test-Dependencies-0.120.0 (22 Mar 2015)

  22 Mar 2015; Andreas K. Huettel 
  +Test-Dependencies-0.120.0.ebuild, +metadata.xml:
  New package, needed for dev-perl/Crypt-SMIME




1.1  dev-perl/Test-Dependencies/Test-Dependencies-0.120.0.ebuild

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

Index: Test-Dependencies-0.120.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-Dependencies/Test-Dependencies-0.120.0.ebuild,v
 1.1 2015/03/22 17:42:33 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=ZEV
MODULE_VERSION=0.12
inherit perl-module

DESCRIPTION="Ensure that your Makefile.PL specifies all module dependencies"

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

RDEPEND="
dev-perl/rpm-build-perl
dev-perl/File-Find-Rule
virtual/perl-Module-CoreList
dev-perl/Pod-Strip
dev-perl/yaml
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-perl/rpm-build-perl: rpm-build-perl-0.820.0.ebuild metadata.xml ChangeLog

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:41:33

  Added:rpm-build-perl-0.820.0.ebuild metadata.xml
ChangeLog
  Log:
  New package, needed for dev-perl/Crypt-SMIME
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.1  dev-perl/rpm-build-perl/rpm-build-perl-0.820.0.ebuild

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

Index: rpm-build-perl-0.820.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/rpm-build-perl/rpm-build-perl-0.820.0.ebuild,v 
1.1 2015/03/22 17:41:33 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=ATOURBIN
MODULE_VERSION=0.82
inherit perl-module

DESCRIPTION="Automatically extract Perl dependencies"

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

RDEPEND="
virtual/perl-Encode
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
virtual/perl-Test-Simple
)
"

SRC_TEST=skip
# one subtest fails, reason so far unknown



1.1  dev-perl/rpm-build-perl/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/rpm-build-perl/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/rpm-build-perl/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

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

  perl




1.1  dev-perl/rpm-build-perl/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-perl/rpm-build-perl
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/rpm-build-perl/ChangeLog,v 1.1 
2015/03/22 17:41:33 dilfridge Exp $

*rpm-build-perl-0.820.0 (22 Mar 2015)

  22 Mar 2015; Andreas K. Huettel 
  +rpm-build-perl-0.820.0.ebuild, +metadata.xml:
  New package, needed for dev-perl/Crypt-SMIME







[gentoo-commits] gentoo-x86 commit in dev-perl/rpm-build-perl: - New directory

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:41:17

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-perl/rpm-build-perl added to the 
repository



[gentoo-commits] gentoo-x86 commit in dev-perl/Pod-Strip: - New directory

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:35:54

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-perl/Pod-Strip added to the repository



[gentoo-commits] gentoo-x86 commit in dev-perl/Pod-Strip: Pod-Strip-1.20.0.ebuild ChangeLog metadata.xml

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:36:17

  Added:Pod-Strip-1.20.0.ebuild ChangeLog metadata.xml
  Log:
  New package, needed for dev-perl/Crypt-SMIME
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.1  dev-perl/Pod-Strip/Pod-Strip-1.20.0.ebuild

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

Index: Pod-Strip-1.20.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Pod-Strip/Pod-Strip-1.20.0.ebuild,v 
1.1 2015/03/22 17:36:17 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=DOMM
MODULE_VERSION=1.02
inherit perl-module

DESCRIPTION="Remove POD from Perl code"

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

RDEPEND="
>=virtual/perl-Pod-Simple-3.0.0
"
DEPEND="${RDEPEND}
virtual/perl-Module-Build
test? (
virtual/perl-Test-Simple
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
)
"

SRC_TEST=do



1.1  dev-perl/Pod-Strip/ChangeLog

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

Index: ChangeLog
===
# ChangeLog for dev-perl/Pod-Strip
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Pod-Strip/ChangeLog,v 1.1 
2015/03/22 17:36:17 dilfridge Exp $

*Pod-Strip-1.20.0 (22 Mar 2015)

  22 Mar 2015; Andreas K. Huettel 
  +Pod-Strip-1.20.0.ebuild, +metadata.xml:
  New package, needed for dev-perl/Crypt-SMIME




1.1  dev-perl/Pod-Strip/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Pod-Strip/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Pod-Strip/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===

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

  perl







[gentoo-commits] gentoo-x86 commit in dev-perl/Text-CSV_XS: Text-CSV_XS-1.160.0.ebuild ChangeLog

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:14:34

  Modified: ChangeLog
  Added:Text-CSV_XS-1.160.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.149dev-perl/Text-CSV_XS/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV_XS/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog   31 Aug 2014 10:39:46 -  1.148
+++ ChangeLog   22 Mar 2015 17:14:34 -  1.149
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Text-CSV_XS
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV_XS/ChangeLog,v 1.148 
2014/08/31 10:39:46 zlogene Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV_XS/ChangeLog,v 1.149 
2015/03/22 17:14:34 dilfridge Exp $
+
+*Text-CSV_XS-1.160.0 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +Text-CSV_XS-1.160.0.ebuild:
+  Version bump
 
   31 Aug 2014; Mikle Kolyada  -Text-CSV_XS-0.910.0.ebuild,
   -Text-CSV_XS-0.940.0.ebuild:



1.1  dev-perl/Text-CSV_XS/Text-CSV_XS-1.160.0.ebuild

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

Index: Text-CSV_XS-1.160.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Text-CSV_XS/Text-CSV_XS-1.160.0.ebuild,v 1.1 
2015/03/22 17:14:34 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=HMBRAND
MODULE_A_EXT=tgz
MODULE_VERSION=1.16
inherit perl-module

DESCRIPTION="Comma-separated values manipulation routines"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="test"

RDEPEND="
virtual/perl-IO
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
virtual/perl-Test-Simple
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
)
"

SRC_TEST="do parallel"






[gentoo-commits] gentoo-x86 commit in dev-ruby/network_interface: ChangeLog network_interface-0.0.1-r1.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:14:17

  Modified: ChangeLog network_interface-0.0.1-r1.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.6  dev-ruby/network_interface/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/network_interface/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   8 Feb 2015 06:57:30 -   1.5
+++ ChangeLog   22 Mar 2015 17:14:17 -  1.6
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/network_interface
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/network_interface/ChangeLog,v 1.5 
2015/02/08 06:57:30 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/network_interface/ChangeLog,v 1.6 
2015/03/22 17:14:17 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff 
+  network_interface-0.0.1-r1.ebuild:
+  Add ruby22.
 
   08 Feb 2015; Hans de Graaff 
   network_interface-0.0.1-r1.ebuild:



1.5  
dev-ruby/network_interface/network_interface-0.0.1-r1.ebuild

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

Index: network_interface-0.0.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/network_interface/network_interface-0.0.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- network_interface-0.0.1-r1.ebuild   8 Feb 2015 06:57:30 -   1.4
+++ network_interface-0.0.1-r1.ebuild   22 Mar 2015 17:14:17 -  1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/network_interface/network_interface-0.0.1-r1.ebuild,v
 1.4 2015/02/08 06:57:30 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/network_interface/network_interface-0.0.1-r1.ebuild,v
 1.5 2015/03/22 17:14:17 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/net-http-persistent: net-http-persistent-2.9.4.ebuild ChangeLog

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:11:48

  Modified: net-http-persistent-2.9.4.ebuild ChangeLog
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.5  
dev-ruby/net-http-persistent/net-http-persistent-2.9.4.ebuild

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

Index: net-http-persistent-2.9.4.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/net-http-persistent/net-http-persistent-2.9.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- net-http-persistent-2.9.4.ebuild5 Aug 2014 16:00:36 -   1.4
+++ net-http-persistent-2.9.4.ebuild22 Mar 2015 17:11:48 -  1.5
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/net-http-persistent/net-http-persistent-2.9.4.ebuild,v
 1.4 2014/08/05 16:00:36 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/net-http-persistent/net-http-persistent-2.9.4.ebuild,v
 1.5 2015/03/22 17:11:48 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC="docs"
 RUBY_FAKEGEM_DOCDIR="doc"



1.22 dev-ruby/net-http-persistent/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/net-http-persistent/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   5 Aug 2014 16:00:36 -   1.21
+++ ChangeLog   22 Mar 2015 17:11:48 -  1.22
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/net-http-persistent
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-http-persistent/ChangeLog,v 
1.21 2014/08/05 16:00:36 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-http-persistent/ChangeLog,v 
1.22 2015/03/22 17:11:48 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff 
+  net-http-persistent-2.9.4.ebuild:
+  Add ruby22.
 
   05 Aug 2014; Manuel Rüger  
net-http-persistent-2.9.4.ebuild,
   net-http-persistent-2.9.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-ruby/net-http-digest_auth: net-http-digest_auth-1.4-r1.ebuild ChangeLog

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:09:15

  Modified: net-http-digest_auth-1.4-r1.ebuild ChangeLog
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.5  
dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4-r1.ebuild

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

Index: net-http-digest_auth-1.4-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- net-http-digest_auth-1.4-r1.ebuild  3 Nov 2014 20:09:20 -   1.4
+++ net-http-digest_auth-1.4-r1.ebuild  22 Mar 2015 17:09:15 -  1.5
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4-r1.ebuild,v
 1.4 2014/11/03 20:09:20 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4-r1.ebuild,v
 1.5 2015/03/22 17:09:15 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_DOCDIR="doc"



1.15 dev-ruby/net-http-digest_auth/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/net-http-digest_auth/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   3 Nov 2014 20:09:20 -   1.14
+++ ChangeLog   22 Mar 2015 17:09:15 -  1.15
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/net-http-digest_auth
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-http-digest_auth/ChangeLog,v 
1.14 2014/11/03 20:09:20 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-http-digest_auth/ChangeLog,v 
1.15 2015/03/22 17:09:15 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff 
+  net-http-digest_auth-1.4-r1.ebuild:
+  Add ruby22.
 
   03 Nov 2014; Manuel Rüger 
   net-http-digest_auth-1.4-r1.ebuild, net-http-digest_auth-1.4.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/SQL-Translator: ChangeLog SQL-Translator-0.110.210.ebuild

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:08:28

  Modified: ChangeLog
  Added:SQL-Translator-0.110.210.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.36 dev-perl/SQL-Translator/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/SQL-Translator/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   26 Aug 2014 18:33:04 -  1.35
+++ ChangeLog   22 Mar 2015 17:08:28 -  1.36
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/SQL-Translator
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/SQL-Translator/ChangeLog,v 1.35 
2014/08/26 18:33:04 axs Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/SQL-Translator/ChangeLog,v 1.36 
2015/03/22 17:08:28 dilfridge Exp $
+
+*SQL-Translator-0.110.210 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +SQL-Translator-0.110.210.ebuild:
+  Version bump
 
 *SQL-Translator-0.110.160-r1 (26 Aug 2014)
 



1.1  dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild

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

Index: SQL-Translator-0.110.210.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild,v
 1.1 2015/03/22 17:08:28 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=ILMARI
MODULE_VERSION=0.11021
inherit perl-module

DESCRIPTION="Manipulate structured data definitions (SQL and more)"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"
IUSE="test"

RDEPEND="
dev-perl/Carp-Clan
>=dev-perl/DBI-1.540.0
virtual/perl-Digest-SHA
>=dev-perl/File-ShareDir-1.0.0
>=dev-perl/List-MoreUtils-0.90.0
>=dev-perl/Moo-1.0.3
>=dev-perl/Package-Variant-1.1.1
>=dev-perl/Parse-RecDescent-1.967.9
>=dev-perl/Try-Tiny-0.40.0
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.590.0
>=dev-perl/JSON-2
>=dev-perl/XML-Writer-0.500.0
>=dev-perl/yaml-0.660.0
test? (
dev-perl/HTML-Parser
dev-perl/Spreadsheet-ParseExcel
>=dev-perl/Template-Toolkit-2.200.0
dev-perl/Test-Exception
dev-perl/Test-Differences
dev-perl/Test-Pod
>=dev-perl/XML-LibXML-1.690.0
)
"

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-ruby/naught: ChangeLog naught-1.0.0.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:06:21

  Modified: ChangeLog naught-1.0.0.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.3  dev-ruby/naught/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/naught/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   16 May 2014 08:01:52 -  1.2
+++ ChangeLog   22 Mar 2015 17:06:21 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/naught
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/naught/ChangeLog,v 1.2 2014/05/16 
08:01:52 graaff Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/naught/ChangeLog,v 1.3 2015/03/22 
17:06:21 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  naught-1.0.0.ebuild:
+  Add ruby22.
 
   16 May 2014; Hans de Graaff  naught-1.0.0.ebuild:
   Add ruby21.



1.3  dev-ruby/naught/naught-1.0.0.ebuild

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

Index: naught-1.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/naught/naught-1.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- naught-1.0.0.ebuild 16 May 2014 08:01:52 -  1.2
+++ naught-1.0.0.ebuild 22 Mar 2015 17:06:21 -  1.3
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/naught/naught-1.0.0.ebuild,v 1.2 
2014/05/16 08:01:52 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/naught/naught-1.0.0.ebuild,v 1.3 
2015/03/22 17:06:21 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/nagios_analyzer: ChangeLog nagios_analyzer-0.0.5-r1.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:05:09

  Modified: ChangeLog nagios_analyzer-0.0.5-r1.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.10 dev-ruby/nagios_analyzer/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   3 Nov 2014 20:06:02 -   1.9
+++ ChangeLog   22 Mar 2015 17:05:09 -  1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/nagios_analyzer
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/ChangeLog,v 1.9 
2014/11/03 20:06:02 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/ChangeLog,v 1.10 
2015/03/22 17:05:09 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff 
+  nagios_analyzer-0.0.5-r1.ebuild:
+  Add ruby22.
 
   03 Nov 2014; Manuel Rüger  nagios_analyzer-0.0.5-r1.ebuild:
   Drop jruby.



1.5  dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild

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

Index: nagios_analyzer-0.0.5-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nagios_analyzer-0.0.5-r1.ebuild 3 Nov 2014 20:06:02 -   1.4
+++ nagios_analyzer-0.0.5-r1.ebuild 22 Mar 2015 17:05:09 -  1.5
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild,v
 1.4 2014/11/03 20:06:02 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild,v
 1.5 2015/03/22 17:05:09 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/multi_test: ChangeLog multi_test-0.1.2.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:03:23

  Modified: ChangeLog multi_test-0.1.2.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.10 dev-ruby/multi_test/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/multi_test/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   13 Mar 2015 06:59:23 -  1.9
+++ ChangeLog   22 Mar 2015 17:03:23 -  1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/multi_test
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_test/ChangeLog,v 1.9 
2015/03/13 06:59:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_test/ChangeLog,v 1.10 
2015/03/22 17:03:23 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  multi_test-0.1.2.ebuild:
+  Add ruby22.
 
   13 Mar 2015; Jeroen Roovers  multi_test-0.1.1.ebuild:
   Stable for HPPA (bug #542574).



1.2  dev-ruby/multi_test/multi_test-0.1.2.ebuild

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

Index: multi_test-0.1.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/multi_test/multi_test-0.1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- multi_test-0.1.2.ebuild 8 Mar 2015 15:34:30 -   1.1
+++ multi_test-0.1.2.ebuild 22 Mar 2015 17:03:23 -  1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/multi_test/multi_test-0.1.2.ebuild,v 1.1 
2015/03/08 15:34:30 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/multi_test/multi_test-0.1.2.ebuild,v 1.2 
2015/03/22 17:03:23 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/modernizr: ChangeLog modernizr-2.6.2.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 17:01:28

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

Revision  ChangesPath
1.3  dev-ruby/modernizr/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/modernizr/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   2 Aug 2014 01:37:50 -   1.2
+++ ChangeLog   22 Mar 2015 17:01:28 -  1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/modernizr
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/modernizr/ChangeLog,v 1.2 
2014/08/02 01:37:50 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/modernizr/ChangeLog,v 1.3 
2015/03/22 17:01:28 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  modernizr-2.6.2.ebuild:
+  Version bump.
 
   02 Aug 2014; Manuel Rüger  modernizr-2.6.2.ebuild:
   Add ruby21 support.



1.3  dev-ruby/modernizr/modernizr-2.6.2.ebuild

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

Index: modernizr-2.6.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/modernizr/modernizr-2.6.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- modernizr-2.6.2.ebuild  2 Aug 2014 01:37:50 -   1.2
+++ modernizr-2.6.2.ebuild  22 Mar 2015 17:01:28 -  1.3
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/modernizr/modernizr-2.6.2.ebuild,v 
1.2 2014/08/02 01:37:50 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/modernizr/modernizr-2.6.2.ebuild,v 
1.3 2015/03/22 17:01:28 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_TASK_DOC=""






[gentoo-commits] gentoo-x86 commit in dev-perl/File-NFSLock: ChangeLog File-NFSLock-1.270.0.ebuild

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 17:00:04

  Modified: ChangeLog
  Added:File-NFSLock-1.270.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.15 dev-perl/File-NFSLock/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog   22 Aug 2014 17:55:53 -  1.14
+++ ChangeLog   22 Mar 2015 17:00:04 -  1.15
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/File-NFSLock
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/ChangeLog,v 1.14 
2014/08/22 17:55:53 axs Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/ChangeLog,v 1.15 
2015/03/22 17:00:04 dilfridge Exp $
+
+*File-NFSLock-1.270.0 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +File-NFSLock-1.270.0.ebuild:
+  Version bump
 
 *File-NFSLock-1.210.0-r1 (22 Aug 2014)
 



1.1  dev-perl/File-NFSLock/File-NFSLock-1.270.0.ebuild

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

Index: File-NFSLock-1.270.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/File-NFSLock/File-NFSLock-1.270.0.ebuild,v 1.1 
2015/03/22 17:00:04 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=BBB
MODULE_VERSION=1.27
inherit perl-module

DESCRIPTION="perl module to do NFS (or not) locking"

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

DEPEND="virtual/perl-ExtUtils-MakeMaker"

SRC_TEST="do"







[gentoo-commits] gentoo-x86 commit in dev-ruby/mini_shoulda: mini_shoulda-0.5.0-r1.ebuild ChangeLog

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:59:52

  Modified: mini_shoulda-0.5.0-r1.ebuild ChangeLog
  Log:
  Document ruby22 status.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.6  dev-ruby/mini_shoulda/mini_shoulda-0.5.0-r1.ebuild

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

Index: mini_shoulda-0.5.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/mini_shoulda/mini_shoulda-0.5.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mini_shoulda-0.5.0-r1.ebuild8 Feb 2015 06:43:15 -   1.5
+++ mini_shoulda-0.5.0-r1.ebuild22 Mar 2015 16:59:52 -  1.6
@@ -1,8 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/mini_shoulda/mini_shoulda-0.5.0-r1.ebuild,v 
1.5 2015/02/08 06:43:15 graaff Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/mini_shoulda/mini_shoulda-0.5.0-r1.ebuild,v 
1.6 2015/03/22 16:59:52 graaff Exp $
 
 EAPI=5
+# ruby22 -> fails tests
 USE_RUBY="ruby19 ruby20 ruby21"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



1.9  dev-ruby/mini_shoulda/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mini_shoulda/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   8 Feb 2015 06:43:15 -   1.8
+++ ChangeLog   22 Mar 2015 16:59:52 -  1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/mini_shoulda
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_shoulda/ChangeLog,v 1.8 
2015/02/08 06:43:15 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_shoulda/ChangeLog,v 1.9 
2015/03/22 16:59:52 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  mini_shoulda-0.5.0-r1.ebuild:
+  Document ruby22 status.
 
   08 Feb 2015; Hans de Graaff  mini_shoulda-0.5.0-r1.ebuild:
   Add ruby21.






[gentoo-commits] gentoo-x86 commit in dev-perl/Text-Unidecode: Text-Unidecode-1.230.0.ebuild ChangeLog

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 16:55:49

  Modified: ChangeLog
  Added:Text-Unidecode-1.230.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.27 dev-perl/Text-Unidecode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Text-Unidecode/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog   18 Oct 2014 19:20:39 -  1.26
+++ ChangeLog   22 Mar 2015 16:55:49 -  1.27
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Text-Unidecode
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-Unidecode/ChangeLog,v 1.26 
2014/10/18 19:20:39 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-Unidecode/ChangeLog,v 1.27 
2015/03/22 16:55:49 dilfridge Exp $
+
+*Text-Unidecode-1.230.0 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +Text-Unidecode-1.230.0.ebuild:
+  Version bump
 
   18 Oct 2014; Mike Frysinger 
   Text-Unidecode-0.40.0-r1.ebuild:



1.1  dev-perl/Text-Unidecode/Text-Unidecode-1.230.0.ebuild

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

Index: Text-Unidecode-1.230.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Text-Unidecode/Text-Unidecode-1.230.0.ebuild,v 
1.1 2015/03/22 16:55:49 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=SBURKE
MODULE_VERSION=1.23
inherit perl-module

DESCRIPTION="Plain ASCII transliterations of Unicode text"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""

RDEPEND=""
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-ruby/meterpreter_bins: ChangeLog meterpreter_bins-0.0.10.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:53:51

  Modified: ChangeLog meterpreter_bins-0.0.10.ebuild
  Log:
  Add ruby21.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.3  dev-ruby/meterpreter_bins/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/meterpreter_bins/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   19 Oct 2014 23:24:24 -  1.2
+++ ChangeLog   22 Mar 2015 16:53:51 -  1.3
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/meterpreter_bins
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/meterpreter_bins/ChangeLog,v 1.2 
2014/10/19 23:24:24 zerochaos Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/meterpreter_bins/ChangeLog,v 1.3 
2015/03/22 16:53:51 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff 
+  meterpreter_bins-0.0.10.ebuild:
+  Add ruby21.
 
 *meterpreter_bins-0.0.10 (19 Oct 2014)
 



1.2  dev-ruby/meterpreter_bins/meterpreter_bins-0.0.10.ebuild

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

Index: meterpreter_bins-0.0.10.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/meterpreter_bins/meterpreter_bins-0.0.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- meterpreter_bins-0.0.10.ebuild  19 Oct 2014 23:24:24 -  1.1
+++ meterpreter_bins-0.0.10.ebuild  22 Mar 2015 16:53:51 -  1.2
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/meterpreter_bins/meterpreter_bins-0.0.10.ebuild,v
 1.1 2014/10/19 23:24:24 zerochaos Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/meterpreter_bins/meterpreter_bins-0.0.10.ebuild,v
 1.2 2015/03/22 16:53:51 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby19 ruby20 ruby21"
 
 RUBY_FAKEGEM_TASK_DOC=""
 






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

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 16:52:20

  Modified: ChangeLog
  Added:Test-SharedFork-0.290.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.16 dev-perl/Test-SharedFork/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-SharedFork/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   3 Nov 2014 19:57:44 -   1.15
+++ ChangeLog   22 Mar 2015 16:52:20 -  1.16
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Test-SharedFork
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-SharedFork/ChangeLog,v 1.15 
2014/11/03 19:57:44 zlogene Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-SharedFork/ChangeLog,v 1.16 
2015/03/22 16:52:20 dilfridge Exp $
+
+*Test-SharedFork-0.290.0 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +Test-SharedFork-0.290.0.ebuild:
+  Version bump
 
   03 Nov 2014; Mikle Kolyada 
   Test-SharedFork-0.210.0-r1.ebuild:



1.1  dev-perl/Test-SharedFork/Test-SharedFork-0.290.0.ebuild

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

Index: Test-SharedFork-0.290.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-SharedFork/Test-SharedFork-0.290.0.ebuild,v
 1.1 2015/03/22 16:52:20 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=EXODIST
MODULE_VERSION=0.29
inherit perl-module

DESCRIPTION="fork test"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"

RDEPEND="
virtual/perl-File-Temp
>=virtual/perl-Test-Simple-0.880.0
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.640.0
test? (
virtual/perl-Test-Harness
virtual/perl-Test-Simple
dev-perl/Test-Requires
virtual/perl-Time-HiRes
)
"

SRC_TEST=do






[gentoo-commits] gentoo-x86 commit in dev-ruby/metasploit_data_models: ChangeLog metasploit_data_models-0.17.0.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:50:57

  Modified: ChangeLog metasploit_data_models-0.17.0.ebuild
  Log:
  Add ruby21.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.28 dev-ruby/metasploit_data_models/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/metasploit_data_models/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   9 Jul 2014 21:13:54 -   1.27
+++ ChangeLog   22 Mar 2015 16:50:57 -  1.28
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/metasploit_data_models
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/metasploit_data_models/ChangeLog,v 
1.27 2014/07/09 21:13:54 zerochaos Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/metasploit_data_models/ChangeLog,v 
1.28 2015/03/22 16:50:57 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff 
+  metasploit_data_models-0.17.0.ebuild:
+  Add ruby21.
 
   09 Jul 2014; Rick Farina 
   metasploit_data_models-0.17.0.ebuild:



1.4  
dev-ruby/metasploit_data_models/metasploit_data_models-0.17.0.ebuild

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

Index: metasploit_data_models-0.17.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/metasploit_data_models/metasploit_data_models-0.17.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metasploit_data_models-0.17.0.ebuild9 Jul 2014 21:13:54 -   
1.3
+++ metasploit_data_models-0.17.0.ebuild22 Mar 2015 16:50:57 -  
1.4
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/metasploit_data_models/metasploit_data_models-0.17.0.ebuild,v
 1.3 2014/07/09 21:13:54 zerochaos Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/metasploit_data_models/metasploit_data_models-0.17.0.ebuild,v
 1.4 2015/03/22 16:50:57 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby19 ruby20 ruby21"
 
 RUBY_FAKEGEM_TASK_DOC=""
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/mercenary: ChangeLog mercenary-0.3.5.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:47:22

  Modified: ChangeLog mercenary-0.3.5.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.11 dev-ruby/mercenary/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mercenary/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   13 Nov 2014 16:35:15 -  1.10
+++ ChangeLog   22 Mar 2015 16:47:22 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/mercenary
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mercenary/ChangeLog,v 1.10 
2014/11/13 16:35:15 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mercenary/ChangeLog,v 1.11 
2015/03/22 16:47:22 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  mercenary-0.3.5.ebuild:
+  Add ruby22.
 
 *mercenary-0.3.5 (13 Nov 2014)
 



1.2  dev-ruby/mercenary/mercenary-0.3.5.ebuild

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

Index: mercenary-0.3.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mercenary/mercenary-0.3.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mercenary-0.3.5.ebuild  13 Nov 2014 16:35:15 -  1.1
+++ mercenary-0.3.5.ebuild  22 Mar 2015 16:47:22 -  1.2
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mercenary/mercenary-0.3.5.ebuild,v 
1.1 2014/11/13 16:35:15 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mercenary/mercenary-0.3.5.ebuild,v 
1.2 2015/03/22 16:47:22 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_EXTRADOC="History.markdown README.md"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"






[gentoo-commits] gentoo-x86 commit in dev-ruby/memoize: memoize-1.3.1-r1.ebuild ChangeLog

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:45:52

  Modified: memoize-1.3.1-r1.ebuild ChangeLog
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.5  dev-ruby/memoize/memoize-1.3.1-r1.ebuild

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

Index: memoize-1.3.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/memoize/memoize-1.3.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- memoize-1.3.1-r1.ebuild 3 Nov 2014 20:07:52 -   1.4
+++ memoize-1.3.1-r1.ebuild 22 Mar 2015 16:45:52 -  1.5
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/memoize/memoize-1.3.1-r1.ebuild,v 
1.4 2014/11/03 20:07:52 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/memoize/memoize-1.3.1-r1.ebuild,v 
1.5 2015/03/22 16:45:52 graaff Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README"



1.7  dev-ruby/memoize/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/memoize/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   3 Nov 2014 20:07:52 -   1.6
+++ ChangeLog   22 Mar 2015 16:45:52 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/memoize
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/memoize/ChangeLog,v 1.6 2014/11/03 
20:07:52 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/memoize/ChangeLog,v 1.7 2015/03/22 
16:45:52 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  memoize-1.3.1-r1.ebuild:
+  Add ruby22.
 
   03 Nov 2014; Manuel Rüger  memoize-1.3.1-r1.ebuild:
   Drop jruby.






[gentoo-commits] gentoo-x86 commit in app-leechcraft/lc-lmp: lc-lmp-9999.ebuild ChangeLog

2015-03-22 Thread Maxim Koltsov (maksbotan)
maksbotan15/03/22 16:46:31

  Modified: lc-lmp-.ebuild ChangeLog
  Log:
  Add mtp use flag to lc-lmp-, thanks to 0xd34df00d
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
F8DBDADE)

Revision  ChangesPath
1.7  app-leechcraft/lc-lmp/lc-lmp-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild?r1=1.6&r2=1.7

Index: lc-lmp-.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- lc-lmp-.ebuild  10 Aug 2014 17:56:30 -  1.6
+++ lc-lmp-.ebuild  22 Mar 2015 16:46:31 -  1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild,v 
1.6 2014/08/10 17:56:30 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/lc-lmp-.ebuild,v 
1.7 2015/03/22 16:46:31 maksbotan Exp $
 
 EAPI="4"
 
@@ -10,7 +10,7 @@
 
 SLOT="0"
 KEYWORDS=""
-IUSE="debug +fradj +graffiti +guess +mpris +mp3tunes potorchu"
+IUSE="debug +fradj +graffiti +guess +mpris +mtp +mp3tunes potorchu"
 
 # depend on gstreamer:0.10 to match current Qt deps
 DEPEND="~app-leechcraft/lc-core-${PV}
@@ -19,6 +19,10 @@
media-libs/gstreamer:0.10
media-libs/taglib
mpris? ( dev-qt/qtdbus:4 )
+   mtp? (
+   ~app-leechcraft/lc-devmon-${PV}
+   media-libs/libmtp
+   )
potorchu? ( media-libs/libprojectm )
dev-qt/qtdeclarative:4"
 RDEPEND="${DEPEND}"
@@ -29,6 +33,7 @@
$(cmake-utils_use_enable graffiti LMP_GRAFFITI)
$(cmake-utils_use_enable guess LMP_LIBGUESS)
$(cmake-utils_use_enable mpris LMP_MPRIS)
+   $(cmake-utils_use_enable mtp LMP_MTPSYNC)
$(cmake-utils_use_enable mp3tunes LMP_MP3TUNES)
$(cmake-utils_use_enable potorchu LMP_POTORCHU)"
cmake-utils_src_configure



1.18 app-leechcraft/lc-lmp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   10 Aug 2014 17:56:30 -  1.17
+++ ChangeLog   22 Mar 2015 16:46:31 -  1.18
@@ -1,6 +1,9 @@
 # ChangeLog for app-leechcraft/lc-lmp
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/ChangeLog,v 1.17 
2014/08/10 17:56:30 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-lmp/ChangeLog,v 1.18 
2015/03/22 16:46:31 maksbotan Exp $
+
+  22 Mar 2015; Maxim Koltsov  lc-lmp-.ebuild:
+  Add mtp use flag to lc-lmp-, thanks to 0xd34df00d
 
   10 Aug 2014; Sergei Trofimovich  lc-lmp-0.6.60.ebuild,
   lc-lmp-0.6.65.ebuild, lc-lmp-0.6.70.ebuild, lc-lmp-.ebuild:






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

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:43:53

  Modified: ChangeLog mash-0.1.1-r2.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.13 dev-ruby/mash/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mash/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   30 Oct 2014 13:57:50 -  1.12
+++ ChangeLog   22 Mar 2015 16:43:53 -  1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/mash
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mash/ChangeLog,v 1.12 2014/10/30 
13:57:50 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mash/ChangeLog,v 1.13 2015/03/22 
16:43:53 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  mash-0.1.1-r2.ebuild:
+  Add ruby22.
 
   30 Oct 2014; Manuel Rüger  mash-0.1.1-r2.ebuild:
   Drop jruby target.



1.5  dev-ruby/mash/mash-0.1.1-r2.ebuild

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

Index: mash-0.1.1-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mash/mash-0.1.1-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mash-0.1.1-r2.ebuild30 Oct 2014 13:57:50 -  1.4
+++ mash-0.1.1-r2.ebuild22 Mar 2015 16:43:53 -  1.5
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mash/mash-0.1.1-r2.ebuild,v 1.4 
2014/10/30 13:57:50 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mash/mash-0.1.1-r2.ebuild,v 1.5 
2015/03/22 16:43:53 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/map: ChangeLog map-6.5.5.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:42:15

  Modified: ChangeLog map-6.5.5.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.20 dev-ruby/map/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/map/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   26 Nov 2014 02:21:34 -  1.19
+++ ChangeLog   22 Mar 2015 16:42:15 -  1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/map
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/map/ChangeLog,v 1.19 2014/11/26 
02:21:34 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/map/ChangeLog,v 1.20 2015/03/22 
16:42:15 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  map-6.5.5.ebuild:
+  Add ruby22.
 
   26 Nov 2014; Manuel Rüger 
   -files/map-6.5.1-ruby18-failing-tests.patch, map-6.5.4.ebuild,



1.3  dev-ruby/map/map-6.5.5.ebuild

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

Index: map-6.5.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/map/map-6.5.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- map-6.5.5.ebuild26 Nov 2014 02:21:34 -  1.2
+++ map-6.5.5.ebuild22 Mar 2015 16:42:15 -  1.3
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/map/map-6.5.5.ebuild,v 1.2 
2014/11/26 02:21:34 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/map/map-6.5.5.ebuild,v 1.3 
2015/03/22 16:42:15 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 






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

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:40:56

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

Revision  ChangesPath
1.42 dev-ruby/mail/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog   22 Mar 2015 16:35:29 -  1.41
+++ ChangeLog   22 Mar 2015 16:40:56 -  1.42
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/mail
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v 1.41 2015/03/22 
16:35:29 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v 1.42 2015/03/22 
16:40:56 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  mail-2.6.3.ebuild:
+  Add ruby22.
 
   22 Mar 2015; Hans de Graaff  -mail-2.6.1.ebuild,
   -mail-2.6.1-r1.ebuild:



1.2  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.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mail/mail-2.6.3.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mail/mail-2.6.3.ebuild?r1=1.1&r2=1.2

Index: mail-2.6.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.6.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mail-2.6.3.ebuild   15 Dec 2014 07:06:32 -  1.1
+++ mail-2.6.3.ebuild   22 Mar 2015 16:40:56 -  1.2
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.6.3.ebuild,v 1.1 
2014/12/15 07:06:32 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.6.3.ebuild,v 1.2 
2015/03/22 16:40:56 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 






[gentoo-commits] gentoo-x86 commit in dev-perl/YAML-Tiny: ChangeLog YAML-Tiny-1.660.0.ebuild

2015-03-22 Thread Andreas HAttel (dilfridge)
dilfridge15/03/22 16:40:25

  Modified: ChangeLog
  Added:YAML-Tiny-1.660.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.52 dev-perl/YAML-Tiny/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/YAML-Tiny/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   21 Aug 2014 20:33:27 -  1.51
+++ ChangeLog   22 Mar 2015 16:40:25 -  1.52
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/YAML-Tiny
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/YAML-Tiny/ChangeLog,v 1.51 
2014/08/21 20:33:27 axs Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/YAML-Tiny/ChangeLog,v 1.52 
2015/03/22 16:40:25 dilfridge Exp $
+
+*YAML-Tiny-1.660.0 (22 Mar 2015)
+
+  22 Mar 2015; Andreas K. Huettel 
+  +YAML-Tiny-1.660.0.ebuild:
+  Version bump
 
 *YAML-Tiny-1.510.0-r1 (21 Aug 2014)
 



1.1  dev-perl/YAML-Tiny/YAML-Tiny-1.660.0.ebuild

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

Index: YAML-Tiny-1.660.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/YAML-Tiny/YAML-Tiny-1.660.0.ebuild,v 1.1 
2015/03/22 16:40:25 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=ETHER
MODULE_VERSION=1.66
inherit perl-module

DESCRIPTION="Read/Write YAML files with as little code as possible"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"

RDEPEND="
virtual/perl-Carp
virtual/perl-Exporter
virtual/perl-Scalar-List-Utils
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
>=virtual/perl-File-Spec-0.80.0
>=virtual/perl-File-Temp-0.180.0
virtual/perl-Getopt-Long
virtual/perl-IO
virtual/perl-JSON-PP
>=virtual/perl-Test-Simple-0.990.0
)
"

SRC_TEST=do






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

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:35:29

  Modified: ChangeLog
  Removed:  mail-2.6.1.ebuild mail-2.6.1-r1.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.41 dev-ruby/mail/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   15 Dec 2014 07:06:32 -  1.40
+++ ChangeLog   22 Mar 2015 16:35:29 -  1.41
@@ -1,6 +1,10 @@
 # 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.40 2014/12/15 
07:06:32 graaff Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/ChangeLog,v 1.41 2015/03/22 
16:35:29 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  -mail-2.6.1.ebuild,
+  -mail-2.6.1-r1.ebuild:
+  Cleanup.
 
 *mail-2.6.3 (15 Dec 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/lumberjack: ChangeLog lumberjack-1.0.9.ebuild

2015-03-22 Thread Hans de Graaff (graaff)
graaff  15/03/22 16:33:37

  Modified: ChangeLog lumberjack-1.0.9.ebuild
  Log:
  Add ruby22.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.7  dev-ruby/lumberjack/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   6 Aug 2014 06:27:12 -   1.6
+++ ChangeLog   22 Mar 2015 16:33:37 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/lumberjack
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/ChangeLog,v 1.6 
2014/08/06 06:27:12 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/ChangeLog,v 1.7 
2015/03/22 16:33:37 graaff Exp $
+
+  22 Mar 2015; Hans de Graaff  lumberjack-1.0.9.ebuild:
+  Add ruby22.
 
 *lumberjack-1.0.9 (06 Aug 2014)
 



1.2  dev-ruby/lumberjack/lumberjack-1.0.9.ebuild

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

Index: lumberjack-1.0.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/lumberjack/lumberjack-1.0.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lumberjack-1.0.9.ebuild 6 Aug 2014 06:27:12 -   1.1
+++ lumberjack-1.0.9.ebuild 22 Mar 2015 16:33:37 -  1.2
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/lumberjack/lumberjack-1.0.9.ebuild,v 1.1 
2014/08/06 06:27:12 mrueg Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/lumberjack/lumberjack-1.0.9.ebuild,v 1.2 
2015/03/22 16:33:37 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 RUBY_FAKEGEM_TASK_DOC=""






  1   2   3   4   5   6   7   >