[gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/

2015-11-12 Thread Aaron Swenson
commit: bd356d25de397a61ee68974160dfc19991c3fbd6
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Nov 12 19:36:27 2015 +
Commit: Aaron Swenson  gentoo  org>
CommitDate: Thu Nov 12 19:39:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd356d25

dev-db/postgresql: Add 9.5 Beta 2

Many bugs and issues reported by our users and contributors have been
fixed since the release of Beta1. These include:

* Many documentation fixes and improvements
* Rename PQsslAttributes() to PQsslAttributeNames()
* Pass extra data to pgworkers for context
* Fix other issues with parallel workers
* Fix multiple issues with BRIN indexes
* Fix problems with commit timestamps and replication
* Put back ssl_renegotiation_limit, set to 0

Package-Manager: portage-2.2.20.1

 dev-db/postgresql/Manifest|   1 +
 dev-db/postgresql/postgresql-9.5_beta2.ebuild | 426 ++
 2 files changed, 427 insertions(+)

diff --git a/dev-db/postgresql/Manifest b/dev-db/postgresql/Manifest
index 301b3e3..e1a9761 100644
--- a/dev-db/postgresql/Manifest
+++ b/dev-db/postgresql/Manifest
@@ -4,3 +4,4 @@ DIST postgresql-9.2.14.tar.bz2 16451398 SHA256 
54c20b3f320a48c38487f2711e98b2fa3
 DIST postgresql-9.3.10.tar.bz2 16995860 SHA256 
e5444f0f76aff98a251400b7c28bc361d65e3d72d8d6cb9bb5d8361a69541531 SHA512 
6b048fd1d0b38f72bab6ea70e40f10e7b805b94fc4c6fd865e0ec5e86da3c54043f20059dbf716d29eb4ca787dc50da561b1c7b48ab9f3096ebc651300855672
 WHIRLPOOL 
b8ea15a04d18535662832d444b556aedffaa8c954b52dcd42d548f53f93b8a9dbfbe9298f63c26d44c8b757e8c10d76711c303cd83c84d9c86bf23c2837e74ce
 DIST postgresql-9.4.5.tar.bz2 17660960 SHA256 
b87c50c66b6ea42a9712b5f6284794fabad0616e6ae420cf0f10523be6d94a39 SHA512 
01ad4b5a097efa70f74a9e96b764c32953a9df57d6bf81b893a1e552475f6aba0381580dcd1f27b2c443ce89fecc429eeeb0219af60a0b2f84798f76eb1757f5
 WHIRLPOOL 
8ea0e9a40cefa53568071f2137bac996898f9bd486cfb5cfcf8bb49590816833f37878f10caabffb9d3127e047f00c916b8830594a485ebe16fb9fe6fc834c95
 DIST postgresql-9.5beta1.tar.bz2 18291273 SHA256 
b53199e2667982de2039ad7e30467f67c5d7af678e69d6211de8ba1cac75c9f0 SHA512 
e8881939bdba346f3770102324d7b011c16e4529603280459e17587e06d933c9f3505b40c5cc82ed3f0410ffd88b5e2f18b2a3272aa4680c3798cf7a0fcc0374
 WHIRLPOOL 
0cf2c3fd40b2a8d482da5a1597abbc20d239f577c6472a03f8d9795a3e8ef142dfaad7a1eeebf2b2544e34712c243bbd9de63fb4045c4ce15dbde8ec74acb707
+DIST postgresql-9.5beta2.tar.bz2 18292888 SHA256 
031051cd50ebc4ab07da4e6587c59af6712b21979c486b1af0c31e97e1d9e703 SHA512 
a084e9106537896ea2bbba68d046fac542525c583af498481945f208d331f3357463e23a08aee5fd8cbcb4af3922b3bf363c3d76baa7e383cc9f1fae41842636
 WHIRLPOOL 
74c57debaa3f1166c28a889eb7c46200436cb69cf9de45a0b8af443972c57c1b66af90177985da91b00c5955e887252234e04b8666998074abd925984bf7007c

diff --git a/dev-db/postgresql/postgresql-9.5_beta2.ebuild 
b/dev-db/postgresql/postgresql-9.5_beta2.ebuild
new file mode 100644
index 000..cc14882
--- /dev/null
+++ b/dev-db/postgresql/postgresql-9.5_beta2.ebuild
@@ -0,0 +1,426 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python{2_7,3_4} )
+
+inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
+   systemd user versionator
+
+# This is a prerelease version, so no keywords please
+KEYWORDS=""
+#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+
+SLOT="$(get_version_component_range 1-2)"
+
+MY_PV=${PV/_/}
+
+S=${WORKDIR}/${PN}-${MY_PV}
+
+SRC_URI="mirror://postgresql/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2"
+
+LICENSE="POSTGRESQL GPL-2"
+DESCRIPTION="PostgreSQL RDBMS"
+HOMEPAGE="http://www.postgresql.org/;
+
+LINGUAS="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr
+zh_CN zh_TW"
+IUSE="doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp 
python
+ +readline selinux +server ssl static-libs tcl threads uuid xml zlib"
+
+for lingua in ${LINGUAS}; do
+   IUSE+=" linguas_${lingua}"
+done
+
+wanted_languages() {
+   local enable_langs
+
+   for lingua in ${LINGUAS} ; do
+   use linguas_${lingua} && enable_langs+="${lingua} "
+   done
+
+   echo -n ${enable_langs}
+}
+
+CDEPEND="
+>=app-eselect/eselect-postgresql-1.2.0
+sys-apps/less
+virtual/libintl
+kerberos? ( virtual/krb5 )
+ldap? ( net-nds/openldap )
+pam? ( virtual/pam )
+perl? ( >=dev-lang/perl-5.8 )
+python? ( ${PYTHON_DEPS} )
+readline? ( sys-libs/readline:0= )
+ssl? (
+   !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= )
+   libressl? ( dev-libs/libressl:= )
+)
+tcl? ( >=dev-lang/tcl-8:0= )
+xml? ( dev-libs/libxml2 dev-libs/libxslt )
+zlib? ( sys-libs/zlib )
+"
+
+# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no
+# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems,
+# the 

[gentoo-commits] repo/gentoo:master commit in: dev-util/jenkins-bin/

2015-11-12 Thread Manuel Rüger
commit: cbf72016b00d1456772eac4ee51374eb496adbb7
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 21:30:05 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 21:30:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbf72016

dev-util/jenkins-bin: Remove vulnerable

Package-Manager: portage-2.2.24

 dev-util/jenkins-bin/Manifest   |  3 --
 dev-util/jenkins-bin/jenkins-bin-1.625.1.ebuild | 47 -
 dev-util/jenkins-bin/jenkins-bin-1.636.ebuild   | 47 -
 dev-util/jenkins-bin/jenkins-bin-1.637.ebuild   | 47 -
 4 files changed, 144 deletions(-)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index f14702a..c2efb0f 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,5 +1,2 @@
-DIST jenkins-bin-1.625.1.war 62885582 SHA256 
e5134146d398f00712c19c69bc84a594509505eec2ba6930f8df41689debfbcb SHA512 
b05710ffe195476fa22ca2dd226148755310ee17527c0294a0251414bbb085860fd40ec485ce53a4446d36bfaa908f3a4b828e1772d590433120ec3668c239d9
 WHIRLPOOL 
df9dcfa58c2f166929e0c0e22f6daab95d4f42549509943459fbcad70349c9885673db27ee8262421989b69f0503f8e9805d9a889181ab71c6a98f0de5e44245
 DIST jenkins-bin-1.625.2.war 63305884 SHA256 
ea061e63dc2970d37d5eab13aefe93f7d983a94729a8e9a89576dfa3bfed01d4 SHA512 
61370041af2ad0dc5140c59fba6163695c48fda2352b6d02b2366bb3b53b131d62f3c0d7be47b75eaa86ef000bff1021f3480f5719a069db7804a2b9042087ef
 WHIRLPOOL 
c3e02ac4076cdbd1af99f8ed0bec5dc973b282cc289c4bae8f885700354b6ae71f7c57c36ed515c92caf863f3d0982ef90e79c507da04a775cfdb90e530fe470
-DIST jenkins-bin-1.636.war 63531046 SHA256 
7374cfecf603a9403affe2644c6fe9bc6b157fa67e38dfcb9bf6e9776df9dcc8 SHA512 
7ef5a7e72d0da79542ecf4ea6160d21ce256bf153aa8246fd8ea6658adff520f23c93a20977086a5729df634e008907bd52af352dc3cde9589ebcc6a2e11902c
 WHIRLPOOL 
08f040d7906a3667796c0c3292125d056df8a78ea19a406d3ca499447904b1a20ab0ca0acb3448dc33c926736ab27a88804b536482524db061949adbf7b6e740
-DIST jenkins-bin-1.637.war 63532267 SHA256 
cb29a5ab6a6682984372499fd1ebc02f004b21fb124132b0e5cf94bc5e18a289 SHA512 
6e0a0e798a8296116a34428c674ca03ca19cea1b4eaead8e516b36ff473c3eb73935963825b91848e63a5ab90839b3655ed42e1c46153a8c98ad3dcbe515b948
 WHIRLPOOL 
44cbcb00dda00f72af6f2fa314e5344d24e23e1ffc04e11fcc64bf4d4240ca176bbdf302c70fa0a35d1ade650adca85cc40244b8bcac96214288b2a52ff5e9c5
 DIST jenkins-bin-1.638.war 63586592 SHA256 
08d60e5f7db3cb4cb650a647dea60d4e1cb285a379bf3d3de0f62309854d7dcd SHA512 
1ec10ffe2e89ead95213493b17c2f48e166734f369979cf6b758b096fadebb820ea0502e2e2fe5127e67c60dee1b93a2ea78487761710e598eac5b7620dc28b4
 WHIRLPOOL 
a3a211adff1c7a35532c28aa2612ff1cabf9f06d229f71105fcde78e29b9eaa78662f032ab193f78570408e8a6986b742af731cb380fc73426f2060476831412

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.625.1.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.625.1.ebuild
deleted file mode 100644
index 49fa34a..000
--- a/dev-util/jenkins-bin/jenkins-bin-1.625.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit user systemd
-
-DESCRIPTION="Extensible continuous integration server"
-HOMEPAGE="http://jenkins-ci.org/;
-LICENSE="MIT"
-SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
-RESTRICT="mirror"
-SLOT="lts"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="media-fonts/dejavu
-   media-libs/freetype
-   !dev-util/jenkins-bin:0
-   >=virtual/jre-1.7.0"
-
-S=${WORKDIR}
-
-JENKINS_DIR=/var/lib/jenkins
-
-pkg_setup() {
-   enewgroup jenkins
-   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
-}
-
-src_install() {
-   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
-
-   insinto /opt/jenkins
-   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
-
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
-
-   newinitd "${FILESDIR}"/${PN}.init2 jenkins
-   newconfd "${FILESDIR}"/${PN}.confd jenkins
-
-   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
-
-   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
-}

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.636.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.636.ebuild
deleted file mode 100644
index 37fc084..000
--- a/dev-util/jenkins-bin/jenkins-bin-1.636.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit user systemd
-
-DESCRIPTION="Extensible continuous integration server"
-HOMEPAGE="http://jenkins-ci.org/;
-LICENSE="MIT"
-SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
-RESTRICT="mirror"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="media-fonts/dejavu
-   

[gentoo-commits] repo/gentoo:master commit in: dev-util/jenkins-bin/

2015-11-12 Thread Manuel Rüger
commit: cf042de7e487dad381a8f28fe4433ff7bbafa9b3
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 21:28:55 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 21:28:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf042de7

dev-util/jenkins-bin: Version bump

Package-Manager: portage-2.2.24

 dev-util/jenkins-bin/Manifest |  1 +
 dev-util/jenkins-bin/jenkins-bin-1.638.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index d87967c..42e16b7 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,3 +1,4 @@
 DIST jenkins-bin-1.625.1.war 62885582 SHA256 
e5134146d398f00712c19c69bc84a594509505eec2ba6930f8df41689debfbcb SHA512 
b05710ffe195476fa22ca2dd226148755310ee17527c0294a0251414bbb085860fd40ec485ce53a4446d36bfaa908f3a4b828e1772d590433120ec3668c239d9
 WHIRLPOOL 
df9dcfa58c2f166929e0c0e22f6daab95d4f42549509943459fbcad70349c9885673db27ee8262421989b69f0503f8e9805d9a889181ab71c6a98f0de5e44245
 DIST jenkins-bin-1.636.war 63531046 SHA256 
7374cfecf603a9403affe2644c6fe9bc6b157fa67e38dfcb9bf6e9776df9dcc8 SHA512 
7ef5a7e72d0da79542ecf4ea6160d21ce256bf153aa8246fd8ea6658adff520f23c93a20977086a5729df634e008907bd52af352dc3cde9589ebcc6a2e11902c
 WHIRLPOOL 
08f040d7906a3667796c0c3292125d056df8a78ea19a406d3ca499447904b1a20ab0ca0acb3448dc33c926736ab27a88804b536482524db061949adbf7b6e740
 DIST jenkins-bin-1.637.war 63532267 SHA256 
cb29a5ab6a6682984372499fd1ebc02f004b21fb124132b0e5cf94bc5e18a289 SHA512 
6e0a0e798a8296116a34428c674ca03ca19cea1b4eaead8e516b36ff473c3eb73935963825b91848e63a5ab90839b3655ed42e1c46153a8c98ad3dcbe515b948
 WHIRLPOOL 
44cbcb00dda00f72af6f2fa314e5344d24e23e1ffc04e11fcc64bf4d4240ca176bbdf302c70fa0a35d1ade650adca85cc40244b8bcac96214288b2a52ff5e9c5
+DIST jenkins-bin-1.638.war 63586592 SHA256 
08d60e5f7db3cb4cb650a647dea60d4e1cb285a379bf3d3de0f62309854d7dcd SHA512 
1ec10ffe2e89ead95213493b17c2f48e166734f369979cf6b758b096fadebb820ea0502e2e2fe5127e67c60dee1b93a2ea78487761710e598eac5b7620dc28b4
 WHIRLPOOL 
a3a211adff1c7a35532c28aa2612ff1cabf9f06d229f71105fcde78e29b9eaa78662f032ab193f78570408e8a6986b742af731cb380fc73426f2060476831412

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.638.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.638.ebuild
new file mode 100644
index 000..37fc084
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-1.638.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="http://jenkins-ci.org/;
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
+RESTRICT="mirror"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:lts
+   >=virtual/jre-1.7.0"
+
+S=${WORKDIR}
+
+JENKINS_DIR=/var/lib/jenkins
+
+pkg_setup() {
+   enewgroup jenkins
+   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
+}
+
+src_install() {
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}.init2 jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/jenkins-bin/

2015-11-12 Thread Manuel Rüger
commit: 227b97abbaa0c7cc323830a8e1e8825ea258c5e1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 21:29:39 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 21:29:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=227b97ab

dev-util/jenkins-bin: Version bump

Package-Manager: portage-2.2.24

 dev-util/jenkins-bin/Manifest   |  1 +
 dev-util/jenkins-bin/jenkins-bin-1.625.2.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index 42e16b7..f14702a 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,4 +1,5 @@
 DIST jenkins-bin-1.625.1.war 62885582 SHA256 
e5134146d398f00712c19c69bc84a594509505eec2ba6930f8df41689debfbcb SHA512 
b05710ffe195476fa22ca2dd226148755310ee17527c0294a0251414bbb085860fd40ec485ce53a4446d36bfaa908f3a4b828e1772d590433120ec3668c239d9
 WHIRLPOOL 
df9dcfa58c2f166929e0c0e22f6daab95d4f42549509943459fbcad70349c9885673db27ee8262421989b69f0503f8e9805d9a889181ab71c6a98f0de5e44245
+DIST jenkins-bin-1.625.2.war 63305884 SHA256 
ea061e63dc2970d37d5eab13aefe93f7d983a94729a8e9a89576dfa3bfed01d4 SHA512 
61370041af2ad0dc5140c59fba6163695c48fda2352b6d02b2366bb3b53b131d62f3c0d7be47b75eaa86ef000bff1021f3480f5719a069db7804a2b9042087ef
 WHIRLPOOL 
c3e02ac4076cdbd1af99f8ed0bec5dc973b282cc289c4bae8f885700354b6ae71f7c57c36ed515c92caf863f3d0982ef90e79c507da04a775cfdb90e530fe470
 DIST jenkins-bin-1.636.war 63531046 SHA256 
7374cfecf603a9403affe2644c6fe9bc6b157fa67e38dfcb9bf6e9776df9dcc8 SHA512 
7ef5a7e72d0da79542ecf4ea6160d21ce256bf153aa8246fd8ea6658adff520f23c93a20977086a5729df634e008907bd52af352dc3cde9589ebcc6a2e11902c
 WHIRLPOOL 
08f040d7906a3667796c0c3292125d056df8a78ea19a406d3ca499447904b1a20ab0ca0acb3448dc33c926736ab27a88804b536482524db061949adbf7b6e740
 DIST jenkins-bin-1.637.war 63532267 SHA256 
cb29a5ab6a6682984372499fd1ebc02f004b21fb124132b0e5cf94bc5e18a289 SHA512 
6e0a0e798a8296116a34428c674ca03ca19cea1b4eaead8e516b36ff473c3eb73935963825b91848e63a5ab90839b3655ed42e1c46153a8c98ad3dcbe515b948
 WHIRLPOOL 
44cbcb00dda00f72af6f2fa314e5344d24e23e1ffc04e11fcc64bf4d4240ca176bbdf302c70fa0a35d1ade650adca85cc40244b8bcac96214288b2a52ff5e9c5
 DIST jenkins-bin-1.638.war 63586592 SHA256 
08d60e5f7db3cb4cb650a647dea60d4e1cb285a379bf3d3de0f62309854d7dcd SHA512 
1ec10ffe2e89ead95213493b17c2f48e166734f369979cf6b758b096fadebb820ea0502e2e2fe5127e67c60dee1b93a2ea78487761710e598eac5b7620dc28b4
 WHIRLPOOL 
a3a211adff1c7a35532c28aa2612ff1cabf9f06d229f71105fcde78e29b9eaa78662f032ab193f78570408e8a6986b742af731cb380fc73426f2060476831412

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.625.2.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.625.2.ebuild
new file mode 100644
index 000..49fa34a
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-1.625.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="http://jenkins-ci.org/;
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
+RESTRICT="mirror"
+SLOT="lts"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:0
+   >=virtual/jre-1.7.0"
+
+S=${WORKDIR}
+
+JENKINS_DIR=/var/lib/jenkins
+
+pkg_setup() {
+   enewgroup jenkins
+   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
+}
+
+src_install() {
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}.init2 jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



[gentoo-commits] repo/gentoo:master commit in: x11-apps/xclipboard/

2015-11-12 Thread Manuel Rüger
commit: 67c6a0f88a7494fd83d4733f24c0685bc8156ebf
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 22:19:02 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 22:19:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67c6a0f8

x11-apps/xclipboard: Remove old

Package-Manager: portage-2.2.24

 x11-apps/xclipboard/Manifest|  1 -
 x11-apps/xclipboard/xclipboard-1.1.2.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/x11-apps/xclipboard/Manifest b/x11-apps/xclipboard/Manifest
index ae3f2ba..995766e 100644
--- a/x11-apps/xclipboard/Manifest
+++ b/x11-apps/xclipboard/Manifest
@@ -1,2 +1 @@
-DIST xclipboard-1.1.2.tar.bz2 124971 SHA256 
5f3b12da1eae4ed24883d8a5633b6150a0291deede818aeb5c9e827599b6429e SHA512 
7e1dd40aec91caa7481c0ca0422f5b22c0bfddf8a264247c806393f3d567dde0c795439b05ba19bfa628d6dd323b851ae363f37492d481a1443988e2b6c114cf
 WHIRLPOOL 
f72104c02e4bafebf1f67d53d15a608c981a322acb04338bea1feb7a6dd6983c9740327b2a519e1b8b678dbe35d8bb9a28bc26637b7b42d7787af99896ac65d1
 DIST xclipboard-1.1.3.tar.bz2 132406 SHA256 
9c0e0a1f4f1d49f73c6cf3ccd27b5ca0e18afc63679f1a1ee466b1d82446ebb5 SHA512 
84a51d11851756422eb23e67b2721d2bcb2ac248fa32c0837423b6169144dff76717c22611ad3c93633e09a44dc70c847a2470d3988eff0b24d77e252a4e147e
 WHIRLPOOL 
69741b7c43075dadb50a89d094afa13f24a14ac17fbc93232899739a7f97a829f1992b08600d99f967c2246c409b0b8c37c311f211c119c8c77c170ec3e31dfb

diff --git a/x11-apps/xclipboard/xclipboard-1.1.2.ebuild 
b/x11-apps/xclipboard/xclipboard-1.1.2.ebuild
deleted file mode 100644
index 00843b3..000
--- a/x11-apps/xclipboard/xclipboard-1.1.2.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit xorg-2
-
-DESCRIPTION="interchange between cut buffer and selection"
-KEYWORDS="amd64 arm hppa ~mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-RDEPEND="x11-libs/libXaw
-   x11-libs/libxkbfile
-   x11-libs/libXmu
-   >=x11-libs/libXt-1.1
-   x11-libs/libX11"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xplanet/

2015-11-12 Thread Manuel Rüger
commit: 12290dff3e82ce831ec857b4116e2049dd64a5b6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 22:20:23 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 22:20:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12290dff

x11-misc/xplanet: Remove old

Package-Manager: portage-2.2.24

 x11-misc/xplanet/Manifest |  1 -
 x11-misc/xplanet/xplanet-1.2.2.ebuild | 66 ---
 2 files changed, 67 deletions(-)

diff --git a/x11-misc/xplanet/Manifest b/x11-misc/xplanet/Manifest
index a78d4c3..d52d658 100644
--- a/x11-misc/xplanet/Manifest
+++ b/x11-misc/xplanet/Manifest
@@ -1,2 +1 @@
-DIST xplanet-1.2.2.tar.gz 1217169 SHA256 
6f8f8c59b4d5d1dd5018ed4b1367e55f6296f0253596b7705f714a9b3ccdd3ca SHA512 
1a5dbad62b79adce28239615e3a2fd00300fca085f9400f2735c5dc015f06c63e182ed0d78399324bf6049374f2c034e6026a4054f26c34e11024b956695a53f
 WHIRLPOOL 
155f436b339e345dadabbf618d79ee6ee39ea039d51c245523e7e2fdd3c50e5148c10f25c75c1b287558ada1baf2ddbbf5a3a67deec543dcaa6239d47a6b93c1
 DIST xplanet-1.3.0.tar.gz 1227385 SHA256 
44fb742bb93e5661ea8b11ccabcc12896693e051f3dd5083c9227224c416b442 SHA512 
c9f0db21c457d0702f8b1fb6d632838f45e80ea45b9cade80d6ab0ae956fdca03cfeed9582548c69b349a354afc27308309656d7e06ac46bc416c3e1038f8efd
 WHIRLPOOL 
e4fe013eeef4868d28f8a53c194f54865dd4cf29137936eb609352fba4a3481e0a6db9664944cb67d9e7896b150b5e640c95136e6b9f33dc4810591316d0371a

diff --git a/x11-misc/xplanet/xplanet-1.2.2.ebuild 
b/x11-misc/xplanet/xplanet-1.2.2.ebuild
deleted file mode 100644
index de8744f..000
--- a/x11-misc/xplanet/xplanet-1.2.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-DESCRIPTION="Render images of the earth into the X root window"
-HOMEPAGE="http://xplanet.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86"
-IUSE="gif jpeg X truetype tiff png"
-
-RDEPEND="
-   X? (
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXScrnSaver
-   x11-libs/libXt )
-   gif? ( media-libs/giflib )
-   jpeg? ( virtual/jpeg )
-   png? (
-   media-libs/libpng:0
-   media-libs/netpbm )
-   tiff? ( media-libs/tiff:0 )
-   truetype? (
-   media-libs/freetype:2
-   x11-libs/pango )"
-DEPEND="${RDEPEND}
-   X? (
-   x11-proto/xproto
-   x11-proto/scrnsaverproto )"
-
-src_configure() {
-   local myconf
-
-   use X \
-   && myconf="${myconf} --with-x --with-xscreensaver" \
-   || myconf="${myconf} --with-x=no --with-xscreensaver=no"
-
-   use gif \
-   && myconf="${myconf} --with-gif" \
-   || myconf="${myconf} --with-gif=no"
-
-   use jpeg \
-   && myconf="${myconf} --with-jpeg" \
-   || myconf="${myconf} --with-jpeg=no"
-
-   use tiff \
-   && myconf="${myconf} --with-tiff" \
-   || myconf="${myconf} --with-tiff=no"
-
-   use png \
-   && myconf="${myconf} --with-png --with-pnm" \
-   || myconf="${myconf} --with-png=no --with-pnm=no"
-
-   use truetype \
-   && myconf="${myconf} --with-freetype --with-pango" \
-   || myconf="${myconf} --with-freetype=no --with-pango=no"
-
-   econf \
-   --with-cspice=no \
-   ${myconf}
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/recaptcha/

2015-11-12 Thread Michael Orlitzky
commit: 2c26177df6dab4482ac8f772ffa6a8d1067a6e02
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Thu Nov 12 20:03:29 2015 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Thu Nov 12 20:03:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c26177d

dev-php/recaptcha: new package, a PHP client library for Google's reCAPTCHA.

Package-Manager: portage-2.2.20.1

 dev-php/recaptcha/Manifest   |  1 +
 dev-php/recaptcha/metadata.xml   |  8 
 dev-php/recaptcha/recaptcha-1.1.2.ebuild | 35 
 3 files changed, 44 insertions(+)

diff --git a/dev-php/recaptcha/Manifest b/dev-php/recaptcha/Manifest
new file mode 100644
index 000..476cd99
--- /dev/null
+++ b/dev-php/recaptcha/Manifest
@@ -0,0 +1 @@
+DIST recaptcha-1.1.2.tar.gz 12624 SHA256 
1a319620ee05706cc7c8cb6a6a2e83271b3f74788eda26c26ccb0ae1fa2e1612 SHA512 
e9d24aec9a51e14a2122e072adf35b96acb490a6f255abc0835bbc9bc2946bc0aceb92ba270344c83743692fc4a673271ba7e6fa7f32f62132c960a1a5cc4ab5
 WHIRLPOOL 
e090ae43fe6702d97e3667aab8d0e3c68d3fba13838b0e7f13be86f2304949cf8027e49819f6c1f09345b923106e6f6ba2ee9a72ea3ea77d4935a56e66117c84

diff --git a/dev-php/recaptcha/metadata.xml b/dev-php/recaptcha/metadata.xml
new file mode 100644
index 000..df7fdbe
--- /dev/null
+++ b/dev-php/recaptcha/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+m...@gentoo.org
+Michael Orlitzky
+  
+

diff --git a/dev-php/recaptcha/recaptcha-1.1.2.ebuild 
b/dev-php/recaptcha/recaptcha-1.1.2.ebuild
new file mode 100644
index 000..67be64d
--- /dev/null
+++ b/dev-php/recaptcha/recaptcha-1.1.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="PHP client library for Google's reCAPTCHA service"
+HOMEPAGE="https://github.com/google/recaptcha;
+SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+DEPEND="test? ( dev-php/phpunit )"
+RDEPEND="dev-lang/php"
+
+src_install(){
+   insinto "/usr/share/php/${PN}"
+   doins -r src/autoload.php src/ReCaptcha
+   dodoc CONTRIBUTING.md README.md
+   use examples && dodoc -r examples
+}
+
+src_test(){
+   phpunit || die "test suite failed"
+}
+
+pkg_postinst(){
+   elog "${PN} has been installed in /usr/share/php/${PN}/."
+   elog "To use it in a script, require('${PN}/autoload.php'),"
+   elog "and then use the ${PN} class normally. Most of the examples in"
+   elog "the documentation should work without further modification."
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/

2015-11-12 Thread Lars Wendler
commit: c2b18e1c597749ca37c496044dbb86b87cf3bc5e
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Nov 12 21:51:10 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Nov 12 21:52:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b18e1c

media-libs/libpng: Security bump.

See http://sourceforge.net/p/png-mng/mailman/message/34615043/

Package-Manager: portage-2.2.24
Signed-off-by: Lars Wendler  gentoo.org>

 media-libs/libpng/Manifest |  5 +++
 media-libs/libpng/libpng-1.2.54.ebuild | 43 
 media-libs/libpng/libpng-1.5.24.ebuild | 60 ++
 media-libs/libpng/libpng-1.6.19.ebuild | 43 
 4 files changed, 151 insertions(+)

diff --git a/media-libs/libpng/Manifest b/media-libs/libpng/Manifest
index 6d78682..0ca0476 100644
--- a/media-libs/libpng/Manifest
+++ b/media-libs/libpng/Manifest
@@ -1,13 +1,18 @@
 DIST libpng-1.2.51.tar.xz 562940 SHA256 
c7d7b813b022afd70474f78bcc3655c7bb54edbf28dd4652e5521cbb6da56d4a SHA512 
63ba0df5eff78b254d53f6cfd4075d3ea93ee9445e37678fc7d29fa116137b2a7c441eda23851638f9185166e408f42c51d0678c466c8376a1de356c7db760f2
 WHIRLPOOL 
d829b07e950c64a8de37591ac5d40211f8e762feff8ff6f98db35714293997304b3eb063ea69a87064e6c66530a4fa2531dadcb1a0bb412066c558a5ff2f679c
 DIST libpng-1.2.52.tar.xz 566088 SHA256 
d4fb0fbf14057ad6d0319034188fc2aecddb493da8e3031b7b072ed28f510ec0 SHA512 
5890daec6aaf619e3eab32ee8105182f220ffce9e945a5129148ff6918d3749ddb3e9f60c25d6e8457184d5a2622b07d154640d13afb92f5ce9c48873e956a42
 WHIRLPOOL 
dfa6870e7d5e4ca05ba74bd9cd599bcbc301046c7bde7042cd2d1ec4c706f4754dd40a10bd3d753ab169cc3365152a6c1f0f8fa33bcd0e0812019c670c49194a
 DIST libpng-1.2.53.tar.xz 577220 SHA256 
b45e49f689e7451bd576569e6a344f7e0d11c02ecbb797f4da0e431526765c0a SHA512 
3fec7c0d673ef4147828aedb8e8ca3cbd270292d8d716fc832d0c546c5d7314ac594af337416f112eaf214aad19d6eeaa25901150880c003b92cdff58d001fe7
 WHIRLPOOL 
cb63625e11f88147f3e22af20d612b4def068a469f683a0507d0b584a75095b86393eea305599cdb548ddf8cc1975aa9e48221bd6305d20d1e47376dd70c8715
+DIST libpng-1.2.54.tar.xz 571448 SHA256 
cf85516482780f2bc2c5b5073902f12b1519019d47bf473326c2018bdff1d272 SHA512 
3fde161bae1c61c0c099344518a59a312ac5bcd6063d7d01be156fd4e048fdaafed8a27e10bf2750d4ef678389e2782137c9e6540b7fd0859b820bb8d9443497
 WHIRLPOOL 
fd985ebc9982e20ec37b9a8889890406a334005648f90e429e71eae02c7308c8d64ff0f34e5a31fc817521d44a45f0740bc221bf73c00ade1ef2e2974fd22b9d
 DIST libpng-1.5.21-apng.patch.gz 9511 SHA256 
8a4fffa885f1a1a34a7bdcaa2d1b8f1e025f6e1cf9c5bf17224672d2a6948d94 SHA512 
b3369d97b19ebeae06e1f2874c2a3cc8f42421fb4be76f913be359630c5483c31cad6643f7c0a4edd3a952406d6acbffdd4a6cbfc9a09df07094bf6c6d9fbe15
 WHIRLPOOL 
5403fef0c1233c2e82785690d619f0e917d98a0056058064ddba446ed9987d05a4fe608b4883196f035f4b2de2650d858906014d13e5aed4d275d9e5e42ffb3d
 DIST libpng-1.5.21.tar.xz 734356 SHA256 
b5151c64bc70489997790a492e1094d106be90a22b2958c43eee25a70dffdba7 SHA512 
dd27d250271b72c33b9ea6282b549ad2a7a638334f97a218a00cde3136d97faf37544e304f84b966a064f9117e4681dde4f888ad63ecab41473d176066f3f5b4
 WHIRLPOOL 
4768c55e4d62a32d490b29285262f2dfb160c7a35afdd0e8f8d14a70348b4020c6f57dd97a9015b912c49c3dd73b660e0905c74df3674c0549fc3add5358899e
 DIST libpng-1.5.23-apng.patch.gz 9589 SHA256 
946036ca1331275358489590f6046201c0a7dce363aa1a302cb251b73c3a4be0 SHA512 
8b65a96ae1c5e6ceb6c610b8e5b9df03e163f5c20718893804392bfecb294677b543dd422147d3b1e5abf27d040d8791ddd3aec3de4ac40588abd3c0660d
 WHIRLPOOL 
1c773a99567189fc0d400facec7817012e1c019081ab0b9093ef868a67a4d7c0b4b6b51b8aa5c07b4f96b64baa57f9a089fd39be7c7a9b9c1007c180d8e9d5ac
 DIST libpng-1.5.23.tar.xz 743548 SHA256 
1f2dc3278e9d0c3aba618f9d585c24d744d65cad76cf799c9405085033e41f12 SHA512 
c367d6366359c635b2a7c2692a31bbd98bcd6a700995873aeade041a9a0fa411001feb756a3c3643dbfca92011a2724e44a76996963acf34153d7f0039f592c9
 WHIRLPOOL 
85e1b289d56d7d6a467b980a044547d7072f409c2aa964dc7f0f0158f4dec9d1811a42b275ca61b587ded7f62dd1d507fa1c51b00ec2d830875e3ce236c9dbdb
+DIST libpng-1.5.24-apng.patch.gz 10318 SHA256 
7493734793803598a57f83274258118e9a31f6ec9a20b83a4d851cf359ed966a SHA512 
647bb8a780947b72c7aad1ffc2b2114ed43f22e6c3885621c83694875bcec4516e49b00856fabffd568bfed90748e96117d42e3817e83a25fcb25089e32225ea
 WHIRLPOOL 
38e6616930865bdaf8fa1ecf35bb8af8916f8bc3a9af9e9621455e378d7913b393f8ab3dd823bcc811974021dfdc24f5da95bfb14c3249cf67dc31fe037f80af
+DIST libpng-1.5.24.tar.xz 749016 SHA256 
b92e3474f3136b5d9443ba92822154ebc2573fc6feead90d364ee9ebc3741be2 SHA512 
d6faaba4844de0fbb0786e141265a17128387dd73dfdb5cbd1ab2915430578cd73f3f5efadcaaab966429f1a4908568b60829db63b00aadb320bf0f4a8ff9e78
 WHIRLPOOL 
14631ce41756faf2ec00315d7279a39fd06b488288db24a1d81345ec484a7289d187a579823b1be471e975041d5a1b4f0fbdc763a1a64cfdc29dd4ca71cc789a
 DIST libpng-1.6.16-apng.patch.gz 9552 SHA256 
07eb4825f6787283aa2c4f77b6fd421875ec7982e2a5b1705c3bea0cdccf5c2d SHA512 

[gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/

2015-11-12 Thread Lars Wendler
commit: 52d13423182cdba6e02d99c1cf7f35c61adaf068
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Nov 12 21:52:24 2015 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Nov 12 21:52:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d13423

media-libs/libpng: Removed old.

Package-Manager: portage-2.2.24
Signed-off-by: Lars Wendler  gentoo.org>

 media-libs/libpng/Manifest |  7 
 media-libs/libpng/libpng-1.2.53.ebuild | 43 
 media-libs/libpng/libpng-1.5.23.ebuild | 60 --
 media-libs/libpng/libpng-1.6.16.ebuild | 43 
 media-libs/libpng/libpng-1.6.17.ebuild | 43 
 5 files changed, 196 deletions(-)

diff --git a/media-libs/libpng/Manifest b/media-libs/libpng/Manifest
index 0ca0476..7b2ef4b 100644
--- a/media-libs/libpng/Manifest
+++ b/media-libs/libpng/Manifest
@@ -1,17 +1,10 @@
 DIST libpng-1.2.51.tar.xz 562940 SHA256 
c7d7b813b022afd70474f78bcc3655c7bb54edbf28dd4652e5521cbb6da56d4a SHA512 
63ba0df5eff78b254d53f6cfd4075d3ea93ee9445e37678fc7d29fa116137b2a7c441eda23851638f9185166e408f42c51d0678c466c8376a1de356c7db760f2
 WHIRLPOOL 
d829b07e950c64a8de37591ac5d40211f8e762feff8ff6f98db35714293997304b3eb063ea69a87064e6c66530a4fa2531dadcb1a0bb412066c558a5ff2f679c
 DIST libpng-1.2.52.tar.xz 566088 SHA256 
d4fb0fbf14057ad6d0319034188fc2aecddb493da8e3031b7b072ed28f510ec0 SHA512 
5890daec6aaf619e3eab32ee8105182f220ffce9e945a5129148ff6918d3749ddb3e9f60c25d6e8457184d5a2622b07d154640d13afb92f5ce9c48873e956a42
 WHIRLPOOL 
dfa6870e7d5e4ca05ba74bd9cd599bcbc301046c7bde7042cd2d1ec4c706f4754dd40a10bd3d753ab169cc3365152a6c1f0f8fa33bcd0e0812019c670c49194a
-DIST libpng-1.2.53.tar.xz 577220 SHA256 
b45e49f689e7451bd576569e6a344f7e0d11c02ecbb797f4da0e431526765c0a SHA512 
3fec7c0d673ef4147828aedb8e8ca3cbd270292d8d716fc832d0c546c5d7314ac594af337416f112eaf214aad19d6eeaa25901150880c003b92cdff58d001fe7
 WHIRLPOOL 
cb63625e11f88147f3e22af20d612b4def068a469f683a0507d0b584a75095b86393eea305599cdb548ddf8cc1975aa9e48221bd6305d20d1e47376dd70c8715
 DIST libpng-1.2.54.tar.xz 571448 SHA256 
cf85516482780f2bc2c5b5073902f12b1519019d47bf473326c2018bdff1d272 SHA512 
3fde161bae1c61c0c099344518a59a312ac5bcd6063d7d01be156fd4e048fdaafed8a27e10bf2750d4ef678389e2782137c9e6540b7fd0859b820bb8d9443497
 WHIRLPOOL 
fd985ebc9982e20ec37b9a8889890406a334005648f90e429e71eae02c7308c8d64ff0f34e5a31fc817521d44a45f0740bc221bf73c00ade1ef2e2974fd22b9d
 DIST libpng-1.5.21-apng.patch.gz 9511 SHA256 
8a4fffa885f1a1a34a7bdcaa2d1b8f1e025f6e1cf9c5bf17224672d2a6948d94 SHA512 
b3369d97b19ebeae06e1f2874c2a3cc8f42421fb4be76f913be359630c5483c31cad6643f7c0a4edd3a952406d6acbffdd4a6cbfc9a09df07094bf6c6d9fbe15
 WHIRLPOOL 
5403fef0c1233c2e82785690d619f0e917d98a0056058064ddba446ed9987d05a4fe608b4883196f035f4b2de2650d858906014d13e5aed4d275d9e5e42ffb3d
 DIST libpng-1.5.21.tar.xz 734356 SHA256 
b5151c64bc70489997790a492e1094d106be90a22b2958c43eee25a70dffdba7 SHA512 
dd27d250271b72c33b9ea6282b549ad2a7a638334f97a218a00cde3136d97faf37544e304f84b966a064f9117e4681dde4f888ad63ecab41473d176066f3f5b4
 WHIRLPOOL 
4768c55e4d62a32d490b29285262f2dfb160c7a35afdd0e8f8d14a70348b4020c6f57dd97a9015b912c49c3dd73b660e0905c74df3674c0549fc3add5358899e
-DIST libpng-1.5.23-apng.patch.gz 9589 SHA256 
946036ca1331275358489590f6046201c0a7dce363aa1a302cb251b73c3a4be0 SHA512 
8b65a96ae1c5e6ceb6c610b8e5b9df03e163f5c20718893804392bfecb294677b543dd422147d3b1e5abf27d040d8791ddd3aec3de4ac40588abd3c0660d
 WHIRLPOOL 
1c773a99567189fc0d400facec7817012e1c019081ab0b9093ef868a67a4d7c0b4b6b51b8aa5c07b4f96b64baa57f9a089fd39be7c7a9b9c1007c180d8e9d5ac
-DIST libpng-1.5.23.tar.xz 743548 SHA256 
1f2dc3278e9d0c3aba618f9d585c24d744d65cad76cf799c9405085033e41f12 SHA512 
c367d6366359c635b2a7c2692a31bbd98bcd6a700995873aeade041a9a0fa411001feb756a3c3643dbfca92011a2724e44a76996963acf34153d7f0039f592c9
 WHIRLPOOL 
85e1b289d56d7d6a467b980a044547d7072f409c2aa964dc7f0f0158f4dec9d1811a42b275ca61b587ded7f62dd1d507fa1c51b00ec2d830875e3ce236c9dbdb
 DIST libpng-1.5.24-apng.patch.gz 10318 SHA256 
7493734793803598a57f83274258118e9a31f6ec9a20b83a4d851cf359ed966a SHA512 
647bb8a780947b72c7aad1ffc2b2114ed43f22e6c3885621c83694875bcec4516e49b00856fabffd568bfed90748e96117d42e3817e83a25fcb25089e32225ea
 WHIRLPOOL 
38e6616930865bdaf8fa1ecf35bb8af8916f8bc3a9af9e9621455e378d7913b393f8ab3dd823bcc811974021dfdc24f5da95bfb14c3249cf67dc31fe037f80af
 DIST libpng-1.5.24.tar.xz 749016 SHA256 
b92e3474f3136b5d9443ba92822154ebc2573fc6feead90d364ee9ebc3741be2 SHA512 
d6faaba4844de0fbb0786e141265a17128387dd73dfdb5cbd1ab2915430578cd73f3f5efadcaaab966429f1a4908568b60829db63b00aadb320bf0f4a8ff9e78
 WHIRLPOOL 
14631ce41756faf2ec00315d7279a39fd06b488288db24a1d81345ec484a7289d187a579823b1be471e975041d5a1b4f0fbdc763a1a64cfdc29dd4ca71cc789a
-DIST libpng-1.6.16-apng.patch.gz 9552 SHA256 
07eb4825f6787283aa2c4f77b6fd421875ec7982e2a5b1705c3bea0cdccf5c2d SHA512 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/pcsc-tools/

2015-11-12 Thread Manuel Rüger
commit: 0c13728d556021479df41aafa8992c0eeeb9e7c9
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 22:10:20 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 22:10:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c13728d

sys-apps/pcsc-tools: Version bump

Package-Manager: portage-2.2.24

 sys-apps/pcsc-tools/Manifest |  1 +
 sys-apps/pcsc-tools/pcsc-tools-1.4.25.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/sys-apps/pcsc-tools/Manifest b/sys-apps/pcsc-tools/Manifest
index 691ea0b..c893733 100644
--- a/sys-apps/pcsc-tools/Manifest
+++ b/sys-apps/pcsc-tools/Manifest
@@ -1,3 +1,4 @@
 DIST pcsc-tools-1.4.22.tar.gz 109458 SHA256 
615592dd56627bd0ff3650608bb7eefe3e9f43cc18ca2d805ebf0bf74d30f307 SHA512 
cb4bea7bd75e98fda5ff44e3fd680a479cddb3edd6c632951346d2a87329386b55203dc3f2f29d484c23ee4c6cb8f741aaa6b94dd16095b86c7f88f057015cf5
 WHIRLPOOL 
2f4141034f013970bd43050c70d24e9ab7ee076a29d86d939cc0dc250b4431b6515f04a3e21f179e015c6d80312a70e07101732085e84bf48f5645e7de306c08
 DIST pcsc-tools-1.4.23.tar.gz 114495 SHA256 
69ca7bb6ee23ef99e2696451f2f56072dd74adcc43272d89fd757ac8f7de4fe2 SHA512 
b94fd467ded600f6ad47510225d325635a227f2bbbe8dbb191fee31a3ccaff951d0ea4a7184765912f00dbf4725b5fcbc478b769fc0dd4369eab0a8c1d627f93
 WHIRLPOOL 
7ca4c25af05d4f8bebe5a73a3d4e9409d882c42816a25139d218c85ff2464382637ea2049bf176b73ba65a7d483075f23c2087b4a28bf9b38c0102538ca07467
 DIST pcsc-tools-1.4.24.tar.gz 180792 SHA256 
176ee6f791cd7437e05d921e5041a1f2265116a5a0d1079a5b8321f2cf541682 SHA512 
d333b5e9988d93b1cd889ddfe7271b6cae0713422aa4884d5030f731d1f9de620b53d0857597d4e26508cd8f4db7e94ace07968b34a0c6392c358c38ed1725ae
 WHIRLPOOL 
fec763a91efaa95512f9c7b3d038bb288b21ef58e48c67020332e866330d012de24c1beec6e7fdeb383e08252274eada452c66658e9ec76ca3ad88e267a349b8
+DIST pcsc-tools-1.4.25.tar.gz 183540 SHA256 
a9c715224e5ea293721e0bc4e1deb4a6ee73ca19f16679896ec3a47591f00c47 SHA512 
ad8bf02609a57e338de5cadd0aef09f13c90205888d749410340cf8b36eecc82c6a529e4730b9197c8e8a4f89084dca7068981a7dc5ad47612dfef3a8d4e141d
 WHIRLPOOL 
9355fc87c33585fec44c42a5bc6de8e0a033c623fb158350b7ea22545d3d37c3dfc9c59ccf207b74513982820e99134db3c1df4c165054eed303ccfee0e62f76

diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.4.25.ebuild 
b/sys-apps/pcsc-tools/pcsc-tools-1.4.25.ebuild
new file mode 100644
index 000..5999d20
--- /dev/null
+++ b/sys-apps/pcsc-tools/pcsc-tools-1.4.25.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils fdo-mime multilib toolchain-funcs
+
+DESCRIPTION="PC/SC Architecture smartcard tools"
+HOMEPAGE="http://ludovic.rousseau.free.fr/softwares/pcsc-tools/;
+SRC_URI="http://ludovic.rousseau.free.fr/softwares/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE="gtk network-cron"
+
+RDEPEND=">=sys-apps/pcsc-lite-1.4.14"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${RDEPEND}
+   dev-perl/pcsc-perl
+   gtk? ( dev-perl/gtk2-perl )"
+
+src_prepare() {
+   sed -i -e 's:-Wall -O2:$(CFLAGS):g' Makefile
+}
+
+src_compile() {
+   # explicitly only build the pcsc_scan application, or the man
+   # pages will be gzipped first, and then unpacked.
+   emake pcsc_scan CC=$(tc-getCC)
+}
+
+src_install() {
+   # install manually, makes it much easier since the Makefile
+   # requires fiddling with
+   dobin ATR_analysis scriptor pcsc_scan
+   doman pcsc_scan.1 scriptor.1p ATR_analysis.1p
+
+   dodoc README Changelog
+
+   if use gtk; then
+   domenu gscriptor.desktop
+   dobin gscriptor
+   doman gscriptor.1p
+   fi
+
+   if use network-cron ; then
+   exeinto /etc/cron.monthly
+   newexe "${FILESDIR}"/smartcard.cron update-smartcard_list
+   fi
+
+   insinto /usr/share/pcsc
+   doins smartcard_list.txt
+}
+
+pkg_postinst() {
+   use gtk && fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   fdo-mime_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/python/

2015-11-12 Thread Michał Górny
commit: 6630a4741ae49a4db9104fe057c24ecf8e118542
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 12 22:21:43 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 12 22:21:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6630a474

dev-lang/python: Copy the 2.7 EPYTHON fix to older versions

 dev-lang/python/python-2.7.10-r2.ebuild | 2 +-
 dev-lang/python/python-2.7.10.ebuild| 2 +-
 dev-lang/python/python-2.7.9-r1.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lang/python/python-2.7.10-r2.ebuild 
b/dev-lang/python/python-2.7.10-r2.ebuild
index 2bb8c27..0a4bd58 100644
--- a/dev-lang/python/python-2.7.10-r2.ebuild
+++ b/dev-lang/python/python-2.7.10-r2.ebuild
@@ -316,7 +316,7 @@ src_install() {
vars=( PYTHON "${vars[@]}" )
fi
 
-   python_export "python${PYVER}" "${vars[@]}"
+   python_export "python${SLOT}" "${vars[@]}"
echo "EPYTHON='${EPYTHON}'" > epython.py || die
python_domodule epython.py
 }

diff --git a/dev-lang/python/python-2.7.10.ebuild 
b/dev-lang/python/python-2.7.10.ebuild
index 8f7a676..8c9aafc 100644
--- a/dev-lang/python/python-2.7.10.ebuild
+++ b/dev-lang/python/python-2.7.10.ebuild
@@ -324,7 +324,7 @@ src_install() {
vars=( PYTHON "${vars[@]}" )
fi
 
-   python_export "python${PYVER}" "${vars[@]}"
+   python_export "python${SLOT}" "${vars[@]}"
echo "EPYTHON='${EPYTHON}'" > epython.py || die
python_domodule epython.py
 }

diff --git a/dev-lang/python/python-2.7.9-r1.ebuild 
b/dev-lang/python/python-2.7.9-r1.ebuild
index 1e9eb6a..a8a332b 100644
--- a/dev-lang/python/python-2.7.9-r1.ebuild
+++ b/dev-lang/python/python-2.7.9-r1.ebuild
@@ -325,7 +325,7 @@ src_install() {
vars=( PYTHON "${vars[@]}" )
fi
 
-   python_export "python${PYVER}" "${vars[@]}"
+   python_export "python${SLOT}" "${vars[@]}"
echo "EPYTHON='${EPYTHON}'" > epython.py || die
python_domodule epython.py
 }



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

2015-11-12 Thread Michał Górny
commit: 00f69aed235e207c15a8fa906b33674fd90bee88
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 12 21:43:34 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 12 21:43:34 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=00f69aed

bin/phase-helpers: Fix accidental syntax error

 bin/phase-helpers.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
index 546973e..b79884f 100644
--- a/bin/phase-helpers.sh
+++ b/bin/phase-helpers.sh
@@ -1026,11 +1026,11 @@ if ___eapi_has_eapply; then
done
 
# ensure that no options were interspersed with files
-   for i in "${files[@]}"; then
+   for i in "${files[@]}"; do
if [[ ${i} == -* ]]; then
die "eapply: all options must be passed 
before non-options"
fi
-   fi
+   done
fi
 
if [[ -z ${files[@]} ]]; then



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

2015-11-12 Thread Manuel Rüger
commit: 06f270d6063e35d59a3b7bdc151f73d4e255388b
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Nov 12 19:44:37 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 21:06:45 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=06f270d6

kde-misc/skanlite: Frameworks merged to master

Package-Manager: portage-2.2.23

 kde-misc/skanlite/skanlite-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-misc/skanlite/skanlite-.ebuild 
b/kde-misc/skanlite/skanlite-.ebuild
index 85d1c5a..9abb61f 100644
--- a/kde-misc/skanlite/skanlite-.ebuild
+++ b/kde-misc/skanlite/skanlite-.ebuild
@@ -4,7 +4,6 @@
 
 EAPI=5
 
-EGIT_BRANCH="frameworks"
 inherit kde5
 
 DESCRIPTION="KDE image scanning application"



[gentoo-commits] dev/mrueg:master commit in: x11-drivers/xf86-video-intel/

2015-11-12 Thread Manuel Rüger
commit: d94e1c2b2f57316c1b135a190103c6cdae46792d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 21:17:43 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 21:17:43 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=d94e1c2b

x11-drivers/xf86-video-intel: Update snapshot

Package-Manager: portage-2.2.24

 x11-drivers/xf86-video-intel/Manifest   | 2 +-
 917_p20151110.ebuild => xf86-video-intel-2.99.917_p20151112.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-drivers/xf86-video-intel/Manifest 
b/x11-drivers/xf86-video-intel/Manifest
index 835eccf..b95c930 100644
--- a/x11-drivers/xf86-video-intel/Manifest
+++ b/x11-drivers/xf86-video-intel/Manifest
@@ -1 +1 @@
-DIST xf86-video-intel-2.99.917_p20151110.tar.xz 929812 SHA256 
646dbda7174cac89ae26fb63b8199b1c9e45300402c7965629663c35dfad515a SHA512 
2b82d2217257d333297a29a73b7fbb134cfcea50436d11d10e29e41cadbe4adfe9298b3ea8c3ec39127276e4df61af5057f30de3f7500b01caa3209b0f5bded1
 WHIRLPOOL 
b36c2d124352da2c871c3731fb09efe31a8be47200ab3d17fdcf5f793feb73cfaa108c975c4754963d608885a6663eb2765ef569b7162625aec8f0cc0411d96e
+DIST xf86-video-intel-2.99.917_p20151112.tar.xz 929792 SHA256 
5cfecdabe55d9e61a4efb415abf00f95020245f5e7b44417fa19a3e95f510d6f SHA512 
93654048553c3ded45462dd28a3f8090b352ee83b8e88d85f560af9c5f1eba272245bd6de9542a99b9cc3641baacf5de4a4d97537bc5dc8b6b61ee8de0ff57b5
 WHIRLPOOL 
fddd3fc6e10a9c9078ed1b7fec7e5c0cfda67731e8ceabffdb71b127d76e7f0aa3a82314b724964cc09440b64b1ea8184bc87d9d1964c9582dd55115633ea84c

diff --git 
a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20151110.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20151112.ebuild
similarity index 96%
rename from 
x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20151110.ebuild
rename to 
x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20151112.ebuild
index 90b2ebd..b7402af 100644
--- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20151110.ebuild
+++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20151112.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="X.Org driver for Intel cards"
 
 KEYWORDS="~amd64 ~x86 ~amd64-fbsd -x86-fbsd"
 IUSE="debug +sna +udev uxa xvmc"
-COMMIT_ID="97786e99fbfb8f8ea3931c305f31e993de378fb2"
+COMMIT_ID="7490b9ec263b87b3669096579ec0f0066ec328cb"
 
SRC_URI="http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz
 -> ${P}.tar.xz"
 
 S=${WORKDIR}/${COMMIT_ID}



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-uuid/

2015-11-12 Thread Brian Evans
commit: bd02f22a29fc352388f0f5682ec3cc0f507517e9
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Nov 12 20:22:37 2015 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Nov 12 20:22:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd02f22a

dev-php/pecl-uuid: Version bump: add php7-0; drop php5-4

Package-Manager: portage-2.2.24

 dev-php/pecl-uuid/Manifest   |  1 +
 dev-php/pecl-uuid/pecl-uuid-1.0.4.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-php/pecl-uuid/Manifest b/dev-php/pecl-uuid/Manifest
index 80d4263..331f302 100644
--- a/dev-php/pecl-uuid/Manifest
+++ b/dev-php/pecl-uuid/Manifest
@@ -1 +1,2 @@
 DIST uuid-1.0.3.tgz 6330 SHA256 
6832c6453efec9800d2dc0bb9786cea02888378e88c15851f79210ef78369ef1 SHA512 
8872de64d39691f7516c4181949ec66725dede3806b522d32198bb7cb7f651cb2223c0b245c2a13df8d67c63b3c482da8e0c8d9cc0dfa0cd05261f7670c6547f
 WHIRLPOOL 
a9056940755ff602b222f41889454540e162b04413a28c377010914e9215de45f7e986539ad862ee3fdf6f7b99297a1519f7cac5dd8ca7508f9290a4dbe80cc9
+DIST uuid-1.0.4.tgz 14900 SHA256 
63079b6a62a9d43691ecbcd4eb52e5e5fe17b5a3d0f8e46e3c17ff265c06a11f SHA512 
989d993f8158a13026b8e5c02f4aa50489b1a946d12da81dd1fff6091839a45b180562f74c8af368a498c495477374ec9e1d536e7de0178c1f288e3abe360164
 WHIRLPOOL 
883a35955c8d84574deddbabf29741d21309bc23347db37a867e257ee1cd459a224a449743f7d56d74de2eae3d46e48a600c39156cea137f94eb0fc6afeb8c73

diff --git a/dev-php/pecl-uuid/pecl-uuid-1.0.4.ebuild 
b/dev-php/pecl-uuid/pecl-uuid-1.0.4.ebuild
new file mode 100644
index 000..6bb54d7
--- /dev/null
+++ b/dev-php/pecl-uuid/pecl-uuid-1.0.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PHP_EXT_NAME="uuid"
+PHP_EXT_INIT="yes"
+PHP_EXT_ZENDEXT="no"
+DOCS="CREDITS"
+
+USE_PHP="php7-0 php5-6 php5-5"
+
+inherit php-ext-pecl-r2
+
+DESCRIPTION="A wrapper around libuuid"
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="sys-apps/util-linux"
+RDEPEND="${DEPEND}"



[gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_checklists/

2015-11-12 Thread Manuel Rüger
commit: 0f79f837d036c9ebb4624d27ef02ff010db814fc
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 22:13:39 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 22:13:39 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=0f79f837

www-apps/redmine_checklists: Version bump

Package-Manager: portage-2.2.24

 www-apps/redmine_checklists/Manifest| 2 +-
 ...{redmine_checklists-3.1.2.ebuild => redmine_checklists-3.1.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/redmine_checklists/Manifest 
b/www-apps/redmine_checklists/Manifest
index 96ca42d..3b8014a 100644
--- a/www-apps/redmine_checklists/Manifest
+++ b/www-apps/redmine_checklists/Manifest
@@ -1 +1 @@
-DIST redmine_checklists-3.1.2.tar.gz 30594 SHA256 
45f9d003660eefb04fd25cdde2771677a1dad148c7a5114591babb0fc76c2680 SHA512 
e0a6da6f4fa8dd6786187413d1cfd10b21e6de7c687c49e18bdc09b90f0a9b9f3e9e0221a47f321a0b22767308357360eb22a2a4ec2ac9cd41d7052850a97091
 WHIRLPOOL 
bbe62b759a624977f44acb217c6e5e99b74874ffcb71f085b3d8ff88b2dc471045107c01d01becfbcf05f24fd06c5048c9d7f37fc4d4261211523069e1a7bd55
+DIST redmine_checklists-3.1.3.tar.gz 31037 SHA256 
593b9aa8f0a1e17a2492bd625abbf5346de9d3afa42c1e54dc491e1d11e6937a SHA512 
a98065d3048c312bcf4884fa4aec243465b371b7b07dcec39e4994c28f863045d08665ceca164de11078a7b33c8f0ad568b37bc4fd724961781665680dc0dcda
 WHIRLPOOL 
07fffc7535338d97a1e4c7c63836968ba5d1a41c336429aedaeaa6fbb80aedc56cc11c4806acc6571238e81a61ba33b44f812fd5c4b6ea33d7363c37c7e797fb

diff --git a/www-apps/redmine_checklists/redmine_checklists-3.1.2.ebuild 
b/www-apps/redmine_checklists/redmine_checklists-3.1.3.ebuild
similarity index 100%
rename from www-apps/redmine_checklists/redmine_checklists-3.1.2.ebuild
rename to www-apps/redmine_checklists/redmine_checklists-3.1.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/

2015-11-12 Thread Agostino Sarubbo
commit: 22623d358735292d4474040c5e7e83ff7a04f3be
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:31:04 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:31:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22623d35

www-client/chromium: Remove old

Package-Manager: portage-2.2.20.1

 www-client/chromium/Manifest |   1 -
 www-client/chromium/chromium-46.0.2490.71.ebuild | 635 ---
 2 files changed, 636 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 0826e99..540132e 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,3 @@
-DIST chromium-46.0.2490.71-lite.tar.xz 261722748 SHA256 
28248eea8ee6855e6b5e41ff1cd28d8f5878896c2c388e113e419141c07dcbaf SHA512 
e889739ab2783d617626e113642804c6e92bae08e4192b656c62f5efa57bee8db7eda2edc2e48a2245936f6c1a359ee55847c52a9d63588a0c5253332aeddd71
 WHIRLPOOL 
b33fdc7f46dc90341acdb9cafd4854235479020d722fe6431c2e0e5626634eb0f8e1f34d0bb1f55adbc984c889f60f136f465bcc578005089f3b2b6360b57843
 DIST chromium-46.0.2490.86-lite.tar.xz 275908972 SHA256 
bc8cc67e9b197e6aebe977b3af70ea57041c020c93a13264515a0dac81937bc6 SHA512 
63a23aca030c86be8f12a16884b17e2c3e8c97fd580ea989e34465f9fa91378aeb11c6718e969e0a640e2a8cb0a8999b1ca003409a0436a84dfba500a58f0160
 WHIRLPOOL 
60a9d4bb5c62d3a781ef0ed0731782fc039a58d0e514cc2e17fb36fdd070894159c4aff7d3711471c2af56d401ef334feb2148eeb08da3601017cf3e6ac07522
 DIST chromium-47.0.2526.16-lite.tar.xz 302984700 SHA256 
771deecde8d861e6ac7ba125113269566cad6a9dbdcf129eeac1005b38691096 SHA512 
fed1e62c98ec2c21d7ff4b0357fdcd67b536b2bdf9eec3b043dd50127c073749cf8e138e7909481992ab3b4de4a47d34ede3bc348b4dad4964c4c2cd9cf52f84
 WHIRLPOOL 
c45149bb9b91c215be65254680d878c5260ecdfb0a97325fd5726ad67d6fcedae8b70bb158ba1be1e10aed10cb6713625f444a85348c08098f25710df53be239
 DIST chromium-47.0.2526.49-lite.tar.xz 317398984 SHA256 
32fe2246fc25542475c9702853eef9299f097ddeeea7700f275965189da8ac8f SHA512 
8d927c564d39182ff35f3089164cfacee12a81d6e46cd349e114ba97ad5a8d807dc24873ef1eccef36a9a75f83a7bb83552d89da4cb6141933ce1e0c07187963
 WHIRLPOOL 
a99a3abc6698bb32dfaff2674e816431178653187cebcfacfdf549bd862e93dcd47405f484d2784ead2be5fb722dff2c88eaaac2aeae2d35a55af4ab87ac1f11

diff --git a/www-client/chromium/chromium-46.0.2490.71.ebuild 
b/www-client/chromium/chromium-46.0.2490.71.ebuild
deleted file mode 100644
index f9f393e..000
--- a/www-client/chromium/chromium-46.0.2490.71.ebuild
+++ /dev/null
@@ -1,635 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he
-   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
-   sv sw ta te th tr uk vi zh_CN zh_TW"
-
-inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing 
pax-utils \
-   portability python-any-r1 readme.gentoo toolchain-funcs versionator 
virtualx
-
-DESCRIPTION="Open-source version of Google Chrome web browser"
-HOMEPAGE="http://chromium.org/;
-SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}-lite.tar.xz;
-
-LICENSE="BSD hotwording? ( no-source-code )"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="cups gnome gnome-keyring hidpi hotwording kerberos neon pic 
+proprietary-codecs pulseaudio selinux +tcmalloc"
-RESTRICT="proprietary-codecs? ( bindist )"
-
-# Native Client binaries are compiled with different set of flags, bug #452066.
-QA_FLAGS_IGNORED=".*\.nexe"
-
-# Native Client binaries may be stripped by the build system, which uses the
-# right tools for it, bug #469144 .
-QA_PRESTRIPPED=".*\.nexe"
-
-RDEPEND=">=app-accessibility/speech-dispatcher-0.8:=
-   app-arch/bzip2:=
-   app-arch/snappy:=
-   cups? ( >=net-print/cups-1.3.11:= )
-   >=dev-libs/elfutils-0.149
-   dev-libs/expat:=
-   dev-libs/glib:=
-   >=dev-libs/icu-55.1:=
-   >=dev-libs/jsoncpp-0.5.0-r1:=
-   >=dev-libs/libevent-1.4.13:=
-   dev-libs/libxml2:=[icu]
-   dev-libs/libxslt:=
-   dev-libs/nspr:=
-   >=dev-libs/nss-3.14.3:=
-   dev-libs/re2:=
-   gnome? ( >=gnome-base/gconf-2.24.0:= )
-   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
-   >=media-libs/alsa-lib-1.0.19:=
-   media-libs/flac:=
-   media-libs/fontconfig:=
-   media-libs/freetype:=
-   media-libs/harfbuzz:=[icu(+)]
-   media-libs/libexif:=
-   >=media-libs/libjpeg-turbo-1.2.0-r1:=
-   media-libs/libpng:0=
-   >=media-libs/libwebp-0.4.0:=
-   media-libs/speex:=
-   pulseaudio? ( media-sound/pulseaudio:= )
-   sys-apps/dbus:=
-   sys-apps/pciutils:=
-   >=sys-libs/libcap-2.22:=
-   sys-libs/zlib:=[minizip]
-   virtual/udev
-   x11-libs/cairo:=
-   x11-libs/gdk-pixbuf:=
-   

[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/

2015-11-12 Thread Agostino Sarubbo
commit: 6b0b9ed04c061295fb59fb8232b6cd67f88b6efe
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:29:36 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:29:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b0b9ed0

www-client/chromium: amd64 stable wrt bug #565510

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 www-client/chromium/chromium-46.0.2490.86.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/chromium-46.0.2490.86.ebuild 
b/www-client/chromium/chromium-46.0.2490.86.ebuild
index 565c1f7..ac29626 100644
--- a/www-client/chromium/chromium-46.0.2490.86.ebuild
+++ b/www-client/chromium/chromium-46.0.2490.86.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 
 LICENSE="BSD hotwording? ( no-source-code )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="cups gnome gnome-keyring hidpi hotwording kerberos neon pic 
+proprietary-codecs pulseaudio selinux +tcmalloc"
 RESTRICT="proprietary-codecs? ( bindist )"
 



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/

2015-11-12 Thread Agostino Sarubbo
commit: 3889cef13a29c19898112ee32fc335b016b2d4ef
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:29:58 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:29:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3889cef1

www-client/chromium: x86 stable wrt bug #565510

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"

 www-client/chromium/chromium-46.0.2490.86.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/chromium-46.0.2490.86.ebuild 
b/www-client/chromium/chromium-46.0.2490.86.ebuild
index ac29626..f9f393e 100644
--- a/www-client/chromium/chromium-46.0.2490.86.ebuild
+++ b/www-client/chromium/chromium-46.0.2490.86.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 
 LICENSE="BSD hotwording? ( no-source-code )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="cups gnome gnome-keyring hidpi hotwording kerberos neon pic 
+proprietary-codecs pulseaudio selinux +tcmalloc"
 RESTRICT="proprietary-codecs? ( bindist )"
 



[gentoo-commits] repo/gentoo:master commit in: app-portage/elogviewer/

2015-11-12 Thread Agostino Sarubbo
commit: ee748c3ca1d0865e605571188a202d929ac8677c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:28 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee748c3c

app-portage/elogviewer: ppc stable wrt bug #564898

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 app-portage/elogviewer/elogviewer-2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elogviewer/elogviewer-2.6.ebuild 
b/app-portage/elogviewer/elogviewer-2.6.ebuild
index 3231e81..5f9ec9d 100644
--- a/app-portage/elogviewer/elogviewer-2.6.ebuild
+++ b/app-portage/elogviewer/elogviewer-2.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND="|| (



[gentoo-commits] repo/gentoo:master commit in: net-libs/axtls/

2015-11-12 Thread Agostino Sarubbo
commit: 57bda12416fa141e7e1dd675721fdf4e37aa4da0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:15 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57bda124

net-libs/axtls: ppc stable wrt bug #564960

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-libs/axtls/axtls-1.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/axtls/axtls-1.5.3.ebuild 
b/net-libs/axtls/axtls-1.5.3.ebuild
index a584a19..df4ef5e 100644
--- a/net-libs/axtls/axtls-1.5.3.ebuild
+++ b/net-libs/axtls/axtls-1.5.3.ebuild
@@ -41,7 +41,7 @@ S="${WORKDIR}/${PN}-code"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ~ppc ppc64 ~s390 x86"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 ~s390 x86"
 
 IUSE="httpd cgi-lua cgi-php static static-libs doc"
 



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/wxmaxima/

2015-11-12 Thread Agostino Sarubbo
commit: b272e72d5ee9616fc4ad1f69d9b712eaeba10779
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:40 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b272e72d

sci-mathematics/wxmaxima: ppc stable wrt bug #563942

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild 
b/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild
index c225286..0b2848d 100644
--- a/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild
+++ b/sci-mathematics/wxmaxima/wxmaxima-15.08.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 
 DEPEND="
dev-libs/libxml2:2



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmpppy/

2015-11-12 Thread Sergey Popov
commit: 40935a00106d635d6e8228940ad1794ac2bd2e82
Author: Sergey Popov  gentoo  org>
AuthorDate: Thu Nov 12 08:29:59 2015 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Thu Nov 12 08:30:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40935a00

dev-python/xmpppy: set SLOT on dev-python/pydns dependency explicitly

Reported-by: Anton Bolshakov  pentoo.ch>
Gentoo-Bug: 564994

Package-Manager: portage-2.2.23

 dev-python/xmpppy/xmpppy-0.5.0_rc1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmpppy/xmpppy-0.5.0_rc1-r2.ebuild 
b/dev-python/xmpppy/xmpppy-0.5.0_rc1-r2.ebuild
index 912bb16..6d830f9 100644
--- a/dev-python/xmpppy/xmpppy-0.5.0_rc1-r2.ebuild
+++ b/dev-python/xmpppy/xmpppy-0.5.0_rc1-r2.ebuild
@@ -22,7 +22,7 @@ IUSE="doc"
 RDEPEND="
|| (
virtual/python-dnspython[${PYTHON_USEDEP}]
-   dev-python/pydns[${PYTHON_USEDEP}]
+   dev-python/pydns:2[${PYTHON_USEDEP}]
)"
 DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/

2015-11-12 Thread Justin Lecher
commit: 39af814cbd66ce25e15a6df225731f24ec50ae41
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 07:45:47 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 08:56:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39af814c

dev-python/dbus-python: Use impl specific python-config

thanks iGentoo for the patch

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=565546

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild 
b/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild
index 5e48466..56dc965 100644
--- a/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild
+++ b/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild
@@ -41,6 +41,9 @@ src_prepare() {
 
 src_configure() {
configuring() {
+   local PYTHON_CONFIG
+   python_export PYTHON_CONFIG
+
# epydoc is python2-only, bug #447642
local apidocs=--disable-api-docs
[[ ${EPYTHON/.*} = "python2" ]] && apidocs=$(use_enable doc 
api-docs)
@@ -49,7 +52,8 @@ src_configure() {
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--disable-html-docs \
${apidocs} \
-   PYTHON_LIBS="$(python-config --ldflags)"
+   PYTHON_INCLUDES="$(${PYTHON_CONFIG} --includes)" \
+   PYTHON_LIBS="$(${PYTHON_CONFIG} --ldflags)"
# configure assumes that ${PYTHON}-config executable exists :/
}
python_foreach_impl run_in_build_dir configuring



[gentoo-commits] repo/gentoo:master commit in: dev-python/setproctitle/

2015-11-12 Thread Justin Lecher
commit: fdf6b61a56b7e7c677b26ba14926a2cf85420d8b
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 08:48:11 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 08:56:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf6b61a

dev-python/setproctitle: Use eclass functions to obtain build variables

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/setproctitle/setproctitle-1.1.8.ebuild | 17 -
 dev-python/setproctitle/setproctitle-1.1.9.ebuild | 17 ++---
 2 files changed, 22 insertions(+), 12 deletions(-)

diff --git a/dev-python/setproctitle/setproctitle-1.1.8.ebuild 
b/dev-python/setproctitle/setproctitle-1.1.8.ebuild
index 0b853ee..b028123 100644
--- a/dev-python/setproctitle/setproctitle-1.1.8.ebuild
+++ b/dev-python/setproctitle/setproctitle-1.1.8.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+# pypy doesn't get started in test run. Still required by www-servers/gunicorn
 PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
 
 inherit distutils-r1 toolchain-funcs
@@ -18,8 +19,6 @@ KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-
 IUSE="test"
 
 RDEPEND=""
-# on 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/cddlib/

2015-11-12 Thread Agostino Sarubbo
commit: 95519249c6871991ba1a72c830a1d5bc14f49024
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:10:51 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:10:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95519249

sci-libs/cddlib: ppc stable wrt bug #556418

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sci-libs/cddlib/cddlib-094g.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/cddlib/cddlib-094g.ebuild 
b/sci-libs/cddlib/cddlib-094g.ebuild
index 6cf4da9..b51b53e 100644
--- a/sci-libs/cddlib/cddlib-094g.ebuild
+++ b/sci-libs/cddlib/cddlib-094g.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="ftp://ftp.ifor.math.ethz.ch/pub/fukuda/cdd/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
 IUSE="doc static-libs"
 
 DEPEND=">=dev-libs/gmp-4.2.2:0="



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/flint/

2015-11-12 Thread Agostino Sarubbo
commit: 0994453662a1b80308729b1618479ddb61174a9e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:10:41 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:10:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09944536

sci-mathematics/flint: ppc stable wrt bug #556418

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sci-mathematics/flint/flint-2.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/flint/flint-2.4.4-r1.ebuild 
b/sci-mathematics/flint/flint-2.4.4-r1.ebuild
index ebd7360..58af8e1 100644
--- a/sci-mathematics/flint/flint-2.4.4-r1.ebuild
+++ b/sci-mathematics/flint/flint-2.4.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.flintlib.org/${P}.tar.gz;
 RESTRICT="mirror"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc gc ntl static-libs test"
 
 RDEPEND="dev-libs/gmp



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/singular/

2015-11-12 Thread Agostino Sarubbo
commit: 3471b9e4300fea6f3af4cc2b9b19ddbd9c22e8d6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:10:36 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:10:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3471b9e4

sci-mathematics/singular: ppc stable wrt bug #556418

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sci-mathematics/singular/singular-4.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/singular/singular-4.0.2.ebuild 
b/sci-mathematics/singular/singular-4.0.2.ebuild
index 1f60ff3..f1f1f9d 100644
--- a/sci-mathematics/singular/singular-4.0.2.ebuild
+++ b/sci-mathematics/singular/singular-4.0.2.ebuild
@@ -21,7 +21,7 @@ 
SRC_URI="http://www.mathematik.uni-kl.de/ftp/pub/Math/${MY_PN}/SOURCES/${MY_DIR}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86 ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ppc x86 ~x86-linux ~x86-macos"
 IUSE="boost doc emacs examples python +readline"
 
 RDEPEND="dev-libs/gmp:0



[gentoo-commits] repo/gentoo:master commit in: sys-block/fio/

2015-11-12 Thread Agostino Sarubbo
commit: 276e28e8ab544d82f25ae480c768526b4d03fad3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:10:59 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:10:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276e28e8

sys-block/fio: ppc stable wrt bug #561756

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sys-block/fio/fio-2.2.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/fio/fio-2.2.9.ebuild b/sys-block/fio/fio-2.2.9.ebuild
index afc1679..eee90d9 100644
--- a/sys-block/fio/fio-2.2.9.ebuild
+++ b/sys-block/fio/fio-2.2.9.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://brick.kernel.dk/snaps/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~ia64 ~ppc ppc64 x86"
+KEYWORDS="amd64 arm ~ia64 ppc ppc64 x86"
 IUSE="aio glusterfs gnuplot gtk numa rbd rdma static zlib"
 
 DEPEND="aio? ( dev-libs/libaio )



[gentoo-commits] repo/gentoo:master commit in: dev-python/matplotlib/

2015-11-12 Thread Agostino Sarubbo
commit: 848c330ad1d5605ec23c47c57ba198b622974df7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:11:13 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:11:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=848c330a

dev-python/matplotlib: ppc stable wrt bug #543914

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-python/matplotlib/matplotlib-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/matplotlib/matplotlib-1.4.3.ebuild 
b/dev-python/matplotlib/matplotlib-1.4.3.ebuild
index 538ff93..28d922b 100644
--- a/dev-python/matplotlib/matplotlib-1.4.3.ebuild
+++ b/dev-python/matplotlib/matplotlib-1.4.3.ebuild
@@ -20,7 +20,7 @@ SLOT="0"
 # matplotlib/backends/qt4_editor: MIT
 # Fonts: BitstreamVera, OFL-1.1
 LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
-KEYWORDS="amd64 arm ~ppc ~ppc64 x86 ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 arm ppc ~ppc64 x86 ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="cairo doc excel examples fltk gtk gtk3 latex pyside qt4 qt5 test tk 
wxwidgets"
 
 PY2_FLAGS="|| ( $(python_gen_useflags python2_7) )"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/glusterfs/

2015-11-12 Thread Agostino Sarubbo
commit: 500ead29fdd24be2a9f0bd5e11e93110dca3f031
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:11:04 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:11:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=500ead29

sys-cluster/glusterfs: ppc stable wrt bug #561756

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sys-cluster/glusterfs/glusterfs-3.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild 
b/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild
index 2081eb2..54d4b24 100644
--- a/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-3.1.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://ftp.gluster.com/pub/gluster/${PN}/$(get_version_component_range
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="emacs extras +fuse infiniband static-libs vim-syntax"
 
 RDEPEND="emacs? ( virtual/emacs )



[gentoo-commits] repo/gentoo:master commit in: dev-python/xlwt/

2015-11-12 Thread Agostino Sarubbo
commit: ba37daff28aa8f4f950590eb10db3e08531fa8e8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:11:18 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:11:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba37daff

dev-python/xlwt: ppc stable wrt bug #543914

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-python/xlwt/xlwt-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xlwt/xlwt-1.0.0.ebuild 
b/dev-python/xlwt/xlwt-1.0.0.ebuild
index 3675eb2..4558a3a 100644
--- a/dev-python/xlwt/xlwt-1.0.0.ebuild
+++ b/dev-python/xlwt/xlwt-1.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/4ti2/

2015-11-12 Thread Agostino Sarubbo
commit: d19cd94c9ea297a4007c1f3216106bbedb518919
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:10:46 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:10:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d19cd94c

sci-mathematics/4ti2: ppc stable wrt bug #556418

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sci-mathematics/4ti2/4ti2-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/4ti2/4ti2-1.6.6.ebuild 
b/sci-mathematics/4ti2/4ti2-1.6.6.ebuild
index ff139ba..61a3b19 100644
--- a/sci-mathematics/4ti2/4ti2-1.6.6.ebuild
+++ b/sci-mathematics/4ti2/4ti2-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://4ti2.de/version_${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86 ~x86-macos"
+KEYWORDS="amd64 ppc x86 ~x86-macos"
 IUSE="static-libs"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/elasticsearch-curator/

2015-11-12 Thread Ian Delaney
commit: 2d6ac3e91c86331a3fd83110983f3e9c9d1ec93c
Author: Ian Delaney  gentoo  org>
AuthorDate: Thu Nov 12 08:17:24 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Thu Nov 12 08:18:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d6ac3e9

dev-python/elasticsearch-curator: bump to 3.4.0 closes the gentoo bug

Gentoo bug: 564612

Package-Manager: portage-2.2.24

 dev-python/elasticsearch-curator/Manifest  |   2 +
 .../elasticsearch-curator-3.4.0.ebuild | 103 +
 2 files changed, 105 insertions(+)

diff --git a/dev-python/elasticsearch-curator/Manifest 
b/dev-python/elasticsearch-curator/Manifest
index 9575726..fee73f6 100644
--- a/dev-python/elasticsearch-curator/Manifest
+++ b/dev-python/elasticsearch-curator/Manifest
@@ -2,7 +2,9 @@ DIST elasticsearch-1.4.2.tar.gz 27734207 SHA256 
31dd6c049745f7dac201f94852b778b0
 DIST elasticsearch-1.4.4.tar.gz 2794 SHA256 
a3158d474e68520664debaea304be22327fc7ee1f410e0bfd940747b413e8586 SHA512 
afc24c5d778d346e24c656e040fb7d0036e16ae42b35ca4f97b2e4d31dc815467ae5462f922ea5222307acf0fa0579f6cd38c603bc996c1f4ba723aa6a2b01ed
 WHIRLPOOL 
37a1a057539ae29525a78fa51f3d19f403e389129e54054edfa1bbd08d12bdbb88acb4e879b6795aa63d583fd70eedefcae5b13b6bf1a7c8314e3aafa49e2b33
 DIST elasticsearch-1.7.0.tar.gz 28501532 SHA256 
6fabed2db09e1b88587df15269df328ecef33e155b3c675a2a6d2299bda09c95 SHA512 
090186218d7bfcef2f1cf497b08edeae71f2bdae1ddbe97a04e3e288c9a41bdf069ee7ef51202596b17ac9a33840edc4d655a08313ecb732a1f37029b60740d4
 WHIRLPOOL 
0dfd8f5095dfbbbcda788da0661fc5ec9af7d2fa174dbb365ad021ff7e48d42035f63a45ba6cb9fc20fc8e86500fc81cfcb2f0c46f99015b6f84a2c2be762bd4
 DIST elasticsearch-1.7.1.tar.gz 28500556 SHA256 
86a0c20eea6ef55b14345bff5adf896e6332437b19180c4582a346394abde019 SHA512 
88786d277cb3228a5e477068fc5ff723e0b5aa47411cea5c55d15ae769f2fb123d274e29c592a9e0f655deedb9db62f296af5aff4e8b56539928025a3375daaa
 WHIRLPOOL 
2218ec3603314a60b38e903b3f00681512306efe1892350ced71c060a24924391d66cb9273d6db5ebb781d60808a2f3ab4c77c57baa03714db143c3718602bf5
+DIST elasticsearch-1.7.3.tar.gz 28510917 SHA256 
af517611493374cfb2daa8897ae17e63e2efea4d0377d316baa351c1776a2bca SHA512 
0cb6b2ebd77c3d1467f6a22f845bfbf9f4a7c9c9ddedae17aeb6bd2d2bc576171fc80e3a4963e7b890af574e9fd0b0faa152e7f2671a74254826e14fe2554c9f
 WHIRLPOOL 
c86de3076389a9b95cf4d424673edb3c3b1dae0b4470b18b15a5f2e9bde6669a61b8ffd5cc3f7fc3b52f99441915a84b0396a5673ebbc12fec0d83eb41a03c74
 DIST elasticsearch-curator-2.1.2.tar.gz 35706 SHA256 
93185f57e4fcd84970b78936271c3ddcba69c54d9a799acafe7d16483134cce0 SHA512 
4bc4f74ab7d710173f173d47ad5e8c8918267bbc888a2b1b301e799747f73375b159671940cf7d3cc62361adbb320bc3e772d149eb7ff227d4893788810946f1
 WHIRLPOOL 
156e92a0a5fa4797651d1c066b955304b082edcda815784c5ddb5a025c93f9b4f222f15e5d7ce74e4740bd1c3ab5e67fe21e651186e0062ff3f0e418b0390b09
 DIST elasticsearch-curator-3.0.0.tar.gz 55418 SHA256 
72ec58f15344649dbfec54c80731e6b0b80bb3c0575061ca75580d49f9982fe0 SHA512 
acf2a86af682118a0c5ece1d8b557e6b43ada667f8c172cd7d8f66280b07e5e79ec6da5a674b338348fc1e94a6d2bcffd8e1ff61f7bd9ef43cd6458eb371c50a
 WHIRLPOOL 
bab3479082209c1efea77b6385a49782617143fd28c6956c13cbc3c1d36256c3d45c316abb3b6982e5822b811ac69a18cfcaa5dc4ec4e3634b155a241d0cb0f4
 DIST elasticsearch-curator-3.2.3.tar.gz 82745 SHA256 
f3e499719cd7e0d13a6e7e339c034ed91039f9295767484bd217574fd1a04a9e SHA512 
55668d7c5d0cda386983f499e93bba5f2ff1520569ee6e3ac296b1dc86daf302ec6a5c5c8c0eb48e821ace2c40fa523990a06dcd1099b1359dd15ae5dbfe5ae4
 WHIRLPOOL 
06ac9e72a43731ba864fb883b2a89da82e0a12249ba3962f9ce9ebe2fb41dbea6bb378cf05d365e1379d3836183a0c75aae4e8c87b123a211f55cbf0258e7d53
 DIST elasticsearch-curator-3.3.0.tar.gz 85260 SHA256 
e55ec74df61b8afc05a27bb1791cf07131b54d0fccede6bd5ce8815f350c9a7b SHA512 
030644137f2065d89ea44d19f71a5b54d2a216891f9f83984e131cd0c29d348a8a38dc292a076e13c2b87e6a25c30b6ed85780878f5bcaae1f4f0d57f4f6df24
 WHIRLPOOL 
80f2b6ad95e3f34b5adb6c55fc2ca7c8b31108bedc474735b5023d40c49930ab33993cb087c9d5928e67e907d2ed87a99b7fa4b5951ff91638bc4da7b725820b
+DIST elasticsearch-curator-3.4.0.tar.gz 96741 SHA256 
86e542886d83ad4c499437e42f4ff69d6602314a75c0c156d1c8dd838ab5e605 SHA512 
23cab700acb8afe7967d3e024a293a765ba1823015006c2856c3967ba33ec8a21d214fe7e0b2840e9fc3adb4cc15c889dba955c849036850ed67d689285f9871
 WHIRLPOOL 
01828a116a11d41666fb21c967375055114ff050650ab329f5aded441aa98743b0c62bcbb98f7f5a2335b844d44e1f3020d6f36e0f2f24acbf357f69b056062e

diff --git 
a/dev-python/elasticsearch-curator/elasticsearch-curator-3.4.0.ebuild 
b/dev-python/elasticsearch-curator/elasticsearch-curator-3.4.0.ebuild
new file mode 100644
index 000..9d58368
--- /dev/null
+++ b/dev-python/elasticsearch-curator/elasticsearch-curator-3.4.0.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+MY_PN="curator"
+ES_VERSION="1.7.3"
+
+inherit 

[gentoo-commits] repo/gentoo:master commit in: dev-java/osgi-compendium/

2015-11-12 Thread Patrice Clement
commit: 096c6cd0dadf693c636d68727db44e262dfea043
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Nov 12 09:29:57 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Nov 12 09:33:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=096c6cd0

dev-java/osgi-compendium: Update SRC_URI and HOMEPAGE URLs. Lift fetch 
restrictions. Fixes bug 565498.

Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement  gentoo.org>

 .../osgi-compendium/osgi-compendium-4.3.1.ebuild   | 27 +-
 1 file changed, 11 insertions(+), 16 deletions(-)

diff --git a/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild 
b/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild
index 96cb627..4207c29 100644
--- a/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild
+++ b/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild
@@ -9,38 +9,33 @@ JAVA_PKG_IUSE="doc source"
 inherit java-pkg-2 java-pkg-simple
 
 DESCRIPTION="OSGi Service Platform Compendium API (Companion Code)"
-HOMEPAGE="http://www.osgi.org/Specifications/HomePage;
-SRC_URI="http://www.osgi.org/download/r4v43/osgi.cmpn-${PV}.jar;
+HOMEPAGE="http://wiki.osgi.org/wiki/Release_4.3;
+SRC_URI="https://osgi.org/download/r4v43/osgi.cmpn-${PV}.jar;
 
 LICENSE="Apache-2.0 OSGi-Specification-2.0"
 SLOT="0"
 KEYWORDS="amd64 x86"
 
-RESTRICT="bindist fetch"
-
-COMMON_DEPEND="dev-java/glassfish-persistence:0
+CDEPEND="dev-java/glassfish-persistence:0
dev-java/osgi-core-api:0
dev-java/osgi-foundation:0
dev-java/tomcat-servlet-api:3.0"
 
-DEPEND="${COMMON_DEPEND}
+DEPEND="${CDEPEND}
>=virtual/jdk-1.5
app-arch/unzip"
 
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="${CDEPEND}
>=virtual/jre-1.5"
 
 JAVA_SRC_DIR="OSGI-OPT/src"
 
-JAVA_GENTOO_CLASSPATH="glassfish-persistence,osgi-core-api,osgi-foundation,tomcat-servlet-api-3.0"
-
-pkg_nofetch() {
-   einfo "Please download osgi.cmpn-${PV}.jar from"
-   einfo "  http://www.osgi.org/Download/Release4V43;
-   einfo "which you can find listed as"
-   einfo "  OSGi Service Platform Release 4 Version 4.3 Compendium 
Companion Code"
-   einfo "after accepting the license."
-}
+JAVA_GENTOO_CLASSPATH="
+   osgi-core-api
+   osgi-foundation
+   glassfish-persistence
+   tomcat-servlet-api-3.0
+"
 
 java_prepare() {
rm -r org || die



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libxml2/

2015-11-12 Thread Jeroen Roovers
commit: 776b3aca78cc9f34d9e9d6b7698f8be34fefbe7e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Nov 12 08:13:09 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Nov 12 08:13:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=776b3aca

dev-libs/libxml2: Stable for PPC64 (bug #560524).

Package-Manager: portage-2.2.24
RepoMan-Options: --ignore-arches

 dev-libs/libxml2/libxml2-2.9.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild 
b/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild
index 5ce0fa9..3bdd3c6 100644
--- a/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild
+++ b/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.xmlsoft.org/;
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="debug examples icu ipv6 lzma python readline static-libs test"
 
 XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite;



[gentoo-commits] repo/gentoo:master commit in: dev-lang/swi-prolog/

2015-11-12 Thread Keri Harris
commit: 41c8247b35ccfbb994c1d661c58120613ad68448
Author: Keri Harris  gentoo  org>
AuthorDate: Thu Nov 12 08:52:50 2015 +
Commit: Keri Harris  gentoo  org>
CommitDate: Thu Nov 12 08:52:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41c8247b

dev-lang/swi-prolog: remove old development versions

Package-Manager: portage-2.2.20.1

 dev-lang/swi-prolog/Manifest|   4 -
 dev-lang/swi-prolog/swi-prolog-7.3.7.ebuild | 130 
 dev-lang/swi-prolog/swi-prolog-7.3.8.ebuild | 130 
 3 files changed, 264 deletions(-)

diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest
index 5617994..1717f70 100644
--- a/dev-lang/swi-prolog/Manifest
+++ b/dev-lang/swi-prolog/Manifest
@@ -4,12 +4,8 @@ DIST swi-prolog-7.2.2-gentoo-patchset-0.tar.gz 1414 SHA256 
145f585828da45d89c6ab
 DIST swi-prolog-7.2.3-gentoo-patchset-0.tar.gz 1418 SHA256 
b8cca09211889c3fdca47bcc3093f0811b773553d457b6d4cd423d0a3483ac8b SHA512 
6fe185bc6a015bdb0c1466818f2e45897c098d98c091854cb86f1756458585724a8d17c1c8a5593ee054cbe0400c322b27bf107194aa1ba91d478623ff468e39
 WHIRLPOOL 
aa9df0ddc7a01e776074c32f381b92f2738c86ac7a3462749cb24954549e1979c5c8c17038a3161772e41c7f39637ee3547efcda52ef2362e03d814af4cd885b
 DIST swi-prolog-7.2.3-gentoo-patchset-1.tar.gz 1875 SHA256 
c11e48122dc468f21e08da4a65f5a2daa9e0ddbc2e186bbd952626c95b29db04 SHA512 
3506f4168d52f7d3539cd753c5153750df8c3239b78ffac1784c634b585d5fb0c825700e77abc9c1f467af71473ae1861eef629ebdf76b7c783d276c393f40fc
 WHIRLPOOL 
8b70ab91592280d0634c6c897771696c0c63d30680044994cedf69f18cd4f386adf833998e64d4ad892cff97300b5bbfaa8dec8448ea04ebaba7e31f7e9c30d0
 DIST swi-prolog-7.3.10-gentoo-patchset-1.tar.gz 1117 SHA256 
e3596515edc419cca5fed53410d4edbc8bb95eeff206274260916fb348c97f0d SHA512 
2be89c25e9980785760305c9d443a92388ce0bfb09e1f64e5a8029341e9d7cc97bafa32992382c303aa51cf741f989e64bc675f5fdd31d09dac7442ee9b3d3ad
 WHIRLPOOL 
a2d206a564652bff73bd946f9aee386da7b76647e6f93d55c33cf45c8331d8d2afd980746e4a25f40825f6258fc53c926a94279d75e66053e2c21d80dda0eeb8
-DIST swi-prolog-7.3.7-gentoo-patchset-0.tar.gz 1709 SHA256 
81f5f0de37f1fe07c25352caa151b3d13f92265fbbf5476f8713dc349fd214ec SHA512 
88eec4a4a709714bbde2cbf457064adb193dc51b4c7f143cb9ab5526b4cdf6a434aa81b79c7e65537381b9a166a84ae5666776f572952bffc1ead894eb8bac32
 WHIRLPOOL 
00b8c5b637173c2725cae62086b58a2acfd475447232d11fa1d9cf038b0a662bf226fb3a39a3b5bd4d22d8c6b51a67d0fbddb09e88d6f778c84022b6d46be0e7
-DIST swi-prolog-7.3.8-gentoo-patchset-0.tar.gz 1430 SHA256 
e927f0efce19b949fa9f2d4f5ad53488eafdd66891cd71f5051bed997491bb7d SHA512 
989c7d893cc6213f76a9eb5422662dabd9d63489b0a8924a37e3293323d81215ea13510a2fb2a37f07fdee2417aafbd8e07d1f16b2d974da724aebdbb371d47a
 WHIRLPOOL 
b24e68a2e600dbf445202228a411077be3e75c838599a375c85c9185628d9109971c3b43622fbe260688961d52bf30d4a490e5961a43d2378132d339c8961420
 DIST swi-prolog-7.3.9-gentoo-patchset-0.tar.gz 1507 SHA256 
029541109cc60d176b65d12903ee2e06f209c38ff29421674e660d31d6ee44d4 SHA512 
357df9c6e5ce5b046e4ceb7d65b358bd191ff8c912812deba918fe3b76c48a46c9f89f28ddc950de151e47ec57d654c53f537024da5f7f2f373f7466f07f914f
 WHIRLPOOL 
5ac911d2950d4ccffe1db959467215fc8d074b9a842e79aea7d8bc0d14587dce6388707b2c06e3d94474eed8feb939398daa616160642883192e6dbfe7034da2
 DIST swipl-7.2.2.tar.gz 16179490 SHA256 
c137bbe1d652a6aaa003278045e592637cd9fd5f1d52b05f9f0751bfd9449c8d SHA512 
b25ed01e49628d9b463acd0e3687eaef0e3f74e8f834a1442e66913fabf948ae6f6d662c21e3cbb1ca5793ceb96701be31c3b1d2d3a0a9694ea4706f9a64939e
 WHIRLPOOL 
1309284a4d610cb37196aca678d4823bba384ba04a84ef1212c3580bad40da3359fbe4035a13cbfdd21a4eca75df2b8a3c398a1da9061a71ba8da8276c2b17dd
 DIST swipl-7.2.3.tar.gz 16192142 SHA256 
43657d51b7c5887bc2d2bced50a9822b86a08a6841399b8e76ee877f51d646b5 SHA512 
da27a6b171d3b471401f1a91e86a4dbe98973d8a1db8c72aa27e452311d08b893b01a1de8f9f4dafcdac460774b4ea980050256d37284546941e1bdf84f8cd7b
 WHIRLPOOL 
de695c8e0317921dcc13898f7a3c88d1012e3f87f633cd25766ca5cb6637b29ca81b9245d015614089291a7d9abd0d8c7109ccae1df9297d78301d241cb258b3
 DIST swipl-7.3.10.tar.gz 16093869 SHA256 
caa2774963122cb57fb04370ea08d6a3c3ed5a5e98d92eb9865953e6b20baf5f SHA512 
0f7113f20679a85e048f8d1892777a4bd78d60787b834d2200137cbad767618ca942dd152cf69a3496577f10ce8f4d694d22394b5ae31244b7cfa8d07e01
 WHIRLPOOL 
797a8c0b5cd524e502de1ade9f33bfb8b8f9de1454bf3233643aea4870a8ed14c17ffb097edcd943dfbea1d9f50dd78a304beb55b15d4960224c4110c2e4dccc
-DIST swipl-7.3.7.tar.gz 16065373 SHA256 
db291d45753f6fc1af5f0ff174d1770ce4e0455d2eb1f6be7ac3cac263571cc7 SHA512 
93987a45cb34df6da1415845a4f79004e9e64a8fe4552f3b74ebb4dc509329a085c693090f452541ca1bd9187f7c40b7dc6b0159f650e2bc769bd7d48d21
 WHIRLPOOL 
277725e359ea29faa8c83e1d9089fdcf9483d20b866a4b36bcc19a09c63bc24379352751524d35c0758e9355c20b53a45180bd4bcec4352ededf2c9ab4c836ee
-DIST swipl-7.3.8.tar.gz 16075095 SHA256 
c7a31eac0020831cddd31045bc12dca10b437b737545a8a42fa193a3937ae882 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-util/anjuta/

2015-11-12 Thread Justin Lecher
commit: f3253e9a09f3a06acb7141046024cad546ea0e9a
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 08:49:39 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 08:56:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3253e9a

dev-util/anjuta: Drop obsolete sed call

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-util/anjuta/anjuta-3.14.1.ebuild | 4 
 dev-util/anjuta/anjuta-3.16.0.ebuild | 4 
 2 files changed, 8 deletions(-)

diff --git a/dev-util/anjuta/anjuta-3.14.1.ebuild 
b/dev-util/anjuta/anjuta-3.14.1.ebuild
index 578600d..4a849c2 100644
--- a/dev-util/anjuta/anjuta-3.14.1.ebuild
+++ b/dev-util/anjuta/anjuta-3.14.1.ebuild
@@ -96,10 +96,6 @@ will need to:
# Conflicts with -pg in a plugin, bug #266777
filter-flags -fomit-frame-pointer
 
-   # python2.7-configure in Fedora vs. python-configure in Gentoo
-   sed -e 's:$PYTHON-config:$PYTHON$PYTHON_VERSION-config:g' \
-   -i plugins/am-project/tests/anjuta.lst || die "sed failed"
-
# Do not build benchmarks, they are not installed and for dev purpose 
only
sed -e '/SUBDIRS =/ s/benchmark//' \
-i plugins/symbol-db/Makefile.{am,in} || die

diff --git a/dev-util/anjuta/anjuta-3.16.0.ebuild 
b/dev-util/anjuta/anjuta-3.16.0.ebuild
index 569cacf..522fd8f 100644
--- a/dev-util/anjuta/anjuta-3.16.0.ebuild
+++ b/dev-util/anjuta/anjuta-3.16.0.ebuild
@@ -96,10 +96,6 @@ will need to:
# Conflicts with -pg in a plugin, bug #266777
filter-flags -fomit-frame-pointer
 
-   # python2.7-configure in Fedora vs. python-configure in Gentoo
-   sed -e 's:$PYTHON-config:$PYTHON$PYTHON_VERSION-config:g' \
-   -i plugins/am-project/tests/anjuta.lst || die "sed failed"
-
# Do not build benchmarks, they are not installed and for dev purpose 
only
sed -e '/SUBDIRS =/ s/benchmark//' \
-i plugins/symbol-db/Makefile.{am,in} || die



[gentoo-commits] repo/gentoo:master commit in: dev-libs/btparser/

2015-11-12 Thread Justin Lecher
commit: c81f41fe6e18be781a980b6d27d3a0e67af6252d
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 07:55:51 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 08:56:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81f41fe

dev-libs/btparser: Use eclass functions to obtain build variables

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-libs/btparser/btparser-0.24.ebuild | 6 ++
 dev-libs/btparser/btparser-0.25.ebuild | 6 ++
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/dev-libs/btparser/btparser-0.24.ebuild 
b/dev-libs/btparser/btparser-0.24.ebuild
index 2a1092c..3530f12 100644
--- a/dev-libs/btparser/btparser-0.24.ebuild
+++ b/dev-libs/btparser/btparser-0.24.ebuild
@@ -24,10 +24,8 @@ DEPEND="${RDEPEND}
app-arch/xz-utils"
 
 src_configure() {
-   # Configure checks for python.pc; our python-2.7 installs python-2.7.pc,
-   # while python-2.6 does not install any pkgconfig file.
-   export PYTHON_CFLAGS=$(python-config --includes)
-   export PYTHON_LIBS=$(python-config --libs)
+   export PYTHON_CFLAGS=$(python_get_CFLAGS)
+   export PYTHON_LIBS=$(python_get_LIBS)
 
econf \
$(use_enable static-libs static) \

diff --git a/dev-libs/btparser/btparser-0.25.ebuild 
b/dev-libs/btparser/btparser-0.25.ebuild
index dfa1866..3a2cbf7 100644
--- a/dev-libs/btparser/btparser-0.25.ebuild
+++ b/dev-libs/btparser/btparser-0.25.ebuild
@@ -34,10 +34,8 @@ src_prepare() {
 }
 
 src_configure() {
-   # Configure checks for python.pc; our python-2.7 installs python-2.7.pc,
-   # while python-2.6 does not install any pkgconfig file.
-   export PYTHON_CFLAGS=$(python-config --includes)
-   export PYTHON_LIBS=$(python-config --libs)
+   export PYTHON_CFLAGS=$(python_get_CFLAGS)
+   export PYTHON_LIBS=$(python_get_LIBS)
 
gnome2_src_configure \
$(use_enable static-libs static)



[gentoo-commits] repo/gentoo:master commit in: media-gfx/xv/

2015-11-12 Thread Agostino Sarubbo
commit: b5d392a0dc88db9c5220c77286aa137e7a5b00c1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:52 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d392a0

media-gfx/xv: ppc stable wrt bug #565130

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 media-gfx/xv/xv-3.10a-r17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/xv/xv-3.10a-r17.ebuild b/media-gfx/xv/xv-3.10a-r17.ebuild
index d5c1ef1..808557f 100644
--- a/media-gfx/xv/xv-3.10a-r17.ebuild
+++ b/media-gfx/xv/xv-3.10a-r17.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://sourceforge/png-mng/${P}-jumbo-patches-${JUMBOV}.tar.gz
 
 LICENSE="xv"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="jpeg tiff png"
 
 DEPEND="x11-libs/libXt



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rmagick/

2015-11-12 Thread Agostino Sarubbo
commit: 1dd6fb07aca4de4ce61412088df4a00f106e27d3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:04 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd6fb07

dev-ruby/rmagick: ppc stable wrt bug #556720

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/rmagick/rmagick-2.13.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rmagick/rmagick-2.13.4.ebuild 
b/dev-ruby/rmagick/rmagick-2.13.4.ebuild
index 515a8a8..4a172c6 100644
--- a/dev-ruby/rmagick/rmagick-2.13.4.ebuild
+++ b/dev-ruby/rmagick/rmagick-2.13.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/gemhome/rmagick;
 
 LICENSE="Artistic"
 SLOT="0"
-KEYWORDS="amd64 hppa ~mips ~ppc ppc64 x86 ~x86-macos"
+KEYWORDS="amd64 hppa ~mips ppc ppc64 x86 ~x86-macos"
 IUSE="doc"
 
 # Since 2.13.3 rmagick now supports HDRI enabled, but with it enabled



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/tins/

2015-11-12 Thread Agostino Sarubbo
commit: f70be2ce783a6b21d318b7030c1b425ca3394a97
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:24 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f70be2ce

dev-ruby/tins: ppc stable wrt bug #565436

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/tins/tins-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/tins/tins-1.6.0.ebuild b/dev-ruby/tins/tins-1.6.0.ebuild
index d08951b..05ffe2a 100644
--- a/dev-ruby/tins/tins-1.6.0.ebuild
+++ b/dev-ruby/tins/tins-1.6.0.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/flori/tins;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ppc ppc64 ~sparc x86"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/test-unit-2.5.1-r1 )"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus/

2015-11-12 Thread Agostino Sarubbo
commit: ee0201c645b37d50c97c76466c5e519ca175f8da
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:17 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee0201c6

app-i18n/ibus: ppc stable wrt bug #565190

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 app-i18n/ibus/ibus-1.5.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus/ibus-1.5.11.ebuild b/app-i18n/ibus/ibus-1.5.11.ebuild
index 7701689..e330b5c 100644
--- a/app-i18n/ibus/ibus-1.5.11.ebuild
+++ b/app-i18n/ibus/ibus-1.5.11.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ibus/ibus/wiki;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="deprecated gconf gtk +gtk3 +introspection nls +python test vala wayland 
+X"
 REQUIRED_USE="
|| ( gtk gtk3 X )



[gentoo-commits] repo/gentoo:master commit in: net-voip/ekiga/

2015-11-12 Thread Agostino Sarubbo
commit: d54c264a10ced141a72e1d4bfd852cde589e015f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:55 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d54c264a

net-voip/ekiga: ppc stable wrt bug #565020

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-voip/ekiga/ekiga-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-voip/ekiga/ekiga-4.0.1.ebuild 
b/net-voip/ekiga/ekiga-4.0.1.ebuild
index fbeee6a..391775a 100644
--- a/net-voip/ekiga/ekiga-4.0.1.ebuild
+++ b/net-voip/ekiga/ekiga-4.0.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="http://www.ekiga.org/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE="avahi dbus debug doc eds gconf gnome gstreamer h323 kde kontact ldap
 libnotify cpu_flags_x86_mmx nls pulseaudio +shm static v4l xcap xv"
 



[gentoo-commits] repo/gentoo:master commit in: net-p2p/gtk-gnutella/

2015-11-12 Thread Agostino Sarubbo
commit: 00f1e942bb90b61043c63ffde17c050286558609
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:21 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00f1e942

net-p2p/gtk-gnutella: ppc stable wrt bug #565120

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-p2p/gtk-gnutella/gtk-gnutella-1.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.5.ebuild 
b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.5.ebuild
index 8b8f88b..f377506 100644
--- a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.5.ebuild
+++ b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.5.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://gtk-gnutella.sourceforge.net/;
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
 
 RDEPEND="
dev-libs/glib:2



[gentoo-commits] repo/gentoo:master commit in: www-client/httrack/

2015-11-12 Thread Agostino Sarubbo
commit: 042291c7602763722f2ba951638aa9db1ad32055
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:41 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042291c7

www-client/httrack: ppc stable wrt bug #565400

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 www-client/httrack/httrack-3.48.21-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/httrack/httrack-3.48.21-r1.ebuild 
b/www-client/httrack/httrack-3.48.21-r1.ebuild
index 54d6d90..1a77153 100644
--- a/www-client/httrack/httrack-3.48.21-r1.ebuild
+++ b/www-client/httrack/httrack-3.48.21-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://mirror.httrack.com/historical/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="static-libs"
 
 RDEPEND=">=sys-libs/zlib-1.2.5.1-r1



[gentoo-commits] repo/gentoo:master commit in: media-gfx/fontforge/

2015-11-12 Thread Agostino Sarubbo
commit: d538d40e2b7892374a05d226085360130c14488e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:48 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d538d40e

media-gfx/fontforge: ppc stable wrt bug #565376

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 media-gfx/fontforge/fontforge-20150612-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/fontforge/fontforge-20150612-r1.ebuild 
b/media-gfx/fontforge/fontforge-20150612-r1.ebuild
index c99778f..72da6a3 100644
--- a/media-gfx/fontforge/fontforge-20150612-r1.ebuild
+++ b/media-gfx/fontforge/fontforge-20150612-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/fontforge/fontforge/releases/download/${PV}/${P}.tar
 
 LICENSE="BSD GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="cairo truetype-debugger gif gtk jpeg png +python readline tiff svg 
unicode X"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: app-mobilephone/gnokii/

2015-11-12 Thread Agostino Sarubbo
commit: b7afcca95183cebe3d2071c2230102adc113e990
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:34 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:34 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7afcca9

app-mobilephone/gnokii: ppc stable wrt bug #565126

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 app-mobilephone/gnokii/gnokii-0.6.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-mobilephone/gnokii/gnokii-0.6.31.ebuild 
b/app-mobilephone/gnokii/gnokii-0.6.31.ebuild
index 4c71de6..51800db 100644
--- a/app-mobilephone/gnokii/gnokii-0.6.31.ebuild
+++ b/app-mobilephone/gnokii/gnokii-0.6.31.ebuild
@@ -9,7 +9,7 @@ inherit eutils linux-info autotools
 HOMEPAGE="http://www.gnokii.org/;
 if [ "$PV" != "" ]; then
SRC_URI="http://www.gnokii.org/download/${PN}/${P}.tar.bz2;
-   KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+   KEYWORDS="amd64 ~hppa ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 else
SRC_URI=""
KEYWORDS=""



[gentoo-commits] repo/gentoo:master commit in: dev-python/unidecode/

2015-11-12 Thread Agostino Sarubbo
commit: 039321a5c1d2b404343affa737c9263f59ea695e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:10 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=039321a5

dev-python/unidecode: ppc stable wrt bug #565208

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-python/unidecode/unidecode-0.04.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unidecode/unidecode-0.04.18.ebuild 
b/dev-python/unidecode/unidecode-0.04.18.ebuild
index fc2ac59..9ccbbeb 100644
--- a/dev-python/unidecode/unidecode-0.04.18.ebuild
+++ b/dev-python/unidecode/unidecode-0.04.18.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ppc ~sparc x86"
 
 S=${WORKDIR}/${MY_P}
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/less/

2015-11-12 Thread Agostino Sarubbo
commit: 84851a14101373cec32433941d1f3e691706b474
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:35 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84851a14

sys-apps/less: ppc stable wrt bug #564870

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sys-apps/less/less-481.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/less/less-481.ebuild b/sys-apps/less/less-481.ebuild
index 15dfb89..786dec6 100644
--- a/sys-apps/less/less-481.ebuild
+++ b/sys-apps/less/less-481.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz
 
 LICENSE="|| ( GPL-3 BSD-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="pcre unicode"
 
 DEPEND=">=app-misc/editor-wrapper-3



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rdiscount/

2015-11-12 Thread Agostino Sarubbo
commit: 0830467fc40198cd5eb7fd8385e831e7b6723c0b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:46 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0830467f

dev-ruby/rdiscount: ppc stable wrt bug #565116

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/rdiscount/rdiscount-2.1.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rdiscount/rdiscount-2.1.8.ebuild 
b/dev-ruby/rdiscount/rdiscount-2.1.8.ebuild
index f0e8601..de6d8b9 100644
--- a/dev-ruby/rdiscount/rdiscount-2.1.8.ebuild
+++ b/dev-ruby/rdiscount/rdiscount-2.1.8.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/rtomayko/rdiscount;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 all_ruby_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-libs/STLport/

2015-11-12 Thread Agostino Sarubbo
commit: 4b53a56d2f95e0fc79f501ca5b2492db11dd811f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:38:58 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:38:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b53a56d

dev-libs/STLport: ppc stable wrt bug #562926

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-libs/STLport/STLport-5.2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/STLport/STLport-5.2.1-r3.ebuild 
b/dev-libs/STLport/STLport-5.2.1-r3.ebuild
index 6155099..a6f947c 100644
--- a/dev-libs/STLport/STLport-5.2.1-r3.ebuild
+++ b/dev-libs/STLport/STLport-5.2.1-r3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/stlport/${P}.tar.bz2
 
 LICENSE="boehm-gc HPND"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="boost debug static static-libs threads"
 
 DEPEND="boost? ( dev-libs/boost:= )"



[gentoo-commits] repo/gentoo:master commit in: net-wireless/irda-utils/

2015-11-12 Thread Agostino Sarubbo
commit: d02fcfd90817159d4027f10b15c6f5ad8ae1f5be
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 09:39:30 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 09:39:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d02fcfd9

net-wireless/irda-utils: ppc stable wrt bug #565134

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-wireless/irda-utils/irda-utils-0.9.18-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/irda-utils/irda-utils-0.9.18-r4.ebuild 
b/net-wireless/irda-utils/irda-utils-0.9.18-r4.ebuild
index 51b23d2..7f13001 100644
--- a/net-wireless/irda-utils/irda-utils-0.9.18-r4.ebuild
+++ b/net-wireless/irda-utils/irda-utils-0.9.18-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/irda/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~sh x86"
+KEYWORDS="amd64 ~arm ppc ~sh x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:bug561696 commit in: profiles/

2015-11-12 Thread Justin Lecher
commit: c530f5d82fc92cc21eb4f9215f884b7c24db43f2
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:00:15 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:00:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c530f5d8

Revert "profile: Mask vulnerable Version"

This reverts commit 1b4f8c28eb3cb1b9311a020b66dc4426765d49bd.

 profiles/package.mask | 6 --
 1 file changed, 6 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 347f8f0..cfd5542 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,12 +30,6 @@
 
 #--- END OF EXAMPLES ---
 
-# Justin Lecher  (10 Nov 2015)
-#  (11 Nov 2015)
 # Mask latest xdebug{,-client} beta versions
 # Upstream keeps changing the tarballs causing Manifest errors.



[gentoo-commits] repo/gentoo:bug561696 commit in: dev-python/cryptography/, dev-python/cryptography/files/

2015-11-12 Thread Justin Lecher
commit: 44fc3fd2f0a32d3be3bbee6a819471bce6f707c0
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:26:21 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:26:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44fc3fd2

dev-python/cryptography: Drop vulnerable versions

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=561696

obsoletes:
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=561604
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=559648
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=521796

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/cryptography/Manifest   | 11 --
 dev-python/cryptography/cryptography-0.5.4.ebuild  | 36 -
 dev-python/cryptography/cryptography-0.6.1.ebuild  | 42 
 .../cryptography/cryptography-0.7.1-r1.ebuild  | 40 ---
 dev-python/cryptography/cryptography-0.7.2.ebuild  | 38 --
 dev-python/cryptography/cryptography-0.8.1.ebuild  | 38 --
 dev-python/cryptography/cryptography-0.8.2.ebuild  | 39 --
 dev-python/cryptography/cryptography-0.8.ebuild| 38 --
 dev-python/cryptography/cryptography-0.9.2.ebuild  | 43 
 dev-python/cryptography/cryptography-0.9.3.ebuild  | 43 
 .../cryptography/cryptography-1.0.1-r1.ebuild  | 46 --
 dev-python/cryptography/cryptography-1.0.1.ebuild  | 45 -
 dev-python/cryptography/cryptography-1.0.ebuild| 45 -
 dev-python/cryptography/files/0.7-setup.patch  | 22 ---
 14 files changed, 526 deletions(-)

diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest
index 17aebd2..0c9b5e0 100644
--- a/dev-python/cryptography/Manifest
+++ b/dev-python/cryptography/Manifest
@@ -1,13 +1,2 @@
-DIST cryptography-0.5.4.tar.gz 320104 SHA256 
5675999f3744cbc32a60cb0bba64de21405abced32ce19655212612262dd270d SHA512 
bdfaed6271e21d8b5cef4e8d0cdb7fd4bfb5b607c0f14c7b33888301f9922035f337120c3252d2df16f1844129d4b18dd97abe566bccc18c829faa752af2b4a7
 WHIRLPOOL 
5522d40bef251b5005e17fa2f43c4f015a7422c2aa9a09cfed8f84365506a1c8d9a97d956d97a3130a46aa7a0d0e90258f9c365ffb196ad0df2be4f6548e3b10
-DIST cryptography-0.6.1.tar.gz 236721 SHA256 
024910130a01eda0ce969764d893d2e397168ebb94181ca1ea3e23e19912329e SHA512 
b99338bbbeb70f37e0bfcc6ef33ddff5beb74f7876a30d34deb3a433ddd77f821e5cc5dde228f792362ae7a261d4ceb3b702fb1a8c30ce15a1e6e4de98ef1afa
 WHIRLPOOL 
a641342fe13f584ee657aa917172810117416cd426746af30499e43174041c8031598c223398dace1ad1385e3905a27c9f6e5ac5def88a8b87e2ed3bfd95b9ce
-DIST cryptography-0.7.1.tar.gz 247309 SHA256 
9ee59090b242ad0d6abcedebb9ab54358d5efd1a45706195f6e5928f7725bb76 SHA512 
ae552fcb8005c98ded32b47edf61d4bf2b495c63b9ac744545d3d1ada7f6f64b1b23a5d9f396bf2a998fcc58370307c893f324806e0c825b9c63fe78698bdc4b
 WHIRLPOOL 
dfdb3ff90291c7f3dca3835532608b742c9768311b204bb4a41c62ed6d4ed48b812898a482d86ced10887daebe2b57b1451df51f297f9a19a7ce80a05446f938
-DIST cryptography-0.7.2.tar.gz 247477 SHA256 
fab7fcdde360ec6614442d0321dcd0eff5e43544cb30d975e9d75a914a4cdf78 SHA512 
5afc8e01ffcdbd829716e65663cca91ad7ec42f5b65f64f6f1d3189c5cb7a209dcd67698225e1bb54eb6428fa5abdd25405a7ae1d234d5194697d3b879483226
 WHIRLPOOL 
a5ed7d6f9e9f51d9a41e1014968ccada84b13b5e6f80ad14278edb1eacbf7abf4ed5009b942845840ba84b50b4dd4bcd2c41032444e3452fd42c669babdcdbed
-DIST cryptography-0.8.1.tar.gz 268240 SHA256 
f4e041bc83c1be94d87116a7aa201c378b7c6581be4d83994b2da0a84499f73b SHA512 
84b32ca493f31efe00a4c18104dfcba4d1f6de0698f1606057b1473ae2217448a319d62c1b872955639129bdf5f69d2e7fcdf5b7ef9b0ecc0cd98c92f224f557
 WHIRLPOOL 
c0fb0a1948fdc2f03127184d1dd16b5b97338953c6ab8c08c568df45cfec15d307797bb71a612667f4c856b6630fad6bd02d24df4d602c73e39b2b10f554f165
-DIST cryptography-0.8.2.tar.gz 268288 SHA256 
1c9a022ab3decaf152093e2ef2d5ee4258c72c7d429446c86bd68ff8c0929db6 SHA512 
8a76e325387284facdaa381c27fd8ca3c2e7e4c6dfe41bf6eccdfdc4004f8a5bd8a95f0ff6537dd012f5c7fcec5f86d96fe86a64ec15d63e4bf673d8461a8225
 WHIRLPOOL 
bbee1a538daf9fffcdd87f132e678505f2c92def5e00a3c139c68cfc1a91308546705954d9d546696a9f50cb750ddc9e60fe42bbcdc48516c7e06662b7f715a7
-DIST cryptography-0.8.tar.gz 268083 SHA256 
e54601e4dec2b8acb90f5ed3b93d23d280964adbefe1723ac82acc453a694480 SHA512 
e17d2d31f1d6da782eb3531ca9dded14e137ddc61893ef17a8238997274a85e77e8a957e1eec3ed3960675694f97750ca1f6821a2e8d974795bca3b2be49e196
 WHIRLPOOL 
ecef7a807934006ce2266ba0636a9a8b5bd30a49931ba9c83dabbd1bd6b47523dd3d32205d1ac4f94f2a8bfe4c1b23ac36fcddf4092d9e756beda74379dfc7dd
-DIST cryptography-0.9.2.tar.gz 302972 SHA256 
bc9ddd1442ce67a5bbd5598eced127de000da55f0ce25498b1174746c0290b3c SHA512 
3d13f0284d484911b1f7067966f3727de9019d24af379b1adb1e0377888680b9385792e481888d2b357bce20f250a948c22b34743b4aeb955d736e8ae9ca88da
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:bug561696 commit in: sys-auth/keystone/

2015-11-12 Thread Justin Lecher
commit: 193e3403db931a572917e49d007932226c89fae6
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:15:20 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:15:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=193e3403

sys-auth/keystone: Raise max version of dev-python/cryptography

Tested by upstream
https://review.openstack.org/#/c/244199/

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 sys-auth/keystone/keystone-2015.2..ebuild | 2 +-
 sys-auth/keystone/keystone-8.0.0.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-auth/keystone/keystone-2015.2..ebuild 
b/sys-auth/keystone/keystone-2015.2..ebuild
index a79e3ab..7acbff4 100644
--- a/sys-auth/keystone/keystone-2015.2..ebuild
+++ b/sys-auth/keystone/keystone-2015.2..ebuild
@@ -83,7 +83,7 @@ RDEPEND="
!~dev-python/routes-2.1[$(python_gen_usedep 'python2_7')]
<=dev-python/routes-2.2[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
-   <=dev-python/cryptography-1.0.1-r[${PYTHON_USEDEP}]
+   <=dev-python/cryptography-1.1-r[${PYTHON_USEDEP}]
~dev-python/six-1.9.0[${PYTHON_USEDEP}]
sqlite? (
>=dev-python/sqlalchemy-0.9.9[sqlite,${PYTHON_USEDEP}]

diff --git a/sys-auth/keystone/keystone-8.0.0.ebuild 
b/sys-auth/keystone/keystone-8.0.0.ebuild
index 3eecc03..e0ecba7 100644
--- a/sys-auth/keystone/keystone-8.0.0.ebuild
+++ b/sys-auth/keystone/keystone-8.0.0.ebuild
@@ -82,7 +82,7 @@ RDEPEND="
!~dev-python/routes-2.1[$(python_gen_usedep 'python2_7')]
<=dev-python/routes-2.2[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
-   <=dev-python/cryptography-1.0.1-r[${PYTHON_USEDEP}]
+   <=dev-python/cryptography-1.1-r[${PYTHON_USEDEP}]
~dev-python/six-1.9.0[${PYTHON_USEDEP}]
sqlite? (
>=dev-python/sqlalchemy-0.9.9[sqlite,${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:bug561696 commit in: sys-cluster/nova/

2015-11-12 Thread Justin Lecher
commit: 8fdbcd620b973c0b0586ebaa9891c032b82e0918
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:08:12 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:08:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdbcd62

sys-cluster/nova: Raise max version of dev-python/cryptography

Tested by upstream
https://review.openstack.org/#/c/244199/

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 sys-cluster/nova/nova-12.0.0.ebuild  | 2 +-
 sys-cluster/nova/nova-2015.2..ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/nova/nova-12.0.0.ebuild 
b/sys-cluster/nova/nova-12.0.0.ebuild
index 070facf..f4bf716 100644
--- a/sys-cluster/nova/nova-12.0.0.ebuild
+++ b/sys-cluster/nova/nova-12.0.0.ebuild
@@ -104,7 +104,7 @@ RDEPEND="
!~dev-python/routes-2.1[$(python_gen_usedep 'python2_7')]
<=dev-python/routes-2.2[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
-   <=dev-python/cryptography-1.0.1-r[${PYTHON_USEDEP}]
+   <=dev-python/cryptography-1.1-r[${PYTHON_USEDEP}]
>=dev-python/webob-1.2.3[${PYTHON_USEDEP}]
<=dev-python/webob-1.4.1[${PYTHON_USEDEP}]
>=dev-python/greenlet-0.3.2[${PYTHON_USEDEP}]

diff --git a/sys-cluster/nova/nova-2015.2..ebuild 
b/sys-cluster/nova/nova-2015.2..ebuild
index 1a23f08..6d8bb5d 100644
--- a/sys-cluster/nova/nova-2015.2..ebuild
+++ b/sys-cluster/nova/nova-2015.2..ebuild
@@ -105,7 +105,7 @@ RDEPEND="
!~dev-python/routes-2.1[$(python_gen_usedep 'python2_7')]
<=dev-python/routes-2.2[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
-   <=dev-python/cryptography-1.0.1-r[${PYTHON_USEDEP}]
+   <=dev-python/cryptography-1.1-r[${PYTHON_USEDEP}]
>=dev-python/webob-1.2.3[${PYTHON_USEDEP}]
<=dev-python/webob-1.4.1[${PYTHON_USEDEP}]
>=dev-python/greenlet-0.3.2[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:bug561696 commit in: app-admin/glance/

2015-11-12 Thread Justin Lecher
commit: db3b98cf0f7b0c8b2f91c3127844528e2b5a23ee
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:04:32 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:04:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3b98cf

app-admin/glance: Raise max version of dev-python/cryptography

Tested by upstream
https://review.openstack.org/#/c/244199/

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 app-admin/glance/glance-11.0.0.ebuild  | 2 +-
 app-admin/glance/glance-2015.2..ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/glance/glance-11.0.0.ebuild 
b/app-admin/glance/glance-11.0.0.ebuild
index 260b5b0..c818f05 100644
--- a/app-admin/glance/glance-11.0.0.ebuild
+++ b/app-admin/glance/glance-11.0.0.ebuild
@@ -158,7 +158,7 @@ RDEPEND="
>=dev-python/castellan-0.2.0[${PYTHON_USEDEP}]
<=dev-python/castellan-0.2.1[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
-   <=dev-python/cryptography-1.0.1-r[${PYTHON_USEDEP}]
+   <=dev-python/cryptography-1.1-r[${PYTHON_USEDEP}]
 "
 
 PATCHES=(

diff --git a/app-admin/glance/glance-2015.2..ebuild 
b/app-admin/glance/glance-2015.2..ebuild
index 5b3031d..8acbaa6 100644
--- a/app-admin/glance/glance-2015.2..ebuild
+++ b/app-admin/glance/glance-2015.2..ebuild
@@ -159,7 +159,7 @@ RDEPEND="
>=dev-python/castellan-0.2.0[${PYTHON_USEDEP}]
<=dev-python/castellan-0.2.1[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.0[${PYTHON_USEDEP}]
-   <=dev-python/cryptography-1.0.1-r[${PYTHON_USEDEP}]
+   <=dev-python/cryptography-1.1-r[${PYTHON_USEDEP}]
 "
 
 PATCHES=(



[gentoo-commits] repo/gentoo:bug561696 commit in: sys-cluster/nova/

2015-11-12 Thread Justin Lecher
commit: 755708afe8929f5a878af6b8e7ce6b0cad349154
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:12:54 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:12:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=755708af

sys-cluster/nova: Style enhancements

Chop DESCRIPTION
Fix indention for tab=4 spaces

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 sys-cluster/nova/nova-12.0.0.ebuild  | 12 +++-
 sys-cluster/nova/nova-2015.1.1-r3.ebuild |  9 +
 sys-cluster/nova/nova-2015.1.2.ebuild|  9 +
 sys-cluster/nova/nova-2015.1..ebuild |  9 +
 sys-cluster/nova/nova-2015.2..ebuild |  9 +
 5 files changed, 27 insertions(+), 21 deletions(-)

diff --git a/sys-cluster/nova/nova-12.0.0.ebuild 
b/sys-cluster/nova/nova-12.0.0.ebuild
index f4bf716..7f158bd 100644
--- a/sys-cluster/nova/nova-12.0.0.ebuild
+++ b/sys-cluster/nova/nova-12.0.0.ebuild
@@ -7,18 +7,20 @@ PYTHON_COMPAT=( python2_7 python3_4 )
 
 inherit distutils-r1 eutils linux-info multilib user
 
-DESCRIPTION="A cloud computing fabric controller (main part of an IaaS system) 
written in Python"
+DESCRIPTION="Cloud computing fabric controller (main part of an IaaS system) 
in Python"
 HOMEPAGE="https://launchpad.net/nova;
-SRC_URI="https://launchpad.net/${PN}/liberty/${PV}/+download/${P}.tar.gz
+SRC_URI="
+   https://launchpad.net/${PN}/liberty/${PV}/+download/${P}.tar.gz

https://dev.gentoo.org/~prometheanfire/dist/nova/liberty/nova.conf.sample -> 
liberty-nova.conf.sample"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="+compute compute-only iscsi +kvm +memcached mysql +novncproxy 
openvswitch postgres +rabbitmq sqlite test xen"
-REQUIRED_USE="!compute-only? ( || ( mysql postgres sqlite ) )
-   compute-only? ( compute 
!rabbitmq !memcached !mysql !postgres !sqlite )
-   compute? ( ^^ ( kvm xen ) )"
+REQUIRED_USE="
+   !compute-only? ( || ( mysql postgres sqlite ) )
+   compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )
+   compute? ( ^^ ( kvm xen ) )"
 
 CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 # need to package dev-python/sphinxcontrib-seqdiag

diff --git a/sys-cluster/nova/nova-2015.1.1-r3.ebuild 
b/sys-cluster/nova/nova-2015.1.1-r3.ebuild
index 0d73892..40e2a43 100644
--- a/sys-cluster/nova/nova-2015.1.1-r3.ebuild
+++ b/sys-cluster/nova/nova-2015.1.1-r3.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 eutils linux-info multilib user
 
-DESCRIPTION="A cloud computing fabric controller (main part of an IaaS system)"
+DESCRIPTION="Cloud computing fabric controller (main part of an IaaS system) 
in Python"
 HOMEPAGE="https://launchpad.net/nova;
 SRC_URI="https://launchpad.net/${PN}/kilo/${PV}/+download/${P}.tar.gz;
 
@@ -15,9 +15,10 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="+compute compute-only iscsi +kvm +memcached mysql +novncproxy 
openvswitch postgres +rabbitmq sqlite test xen"
-REQUIRED_USE="!compute-only? ( || ( mysql postgres sqlite ) )
-   compute-only? ( compute 
!rabbitmq !memcached !mysql !postgres !sqlite )
-   compute? ( ^^ ( kvm xen ) )"
+REQUIRED_USE="
+   !compute-only? ( || ( mysql postgres sqlite ) )
+   compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )
+   compute? ( ^^ ( kvm xen ) )"
 
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]

diff --git a/sys-cluster/nova/nova-2015.1.2.ebuild 
b/sys-cluster/nova/nova-2015.1.2.ebuild
index 598ac28..b516ec7 100644
--- a/sys-cluster/nova/nova-2015.1.2.ebuild
+++ b/sys-cluster/nova/nova-2015.1.2.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 eutils linux-info multilib user
 
-DESCRIPTION="A cloud computing fabric controller (main part of an IaaS system)"
+DESCRIPTION="Cloud computing fabric controller (main part of an IaaS system) 
in Python"
 HOMEPAGE="https://launchpad.net/nova;
 SRC_URI="https://launchpad.net/${PN}/kilo/${PV}/+download/${P}.tar.gz;
 
@@ -15,9 +15,10 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="+compute compute-only iscsi +kvm +memcached mysql +novncproxy 
openvswitch postgres +rabbitmq sqlite test xen"
-REQUIRED_USE="!compute-only? ( || ( mysql postgres sqlite ) )
-   compute-only? ( compute 
!rabbitmq !memcached !mysql !postgres !sqlite )
-   compute? ( ^^ ( kvm xen ) )"
+REQUIRED_USE="
+   !compute-only? ( || ( mysql postgres sqlite ) )
+   compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )
+   compute? ( ^^ ( kvm xen ) )"
 
 DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]

diff --git 

[gentoo-commits] repo/gentoo:bug561696 commit in: app-admin/glance/

2015-11-12 Thread Justin Lecher
commit: 2b4484b7f8bb8627e22d10fef7f50c08e9c539c8
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 09:07:14 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 09:07:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4484b7

app-admin/glance: Chop DESCRIPTION

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 app-admin/glance/glance-11.0.0.ebuild  | 3 +--
 app-admin/glance/glance-2015.1.1-r3.ebuild | 3 +--
 app-admin/glance/glance-2015.1.2.ebuild| 3 +--
 app-admin/glance/glance-2015.1..ebuild | 3 +--
 app-admin/glance/glance-2015.2..ebuild | 3 +--
 5 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/app-admin/glance/glance-11.0.0.ebuild 
b/app-admin/glance/glance-11.0.0.ebuild
index c818f05..cbdf339 100644
--- a/app-admin/glance/glance-11.0.0.ebuild
+++ b/app-admin/glance/glance-11.0.0.ebuild
@@ -7,8 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_4 )
 
 inherit distutils-r1 user
 
-DESCRIPTION="Provides services for discovering, registering, and retrieving
-virtual machine images"
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
 HOMEPAGE="https://launchpad.net/glance;
 SRC_URI="https://launchpad.net/${PN}/liberty/${PV}/+download/${P}.tar.gz;
 

diff --git a/app-admin/glance/glance-2015.1.1-r3.ebuild 
b/app-admin/glance/glance-2015.1.1-r3.ebuild
index f442c1a..fe52e6c 100644
--- a/app-admin/glance/glance-2015.1.1-r3.ebuild
+++ b/app-admin/glance/glance-2015.1.1-r3.ebuild
@@ -7,8 +7,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 user
 
-DESCRIPTION="Services for discovering, registering, and retrieving
-virtual machine images"
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
 HOMEPAGE="https://launchpad.net/glance;
 SRC_URI="https://launchpad.net/${PN}/kilo/${PV}/+download/${P}.tar.gz;
 

diff --git a/app-admin/glance/glance-2015.1.2.ebuild 
b/app-admin/glance/glance-2015.1.2.ebuild
index 24084b1..7d91039 100644
--- a/app-admin/glance/glance-2015.1.2.ebuild
+++ b/app-admin/glance/glance-2015.1.2.ebuild
@@ -7,8 +7,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 user
 
-DESCRIPTION="Services for discovering, registering, and retrieving
-virtual machine images"
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
 HOMEPAGE="https://launchpad.net/glance;
 SRC_URI="https://launchpad.net/${PN}/kilo/${PV}/+download/${P}.tar.gz;
 

diff --git a/app-admin/glance/glance-2015.1..ebuild 
b/app-admin/glance/glance-2015.1..ebuild
index c6c822b..2192150 100644
--- a/app-admin/glance/glance-2015.1..ebuild
+++ b/app-admin/glance/glance-2015.1..ebuild
@@ -7,8 +7,7 @@ PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 git-r3 user
 
-DESCRIPTION="Services for discovering, registering, and retrieving
-virtual machine images"
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
 HOMEPAGE="https://launchpad.net/glance;
 EGIT_REPO_URI="https://github.com/openstack/glance.git;
 EGIT_BRANCH="stable/kilo"

diff --git a/app-admin/glance/glance-2015.2..ebuild 
b/app-admin/glance/glance-2015.2..ebuild
index 8acbaa6..350ccfb 100644
--- a/app-admin/glance/glance-2015.2..ebuild
+++ b/app-admin/glance/glance-2015.2..ebuild
@@ -7,8 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_4 )
 
 inherit distutils-r1 git-r3 user
 
-DESCRIPTION="Services for discovering, registering, and retrieving
-virtual machine images"
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
 HOMEPAGE="https://launchpad.net/glance;
 EGIT_REPO_URI="https://github.com/openstack/glance.git;
 EGIT_BRANCH="stable/liberty"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libxml2/

2015-11-12 Thread Jeroen Roovers
commit: c83152800ca679a1e142efcd42a330ca453eef1f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Nov 12 08:25:50 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Nov 12 08:26:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8315280

dev-libs/libxml2: Stable for HPPA (bug #560524).

Package-Manager: portage-2.2.24
RepoMan-Options: --ignore-arches

 dev-libs/libxml2/libxml2-2.9.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild 
b/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild
index 3bdd3c6..ccc3cac 100644
--- a/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild
+++ b/dev-libs/libxml2/libxml2-2.9.2-r4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.xmlsoft.org/;
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="debug examples icu ipv6 lzma python readline static-libs test"
 
 XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite;



[gentoo-commits] repo/gentoo:master commit in: x11-misc/py3status/

2015-11-12 Thread Alexys Jacob
commit: afe50714983b84e382b735f140db36cbfb01481d
Author: Ultrabug  gentoo  org>
AuthorDate: Thu Nov 12 09:23:29 2015 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Nov 12 09:23:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe50714

x11-misc/py3status: version bump

Package-Manager: portage-2.2.24

 x11-misc/py3status/Manifest   | 2 +-
 x11-misc/py3status/{py3status-2.6.ebuild => py3status-2.7.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/py3status/Manifest b/x11-misc/py3status/Manifest
index 482e7fe..d267311 100644
--- a/x11-misc/py3status/Manifest
+++ b/x11-misc/py3status/Manifest
@@ -1 +1 @@
-DIST py3status-2.6.tar.gz 64161 SHA256 
093ffe71605fa7c21ce15708fd8a627584254071bb1f415aaab414e03a0129a9 SHA512 
717c88102b649eb134ee03035c694bc5526a0a0d501a5f16bd191bf8bc95b2dc8645d6f2fa90ef91deb96e905f4930d0e2f4fb8a3dfd410f73dda29f7832fbaa
 WHIRLPOOL 
ad4b890b624ae7e6380972ad24e8f6599102a4de215226d7b12ffcff55ea8a1b7cf6b55c997471034de6103cc1872d9b7cae089fa7941350d55ea33e730380a6
+DIST py3status-2.7.tar.gz 70574 SHA256 
aa430a7613a1cfdce7e99c9f3dc6f097f9a0fa0c75d7cc1f0e2d593afab2cd52 SHA512 
3afb387d30e599aad9b2428d63ab5a7ede9775f0b0804f530a87c7a9b4dce4e770041ed6038931c085af63c1e22ce70d12718705e6359ba4abc67041da31e89d
 WHIRLPOOL 
611af2f8a486ed2616c564f4c6808d8b6b34539391fc8f01d9a7e75be7b721020654f6f7d5432d818f44a8fa15e7b12bba186ae489bb8fd53493a355f3cdd336

diff --git a/x11-misc/py3status/py3status-2.6.ebuild 
b/x11-misc/py3status/py3status-2.7.ebuild
similarity index 93%
rename from x11-misc/py3status/py3status-2.6.ebuild
rename to x11-misc/py3status/py3status-2.7.ebuild
index ffe53b4..6059e53 100644
--- a/x11-misc/py3status/py3status-2.6.ebuild
+++ b/x11-misc/py3status/py3status-2.7.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 SRC_URI="https://github.com/ultrabug/py3status/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/swi-prolog/

2015-11-12 Thread Keri Harris
commit: c721432b7eb260229004164dca834f2e625b5b9b
Author: Keri Harris  gentoo  org>
AuthorDate: Thu Nov 12 09:51:23 2015 +
Commit: Keri Harris  gentoo  org>
CommitDate: Thu Nov 12 09:51:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c721432b

dev-lang/swi-prolog: bump 7.3 development version

Package-Manager: portage-2.2.20.1

 dev-lang/swi-prolog/Manifest |   2 +
 dev-lang/swi-prolog/swi-prolog-7.3.11.ebuild | 142 +++
 2 files changed, 144 insertions(+)

diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest
index 1717f70..57b230a 100644
--- a/dev-lang/swi-prolog/Manifest
+++ b/dev-lang/swi-prolog/Manifest
@@ -4,8 +4,10 @@ DIST swi-prolog-7.2.2-gentoo-patchset-0.tar.gz 1414 SHA256 
145f585828da45d89c6ab
 DIST swi-prolog-7.2.3-gentoo-patchset-0.tar.gz 1418 SHA256 
b8cca09211889c3fdca47bcc3093f0811b773553d457b6d4cd423d0a3483ac8b SHA512 
6fe185bc6a015bdb0c1466818f2e45897c098d98c091854cb86f1756458585724a8d17c1c8a5593ee054cbe0400c322b27bf107194aa1ba91d478623ff468e39
 WHIRLPOOL 
aa9df0ddc7a01e776074c32f381b92f2738c86ac7a3462749cb24954549e1979c5c8c17038a3161772e41c7f39637ee3547efcda52ef2362e03d814af4cd885b
 DIST swi-prolog-7.2.3-gentoo-patchset-1.tar.gz 1875 SHA256 
c11e48122dc468f21e08da4a65f5a2daa9e0ddbc2e186bbd952626c95b29db04 SHA512 
3506f4168d52f7d3539cd753c5153750df8c3239b78ffac1784c634b585d5fb0c825700e77abc9c1f467af71473ae1861eef629ebdf76b7c783d276c393f40fc
 WHIRLPOOL 
8b70ab91592280d0634c6c897771696c0c63d30680044994cedf69f18cd4f386adf833998e64d4ad892cff97300b5bbfaa8dec8448ea04ebaba7e31f7e9c30d0
 DIST swi-prolog-7.3.10-gentoo-patchset-1.tar.gz 1117 SHA256 
e3596515edc419cca5fed53410d4edbc8bb95eeff206274260916fb348c97f0d SHA512 
2be89c25e9980785760305c9d443a92388ce0bfb09e1f64e5a8029341e9d7cc97bafa32992382c303aa51cf741f989e64bc675f5fdd31d09dac7442ee9b3d3ad
 WHIRLPOOL 
a2d206a564652bff73bd946f9aee386da7b76647e6f93d55c33cf45c8331d8d2afd980746e4a25f40825f6258fc53c926a94279d75e66053e2c21d80dda0eeb8
+DIST swi-prolog-7.3.11-gentoo-patchset-0.tar.gz 338 SHA256 
9440ba227c09708255790dce8797d79a258592dd0ea47853b273f45a1682a2ba SHA512 
40e5b92b2491835a255b5666b43c4f9b4f24ad8df3d5fb7f7eaae51ee6582209cfe256c4ebdede72d3101838df1ee5d48c91c36ec7b5988555c2bcdd00cb8501
 WHIRLPOOL 
1e5983899f6acb4cb22102c445020b1d328ad2621745f9d30f1f84dc1b4f6498ad0d4043f078cb7de12d9acc11ceff925a4f28d004f48944c7afddf3876976ff
 DIST swi-prolog-7.3.9-gentoo-patchset-0.tar.gz 1507 SHA256 
029541109cc60d176b65d12903ee2e06f209c38ff29421674e660d31d6ee44d4 SHA512 
357df9c6e5ce5b046e4ceb7d65b358bd191ff8c912812deba918fe3b76c48a46c9f89f28ddc950de151e47ec57d654c53f537024da5f7f2f373f7466f07f914f
 WHIRLPOOL 
5ac911d2950d4ccffe1db959467215fc8d074b9a842e79aea7d8bc0d14587dce6388707b2c06e3d94474eed8feb939398daa616160642883192e6dbfe7034da2
 DIST swipl-7.2.2.tar.gz 16179490 SHA256 
c137bbe1d652a6aaa003278045e592637cd9fd5f1d52b05f9f0751bfd9449c8d SHA512 
b25ed01e49628d9b463acd0e3687eaef0e3f74e8f834a1442e66913fabf948ae6f6d662c21e3cbb1ca5793ceb96701be31c3b1d2d3a0a9694ea4706f9a64939e
 WHIRLPOOL 
1309284a4d610cb37196aca678d4823bba384ba04a84ef1212c3580bad40da3359fbe4035a13cbfdd21a4eca75df2b8a3c398a1da9061a71ba8da8276c2b17dd
 DIST swipl-7.2.3.tar.gz 16192142 SHA256 
43657d51b7c5887bc2d2bced50a9822b86a08a6841399b8e76ee877f51d646b5 SHA512 
da27a6b171d3b471401f1a91e86a4dbe98973d8a1db8c72aa27e452311d08b893b01a1de8f9f4dafcdac460774b4ea980050256d37284546941e1bdf84f8cd7b
 WHIRLPOOL 
de695c8e0317921dcc13898f7a3c88d1012e3f87f633cd25766ca5cb6637b29ca81b9245d015614089291a7d9abd0d8c7109ccae1df9297d78301d241cb258b3
 DIST swipl-7.3.10.tar.gz 16093869 SHA256 
caa2774963122cb57fb04370ea08d6a3c3ed5a5e98d92eb9865953e6b20baf5f SHA512 
0f7113f20679a85e048f8d1892777a4bd78d60787b834d2200137cbad767618ca942dd152cf69a3496577f10ce8f4d694d22394b5ae31244b7cfa8d07e01
 WHIRLPOOL 
797a8c0b5cd524e502de1ade9f33bfb8b8f9de1454bf3233643aea4870a8ed14c17ffb097edcd943dfbea1d9f50dd78a304beb55b15d4960224c4110c2e4dccc
+DIST swipl-7.3.11.tar.gz 16114511 SHA256 
d5f65705454a72450214aca612b78d99a63d7820a9c875b4131badb67cc565f9 SHA512 
d310062fbc41a4ae527265fa9acade0eeb81ee84bf4372c1af1892937ecd4b8b60a7409ba7a7a17474bee0c5a2429190f797ba0fe365a9b6b46d4be478e79a78
 WHIRLPOOL 
d12f177b4021e571bcd16282e4ef518781c726b1a75a5c188b006a8ef256e4e73d13c226727bc117b0a04f96b8151429277ef7bab8249ddf62c22704946c257c
 DIST swipl-7.3.9.tar.gz 16086076 SHA256 
0a0b6933bd37cf23446d77839651e0cbbb9d4becd74d9d47fc9d1f26fe409d04 SHA512 
b592eafdf5413e1f473a83371ea387adbfa1f64fea1a1e809d2e0eafc11b95fd3e47a429e39dcb6c0c27f490d9ba20702805866e9f9d71d5ba2a135c4adb6043
 WHIRLPOOL 
0920d8d605be185035d3876adb92ba77c0b9081e66ee8da5fd9cabe83902fb9562fbce39769c137fddbf41f9b6580c267676a4cd21ed91b51f7a60827f5d6a75

diff --git a/dev-lang/swi-prolog/swi-prolog-7.3.11.ebuild 
b/dev-lang/swi-prolog/swi-prolog-7.3.11.ebuild
new file mode 100644
index 000..9fab135
--- /dev/null
+++ b/dev-lang/swi-prolog/swi-prolog-7.3.11.ebuild
@@ -0,0 +1,142 

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/httpclient/

2015-11-12 Thread Agostino Sarubbo
commit: ab4f6d1ceaa992d3eccacd537c112fb6920495fd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:14:56 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:14:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab4f6d1c

dev-ruby/httpclient: ppc stable wrt bug #564986

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/httpclient/httpclient-2.6.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/httpclient/httpclient-2.6.0.1.ebuild 
b/dev-ruby/httpclient/httpclient-2.6.0.1.ebuild
index d966f66..0d77670 100644
--- a/dev-ruby/httpclient/httpclient-2.6.0.1.ebuild
+++ b/dev-ruby/httpclient/httpclient-2.6.0.1.ebuild
@@ -22,7 +22,7 @@ 
SRC_URI="https://github.com/nahi/httpclient/archive/v${PV}.tar.gz -> ${P}.tgz"
 LICENSE="Ruby"
 SLOT="0"
 
-KEYWORDS="amd64 ~arm ~ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/unf/

2015-11-12 Thread Agostino Sarubbo
commit: 482de3a1b75e55389aed0b3c5c444ef2d12c90c1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:14:40 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:14:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=482de3a1

dev-ruby/unf: ppc stable wrt bug #564986

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/unf/unf-0.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/unf/unf-0.1.4.ebuild b/dev-ruby/unf/unf-0.1.4.ebuild
index 3f4cdf2..47eab92 100644
--- a/dev-ruby/unf/unf-0.1.4.ebuild
+++ b/dev-ruby/unf/unf-0.1.4.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/knu/ruby-unf;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x86-solaris"
 IUSE="test"
 
 ruby_add_rdepend "dev-ruby/unf_ext"



[gentoo-commits] repo/gentoo:master commit in: dev-lang/ruby/

2015-11-12 Thread Agostino Sarubbo
commit: 761c00312246157b4d6a3420bd881b4d58f6a26d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:15:04 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:15:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761c0031

dev-lang/ruby: ppc stable wrt bug #565110

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild | 2 +-
 dev-lang/ruby/ruby-2.1.7.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild 
b/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild
index 4664e3a..2be3a32 100644
--- a/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild
+++ b/dev-lang/ruby/ruby-2.0.0_p647-r1.ebuild
@@ -33,7 +33,7 @@ SRC_URI="mirror://ruby/2.0/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 +rdoc rubytests socks5 ssl xemacs 
ncurses +readline cpu_flags_x86_sse2"
 
 RDEPEND="

diff --git a/dev-lang/ruby/ruby-2.1.7.ebuild b/dev-lang/ruby/ruby-2.1.7.ebuild
index e27917d..8c3e686 100644
--- a/dev-lang/ruby/ruby-2.1.7.ebuild
+++ b/dev-lang/ruby/ruby-2.1.7.ebuild
@@ -34,7 +34,7 @@ SRC_URI="mirror://ruby/2.1/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 +rdoc rubytests socks5 ssl xemacs 
ncurses +readline"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda/

2015-11-12 Thread Agostino Sarubbo
commit: 470144a9eb7a27bb9e1aafc1f3b12e9bbf56be1c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:14:29 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:14:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470144a9

dev-ruby/shoulda: ppc stable wrt bug #564986

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/shoulda/shoulda-2.11.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/shoulda/shoulda-2.11.3-r2.ebuild 
b/dev-ruby/shoulda/shoulda-2.11.3-r2.ebuild
index 2008cdb..57d8a9f 100644
--- a/dev-ruby/shoulda/shoulda-2.11.3-r2.ebuild
+++ b/dev-ruby/shoulda/shoulda-2.11.3-r2.ebuild
@@ -19,7 +19,7 @@ RUBY_S="thoughtbot-${PN}-*"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 # tests seem to be quite broken :( They require working version of



[gentoo-commits] dev/dilfridge:master commit in: profiles/uni-regensburg/

2015-11-12 Thread Andreas Hüttel
commit: 7dab6427702309a0d998ee354c31118fbc5205e0
Author: Andreas K. Huettel (dilfridge)  gentoo  org>
AuthorDate: Thu Nov 12 22:41:13 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Nov 12 22:41:13 2015 +
URL:https://gitweb.gentoo.org/dev/dilfridge.git/commit/?id=7dab6427

[ur-profile] use always ~arch layman

 profiles/uni-regensburg/package.accept_keywords | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/uni-regensburg/package.accept_keywords 
b/profiles/uni-regensburg/package.accept_keywords
index f6cc99b..3010c88 100644
--- a/profiles/uni-regensburg/package.accept_keywords
+++ b/profiles/uni-regensburg/package.accept_keywords
@@ -2,7 +2,7 @@
 sys-apps/portage
 app-portage/ufed
 app-portage/eix
-=app-portage/layman-2.3.0
+app-portage/layman
 
 # for measurement control
 dev-perl/Lab-Measurement



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycountry/

2015-11-12 Thread Manuel Rüger
commit: 61474ce07b691724b5fe6a002d148ece9d3686da
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 23:15:56 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 23:15:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61474ce0

dev-python/pycountry: Version bump

Package-Manager: portage-2.2.24

 dev-python/pycountry/Manifest  |  1 +
 dev-python/pycountry/pycountry-1.18.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/pycountry/Manifest b/dev-python/pycountry/Manifest
index 03653d7..0fcb570 100644
--- a/dev-python/pycountry/Manifest
+++ b/dev-python/pycountry/Manifest
@@ -1,3 +1,4 @@
 DIST pycountry-1.12.tar.gz 18606424 SHA256 
dce2893ceac5d5264e7d0b6bf9f0421fb9ff87b7459d1c65a518fbcd826245e9 SHA512 
6a9bfb47ce56098bc8f536afc5e671cd65304213df1e3c9754bcaac8e3cdb8293c75ec59649be5df8b974f36be333ed35fe4cd4d274baa183cfd6455d9241702
 WHIRLPOOL 
531fcfa4caeec4eda11c657e7a374d2668808ee9b94cb5192603049824fbd12a6999682a321d4c577f836acd9106f667f85312ec29e9d78fca74b7b93c297356
 DIST pycountry-1.13.tar.gz 5007397 SHA256 
3b72f2c334e702d463205e510d8d9b3fc8364a2f647074f543a1da2602730918 SHA512 
1b32e87630efa8d3b6fbd4f60ce837c4df451fb097402b658d63ba6589b5761c719a80232142d557a7220ad549fcf4cb686b12ab3b3b5f2be51253548d0169ac
 WHIRLPOOL 
bc5818ce45c5bb23bb37a4e375acdfcc9419aa602940985a519a1941f28655156d46a0f17b2ace87e92f8f62af6fdf81b89817c69f2f5a4e12d1a026cbb9eefd
 DIST pycountry-1.14.tar.gz 5009511 SHA256 
e5012671e4c1e0280574fff5bce50d892e8b56dea43e867661088c1bf91c2f0c SHA512 
93196bed14b616fd696ff993da8b49254c5fd1f9af37f5519e64b27d7e58cee25ace8fcfbe0328fc6e03f1ad5f3be70c390f467643ad9b419b3ec65e03c7adbf
 WHIRLPOOL 
6231af9dc9f63d4b22b10ca0bbbded9a9e3e2d5728825dc84ea863e8d1c39b7c3331187cbff53cd572cfeb1fa3639c8452d97a6cddc317b06bbeac5e431d
+DIST pycountry-1.18.tar.gz 5020542 SHA256 
23bb173d0281e98eb7b432d8dc6819e5fe6573e505454d228558f61e1f5ae1e6 SHA512 
eab2bf1711f514b3842aee6004a904573e974b13757cf3c1a388eb8a292d92e3bdb801265a1c146df5fd510bd830297ddfcc64e41c0ed17c385335837f6721dc
 WHIRLPOOL 
c697250bbe13e9b471e0b19857d4afcfdaaf85410a07131727e75c23ac5d7f214682e993f1d799c26417e79ae78b83400e0e3401d2bcbb4afae5d40bf9456346

diff --git a/dev-python/pycountry/pycountry-1.18.ebuild 
b/dev-python/pycountry/pycountry-1.18.ebuild
new file mode 100644
index 000..c35e099
--- /dev/null
+++ b/dev-python/pycountry/pycountry-1.18.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="ISO country, subdivision, language, currency, script definitions 
and their translations"
+HOMEPAGE="https://pypi.python.org/pypi/pycountry;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~sparc ~ppc ~x86"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+   # 
https://bitbucket.org/techtonik/pycountry/issue/8/test_locales-pycountry-015-pypy
+   pushd "${BUILD_DIR}"/lib > /dev/null
+   if [[ "${EPYTHON}" == pypy || "${EPYTHON}" == pypy3 ]]; then
+   sed -e 's:test_locales:_&:' -i pycountry/tests/test_general.py 
|| die
+   fi
+   py.test ${PN}/tests/test_general.py || die
+   popd > /dev/null
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/texttable/

2015-11-12 Thread Manuel Rüger
commit: 22be93a47803455cdedde0328dd857c992ba2d26
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 23:17:49 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 23:17:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22be93a4

dev-python/texttable: Version bump

Package-Manager: portage-2.2.24

 dev-python/texttable/Manifest   |  1 +
 dev-python/texttable/texttable-0.8.3.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest
index a759efb..c1faff0 100644
--- a/dev-python/texttable/Manifest
+++ b/dev-python/texttable/Manifest
@@ -1,2 +1,3 @@
 DIST texttable-0.8.1.tar.gz 6033 SHA256 
3d143a71c37c38e25c7b5cef3a861d3c2a0fcbfbeefc150483c9ccd999c3ee5e SHA512 
f7bada98b993531a4150961e143760b6e34532ea0f49a92964fe7149989164bad6380222e896bc81907ac99ee775e926de543d95f351a66e96ccedf4d081a646
 WHIRLPOOL 
d817fa1d9bebcf0563a558ce1ace8cb2e782de2efb572b63031bf37434e091500fb0b2d81eeb39ce7acc6ea7b5d84e619715aab3c9b6a438828303b6729eb582
 DIST texttable-0.8.2.tar.gz 8538 SHA256 
c0c5b2aa4eab132d40aadb7c4e81f98fc93d3a1e6cb44e9be76779d74f32e6be SHA512 
af37f9bcbcf59e7887af612c36c93cb1cd98f5e724c2db91a81320d69d77aa662d5c0ed2e3dcd5a5f48c957e14682deae0fa7e026ecbc5f7803cc8bd151aeb28
 WHIRLPOOL 
44ace160697916abadc2ba30368de12d858255b3e69b4142b7ead90d64c279008f24452039ed3c4e65d2412481a446917721e1c1c54dcb6c830fa14714fb3af2
+DIST texttable-0.8.3.tar.gz 8569 SHA256 
f333ac915e7c5daddc7d4877b096beafe74ea88b4b746f82a4b110f84e348701 SHA512 
d9a50f6fd9cd2a6d55afd5e686ac8ff2b2ebcf8c8041209ffae3e3864529c54a384840a65df2b87a942528005ca864d00bb01dfaeb33308843c01db7471931c8
 WHIRLPOOL 
5086e7f26781b2cc9806420f7f9bf02a3e1a0c4d24dd2bfeb8ad8e497ecdbb5e4c8cf8a7de09ebe8cc7930eba54b0b560a9281471d8013a8a3fb472da928d066

diff --git a/dev-python/texttable/texttable-0.8.3.ebuild 
b/dev-python/texttable/texttable-0.8.3.ebuild
new file mode 100644
index 000..bf99f6b
--- /dev/null
+++ b/dev-python/texttable/texttable-0.8.3.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1
+
+DESCRIPTION="module for creating simple ASCII tables"
+HOMEPAGE="http://foutaise.org/code/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: net-mail/qprint/

2015-11-12 Thread Manuel Rüger
commit: 7e09daf1bb4049a2be73c6a2063f8c99c00e84cd
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Nov 12 23:24:07 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Nov 12 23:24:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e09daf1

net-mail/qprint: Version bump

Package-Manager: portage-2.2.24

 net-mail/qprint/Manifest  |  1 +
 net-mail/qprint/qprint-1.1.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/net-mail/qprint/Manifest b/net-mail/qprint/Manifest
index 060b014..3691747 100644
--- a/net-mail/qprint/Manifest
+++ b/net-mail/qprint/Manifest
@@ -1 +1,2 @@
 DIST qprint-1.0.tar.gz 248872 SHA256 
a92f02f2b1c12e29895df7ce200bd8001ce6be9ef092ef14284f94918719bfa8 SHA512 
2cba2e4c986e51485f26988173d16bfdbecbc9e84aeb7abbf3e77fba8f9d5ad442c0d61a8d17f4b715c0ec0b3ec25b948438fa5c88a0777d7aff7b6d99c40a31
 WHIRLPOOL 
09a51ae9579ed2b21d4c1d2bfef0711a1be775768bb4dd41a44e3f201f2d07309f1210cac046f9cd34c0070a2c42276039ae28391d676c7b915ecd2fe6c570e4
+DIST qprint-1.1.tar.gz 358575 SHA256 
ffa9ca1d51c871fb3b56a4bf0165418348cf080f01ff7e59cd04511b9665019c SHA512 
4748f52cc8cabf72a2685fba93ee9957a9a36658a8b0c9fc1994e1779aad59a94b942ed3dd2501c6a35636e7c75e24d512a5de5f95b0ba66ae40acee8bbe1cca
 WHIRLPOOL 
846d89b7775cd2d913d98ba72277a6f5e3001f4d3006c41810707682e40cef0abee546e75a9eefa94aa09fcb6afb2b5849409978a5a124c18233357896e4e48e

diff --git a/net-mail/qprint/qprint-1.1.ebuild 
b/net-mail/qprint/qprint-1.1.ebuild
new file mode 100644
index 000..2e01379
--- /dev/null
+++ b/net-mail/qprint/qprint-1.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="MIME quoted-printable data encoding and decoding utility"
+HOMEPAGE="http://www.fourmilab.ch/webtools/qprint/;
+SRC_URI="http://www.fourmilab.ch/webtools/${PN}/${P}.tar.gz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos"
+IUSE=""
+
+src_install() {
+   dodir /usr/bin
+   dodir /usr/share/man/man1
+   emake DESTDIR="${D}" install
+   dodoc INSTALL README *.html qprint.pdf qprint.w logo.gif
+}



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

2015-11-12 Thread Robin H. Johnson
commit: 9a1470f569e9f14f3941cb70feefbbd647c3b104
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Nov 11 22:27:15 2015 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Nov 12 21:17:27 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=9a1470f5

egencache: fix results when GIT_DIR is used in the environment.

If GIT_DIR is used, and .git is outside the root of the checkout, then
--work-tree=... needs to be specified, otherwise any Git command that
relies on relative directories to the root will be wrong.

Also ensure that diff-tree's --relative argument is explicitly told
what path to make the relative output for, rather rely on it being
relative to work-tree.

Signed-off-by: Robin H. Johnson  gentoo.org>

 bin/egencache | 30 ++
 1 file changed, 22 insertions(+), 8 deletions(-)

diff --git a/bin/egencache b/bin/egencache
index a9d4657..b44ad11 100755
--- a/bin/egencache
+++ b/bin/egencache
@@ -763,6 +763,16 @@ class GenChangeLogs(object):
self._changelog_reversed = changelog_reversed
self._max_jobs = max_jobs
self._max_load = max_load
+   self._repo_path = self._portdb.porttrees[0]
+   # --work-tree=... must be passed to Git if GIT_DIR is used
+   # and GIT_DIR is not a child of the root of the checkout
+   # eg:
+   # GIT_DIR=$parent/work/.git/
+   # work-tree=$parent/staging/
+   # If work-tree is not passed, Git tries to use the shared
+   # parent of the current directory and the $GIT_DIR, which can
+   # be outside the root of the checkout.
+   self._work_tree = '--work-tree=%s' % self._repo_path
 
@staticmethod
def grab(cmd):
@@ -790,7 +800,7 @@ class GenChangeLogs(object):
''' % (cp, time.strftime('%Y'
 
# now grab all the commits
-   revlist_cmd = ['git', 'rev-list']
+   revlist_cmd = ['git', self._work_tree, 'rev-list']
if self._changelog_reversed:
revlist_cmd.append('--reverse')
revlist_cmd.extend(['HEAD', '--', '.'])
@@ -802,12 +812,17 @@ class GenChangeLogs(object):
# --no-renames to avoid getting more complex records on 
the list
# --format to get the timestamp, author and commit 
description
# --root to make it work fine even with the initial 
commit
-   # --relative to get paths relative to ebuilddir
+   # --relative=$cp to get paths relative to ebuilddir
# -r (recursive) to get per-file changes
# then the commit-id and path.
 
-   cinfo = self.grab(['git', 'diff-tree', '--name-status', 
'--no-renames',
-   '--format=%ct %cN <%cE>%n%B', '--root', 
'--relative', '-r',
+   cinfo = self.grab(['git', self._work_tree, 'diff-tree',
+   '--name-status',
+   '--no-renames',
+   '--format=%ct %cN <%cE>%n%B',
+   '--root',
+   '--relative=%s' % (cp, ),
+   '-r',
c, '--', '.']).rstrip('\n').split('\n')
 
# Expected output:
@@ -888,8 +903,7 @@ class GenChangeLogs(object):
output.close()
 
def _task_iter(self):
-   repo_path = self._portdb.porttrees[0]
-   os.chdir(repo_path)
+   os.chdir(self._repo_path)
 
if 'git' not in FindVCS():
writemsg_level(
@@ -899,10 +913,10 @@ class GenChangeLogs(object):
return
 
for cp in self._portdb.cp_all():
-   os.chdir(os.path.join(repo_path, cp))
+   os.chdir(os.path.join(self._repo_path, cp))
# Determine whether ChangeLog is up-to-date by comparing
# the newest commit timestamp with the ChangeLog 
timestamp.
-   lmod = self.grab(['git', 'log', '--format=%ct', '-1', 
'.'])
+   lmod = self.grab(['git', self._work_tree, 'log', 
'--format=%ct', '-1', '.'])
if not lmod:
# This cp has not been added to the repo.
continue



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luafilesystem/

2015-11-12 Thread Zac Medico
commit: 4735f1fb8896147f9ed04235226b7ef69c789bb9
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Nov 12 23:00:34 2015 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Nov 12 23:00:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4735f1fb

dev-lua/luafilesystem: tweak gcc sed expression to avoid CFLAGS match

This will prevent -frecord-gcc-switches in CFLAGS from being matched
by the "s|gcc|$(tc-getCC)|" sed expression.

Package-Manager: portage-2.2.24

 dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild | 2 +-
 dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild
index 5d96c62..803696f 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild
@@ -19,11 +19,11 @@ RDEPEND="${DEPEND}"
 
 src_prepare() {
sed -i \
+   -e "s|gcc|$(tc-getCC)|" \
-e "s|/usr/local|/usr|" \
-e "s|/lib|/$(get_libdir)|" \
-e "s|-O2|${CFLAGS}|" \
-e "/^LIB_OPTION/s|= |= ${LDFLAGS} |" \
-   -e "s|gcc|$(tc-getCC)|" \
config || die
 }
 

diff --git a/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild 
b/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild
index 53a0b21..0ef510a 100644
--- a/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild
+++ b/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild
@@ -19,11 +19,11 @@ RDEPEND="${DEPEND}"
 
 src_prepare() {
sed -i \
+   -e "s|gcc|$(tc-getCC)|" \
-e "s|/usr/local|/usr|" \
-e "s|/lib|/$(get_libdir)|" \
-e "s|-O2|${CFLAGS}|" \
-e "/^LIB_OPTION/s|= |= ${LDFLAGS} |" \
-   -e "s|gcc|$(tc-getCC)|" \
config || die
 }
 



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

2015-11-12 Thread Mike Frysinger
commit: 15cfd145f4d28e34f1901d7630bd6d8cff9d323f
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Nov 11 04:34:22 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Nov 13 01:42:28 2015 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=15cfd145

ebuild: set up bash compat levels

To try and provide better stability across bash versions,
set the language compat level based on the current EAPI.
This does not ban newer features, it tells bash to use
the older bash behavior when the behavior changes across
versions.

 bin/eapi.sh|  8 
 bin/ebuild.sh  | 42 ++
 bin/save-ebuild-env.sh |  2 +-
 3 files changed, 51 insertions(+), 1 deletion(-)

diff --git a/bin/eapi.sh b/bin/eapi.sh
index 528e6f2..cd3e1a4 100644
--- a/bin/eapi.sh
+++ b/bin/eapi.sh
@@ -191,3 +191,11 @@ ___eapi_enables_failglob_in_global_scope() {
 ___eapi_enables_globstar() {
[[ ${1-${EAPI-0}} =~ ^(4-python|5-progress)$ ]]
 }
+
+___eapi_bash_3_2() {
+   [[ ${1-${EAPI-0}} =~ 
^(0|1|2|3|4|4-python|4-slot-abi|5|5-hdepend|5-progress)$ ]]
+}
+
+___eapi_bash_4_2() {
+   [[ ${1-${EAPI-0}} =~ ^(6)$ ]]
+}

diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index cc6a22f..4319a17 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -6,8 +6,50 @@
 # Make sure it's before everything so we don't mess aliases that follow.
 unalias -a
 
+# Make sure this isn't exported to scripts we execute.
+unset BASH_COMPAT
+
 source "${PORTAGE_BIN_PATH}/isolated-functions.sh" || exit 1
 
+# Set up the bash version compatibility level.  This does not disable
+# features when running with a newer version, but makes it so that when
+# bash changes behavior in an incompatible way, the older behavior is
+# used instead.
+__check_bash_version() {
+   # Figure out which min version of bash we require.
+   local maj min
+   if ___eapi_bash_3_2 ; then
+   maj=3 min=2
+   elif ___eapi_bash_4_2 ; then
+   maj=4 min=2
+   else
+   return
+   fi
+
+   # Make sure the active bash is sane.
+   if [[ ${BASH_VERSINFO[0]} -lt ${maj} ]] ||
+  [[ ${BASH_VERSINFO[0]} -eq ${maj} && ${BASH_VERSINFO[1]} -lt ${min} 
]] ; then
+   die ">=bash-${maj}.${min} is required"
+   fi
+
+   # Set the compat level in case things change with newer ones.  We must 
not
+   # export this into the env otherwise we might break  other shell 
scripts we
+   # execute (e.g. ones in /usr/bin).
+   BASH_COMPAT="${maj}.${min}"
+
+   # The variable above is new to bash-4.3.  For older versions, we have 
to use
+   # a compat knob.  Further, the compat knob only exists with older 
versions
+   # (e.g. bash-4.3 has compat42 but not compat43).  This means we only 
need to
+   # turn the knob with older EAPIs, and only when running newer bash 
versions:
+   # there is no bash-3.3 (it went 3.2 to 4.0), and when requiring 
bash-4.2, the
+   # var works with bash-4.3+, and you don't need to set compat to 4.2 
when you
+   # are already running 4.2.
+   if ___eapi_bash_3_2 && [[ ${BASH_VERSINFO[0]} -gt 3 ]] ; then
+   shopt -s compat32
+   fi
+}
+__check_bash_version
+
 if [[ $EBUILD_PHASE != depend ]] ; then
source "${PORTAGE_BIN_PATH}/phase-functions.sh" || die
source "${PORTAGE_BIN_PATH}/save-ebuild-env.sh" || die

diff --git a/bin/save-ebuild-env.sh b/bin/save-ebuild-env.sh
index 17e4cdc..8036342 100644
--- a/bin/save-ebuild-env.sh
+++ b/bin/save-ebuild-env.sh
@@ -75,7 +75,7 @@ __save_ebuild_env() {
__ebuild_main __ebuild_phase __ebuild_phase_with_hooks \
__ebuild_arg_to_phase __ebuild_phase_funcs default \
__unpack_tar __unset_colors \
-   __source_env_files __try_source \
+   __source_env_files __try_source __check_bash_version \
__eqaquote __eqatag \
${QA_INTERCEPTORS}
 



[gentoo-commits] dev/dilfridge:master commit in: profiles/uni-regensburg/

2015-11-12 Thread Andreas Hüttel
commit: 678af3d20c58b4a9cb400204a602f63174bde283
Author: Andreas K. Huettel (dilfridge)  gentoo  org>
AuthorDate: Thu Nov 12 22:35:30 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Nov 12 22:35:30 2015 +
URL:https://gitweb.gentoo.org/dev/dilfridge.git/commit/?id=678af3d2

[ur-profile] Take care of texstudio REQUIRED_USE

 profiles/uni-regensburg/package.use | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/uni-regensburg/package.use 
b/profiles/uni-regensburg/package.use
index ebf8e7e..af5a7cb 100644
--- a/profiles/uni-regensburg/package.use
+++ b/profiles/uni-regensburg/package.use
@@ -1,4 +1,5 @@
 app-office/akonadi-server soprano
+app-office/texstudio -qt5
 app-portage/layman sync-plugin-portage
 app-text/texlive extra publishers science png truetype xml
 app-text/xournal vanilla



[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/files/

2015-11-12 Thread Jory Pratt
commit: 2dddbba5b5d5ac1de8abe38c3cd337efc884d666
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Thu Nov 12 23:39:30 2015 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Thu Nov 12 23:39:30 2015 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=2dddbba5

Force enable hwardware acceleration support

 www-client/firefox/files/gentoo-default-prefs.js-2 | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www-client/firefox/files/gentoo-default-prefs.js-2 
b/www-client/firefox/files/gentoo-default-prefs.js-2
index cbee8f0..ad8cbb5 100644
--- a/www-client/firefox/files/gentoo-default-prefs.js-2
+++ b/www-client/firefox/files/gentoo-default-prefs.js-2
@@ -15,6 +15,7 @@ pref("intl.locale.matchOS", true);
 pref("general.useragent.locale", "chrome://global/locale/intl.properties");
 pref("extensions.autoDisableScopes", 0);
 pref("layout.css.dpi", 0);
-pref("layers.offmainthreadcomposition.enabled", false);
+pref("layers.acceleration.force-enabled",  true);
+pref("webgl.force-enabled",  true);
 
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/cwdiff/

2015-11-12 Thread Christoph Junghans
commit: a1a0dae742c6a8010aef4cc116dcef8d2b09992d
Author: Christoph Junghans  gentoo  org>
AuthorDate: Thu Nov 12 22:38:30 2015 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Thu Nov 12 22:38:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a0dae7

dev-util/cwdiff: version bump

Package-Manager: portage-2.2.20.1

 dev-util/cwdiff/Manifest|  1 +
 dev-util/cwdiff/cwdiff-0.4.0.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-util/cwdiff/Manifest b/dev-util/cwdiff/Manifest
index de12616..f62762d 100644
--- a/dev-util/cwdiff/Manifest
+++ b/dev-util/cwdiff/Manifest
@@ -1,3 +1,4 @@
 DIST cwdiff-0.2.8.tar.gz 4246 SHA256 
cdfd1489420591b36a56370c647b361f87c0c4074fed220e9c09f3e7ea8f2c22 SHA512 
bb1fb3790cc2d8f4e5f199e7abc9bf6a999ded0d25fc9e62ca1e003505f1d33b6c8575b0172a2e55128c4e5c853147304c928d0f1094c5b30e6a015b9fbcae09
 WHIRLPOOL 
7dec074fa079bb1468179efe6f559010b2d8267343ea5c77ad72810301baf49cb63977c7617bdc41321c944fdd067c6202d8a87b6bd5200f561176fac2fc115a
 DIST cwdiff-0.3.0.tar.gz 4666 SHA256 
32c70aeae4e445a439aeed7f9b01395cc74645033533cc37b6974671cf2cfd9b SHA512 
40401a0541209c83cd78ff55c62ce71dd362cf8674b07c1cdd56ad7a505741e818003f07c87fe0303cd2bfd911d99b8f560697612b32b6fee794a7671e7e86f0
 WHIRLPOOL 
aad2e3c5c6d8dc94f70c8b272969598bf134f73bc0fc030d5f4087d341a2074736e5b409afc99c8039f250c2f0154b22d86b153e7ac3e4edc12f4c0642be2e76
 DIST cwdiff-0.3.1.tar.gz 4706 SHA256 
c2b7d3a1ba7b6efae217f82773dbfc36a6bda862957ef69c67b2bcfa718c5909 SHA512 
ffea1f699d333655eebfe96048dcc96c57408d42915d707e10b9231a27cc7a8803c3b47876227e24da67376ec18f9261739b9fb13889f8b47d336ca048cbfa72
 WHIRLPOOL 
83e8eb2cd9cf4647c54ecf6306e5f030c7760c8d1ece3fd588805b2b6cf7a302ef58078da176d2ffe1dbb4613d49572c3d7f5765d4e74aeba7599cf9dfa60c2d
+DIST cwdiff-0.4.0.tar.gz 4468 SHA256 
01b4fcb372a28fed75e465fa3eb02c4b648ab17cd0e207cff5fd5718155ecd54 SHA512 
b5deda44d94bd3aa93a68da136f4170996ee02c683c38329cbc16a108e0795e86c3543759e1d7adc3d512d4dcbc416436e733341e1b4f3d96325e999e84a4fbe
 WHIRLPOOL 
52c5b4d3a15108676660e8541bdde45bd9f77a57bdf9adbaaf8f96aaf5e6bab5bda138685013504143b9cdcf8d7a3572dd8e89b74251750a7d6da96f0c1e8b8b

diff --git a/dev-util/cwdiff/cwdiff-0.4.0.ebuild 
b/dev-util/cwdiff/cwdiff-0.4.0.ebuild
new file mode 100644
index 000..70d032f
--- /dev/null
+++ b/dev-util/cwdiff/cwdiff-0.4.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+if [ "${PV}" = "" ]; then
+   EGIT_REPO_URI="git://github.com/junghans/${PN}.git 
https://github.com/junghans/${PN}.git;
+   inherit git-r3
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/junghans/cwdiff/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x64-macos ~x86-macos"
+fi
+
+DESCRIPTION="A script that wraps wdiff to support directories and colorize the 
output"
+HOMEPAGE="https://github.com/junghans/cwdiff;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="mercurial"
+
+DEPEND="sys-apps/help2man
+   sys-apps/coreutils"
+RDEPEND="
+   sys-apps/sed
+   app-shells/bash
+   app-text/wdiff
+   sys-apps/diffutils
+   mercurial? ( dev-vcs/mercurial )
+   "
+
+src_install() {
+   emake DESTDIR="${ED}" $(usex mercurial '' 'HGRCDIR=') install
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/matplotlib/

2015-11-12 Thread Justin Lecher
commit: 6a32620b949dd1c173d18ee081021c35bb2beb31
Author: Justin Lecher  gentoo  org>
AuthorDate: Thu Nov 12 10:16:55 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Thu Nov 12 10:17:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a32620b

dev-python/matplotlib: Drop old

obsoletes:
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=522840

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/matplotlib/Manifest|   1 -
 dev-python/matplotlib/matplotlib-1.4.2.ebuild | 247 --
 2 files changed, 248 deletions(-)

diff --git a/dev-python/matplotlib/Manifest b/dev-python/matplotlib/Manifest
index ccfe5f4..09f7f30 100644
--- a/dev-python/matplotlib/Manifest
+++ b/dev-python/matplotlib/Manifest
@@ -1,3 +1,2 @@
-DIST matplotlib-1.4.2.tar.gz 50139344 SHA256 
17a3c7154f152d8dfed1f37517c0a8c5db6ade4f6334f684989c36dab84ddb54 SHA512 
3525f4e6414042fabf8d18ce9041d61197465dc07c766730c187a512277907ba33f56d49d5a468d82f65bce57217e8eb48ecfa143e55152a15607b79a7b25adc
 WHIRLPOOL 
ce6e5a15676b939bda7ad1be0f27766314f60ed44ebfba1e73d2c3d00a31d5492722cde73f943de72da038772519068602e60c830af9ffdf52710a24ce98fe7a
 DIST matplotlib-1.4.3.tar.gz 49933525 SHA256 
5b9544472d9d6ab3d47423bdb5a0e64fdf913e505c1c083f25283dd0362bc0b6 SHA512 
51b0f58b2618b47b653e17e4f6b6a1215d3a3b0f1331ce3555cc7435e365d9c75693f289ce12fe3bf8f69fd57b663e545f0f1c2c94e81eaa661cac0689e125f5
 WHIRLPOOL 
160ca48ecb44db58f1c56bd6e89592c5d1badd8e434fc25d32aa6d4d7a346ae7c7444d1c8e0c2ca2bf5c3246fd56cd93856ec7b1e3e51f5e471b9b55a0f2c1ad
 DIST matplotlib-1.5.0.tar.gz 53962448 SHA256 
67b08b1650a00a6317d94b76a30a47320087e5244920604c5462188cba0c2646 SHA512 
559a3ef031ca65b431157f0dd50f7d81f2d854f92150ee2b9de5e44b31d49615bfdc049a682667bc2e1399b8cd724dfcefec8f4de7e92848fe5756f93ddef5fa
 WHIRLPOOL 
b30a7299dd0690cd0355883cbe7d335d76314bab85f5b67b326b0e600b479db3cd5e7f48e9e68d3604832e9605f5025c70ff0006b1980b945aeaf22f78e3469f

diff --git a/dev-python/matplotlib/matplotlib-1.4.2.ebuild 
b/dev-python/matplotlib/matplotlib-1.4.2.ebuild
deleted file mode 100644
index db8a59b..000
--- a/dev-python/matplotlib/matplotlib-1.4.2.ebuild
+++ /dev/null
@@ -1,247 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-PYTHON_REQ_USE='tk?,threads(+)'
-
-inherit distutils-r1 eutils flag-o-matic virtualx
-
-DESCRIPTION="Pure python plotting library with matlab like syntax"
-HOMEPAGE="http://matplotlib.org/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-SLOT="0"
-# Main license: matplotlib
-# Some modules: BSD
-# matplotlib/backends/qt4_editor: MIT
-# Fonts: BitstreamVera, OFL-1.1
-LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
-KEYWORDS="amd64 arm ppc ~ppc64 x86 ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
-IUSE="cairo doc excel examples fltk gtk gtk3 latex pyside qt4 test tk 
wxwidgets"
-
-# #456704 -- a lot of py2-only deps
-PY2_USEDEP=$(python_gen_usedep python2_7)
-COMMON_DEPEND="
-   >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
-   dev-python/python-dateutil:0[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4[${PYTHON_USEDEP}]
-   media-fonts/stix-fonts
-   >=media-libs/freetype-2.3
-   media-libs/libpng:0
-   media-libs/qhull
-   gtk? (
-   dev-libs/glib:2=
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2=
-   dev-python/pygtk[${PY2_USEDEP}] )
-   wxwidgets? ( >=dev-python/wxpython-2.8:*[${PY2_USEDEP}] )"
-
-# internal copy of pycxx highly patched
-#  dev-python/pycxx
-
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   doc? (
-   app-text/dvipng
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/ipython[${PYTHON_USEDEP}]
-   dev-python/numpydoc[${PYTHON_USEDEP}]
-   dev-python/xlwt[${PY2_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-texlive/texlive-latexextra
-   dev-texlive/texlive-fontsrecommended
-   dev-texlive/texlive-latexrecommended
-   media-gfx/graphviz[cairo]
-   )
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/nose-0.11.1[${PYTHON_USEDEP}]
-   )"
-
-RDEPEND="${COMMON_DEPEND}
-   >=dev-python/pyparsing-1.5.6[${PYTHON_USEDEP}]
-   cairo? (
-   || (
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/cairocffi[${PYTHON_USEDEP}]
-   )
-   )
-   excel? ( dev-python/xlwt[${PY2_USEDEP}] )
-   fltk? ( dev-python/pyfltk[${PY2_USEDEP}] )
-   gtk3? (
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection] )
-   latex? (
- 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/spu-tools/

2015-11-12 Thread Agostino Sarubbo
commit: e3075cd5759f7edced9e6d91ffcc70bcca520544
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:35:44 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:35:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3075cd5

sys-apps/spu-tools: ppc stable wrt bug #561536

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 sys-apps/spu-tools/spu-tools-2.3.0.136.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/spu-tools/spu-tools-2.3.0.136.ebuild 
b/sys-apps/spu-tools/spu-tools-2.3.0.136.ebuild
index 403c515..5a2f24c 100644
--- a/sys-apps/spu-tools/spu-tools-2.3.0.136.ebuild
+++ b/sys-apps/spu-tools/spu-tools-2.3.0.136.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/libspe/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~ppc ~ppc64"
+KEYWORDS="ppc ~ppc64"
 IUSE=""
 
 RDEPEND="sys-libs/ncurses:0="



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/spork/

2015-11-12 Thread Agostino Sarubbo
commit: 6eda8ce84f93860c6db7fbe2abd8ff980006f160
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:36:29 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:36:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eda8ce8

dev-ruby/spork: ppc stable wrt bug #558930

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 dev-ruby/spork/spork-0.9.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/spork/spork-0.9.2-r1.ebuild 
b/dev-ruby/spork/spork-0.9.2-r1.ebuild
index 24addf0..6825bfc 100644
--- a/dev-ruby/spork/spork-0.9.2-r1.ebuild
+++ b/dev-ruby/spork/spork-0.9.2-r1.ebuild
@@ -17,6 +17,6 @@ DESCRIPTION="Spork is Tim Harper's implementation of test 
server"
 HOMEPAGE="https://github.com/sporkrb/spork;
 LICENSE="MIT"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 SLOT="0"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-i18n/libguess/

2015-11-12 Thread Agostino Sarubbo
commit: de1d5c52e6aba87740ed784f8b24c8e385782613
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:36:55 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:36:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de1d5c52

app-i18n/libguess: ppc stable wrt bug #561242

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 app-i18n/libguess/libguess-1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/libguess/libguess-1.2.ebuild 
b/app-i18n/libguess/libguess-1.2.ebuild
index d9a15e6..cdd1c2e 100644
--- a/app-i18n/libguess/libguess-1.2.ebuild
+++ b/app-i18n/libguess/libguess-1.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://rabbit.dereferenced.org/~nenolod/distfiles/${P}.tar.bz2;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 IUSE="examples"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/

2015-11-12 Thread Agostino Sarubbo
commit: 60e0db675c506a60df13071db5281c0084d7d4c6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:36:10 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:36:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e0db67

media-libs/rubberband: ppc stable wrt bug #558600

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 media-libs/rubberband/rubberband-1.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/rubberband/rubberband-1.8.1.ebuild 
b/media-libs/rubberband/rubberband-1.8.1.ebuild
index bfd2028..f4773bd 100644
--- a/media-libs/rubberband/rubberband-1.8.1.ebuild
+++ b/media-libs/rubberband/rubberband-1.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://code.breakfastquay.com/attachments/download/34/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ppc64 ~x86"
+KEYWORDS="~alpha amd64 hppa ppc ppc64 ~x86"
 IUSE="static-libs"
 
 RDEPEND="media-libs/vamp-plugin-sdk



[gentoo-commits] repo/gentoo:master commit in: net-misc/openvpn/

2015-11-12 Thread Agostino Sarubbo
commit: 7b84698608e942e7b35a097380ebffe03a95c504
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:36:16 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:36:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b846986

net-misc/openvpn: ppc stable wrt bug #556874

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-misc/openvpn/openvpn-2.3.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openvpn/openvpn-2.3.8.ebuild 
b/net-misc/openvpn/openvpn-2.3.8.ebuild
index 0f81333..7c88025 100644
--- a/net-misc/openvpn/openvpn-2.3.8.ebuild
+++ b/net-misc/openvpn/openvpn-2.3.8.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://openvpn.net/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples down-root iproute2 +lzo pam passwordsave pkcs11 +plugins 
polarssl selinux socks +ssl static systemd userland_BSD"
 
 REQUIRED_USE="static? ( !plugins !pkcs11 )



[gentoo-commits] repo/gentoo:master commit in: media-sound/audacious/

2015-11-12 Thread Agostino Sarubbo
commit: 89b6477857492bfe6c8930a12d8f1893e4ed29ce
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:36:44 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:36:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b64778

media-sound/audacious: ppc stable wrt bug #561242

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 media-sound/audacious/audacious-3.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/audacious/audacious-3.6.2.ebuild 
b/media-sound/audacious/audacious-3.6.2.ebuild
index 98c20ab..72c2917 100644
--- a/media-sound/audacious/audacious-3.6.2.ebuild
+++ b/media-sound/audacious/audacious-3.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="!gtk3? ( 
http://distfiles.audacious-media-player.org/${MY_P}.tar.bz2 )
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ppc64 x86 ~x86-fbsd ~x86-freebsd 
~x86-interix ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~hppa ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd 
~x86-interix ~amd64-linux ~x86-linux"
 
 IUSE="chardet nls gtk3 qt5"
 DOCS="AUTHORS"



[gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/files/, media-video/ffmpeg/

2015-11-12 Thread Alexis Ballier
commit: 432addcb0d1934705424e9712cdb3d735c15ac5d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Nov 12 11:10:54 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Nov 12 11:46:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=432addcb

media-video/ffmpeg: bump to 2.8.2 and backport upstream fix to build with 
libvpx 1.5

Package-Manager: portage-2.2.24
Signed-off-by: Alexis Ballier  gentoo.org>

 media-video/ffmpeg/Manifest |   1 +
 media-video/ffmpeg/ffmpeg-2.8.2.ebuild  | 456 
 media-video/ffmpeg/files/libvpx15.patch |  36 +++
 3 files changed, 493 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 8e0bc3c..8eb4930 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -2,3 +2,4 @@ DIST ffmpeg-2.6.3.tar.bz2 7803314 SHA256 
59eb98c1b5896ac29abc0385f7c875d1b4942d6
 DIST ffmpeg-2.6.4.tar.bz2 7811925 SHA256 
184f49e6b359426c398ad6c67d89abd362558373a43d3d92f86e554571655a5d SHA512 
76c8bb3b23f2d2bac73b1561ef31bb3d1da49b2e182d84a13bf0bf49ea84cd0d64566c9dfafc4ac9d660aa4cecc0f08272b9ee284d1d09776e4599b87920c308
 WHIRLPOOL 
2d68715fb284979d703905919289c897c5cb002c3d466aca6c9759ca9f93443b749a24747cf218d005d728680ad137990880ec99210b6fb49038587966dd79f4
 DIST ffmpeg-2.7.2.tar.bz2 8157217 SHA256 
7ceb7550ad628c526fa6c9ff23fdfb687a62f54d90c4a730998d8c2b417b9ef2 SHA512 
cce58c63ae14dcbd3bdc4758af8427e18ac589f8bd4f2701e54b5e0e61669d5aab212e5829feb67a0fd33bc52b2d64adff93729c0696c44a0f6064a0752433dd
 WHIRLPOOL 
dd286393427b89be266ad2b122138dab578843d16bdf9b989b9546734f489c8c5c3d1ab0443ff5039b440a8430802ffe24f0fc38553688ec80984a1cce2ba2a3
 DIST ffmpeg-2.8.1.tar.bz2 8564488 SHA256 
e2ed5ab28dee1af94336739173eb0019afc21a54e38a96f4e3208e94a07866e2 SHA512 
5c493f1eb84dd916f12a709a77ca0317a03ce88caaa1ee5e06b4e03c60ef4520ba58c8972841de25dcadb0da42e88592e6a87c3aca18dba62e246256c33fcf91
 WHIRLPOOL 
f0f26375960dff80055fe257b63f11a1cc598bef9450d0da4a619bfc61ba6df185ea0dcf9c566810c7917159bb193d30a1009051c5b32ea1d746b289c782b8aa
+DIST ffmpeg-2.8.2.tar.bz2 8573586 SHA256 
830ec647f7ad774fc0caf17ba47774bf5dee7a89cbd65894f364a87ba3ad21b2 SHA512 
15c1c09d7d4bb8cc7babff4c782e4bf6621ed86d6b02bffb5468bdcd294a1144bf56a8a758d2801200bb89c26ce8f5a086d818affb473364424f94f701cbf749
 WHIRLPOOL 
83ae9a00cba7bc906672f55d796b044d3f4baad9a56804f6482e7c27b9f526d1364dfddaa22ef32b921e5dcd0158222897935544a34c1d1e7c3b9d681067d2e0

diff --git a/media-video/ffmpeg/ffmpeg-2.8.2.ebuild 
b/media-video/ffmpeg/ffmpeg-2.8.2.ebuild
new file mode 100644
index 000..2db9b73
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-2.8.2.ebuild
@@ -0,0 +1,456 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=54.56.56
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-2"
+   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
+fi
+
+inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record, convert and stream audio and video. 
Includes libavcodec"
+HOMEPAGE="http://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
+   SRC_URI="mirror://gentoo/${P}.tar.bz2"
+else # Release
+   SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2;
+fi
+FFMPEG_REVISION="${PV#*_p}"
+
+SLOT="0/${FFMPEG_SUBSLOT}"
+LICENSE="
+   !gpl? ( LGPL-2.1 )
+   gpl? ( GPL-2 )
+   amr? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   encode? (
+   aac? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   amrenc? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   )
+   samba? ( GPL-3 )
+"
+if [ "${PV#}" = "${PV}" ] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+   +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls 
+gpl
+  

[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/var/lib/portage/

2015-11-12 Thread Anthony G. Basile
commit: 9bf537c0a3d62774ffbcb553a7791f1bfc675e7b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Nov 12 12:00:08 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Nov 12 12:00:08 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=9bf537c0

world: remove eselect-esd which is masked for removal.

 core/var/lib/portage/world.CYCLE.4 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index a30b8ea..ba1b959 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -394,7 +394,6 @@ app-emulation/uade
 app-emulation/vice
 app-emulation/x48
 app-emulation/xtrs
-app-eselect/eselect-esd
 app-eselect/eselect-mpost
 app-eselect/eselect-oodict
 app-eselect/eselect-package-manager



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/coq/, sci-mathematics/coq/files/

2015-11-12 Thread Alexis Ballier
commit: 6f0fb37603bd5ee25a44322452ebabf1c551986f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Nov 12 12:00:51 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Nov 12 12:00:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0fb376

sci-mathematics/coq: remove old

Package-Manager: portage-2.2.24
Signed-off-by: Alexis Ballier  gentoo.org>

 sci-mathematics/coq/Manifest  |  4 -
 sci-mathematics/coq/coq-8.3_p1.ebuild | 81 
 sci-mathematics/coq/coq-8.4_p1.ebuild | 81 
 sci-mathematics/coq/coq-8.4_p2.ebuild | 78 
 sci-mathematics/coq/coq-8.4_p3.ebuild | 90 ---
 sci-mathematics/coq/files/coq-8.4_p1-camlp4.patch | 17 -
 6 files changed, 351 deletions(-)

diff --git a/sci-mathematics/coq/Manifest b/sci-mathematics/coq/Manifest
index 9ff5e7b..82b4483 100644
--- a/sci-mathematics/coq/Manifest
+++ b/sci-mathematics/coq/Manifest
@@ -1,6 +1,2 @@
-DIST coq-8.3pl1.tar.gz 3756961 SHA256 
3a497386bd74f43a5af1d0c53f29a017ce7ed1b1e60c052217fe04b7f40be928 SHA512 
2e60a8ba2ea8780b0736c35a251e0f77966259f42ae2e386a950be409ade94464891a537586ac759c0221f78d50a5584e13c48b8bb25a4011547f83aec2e9093
 WHIRLPOOL 
b120a791efb4e05d501cd010865b2c282cf169148f1d79a32858463be6076cb12cfc9e54917365584a80afe988df4c72e0e01d55953131589274c554c8eacc60
-DIST coq-8.4pl1.tar.gz 4139808 SHA256 
5d0e4553ab50677a94b4d5ca1650a90718e9362082a649ba95be4010390a0f80 SHA512 
dc0073d2cbce91ac27749d84de1b350ad71632555a682d8af6612768d2c92311eb1fd36b7370e0fb630d540639a1c7e16f26a9de25d03d82c3a6eefb99aa3420
 WHIRLPOOL 
e912b97ba1f91d3398d569a588d7cb420389c88971847e66ddff38c3fc715e45842aab285e343c0c6339da659f324ee7b60f37fd0cdcd5a8ce27ab0e8cce915a
-DIST coq-8.4pl2.tar.gz 4145112 SHA256 
fb719a38f613b01861e3b251e745a5c8ef395a26ce7029668e85ac75fcbca2d8 SHA512 
151291a508c56f9fdc9efd96096852e94c247724030ad13122ad729476f3f7d4885c9202737d9109b6fa7f58029d3b9e8f472a7e587e0b60a49a0224ac399031
 WHIRLPOOL 
ac338571da5f6efc08e9184f1e13b9783bd750627c70af2eee46116d2d949e61a0cbf31745373ccea3b3b862c1188316c2aa3b38e211a398185503c2844a33c5
-DIST coq-8.4pl3.tar.gz 4064579 SHA256 
97583d637f981c5554007f4e99ce6420ebc737186b1d021bd71766fd891cfb38 SHA512 
e4a385b10b30159545c283e11400f5790a6ca1b91632afe93b73c6a8b523fd408db173b25a1797f69bdfde9a16b37751944041aa9be5a1194b0fe49a9bb56240
 WHIRLPOOL 
c44cc9f55f25dfb37d7b011c3ede3ad47f7191b02a6258bd4bda67854b9cce0e32b412ead826a5ca7a21dc2fe8841774231cb0693da335f5146172463ec57aa2
 DIST coq-8.4pl5.tar.gz 4070062 SHA256 
35815ab78a58d72799eacaab155427620ab071677882ca6c98d7bfec97d25245 SHA512 
0965ff409933d601a5c96963ea805ce20dd22f1fd9a9473898de1b376403b4e7a9a86b36b58eb1480cfb3a25970626e1dcd225899c089f5a301f4809e7f8f242
 WHIRLPOOL 
6dea97e7fe655a33757e8f031b28f91f98558e53205890d6b9d928d5641c05814f8d743cb02c39b26dcf93aa4076c5bbd9710a7dfd9f6a3456e38039b0cb8220
 DIST coq-8.4pl6.tar.gz 4099815 SHA256 
a540a231a9970a49353ca039f3544616ff86a208966ab1c593779ae13c91ebd6 SHA512 
238bc6e28348f40f5619aa28d2e871179d9edeb6eb3f2521af6f407e24a889c8c68fa11c8b12e026f016f0fb7d5006447c3ab7eeae0804fc082d65774aefe0ef
 WHIRLPOOL 
2120dcddce773d90ba024e97fc00df3d563edf398eaf0bbb3dc1df1265b5e657cb4044d334f598898c30a88f0579b35b38f1d6bad4ea5e373a0a30826b245e99

diff --git a/sci-mathematics/coq/coq-8.3_p1.ebuild 
b/sci-mathematics/coq/coq-8.3_p1.ebuild
deleted file mode 100644
index 28c3feb..000
--- a/sci-mathematics/coq/coq-8.3_p1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit eutils multilib
-
-MY_PV=${PV/_p/pl}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Proof assistant written in O'Caml"
-HOMEPAGE="http://coq.inria.fr/;
-SRC_URI="http://${PN}.inria.fr/V${MY_PV}/files/${MY_P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="gtk debug +ocamlopt doc"
-
-RDEPEND=">=dev-lang/ocaml-3.10[ocamlopt?]
-   >=dev-ml/camlp5-5.09[ocamlopt?]
-   gtk? ( >=dev-ml/lablgtk-2.10.1[ocamlopt?] )"
-DEPEND="${RDEPEND}
-   doc? (
-   media-libs/netpbm[png,zlib]
-   virtual/latex-base
-   dev-tex/hevea
-   dev-tex/xcolor
-   dev-texlive/texlive-pictures
-   dev-texlive/texlive-mathextra
-   dev-texlive/texlive-latexextra
-   )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   # configure has an error at line 640 leading to closing a string
-   # to early in the generated coq_config.ml. Here is a wild sed :)
-   # It replaces \"$LABLGTKLIB\" by $LABLGTKLIB
-   sed -i "s/\"\\\$LABLGTKLIB\"/\\\$LABLGTKLIB/" configure
-}
-
-src_configure() {
-   ocaml_lib=`ocamlc -where`
-   local myconf="--prefix /usr
-   --bindir /usr/bin
-   --libdir /usr/$(get_libdir)/coq
-   --mandir 

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

2015-11-12 Thread Michael Palimaka
commit: 0a28dde65c470a75ca39c235f757615a426954e4
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Nov 12 11:56:51 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov 12 11:56:51 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0a28dde6

kde-base/kdelibs: restore KEYWORDS

Package-Manager: portage-2.2.24

 kde-base/kdelibs/kdelibs-4.14.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-base/kdelibs/kdelibs-4.14.14.ebuild 
b/kde-base/kdelibs/kdelibs-4.14.14.ebuild
index 0e52ee5..ca8747b 100644
--- a/kde-base/kdelibs/kdelibs-4.14.14.ebuild
+++ b/kde-base/kdelibs/kdelibs-4.14.14.ebuild
@@ -15,7 +15,7 @@ EGIT_BRANCH="KDE/4.14"
 
 DESCRIPTION="KDE libraries needed by all KDE programs"
 
-KEYWORDS=""
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux"
 LICENSE="LGPL-2.1"
 IUSE="cpu_flags_x86_3dnow acl alsa altivec +bzip2 +crypt debug doc fam jpeg2k
 kerberos libressl lzma cpu_flags_x86_mmx nls openexr +policykit spell



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

2015-11-12 Thread Michael Palimaka
commit: 36d098a29eb4bd9a8f5bc67cbea6c500232546f7
Author: Elias Probst  eliasprobst  eu>
AuthorDate: Thu Nov 12 06:46:45 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov 12 10:17:03 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=36d098a2

[kde-misc/kdeconnect] Adjust to removed wayland USE flag of kwin

The 'wayland' USE flag of kwin was removed in b0ba1ce

Package-Manager: portage-2.2.23

 kde-misc/kdeconnect/kdeconnect-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/kdeconnect/kdeconnect-.ebuild 
b/kde-misc/kdeconnect/kdeconnect-.ebuild
index 06167ca..47d2cec 100644
--- a/kde-misc/kdeconnect/kdeconnect-.ebuild
+++ b/kde-misc/kdeconnect/kdeconnect-.ebuild
@@ -47,7 +47,7 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
!kde-misc/kdeconnect:4
$(add_plasma_dep plasma-workspace)
-   wayland? ( $(add_plasma_dep kwin 'wayland') )
+   wayland? ( $(add_plasma_dep kwin) )
 "
 
 [[ ${KDE_BUILD_TYPE} != live ]] && S=${WORKDIR}/${MY_P}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-EOL/

2015-11-12 Thread Agostino Sarubbo
commit: 0b704f379aac760f608be775f2a30d1ba294e52f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:27:17 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:27:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b704f37

dev-perl/Test-EOL: x86 stable wrt bug #564688

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"

 dev-perl/Test-EOL/Test-EOL-1.600.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-EOL/Test-EOL-1.600.0.ebuild 
b/dev-perl/Test-EOL/Test-EOL-1.600.0.ebuild
index 5b9d1b8..0db7cf3 100644
--- a/dev-perl/Test-EOL/Test-EOL-1.600.0.ebuild
+++ b/dev-perl/Test-EOL/Test-EOL-1.600.0.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Check the correct line endings in your project"
 
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-CPAN-Meta/

2015-11-12 Thread Agostino Sarubbo
commit: 3f2f35162ab22c23072b487ae90cd56f728dd84b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:27:21 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:27:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f2f3516

dev-perl/Test-CPAN-Meta: x86 stable wrt bug #564688

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"

 dev-perl/Test-CPAN-Meta/Test-CPAN-Meta-0.25.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-CPAN-Meta/Test-CPAN-Meta-0.25.0-r1.ebuild 
b/dev-perl/Test-CPAN-Meta/Test-CPAN-Meta-0.25.0-r1.ebuild
index 4470338..22750e8 100644
--- a/dev-perl/Test-CPAN-Meta/Test-CPAN-Meta-0.25.0-r1.ebuild
+++ b/dev-perl/Test-CPAN-Meta/Test-CPAN-Meta-0.25.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Validate your CPAN META.yml file"
 
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTML-Scrubber/

2015-11-12 Thread Agostino Sarubbo
commit: d782435e6ada1c97df1b1fe9023af4325b563b62
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:27:08 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:27:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d782435e

dev-perl/HTML-Scrubber: x86 stable wrt bug #564688

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"

 dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild 
b/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild
index 8fa2083..abc5a5c 100644
--- a/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild
+++ b/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Perl extension for scrubbing/sanitizing html"
 
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="test"
 
 RDEPEND="dev-perl/HTML-Parser"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-NoTabs/

2015-11-12 Thread Agostino Sarubbo
commit: 5c3b7d0690da4b7151e53a282dfc7943d51fd770
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 10:27:13 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 10:27:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c3b7d06

dev-perl/Test-NoTabs: x86 stable wrt bug #564688

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="x86"

 dev-perl/Test-NoTabs/Test-NoTabs-1.400.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-NoTabs/Test-NoTabs-1.400.0.ebuild 
b/dev-perl/Test-NoTabs/Test-NoTabs-1.400.0.ebuild
index ebb021f..f42ab84 100644
--- a/dev-perl/Test-NoTabs/Test-NoTabs-1.400.0.ebuild
+++ b/dev-perl/Test-NoTabs/Test-NoTabs-1.400.0.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Check the presence of tabs in your project"
 
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: net-libs/libsoup-gnome/

2015-11-12 Thread Agostino Sarubbo
commit: 0c3c812bd53ade7002ee24868b8f40ddada0ec96
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:06:01 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:06:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c3c812b

net-libs/libsoup-gnome: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild 
b/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild
index b8d368d..85034f0 100644
--- a/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild
+++ b/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="${SRC_URI//-gnome}"
 LICENSE="LGPL-2+"
 SLOT="2.4"
 IUSE="debug +introspection"
-KEYWORDS="alpha amd64 arm ~ia64 ~mips ~ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
 
 RDEPEND="
~net-libs/libsoup-${PV}[introspection?,${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/

2015-11-12 Thread Agostino Sarubbo
commit: e203f7c49ab4f6ba6c95829cb86f28274a251aa2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:05:38 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:05:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e203f7c4

media-libs/harfbuzz: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 media-libs/harfbuzz/harfbuzz-0.9.41.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/harfbuzz/harfbuzz-0.9.41.ebuild 
b/media-libs/harfbuzz/harfbuzz-0.9.41.ebuild
index 87e9be8..94de2c6 100644
--- a/media-libs/harfbuzz/harfbuzz-0.9.41.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-0.9.41.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://www.freedesktop.org/wiki/Software/HarfBuzz;
 LICENSE="Old-MIT ISC icu"
 SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
 [[ ${PV} ==  ]] || \
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos ~x64-solaris"
 
 IUSE="+cairo fontconfig +glib +graphite icu +introspection static-libs test 
+truetype"
 REQUIRED_USE="introspection? ( glib )"



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gucharmap/

2015-11-12 Thread Agostino Sarubbo
commit: 713aa3901d0e9d78ec9d9409e82a002966747352
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:05:13 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:05:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713aa390

gnome-extra/gucharmap: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 gnome-extra/gucharmap/gucharmap-3.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gucharmap/gucharmap-3.16.2.ebuild 
b/gnome-extra/gucharmap/gucharmap-3.16.2.ebuild
index 81c0db0..ff120ca 100644
--- a/gnome-extra/gucharmap/gucharmap-3.16.2.ebuild
+++ b/gnome-extra/gucharmap/gucharmap-3.16.2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://live.gnome.org/Gucharmap;
 
 LICENSE="GPL-3"
 SLOT="2.90"
-KEYWORDS="alpha amd64 arm ~ia64 ~ppc ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="cjk +introspection test vala"
 REQUIRED_USE="vala? ( introspection )"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gvfs/

2015-11-12 Thread Agostino Sarubbo
commit: ccd7311026348aa581aa75813dc31d16919bf221
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:05:02 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:05:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccd73110

gnome-base/gvfs: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 gnome-base/gvfs/gvfs-1.24.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/gvfs/gvfs-1.24.2-r1.ebuild 
b/gnome-base/gvfs/gvfs-1.24.2-r1.ebuild
index 577ca59..2dece6a 100644
--- a/gnome-base/gvfs/gvfs-1.24.2-r1.ebuild
+++ b/gnome-base/gvfs/gvfs-1.24.2-r1.ebuild
@@ -21,7 +21,7 @@ REQUIRED_USE="
udisks? ( udev )
systemd? ( udisks )
 "
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
 
 # Can use libgphoto-2.5.0 as well. Automagic detection.
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio/

2015-11-12 Thread Agostino Sarubbo
commit: 0c3669bf775b1fd7b57207dcfea786dd7f50d8b7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:05:50 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:05:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c3669bf

media-sound/pulseaudio: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 media-sound/pulseaudio/pulseaudio-7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pulseaudio/pulseaudio-7.1.ebuild 
b/media-sound/pulseaudio/pulseaudio-7.1.ebuild
index b9c4a70..7f277ac 100644
--- a/media-sound/pulseaudio/pulseaudio-7.1.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-7.1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://freedesktop.org/software/pulseaudio/releases/${P}.tar.xz;
 LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd 
~amd64-linux ~x86-linux"
 
 # +alsa-plugin as discussed in bug #519530
 IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer +gdbm 
+glib



[gentoo-commits] repo/gentoo:master commit in: net-libs/libsoup/

2015-11-12 Thread Agostino Sarubbo
commit: 4184bf0cf2308422d5b16dd9761c11e3284960f2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:06:06 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:06:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4184bf0c

net-libs/libsoup: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 net-libs/libsoup/libsoup-2.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libsoup/libsoup-2.50.0.ebuild 
b/net-libs/libsoup/libsoup-2.50.0.ebuild
index 18b45b6..54d6b0d 100644
--- a/net-libs/libsoup/libsoup-2.50.0.ebuild
+++ b/net-libs/libsoup/libsoup-2.50.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.gnome.org/LibSoup;
 LICENSE="LGPL-2+"
 SLOT="2.4"
 IUSE="debug +introspection samba ssl test"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtksourceview/

2015-11-12 Thread Agostino Sarubbo
commit: 00aff55caeb62481a317892586400ca53e5c1429
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov 12 11:06:40 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov 12 11:06:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00aff55c

x11-libs/gtksourceview: ppc stable wrt bug #565086

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="ppc"

 x11-libs/gtksourceview/gtksourceview-3.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gtksourceview/gtksourceview-3.16.1.ebuild 
b/x11-libs/gtksourceview/gtksourceview-3.16.1.ebuild
index c4e6c69..fa2568e 100644
--- a/x11-libs/gtksourceview/gtksourceview-3.16.1.ebuild
+++ b/x11-libs/gtksourceview/gtksourceview-3.16.1.ebuild
@@ -16,7 +16,7 @@ LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="3.0/3"
 IUSE="glade +introspection vala"
 REQUIRED_USE="vala? ( introspection )"
-KEYWORDS="alpha amd64 arm ~ia64 ~mips ~ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
 
 # Note: has native OSX support, prefix teams, attack!
 RDEPEND="



  1   2   3   >