[gentoo-commits] repo/gentoo:master commit in: dev-db/pgagent/files/, dev-db/pgagent/

2017-08-15 Thread Michael Orlitzky
commit: 5b41b4fb3fc10a2b4046fb2c8c97d9b824505f20
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Aug 16 05:15:21 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Aug 16 05:15:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b41b4fb

dev-db/pgagent: new revision with a dedicated "pgagent" user.

The pgagent daemon used to run as root, which can be dangerous. That
system user is used to execute the database jobs, meaning that a
non-root user with permission to schedule pgagent jobs could gain
root. This new revision creates a dedicated "pgagent" system user,
and the new init script launches the daemon as that user.

An ewarn lets users know that some migration work may be needed.

Gentoo-Bug: 537264

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-db/pgagent/files/pgagent.initd-r1  | 31 +++
 dev-db/pgagent/pgagent-3.4.0-r2.ebuild | 69 ++
 2 files changed, 100 insertions(+)

diff --git a/dev-db/pgagent/files/pgagent.initd-r1 
b/dev-db/pgagent/files/pgagent.initd-r1
new file mode 100644
index 000..a555006d3bd
--- /dev/null
+++ b/dev-db/pgagent/files/pgagent.initd-r1
@@ -0,0 +1,31 @@
+#!/sbin/openrc-run
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+command="/usr/bin/pgagent"
+command_user="pgagent"
+
+# If pgagent daemonizes itself, it won't write a PID file and
+# we have to work a little harder to stop() it. So let it run
+# in the foreground, and have OpenRC manage its PID file.
+command_args="-f
+  -t ${PGA_POLL}
+  -r ${PGA_RETRY}
+  -s ${PGA_LOG}
+  -l ${PGA_LEVEL}
+  hostaddr=${PG_HOST}
+  dbname=${PG_DBNAME}
+  user=${PG_USER}"
+
+command_background="true"
+pidfile="/run/pgagent.pid"
+
+depend() {
+use net
+need postgresql
+}
+
+start_pre() {
+# The log file needs to be writable by the daemon user.
+checkpath --file --owner root:pgagent --mode 0660 "${PGA_LOG}"
+}

diff --git a/dev-db/pgagent/pgagent-3.4.0-r2.ebuild 
b/dev-db/pgagent/pgagent-3.4.0-r2.ebuild
new file mode 100644
index 000..9f44b6fff0f
--- /dev/null
+++ b/dev-db/pgagent/pgagent-3.4.0-r2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+CMAKE_IN_SOURCE_BUILD=1
+WX_GTK_VER="3.0"
+
+inherit cmake-utils user wxwidgets
+
+MY_PN=${PN/a/A}
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="${MY_PN} is a job scheduler for PostgreSQL"
+HOMEPAGE="http://www.pgadmin.org/download/pgagent.php;
+SRC_URI="mirror://postgresql/pgadmin3/release/${PN}/${MY_PN}-${PV}-Source.tar.gz"
+LICENSE="POSTGRESQL GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-db/postgresql:*
+x11-libs/wxGTK:${WX_GTK_VER}"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${PV}-Source"
+
+src_prepare() {
+   default
+   sed -e "s:share):share/${P}):" \
+   -i CMakeLists.txt || die "failed to patch CMakeLists.txt"
+   sed -i -e '/SET(WX_VERSION "2.8")/d' CMakeLists.txt || die
+}
+
+src_configure() {
+   if has_version "x11-libs/wxGTK[X]"; then
+   need-wxwidgets unicode
+   else
+   need-wxwidgets base-unicode
+   fi
+   mycmakeargs=( "-DSTATIC_BUILD:BOOLEAN=FALSE"
+ "-DWX_VERSION=${WX_GTK_VER}" )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   newinitd "${FILESDIR}/pgagent.initd-r1" "${PN}"
+   newconfd "${FILESDIR}/pgagent.confd" "${PN}"
+
+   rm "${ED}"/usr/{LICENSE,README} || die "failed to remove useless docs"
+}
+
+pkg_preinst() {
+   # This user needs a real shell, and the daemon will use the
+   # ~/.pgpass file from its home directory.
+   enewuser pgagent -1 /bin/bash /home/pgagent
+}
+
+pkg_postinst() {
+   if [[ -n "${REPLACING_VERSIONS}" ]]; then
+   # This warning can be removed around a year after this version
+   # goes stable.
+   ewarn 'pgAgent now runs as a dedicated "pgagent" user (as'
+   ewarn 'opposed to root). You may need to move your 
/root/.pgpass'
+   ewarn 'file to /home/pgagent/.pgpass, and the new user will'
+   ewarn 'need permissions on any paths that it will access.'
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/

2017-08-15 Thread Göktürk Yüksek
commit: 89f1b0aa6d37709506b3a0718ca030461eb492c0
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed Aug 16 03:02:50 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Aug 16 03:02:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f1b0aa

app-forensics/sleuthkit: add github remote

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-forensics/sleuthkit/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-forensics/sleuthkit/metadata.xml 
b/app-forensics/sleuthkit/metadata.xml
index 85045c4ae0e..827d72c6758 100644
--- a/app-forensics/sleuthkit/metadata.xml
+++ b/app-forensics/sleuthkit/metadata.xml
@@ -11,5 +11,6 @@
   
   
 sleuthkit
+sleuthkit/sleuthkit
   
 



[gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/

2017-08-15 Thread Göktürk Yüksek
commit: c1838b7aa315d5793f0e8bed1b1508bfdef6b991
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed Aug 16 03:01:10 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Aug 16 03:01:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1838b7a

app-forensics/sleuthkit: take over maintainership

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-forensics/sleuthkit/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-forensics/sleuthkit/metadata.xml 
b/app-forensics/sleuthkit/metadata.xml
index 43029e29699..85045c4ae0e 100644
--- a/app-forensics/sleuthkit/metadata.xml
+++ b/app-forensics/sleuthkit/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+  
+gokt...@gentoo.org
+Göktürk Yüksek
+  
   
 Enable extra aff formats
 Enable libewf support



[gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/files/, app-forensics/sleuthkit/, profiles/arch/hppa/, ...

2017-08-15 Thread Göktürk Yüksek
commit: ff441371867ec3d794b1b3133c7a4dabd59907f4
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed Aug 16 02:49:52 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Aug 16 02:52:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff441371

app-forensics/sleuthkit: bump to 4.4.2, add use flags for doc, java, zlib, test

The java USE flag is package.use.mask'ed on PPC and HPPA as java isn't
available on those arches.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-forensics/sleuthkit/Manifest   |   2 +
 .../sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch  |  29 
 app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild | 173 +
 profiles/arch/hppa/package.use.mask|   4 +
 profiles/arch/powerpc/package.use.mask |   4 +
 5 files changed, 212 insertions(+)

diff --git a/app-forensics/sleuthkit/Manifest b/app-forensics/sleuthkit/Manifest
index b0cdb7fdef3..07718f8cb3d 100644
--- a/app-forensics/sleuthkit/Manifest
+++ b/app-forensics/sleuthkit/Manifest
@@ -2,3 +2,5 @@ DIST sleuthkit-4.0.2.tar.gz 7577570 SHA256 
112f80fbc6a868c18c7a924f756b35c79eed9
 DIST sleuthkit-4.1.0.tar.gz 7974564 SHA256 
b410428df2e1b253fa23ce6a299d059d8c2650bf9c602f7b80c0f4ce1368c36a SHA512 
1cfa96bd3746c59c92c3e3f07f5f3f0f6896239bcaec012c43958654bb63794ecf9d7bd28bb9b4ab939558f4b27f03cd87f645ea91a8f9cfbb9037df93ef5223
 WHIRLPOOL 
20856982b77ecbdd1ed3b7c147e4340461830f0238ba7cdc17da3159f5a666df5b3d490760699d25d2896289c811f615ffb4160d163f9917f09e57a37ff26a21
 DIST sleuthkit-4.1.2.tar.gz 7990136 SHA256 
58253b35c016083558fb581308f4a3baf884229de89eb84ddbfb977ed56600d3 SHA512 
1f64acf42e86adf275bcd86c63c097210a498ac34ce69e64b3c120d86dffae65b5d57ed9618692dd510f637e940a48a60912dd57c8de840bf3a2b4428baabab8
 WHIRLPOOL 
1298a345416bec11564007c41474010cbddc26289aee025f31ecd2b7069f0d16ca81eeb07a292e38d91d6b34c3a891fad8a2f4b42bfd4df96053469d25dc8c65
 DIST sleuthkit-4.1.3.tar.gz 7952733 SHA256 
67f9d2a31a8884d58698d6122fc1a1bfa9bf238582bde2b49228ec9b899f0327 SHA512 
66f6ac32da5a21b3505390557ed6cf7bbcfcca69f231e20a7086fd48c5de45a3f064a716837d25eb582d0a89bae3b6ba7e89dcf3159e1cacdb4b5d452d0ce9a2
 WHIRLPOOL 
34d59163812d5e2b135d6d3a05bc9bed2f2739ab47bd77ed25ee3162eaf7389fec40a7b187745ef65b9596877399884d3081f2f4549fc0c4390382ec247174bc
+DIST sleuthkit-4.4.2.tar.gz 8572974 SHA256 
135964463f4b0a58fcd95fdf731881fcd6f2f227eeb8ffac004880c8e4d8dd53 SHA512 
970704c0e650b54df49d92f7a5c82d1c8cd37f589bf1a90ba5df6b3cd26a4e3676fbbbf58a176eeb002cdefbd33fb1fc057b11256b4a3cf1b8f782beb618a1de
 WHIRLPOOL 
8f68e2360d8ad82912898f7e07c4620183f4e19a40b5193966815dca7efa139cf00802d54303164e9c2a5364e5af3bfe4da937869deb615760fb70fba4ddce87
+DIST sqlite-jdbc-3.8.11.jar 5131732 SHA256 
0e36f2ec132dd67ecaeecc98bb17e5c215a077991e2a068a490d954b1bf2de8d SHA512 
5f4705101992e8916e29742c560aef0d01eba9dc0d2d984b75a77e56be3c9fd20b284390fe8f9bb54bf9d1f8528c3413922684c446212ca8961ac731543fb179
 WHIRLPOOL 
e8e34e10821e308dbd16cfecf1a332a60d8b34067f48fdc8adebc07fd1cb578a1f921fe57db4ac02d4fe11699a6a96a06543817027fe173852fda8ff3d625cce

diff --git a/app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch 
b/app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch
new file mode 100644
index 000..5d4f91e98b9
--- /dev/null
+++ b/app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch
@@ -0,0 +1,29 @@
+From 7caca2f8be471be337f7aea70cd900164bf070eb Mon Sep 17 00:00:00 2001
+From: Gokturk Yuksek 
+Date: Tue, 15 Aug 2017 21:04:24 -0400
+Subject: [PATCH] tsk/img/aff: loop initial declarations are not allowed in C89
+
+Declaring an integer inside a for loop as in for(int i;;) is not
+allowed in C89 and causes a build failure. Fix it by declaring the
+variable just before the for loop.
+---
+ tsk/img/aff.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/tsk/img/aff.c b/tsk/img/aff.c
+index fd9c4ff..a832bfb 100644
+--- a/tsk/img/aff.c
 b/tsk/img/aff.c
+@@ -216,7 +216,8 @@ aff_close(TSK_IMG_INFO * img_info)
+ {
+ IMG_AFF_INFO *aff_info = (IMG_AFF_INFO *) img_info;
+ af_close(aff_info->af_file);
+-  for (int i = 0; i < img_info->num_img; i++) {
++  int i;
++  for (i = 0; i < img_info->num_img; i++) {
+   if (img_info->images[i])
+   free(img_info->images[i]);
+   }
+-- 
+2.10.2
+

diff --git a/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild 
b/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild
new file mode 100644
index 000..754294c9377
--- /dev/null
+++ b/app-forensics/sleuthkit/sleuthkit-4.4.2.ebuild
@@ -0,0 +1,173 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_BSFIX_NAME="build.xml build-unix.xml"
+inherit autotools java-pkg-opt-2 java-ant-2
+
+DESCRIPTION="A collection of file system and media management forensic 
analysis tools"
+HOMEPAGE="https://www.sleuthkit.org/sleuthkit/;

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

2017-08-15 Thread Mike Gilbert
commit: 9361a977a1886d798dedd879f0caf3669bb32d36
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug 16 00:23:53 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug 16 00:23:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9361a977

www-client/google-chrome: automated update (60.0.3112.101)

Package-Manager: Portage-2.3.6_p34, Repoman-2.3.3_p12

 www-client/google-chrome/Manifest   | 2 +-
 ...le-chrome-60.0.3112.90.ebuild => google-chrome-60.0.3112.101.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index 3a631e77c1b..ef09ab77c0a 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_60.0.3112.90-1_amd64.deb 58348198 SHA256 
936eb6dbf6062b4a375593d3289375d3f7823d3168673534f54f037d632283d3 SHA512 
27d3ca3b6199fa17c9e569ed52b58b70525bef04add845000145db7289f9bbeb893b743827e42f95113391f9287778b36fd3f5cd69d94aa32720edf810aa3bfd
 WHIRLPOOL 
ef1f22524844c313d3e94de8fe6b06fed173d568226eef6f4b31bee954e55e094f2b73fc2d1993c3aa63e3faa7adbcf34e6547d40df2a0575ad9a6abffb9077c
+DIST google-chrome-stable_60.0.3112.101-1_amd64.deb 61981266 SHA256 
5c22cc312c360cf7ad84f5f75c6fc6626b59ca529f7f66f65aaab3b9ca8df196 SHA512 
142745e4eef198d11ed321ad44b1e072f12984bf148b68f4b721ffd136f79d1236db68bfd7dbfa573cc2ae10113940190f2492587d355e85bb066d9e732f9b0d
 WHIRLPOOL 
b67ed7fc1bf7b8620ee2d254897529bfabe02e5749e402a60bdc04d6f48e575cb75ce0e59e45d0c0ed0aea5f9f2750c9dd119b8ac719371e2ee5efd895d8fdc2

diff --git a/www-client/google-chrome/google-chrome-60.0.3112.90.ebuild 
b/www-client/google-chrome/google-chrome-60.0.3112.101.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-60.0.3112.90.ebuild
rename to www-client/google-chrome/google-chrome-60.0.3112.101.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2017-08-15 Thread Mike Gilbert
commit: a6d6fca5f0b07071670d54ebdfce7f7f2a1a93de
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug 16 00:23:42 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug 16 00:23:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d6fca5

www-plugins/chrome-binary-plugins: automated update (60.0.3112.101)

Package-Manager: Portage-2.3.6_p34, Repoman-2.3.3_p12

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...s-60.0.3112.90.ebuild => chrome-binary-plugins-60.0.3112.101.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 9a459f2107a..0d962c40061 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_61.0.3163.39-1_amd64.deb 76821968 SHA256 
582ecb2679b9bb724cfd3f5434195511440ed969277d127669e04feeec216f3a SHA512 
679c4c0cca993d3bbee20b0e43b1f8ed7fc196ba2dc8b598d749a8abd19546bebe81f2fbd93257beaa5c0e1fe61ba8118a3c251b8db8391ed887cac411f485b7
 WHIRLPOOL 
de560e7525cf4b8d504d82046c19714341ca6e1c4910a5f1daa9dffe32fcb0c066826ce44180d649a79d98df76824c365df61ba7a08a328cb3699c77c7b2
-DIST google-chrome-stable_60.0.3112.90-1_amd64.deb 58348198 SHA256 
936eb6dbf6062b4a375593d3289375d3f7823d3168673534f54f037d632283d3 SHA512 
27d3ca3b6199fa17c9e569ed52b58b70525bef04add845000145db7289f9bbeb893b743827e42f95113391f9287778b36fd3f5cd69d94aa32720edf810aa3bfd
 WHIRLPOOL 
ef1f22524844c313d3e94de8fe6b06fed173d568226eef6f4b31bee954e55e094f2b73fc2d1993c3aa63e3faa7adbcf34e6547d40df2a0575ad9a6abffb9077c
+DIST google-chrome-stable_60.0.3112.101-1_amd64.deb 61981266 SHA256 
5c22cc312c360cf7ad84f5f75c6fc6626b59ca529f7f66f65aaab3b9ca8df196 SHA512 
142745e4eef198d11ed321ad44b1e072f12984bf148b68f4b721ffd136f79d1236db68bfd7dbfa573cc2ae10113940190f2492587d355e85bb066d9e732f9b0d
 WHIRLPOOL 
b67ed7fc1bf7b8620ee2d254897529bfabe02e5749e402a60bdc04d6f48e575cb75ce0e59e45d0c0ed0aea5f9f2750c9dd119b8ac719371e2ee5efd895d8fdc2
 DIST google-chrome-unstable_62.0.3178.0-1_amd64.deb 48800018 SHA256 
10b021a3dc9c640b61a59671ceb1335f5c4eb3ceb831dbcb2ec5f6fe8981eeff SHA512 
307b5d1f86fe6240a2db0357204352e623af1c8042dcbf9b3a8f4c2c0a52ac6515f8f669a9258db2f945b7a9868b145c548106c2e09908a250dd150dc171d7c4
 WHIRLPOOL 
8328a060fb4d3c998405bb6f37ef74f70e6af2ff5c20ce19a3febe2ac2bbac8b2b5b218d0684233d1fb4c5340b30872f0136fa792151b6144988e69a59c26866

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.90.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.101.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.90.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.101.ebuild



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

2017-08-15 Thread Robin H. Johnson
commit: 42d27f0e8f26018c3c6962580bd4edfe50f557d8
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Aug 15 23:27:46 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Aug 15 23:35:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42d27f0e

dev-python/oauth2client: bump, based on patch in bug 626390.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-4.1.2.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 7219f557cc7..62411fb57ee 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -2,3 +2,4 @@ DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5
 DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3
 DIST oauth2client-2.2.0.tar.gz 167484 SHA256 
07b44748059d6390ce2247195b2ae2117773617614f76ec9375e56fd43295f06 SHA512 
1e23c3f655e955dbf0cdb2b78613768ca4c6eb4336b555e3553da212fd762ba12329584f108d8145810228cf44da018675b38dd152b06e58be4eb18d4f8127c6
 WHIRLPOOL 
6cb1b3a6dbc4d3e0fca8d72417810873f11428afb4d4f52b08f7028c984bd330acf043ca10c339453c6f4e38c1f179c2e9126a9f6cb419323a53cbc769ebbe8f
 DIST oauth2client-4.0.0.tar.gz 183288 SHA256 
7230f52f7f1d4566a3f9c3aeb5ffe2ed80302843ce5605853bee1f08098ede46 SHA512 
b59805702c7acb306801a04a92b7f700c0f58d5937b4b27a497018d313922512b5ec3f1711bacf13bc7e01c4f006eda5344a9055f981ba34e116c34c56c5dfec
 WHIRLPOOL 
409ff71754038acb3a67841edfb7dd33865c0db9e55717ea2255eab506d298603034cc5347c6219f8978b5a2ec068a5ccf4e1f0ba53533e9810794016e4822b1
+DIST oauth2client-4.1.2.tar.gz 184731 SHA256 
77737f8f831a1306b022deb2cf6f3c9dbe4b338b8b9afcf84e7be5bef4d7e833 SHA512 
908f0e32f0ef76c3eb86ee34118d4100bc08fa34aa89c561793bf8c55078f07611935ee6aecb6d2ae2f7e96a18ac3bc25af0321fe564f26042ff2bb5eab30b18
 WHIRLPOOL 
ad4a6c6ac7a5e1831a3c2829d6ca445290e34b03134b94def27a45df0ddea0488087aefa6cd5d9fb4bd3e4843eda75eafbe03e587071eaf25e76d55116a67da0

diff --git a/dev-python/oauth2client/oauth2client-4.1.2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
new file mode 100644
index 000..fb86986d371
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/keyring[${PYTHON_USEDEP}]' 'python*')
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}"/${P/_p/-post}
+
+python_prepare() {
+   # keyring is not fuly supported by pypy yet, because dbus-python can't 
support pypy
+   # oauth2client -> keyring -> secretstorage -> dbus-python
+   # https://github.com/mitya57/secretstorage/issues/10
+   case $PYTHON in
+   pypy|*pypy|*pypy3|pypy3) \
+   find "${BUILD_DIR}/.." -name '*keyring*py' -delete ;;
+   esac
+}
+
+python_test() {
+   nosetests -e appengine -e django_util -e test_multiprocess_file_storage 
-e test_bad_positional || die
+   # appengine - requires appengine
+   # django_util - requires django
+   # test_multiprocess_file_storage - requires fasteners
+   # test_bad_positional - expects TypeError, gets ValueError
+}



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

2017-08-15 Thread Robin H. Johnson
commit: db051ff2c1b1a003e8881ccdfce2e5c5adcc0b59
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug 14 16:35:08 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Aug 15 23:31:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db051ff2

dev-python/keyring: disable interactive test

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/keyring/keyring-10.4.0.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-python/keyring/keyring-10.4.0.ebuild 
b/dev-python/keyring/keyring-10.4.0.ebuild
index 2ed6a912560..26a85f01a7a 100644
--- a/dev-python/keyring/keyring-10.4.0.ebuild
+++ b/dev-python/keyring/keyring-10.4.0.ebuild
@@ -26,6 +26,12 @@ DEPEND="
)"
 RDEPEND=""
 
+src_unpack() {
+   unpack $A
+   # This is an interactive test.
+   rm -f "${S}"/keyring/tests/backends/test_kwallet.py
+}
+
 python_test() {
py.test -v -v || die "testsuite failed under ${EPYTHON}"
 }



[gentoo-commits] repo/gentoo:master commit in: app-misc/gcalcli/, app-misc/gcalcli/files/

2017-08-15 Thread Robin H. Johnson
commit: 8e36163534e38a7b6a4880bbbc1da1bb19a2479d
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Aug 15 23:30:25 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Aug 15 23:35:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e361635

app-misc/gcalcli: fixup deps, add last major stable release before 4-alpha

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-misc/gcalcli/Manifest  |  1 +
 app-misc/gcalcli/files/gcalcli-oauth2client.patch  | 30 ++
 app-misc/gcalcli/gcalcli-3.2.ebuild|  2 +-
 app-misc/gcalcli/gcalcli-3.3.2.ebuild  |  2 +-
 .../{gcalcli-3.2.ebuild => gcalcli-3.4.0.ebuild}   | 15 +++
 ...i-3.2.ebuild => gcalcli-4.0.0_alpha3-r1.ebuild} | 19 +-
 6 files changed, 56 insertions(+), 13 deletions(-)

diff --git a/app-misc/gcalcli/Manifest b/app-misc/gcalcli/Manifest
index 625064bdbab..0312ffaaeca 100644
--- a/app-misc/gcalcli/Manifest
+++ b/app-misc/gcalcli/Manifest
@@ -1,3 +1,4 @@
 DIST gcalcli-3.2.tar.gz 1672457 SHA256 
9b3465be8e64c291ffe4582f8cb779a7025c700e6a83aae74722d87a3b88d55a SHA512 
a2e0d9aea2f27eaee3796acfbfdc08b88a7792002b10f0e44b0db1187a7ecd50aa97f78df7236038c8c18bc1b6dacbfa4b26db6bfb5762c880415c10a5364d83
 WHIRLPOOL 
66b8e954c5d4527e2725d0f07786262f4365f356e3ef893aa8253d07c41523b5f9c71bffd03acc02b27c57001f0c1e7b3cd92fea7396974b8898b4940abff6fb
 DIST gcalcli-3.3.2.tar.gz 1674569 SHA256 
69c31b5bee1390b4187a48b85b57ba95e40db231489d3deec8c3d387305d2ff3 SHA512 
725290de1c7c768ad48e77bcc74e65b2676aab2fe5d40bdf59e63e1552d96dbe849fe99680b1f33c8adebcf2ee4a1ad898879820e20d8b2050679348820f4ba0
 WHIRLPOOL 
86acaf08d36af331524e514c6bfc37e6591ec570dd5c25c0bca6b111aa901636082cc961b70fcadbc32616e72f6c09bbc8460aa97f15a146fa341850fa416d15
+DIST gcalcli-3.4.0.tar.gz 1675456 SHA256 
1297f7082b4d33ac6d5ea3edfc11bdd329b8a6f28926aeda412806d45b7afdd1 SHA512 
d3844dc34dfd21b1cca6f46bf2b66b6aabfccd4d7b23ad4e076966aeec51681792c0dbe5f61e4cb84a75ce3bbf4fd1c63a2ce759cecdeee3e4608c0238c07a4b
 WHIRLPOOL 
6bbe059a8ef28d8b498006f95f3c31ea0eb244139f39c0b1846f6981e3f05d26b1f49b2ff527f6127d21e3feafcfd1e77285bcb8afae0fe690fe6251483cdb99
 DIST gcalcli-4.0.0_alpha3.tar.gz 1675261 SHA256 
d295a5c577fd4d202eb59317169e239c07d03c8ab261211ef39549bdcf98e150 SHA512 
215860f50d2b32b94124537b3d8dbaebd7af5b9c907d565a58eab5357efa8a8c8bc6c20264811337ddbc33ae75029bf59c782e1dbb317667084f11da8c41ea18
 WHIRLPOOL 
3fb9817ca408b2513b5bbcaa8ea343132e8e834ac3365cd1a4020c9dc9840f125e59b49b9067f27187b6b7210d4bb4227a79efe80ae1a98e7aad3bfc1177defa

diff --git a/app-misc/gcalcli/files/gcalcli-oauth2client.patch 
b/app-misc/gcalcli/files/gcalcli-oauth2client.patch
new file mode 100644
index 000..2ad7a2981f8
--- /dev/null
+++ b/app-misc/gcalcli/files/gcalcli-oauth2client.patch
@@ -0,0 +1,30 @@
+--- a/gcalcli-3.3.2/gcalcli2015-09-14 02:26:55.0 -0300
 b/gcalcli-3.3.2/gcalcli2016-09-21 00:20:45.817051537 -0300
+@@ -190,7 +190,8 @@
+ from apiclient.errors import HttpError
+ from oauth2client.file import Storage
+ from oauth2client.client import OAuth2WebServerFlow
+-from oauth2client.tools import run
++from oauth2client.tools import run_flow
++from oauth2client.tools import argparser
+ except ImportError as e:
+ print "ERROR: Missing module - %s" % e.args[0]
+ sys.exit(1)
+@@ -665,14 +666,15 @@
+ credentials = storage.get()
+ 
+ if credentials is None or credentials.invalid:
+-credentials = run(
++args, unknown = argparser.parse_known_args(sys.argv)
++credentials = run_flow(
+ OAuth2WebServerFlow(
+ client_id=self.client_id,
+ client_secret=self.client_secret,
+ scope=['https://www.googleapis.com/auth/calendar',
+
'https://www.googleapis.com/auth/urlshortener'],
+ user_agent=__program__ + '/' + __version__),
+-storage)
++storage,args)
+ 
+ self.authHttp = credentials.authorize(httplib2.Http())
+ 

diff --git a/app-misc/gcalcli/gcalcli-3.2.ebuild 
b/app-misc/gcalcli/gcalcli-3.2.ebuild
index 4a5053542f9..5278106779a 100644
--- a/app-misc/gcalcli/gcalcli-3.2.ebuild
+++ b/app-misc/gcalcli/gcalcli-3.2.ebuild
@@ -19,7 +19,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="${PYTHON_DEPS}
dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/google-api-python-client[${PYTHON_USEDEP}]
+   >=dev-python/google-api-python-client-1.5.3[${PYTHON_USEDEP}]
dev-python/gdata[${PYTHON_USEDEP}]
dev-python/vobject[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"

diff --git a/app-misc/gcalcli/gcalcli-3.3.2.ebuild 
b/app-misc/gcalcli/gcalcli-3.3.2.ebuild
index 4a5053542f9..5278106779a 100644
--- a/app-misc/gcalcli/gcalcli-3.3.2.ebuild
+++ 

[gentoo-commits] repo/gentoo:master commit in: profiles/arch/alpha/, profiles/arch/powerpc/ppc64/, profiles/arch/sparc/, ...

2017-08-15 Thread Gilles Dartiguelongue
commit: a41e6d69673df0bbde7d7d648d0f7dce88877712
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 23:28:46 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 23:30:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a41e6d69

profiles: mask USE=test on gnome-base/gnome-settings-daemon

due to missing keywords on dev-python/dbusmock, bug #620024

 profiles/arch/alpha/package.use.mask | 4 
 profiles/arch/powerpc/ppc64/package.use.mask | 4 
 profiles/arch/sparc/package.use.mask | 4 
 profiles/arch/x86/package.use.mask   | 4 
 4 files changed, 16 insertions(+)

diff --git a/profiles/arch/alpha/package.use.mask 
b/profiles/arch/alpha/package.use.mask
index e576c3103e1..03c083abf54 100644
--- a/profiles/arch/alpha/package.use.mask
+++ b/profiles/arch/alpha/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Gilles Dartiguelongue  (16 Aug 2017)
+# missing keyword on dev-python/dbusmock, bug #620024
+>=gnome-base/gnome-settings-daemon-3.24 test
+
 # Michał Górny  (08 Aug 2017)
 # Required VIDEO_CARDS=i965/radeonsi, both masked in this profile.
 media-libs/mesa vulkan

diff --git a/profiles/arch/powerpc/ppc64/package.use.mask 
b/profiles/arch/powerpc/ppc64/package.use.mask
index 0acf30b5f8f..4de688019de 100644
--- a/profiles/arch/powerpc/ppc64/package.use.mask
+++ b/profiles/arch/powerpc/ppc64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Gilles Dartiguelongue  (16 Aug 2017)
+# missing keyword on dev-python/dbusmock, bug #620024
+>=gnome-base/gnome-settings-daemon-3.24 test
+
 # Michał Górny  (08 Aug 2017)
 # package.use.force forces USE=binary, and USE=debug requires !binary,
 # so it can never be enabled.

diff --git a/profiles/arch/sparc/package.use.mask 
b/profiles/arch/sparc/package.use.mask
index ea7b405cd4c..0dca7623777 100644
--- a/profiles/arch/sparc/package.use.mask
+++ b/profiles/arch/sparc/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Gilles Dartiguelongue  (16 Aug 2017)
+# missing keyword on dev-python/dbusmock, bug #620024
+>=gnome-base/gnome-settings-daemon-3.24 test
+
 # Michał Górny  (08 Aug 2017)
 # Required VIDEO_CARDS=i965/radeonsi, both masked in this profile.
 media-libs/mesa vulkan

diff --git a/profiles/arch/x86/package.use.mask 
b/profiles/arch/x86/package.use.mask
index e9026d44337..04d772e731a 100644
--- a/profiles/arch/x86/package.use.mask
+++ b/profiles/arch/x86/package.use.mask
@@ -3,6 +3,10 @@
 
 # This file requires >=portage-2.1.1
 
+# Gilles Dartiguelongue  (16 Aug 2017)
+# missing keyword on dev-python/dbusmock, bug #620024
+>=gnome-base/gnome-settings-daemon-3.24 test
+
 # Michał Górny  (07 Aug 2017)
 # Requires USE=cuda that is masked in this profile.
 media-gfx/blender opensubdiv



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 4434e53db9b7dfefba804ccebc85451ee7360d58
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 23:22:19 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 23:22:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4434e53d

gnome-extra/gnome-tweak-tool: drop keywords due to missing keyword on 
gnome-shell

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild 
b/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild
index 5791e8849e4..ad1a344271f 100644
--- a/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild
+++ b/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild
@@ -16,7 +16,7 @@ SLOT="0"
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ia64 ~x86"
 
 COMMON_DEPEND="
${PYTHON_DEPS}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 59c2877aa592b8db928be3264fe2f17588e0c5df
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 23:02:05 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 23:02:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c2877a

profiles/package.mask: unmask phodav as it is required with newer glib

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 86eff16d324..707890ff806 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -478,7 +478,6 @@ app-emulation/wine-any
 
 # Gnome Team  (08 Mar 2017)
 # GNOME 3.24 mask (#611270)
->=net-libs/phodav-2.2
 >=net-libs/gtk-vnc-0.7
 >=dev-libs/libgee-0.19
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/latexila/

2017-08-15 Thread Gilles Dartiguelongue
commit: c548f829f3c9b2510ef9f3107ac19981c9851f2d
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 15:08:47 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:59:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c548f829

app-editors/latexila: version bump 3.22.1 → 3.24.2

Package-Manager: Portage-2.3.7, Repoman-2.3.3
RepoMan-Options: --force

 app-editors/latexila/Manifest   |  1 +
 app-editors/latexila/latexila-3.24.2.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/app-editors/latexila/Manifest b/app-editors/latexila/Manifest
index 354252a094d..92ad27bf3e2 100644
--- a/app-editors/latexila/Manifest
+++ b/app-editors/latexila/Manifest
@@ -1 +1,2 @@
 DIST latexila-3.22.1.tar.xz 820 SHA256 
41692d850a48521d2a700ae296680464078ef0bef1c1383383b433c5ecdf2719 SHA512 
7c2d3b95b9547e97c79f5e6384b1f33ccb81e70cea1d26fcc07845f3f391ac54b5931ddcec742f3439ba55e8f9f2a2054935795ab16bee584eb05780a72ba3a9
 WHIRLPOOL 
bacdd353a29c79612bc7f9b786b9c9ff5c4d12bf595b6795eb498251d724be7a29915723e2a0d29ef8bef22b096259da540e8b11d5e6ac4287833abfbc306a9f
+DIST latexila-3.24.2.tar.xz 1120940 SHA256 
89042a9253b3e150d56bada649d47a9879fd702fc46f73be5649b0edad3f1183 SHA512 
8facaa57a87b58ba3aeffcd1c59e2770fe8e95bdbf0cd2e5fa39554c1eba3ba93aa4cb544fd09564cc9481d919a0b04d46169d053f9f155deaa8826050a4c72c
 WHIRLPOOL 
97ed80c4bdde8ecae830e898e7d3cf90d8d8c923277dbeb6d2b0471f6178b5a8f80133521206093003d36aa4dd1c1ce6063367491e1d407e247c90d7ae72002e

diff --git a/app-editors/latexila/latexila-3.24.2.ebuild 
b/app-editors/latexila/latexila-3.24.2.ebuild
new file mode 100644
index 000..d95cfae59a3
--- /dev/null
+++ b/app-editors/latexila/latexila-3.24.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+VALA_MIN_API_VERSION="0.34"
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="Integrated LaTeX environment for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/LaTeXila;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection +latexmk rubber"
+
+COMMON_DEPEND="
+   $(vala_depend)
+   app-text/enchant
+   >=app-text/gspell-1.0:0=
+   >=dev-libs/glib-2.50:2[dbus]
+   >=dev-libs/libgee-0.10:0.8=
+   gnome-base/gsettings-desktop-schemas
+   >=x11-libs/gtef-2.0
+   >=x11-libs/gtk+-3.20:3
+   >=x11-libs/gtksourceview-3.24:3.0=
+   x11-libs/gdk-pixbuf:2
+   x11-libs/pango
+   introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   virtual/latex-base
+   x11-themes/hicolor-icon-theme
+   latexmk? ( dev-tex/latexmk )
+   rubber? ( dev-tex/rubber )
+"
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-util/gdbus-codegen
+   >=dev-util/gtk-doc-am-1.14
+   >=dev-util/intltool-0.50.1
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   gnome2_src_prepare
+   vala_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   $(use_enable introspection)
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 3da745ffcba153c34db9eacdecbb61433a8d914b
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 15:08:08 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:59:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3da745ff

x11-libs/gtef: initial ebuild

required by latexila-3.24, later renamed to tpel.

 x11-libs/gtef/Manifest  |  1 +
 x11-libs/gtef/gtef-2.0.1.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/x11-libs/gtef/Manifest b/x11-libs/gtef/Manifest
new file mode 100644
index 000..c94c5cef6bc
--- /dev/null
+++ b/x11-libs/gtef/Manifest
@@ -0,0 +1 @@
+DIST gtef-2.0.1.tar.xz 429800 SHA256 
8432f0f404b93e5a2702978b5f121b8f9ae2167c906e9f2ed7b5165142e27a4f SHA512 
51cec42405f41c8d3d311811f3a9f6c67ca2a6a87cb305f9becc14694683ed427bf14797d8c997f17d4a05b3048d91cb5ebde81d0db4d11048e8978ecb7e64e1
 WHIRLPOOL 
285fb42b8b74849e212b022f81d734f1c8c2675bd6a55ec5b9258693b7b329e6fed372dd7604925fdfed268344424d83293a2b80ee6b9b996ff711a9866d259f

diff --git a/x11-libs/gtef/gtef-2.0.1.ebuild b/x11-libs/gtef/gtef-2.0.1.ebuild
new file mode 100644
index 000..ac2714fe04c
--- /dev/null
+++ b/x11-libs/gtef/gtef-2.0.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala virtualx
+
+DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
+HOMEPAGE="https://wiki.gnome.org/Projects/Gtef;
+
+LICENSE="LGPL-2.1+"
+SLOT="2"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection test vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.52:2
+   >=x11-libs/gtk+-3.20
+   >=x11-libs/gtksourceview-3.22
+   >=dev-libs/libxml2-2.5
+   app-i18n/uchardet
+   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+"
+DEPEND="${DEPEND}
+   test? ( dev-util/valgrind )
+   vala? ( $(vala_depend) )
+   >=sys-devel/gettext-0.19.4
+   >=dev-util/gtk-doc-am-1.25
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   # requires running gvfs-metadata
+   sed -e 's:\(g_test_add_func.*/file/load_save_metadata_sync.*\):/*\1*/:' 
\
+-e 's:\(g_test_add_func.*/file/load_save_metadata_async.*\):/*\1*/:' \
+-e 's:\(g_test_add_func.*/file/set_without_load.*\):/*\1*/:' \
+   -i testsuite/test-file-metadata.c || die
+
+   use vala && vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --enable-gvfs-metadata \
+   $(use_enable introspection) \
+   $(use_enable vala) \
+   $(use_enable test valgrind)
+}
+
+src_test() {
+   virtx emake check
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/db4o-jdk5/

2017-08-15 Thread Patrice Clement
commit: e2ea783c0e4af4c24cc045d1f352adf0dbcde5c9
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Aug 15 22:46:50 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 22:47:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2ea783c

dev-java/db4o-jdk5: EAPI 6 bump.

This commit also updates the ebuild's HOMEPAGE.

Gentoo-Bug: https://bugs.gentoo.org/626310

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-java/db4o-jdk5/db4o-jdk5-7.4-r1.ebuild | 37 ++
 1 file changed, 37 insertions(+)

diff --git a/dev-java/db4o-jdk5/db4o-jdk5-7.4-r1.ebuild 
b/dev-java/db4o-jdk5/db4o-jdk5-7.4-r1.ebuild
new file mode 100644
index 000..32f2db19b1a
--- /dev/null
+++ b/dev-java/db4o-jdk5/db4o-jdk5-7.4-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Core files for the object database for Java"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${P}"
+
+CDEPEND="
+   dev-java/db4o-jdk11:0
+   dev-java/db4o-jdk12:0"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.6"
+
+JAVA_GENTOO_CLASSPATH="db4o-jdk11 db4o-jdk12"
+
+src_prepare() {
+   default
+   rm -rv "${S}/test" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/db4o-jdk11/

2017-08-15 Thread Patrice Clement
commit: baf3637b217f080d891821e7d66936f0bb023046
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Aug 15 22:40:01 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 22:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf3637b

dev-java/db4o-jdk11: EAPI 6 bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-java/db4o-jdk11/db4o-jdk11-7.4-r1.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/dev-java/db4o-jdk11/db4o-jdk11-7.4-r1.ebuild 
b/dev-java/db4o-jdk11/db4o-jdk11-7.4-r1.ebuild
new file mode 100644
index 000..4aefb7fa319
--- /dev/null
+++ b/dev-java/db4o-jdk11/db4o-jdk11-7.4-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Core files for the object database for Java"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.6"
+DEPEND=">=virtual/jdk-1.6"
+
+S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: dev-java/db4o-jdk12/

2017-08-15 Thread Patrice Clement
commit: 0824d3f3fdcc0b13744d93bc254fc88a8b3dc80a
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Aug 15 22:44:34 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 22:47:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0824d3f3

dev-java/db4o-jdk12: EAPI 6 bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-java/db4o-jdk12/db4o-jdk12-7.4-r1.ebuild | 35 
 1 file changed, 35 insertions(+)

diff --git a/dev-java/db4o-jdk12/db4o-jdk12-7.4-r1.ebuild 
b/dev-java/db4o-jdk12/db4o-jdk12-7.4-r1.ebuild
new file mode 100644
index 000..063fbf5321b
--- /dev/null
+++ b/dev-java/db4o-jdk12/db4o-jdk12-7.4-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Core files for the object database for Java"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+CDEPEND="dev-java/db4o-jdk11:0"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.6"
+
+S="${WORKDIR}/${P}"
+
+JAVA_GENTOO_CLASSPATH="db4o-jdk11"
+
+src_prepare() {
+   default
+   rm -rv "${S}/test" || die
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: b1ed8cf0d0fcb8c8be03b7c020c9aac729eac749
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:14:37 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ed8cf0

gnome-extra/gnome-tweak-tool: raise dependency on gnome-shell

due to new schema entry.

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild 
b/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild
index eb0b408ac41..5791e8849e4 100644
--- a/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild
+++ b/gnome-extra/gnome-tweak-tool/gnome-tweak-tool-3.24.1.ebuild
@@ -33,7 +33,7 @@ RDEPEND="${COMMON_DEPEND}
x11-libs/libnotify[introspection]
 
>=gnome-base/gnome-settings-daemon-3
-   gnome-base/gnome-shell
+   >=gnome-base/gnome-shell-3.24
>=gnome-base/nautilus-3
 "
 DEPEND="${COMMON_DEPEND}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 84bc4d8d364b541527457b6ba1d93aa8c72b2e6b
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:46:54 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84bc4d8d

dev-python/pygobject: version bump 3.22.0 → 3.24.1

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/pygobject/Manifest|   1 +
 dev-python/pygobject/pygobject-3.24.1.ebuild | 105 +++
 2 files changed, 106 insertions(+)

diff --git a/dev-python/pygobject/Manifest b/dev-python/pygobject/Manifest
index 87f2bf21b92..3ff5332b5a5 100644
--- a/dev-python/pygobject/Manifest
+++ b/dev-python/pygobject/Manifest
@@ -1,2 +1,3 @@
 DIST pygobject-2.28.6.tar.xz 747248 SHA256 
fb8a1d4f665130a125011659bd347c7339c944232163dbb9a34fd0686577adb8 SHA512 
37544ea2377258758169b25a2969d5ee1c9ffb9b6e63e05bc7a0471a49ac9169c51ec587d4489172c7d256f53df878a81c1992a08059aa7e43dbbb69f799545c
 WHIRLPOOL 
402f764d6ca73f238784738a1e09832858fd95af5a633e825412e9e6a21e89ab6b2090d3995902ed404fc4fde445cf970c76fcd93f8f64cf9def742452776c00
 DIST pygobject-3.22.0.tar.xz 756820 SHA256 
08b29cfb08efc80f7a8630a2734dec65a99c1b59f1e5771c671d2e4ed8a5cbe7 SHA512 
1f6f0ea8014b35d7828a6bebc0fe2cf6519016ca5ad3819dc6b7879154d8e27fdd2971620955c8fc4904625814833c8bc8ec0599152720649864262d3b6e33e4
 WHIRLPOOL 
c285669e4d07a9b0cf79ba06528d3809d0c2807b2345dc6eeec011ed351cd45155119b2691cd10a498fb76d67486026e997d93c80b3a7ea60176e053d4452374
+DIST pygobject-3.24.1.tar.xz 758648 SHA256 
a628a95aa0909e13fb08230b1b98fc48adef10b220932f76d62f6821b3fdbffd SHA512 
f35968ab12b872c85af6b2410cadedcf9fa7e17352a40f3dc557c86203aa1c38753710aab9ce55e986ee2c98b64e14123c65083655445e993d0b53431db6dc93
 WHIRLPOOL 
998293b07796b4a5b7db475428f6aea46dbac93fc31e5b210307c1b68390341f92121741cec714dc3e7bc2f460dd1248d7eb37775baef51be9e6b9078ea3b332

diff --git a/dev-python/pygobject/pygobject-3.24.1.ebuild 
b/dev-python/pygobject/pygobject-3.24.1.ebuild
new file mode 100644
index 000..a6b538b28f5
--- /dev/null
+++ b/dev-python/pygobject/pygobject-3.24.1.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit eutils gnome2 python-r1 virtualx
+
+DESCRIPTION="GLib's GObject library bindings for Python"
+HOMEPAGE="https://wiki.gnome.org/Projects/PyGObject;
+
+LICENSE="LGPL-2.1+"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="+cairo examples test +threads"
+
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   test? ( cairo )
+"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=dev-libs/glib-2.38:2
+   >=dev-libs/gobject-introspection-1.46.0:=
+   virtual/libffi:=
+   cairo? (
+   >=dev-python/pycairo-1.10.0[${PYTHON_USEDEP}]
+   x11-libs/cairo )
+"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   cairo? ( x11-libs/cairo[glib] )
+   test? (
+   dev-libs/atk[introspection]
+   media-fonts/font-cursor-misc
+   media-fonts/font-misc-misc
+   x11-libs/cairo[glib]
+   x11-libs/gdk-pixbuf:2[introspection]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/pango[introspection]
+   python_targets_python2_7? ( 
dev-python/pyflakes[$(python_gen_usedep python2_7)] ) )
+"
+# gnome-base/gnome-common required by eautoreconf
+
+# We now disable introspection support in slot 2 per upstream recommendation
+# (see https://bugzilla.gnome.org/show_bug.cgi?id=642048#c9); however,
+# older versions of slot 2 installed their own site-packages/gi, and
+# slot 3 will collide with them.
+RDEPEND="${COMMON_DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: gnome-base/nautilus/, gnome-extra/gnome-color-manager/

2017-08-15 Thread Gilles Dartiguelongue
commit: 08559816795ae384d618b5fc91a76e078c66b1e8
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Fri Aug 11 06:48:16 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08559816

gnome-base/nautilus: version bump 3.22.3 → 3.24.2.1

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 gnome-base/nautilus/Manifest   |   1 +
 gnome-base/nautilus/nautilus-3.24.2.1.ebuild   | 111 +
 gnome-extra/gnome-color-manager/Manifest   |   1 +
 .../gnome-color-manager-3.24.0.ebuild  |  64 
 4 files changed, 177 insertions(+)

diff --git a/gnome-base/nautilus/Manifest b/gnome-base/nautilus/Manifest
index 96dc8639bd9..754c433c40d 100644
--- a/gnome-base/nautilus/Manifest
+++ b/gnome-base/nautilus/Manifest
@@ -1,2 +1,3 @@
 DIST nautilus-3.20.4.tar.xz 3453376 SHA256 
b15f4778950752e5d5748f198d69106be3425cdc70574be75c25f8f931a2766c SHA512 
01bee5c70067c508ca918948afe0b400680eb68518ae69803e2971a215b0eaf54c9251566c6c44835a1c0b9b20248450539a47936c6aba5c9accc9ef3cbe8a8e
 WHIRLPOOL 
bf9a3549cb16c8860a470aac07b91cee349adf7ac820847afe093db160fd2f9a4c9f2c6cf7625c7f19415a6957547353662edd33358ddf0b1a86f33169812314
 DIST nautilus-3.22.3.tar.xz 5104800 SHA256 
64c232f743a2bae3fce3c76d5aa65e378d11bb431fefde9013162069abff4e22 SHA512 
abad02d2b36230348cec04bcc2650cc352e232008c4e628096880a93b647a0da86b43b9df6cbd621334e7292e2d00f68010783858dbfa38061ab7eafd3c4c912
 WHIRLPOOL 
7dde08228204b2817942071b0a5a1d31ba2d699b96ef821b4cdff301e8d26fd92a36f82b74e7acfeda4018cfa3dc082b0aac66360b0dc940706fd877755e2a48
+DIST nautilus-3.24.2.1.tar.xz 5143440 SHA256 
357d9d051fcc2c385ce9b3beb2db2ea1874b7cdf507ca10274a063023e1a61b3 SHA512 
f6868600bcdc82071b3a63f4e4a0f7decf0d72e021eb3d0c26e914413c858163ee4403c4f3ef7689556a0fc91394f30cff9a3db14da030b277b50972c7b80a07
 WHIRLPOOL 
f98196cace9b0558abfbfd1bb3be05aefb7dade5edc47dfa675341c6465d4dc343e1fb0b2262c91a57cf090f82debf756d2be7000298def24151ff0aff3a1c30

diff --git a/gnome-base/nautilus/nautilus-3.24.2.1.ebuild 
b/gnome-base/nautilus/nautilus-3.24.2.1.ebuild
new file mode 100644
index 000..351af7b202e
--- /dev/null
+++ b/gnome-base/nautilus/nautilus-3.24.2.1.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes" # Needed with USE 'sendto'
+
+inherit gnome2 readme.gentoo-r1 virtualx
+
+DESCRIPTION="A file manager for the GNOME desktop"
+HOMEPAGE="https://wiki.gnome.org/Apps/Nautilus;
+
+LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
+SLOT="0"
+IUSE="exif gnome +introspection packagekit +previewer selinux sendto tracker 
xmp"
+
+KEYWORDS="~amd64 ~arm64 ~ia64 ~x86 ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+
+# FIXME: tests fails under Xvfb, but pass when building manually
+# "FAIL: check failed in nautilus-file.c, line 8307"
+# need org.gnome.SessionManager service (aka gnome-session) but cannot find it
+RESTRICT="test"
+
+# Require {glib,gdbus-codegen}-2.30.0 due to GDBus API changes between 2.29.92
+# and 2.30.0
+COMMON_DEPEND="
+   >=app-arch/gnome-autoar-0.2.1
+   >=dev-libs/glib-2.51.2:2[dbus]
+   >=x11-libs/pango-1.28.3
+   >=x11-libs/gtk+-3.21.6:3[introspection?]
+   >=dev-libs/libxml2-2.7.8:2
+   >=gnome-base/gnome-desktop-3:3=
+
+   gnome-base/dconf
+   >=gnome-base/gsettings-desktop-schemas-3.8.0
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXrender
+
+   exif? ( >=media-libs/libexif-0.6.20 )
+   introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
+   selinux? ( >=sys-libs/libselinux-2 )
+   tracker? ( >=app-misc/tracker-1:= )
+   xmp? ( >=media-libs/exempi-2.1.0:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-lang/perl-5
+   >=dev-util/gdbus-codegen-2.33
+   >=dev-util/gtk-doc-am-1.10
+   >=sys-devel/gettext-0.19.7
+   virtual/pkgconfig
+   x11-proto/xproto
+"
+RDEPEND="${COMMON_DEPEND}
+   packagekit? ( app-admin/packagekit-base )
+   sendto? ( !https://git.gnome.org/browse/gnome-color-manager;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="packagekit raw"
+
+# Need gtk+-3.3.8 for https://bugzilla.gnome.org/show_bug.cgi?id=673331
+RDEPEND="
+   >=dev-libs/glib-2.31.10:2
+   >=media-libs/lcms-2.2:2
+   >=media-libs/libcanberra-0.10[gtk3]
+   media-libs/libexif
+   media-libs/tiff:0=
+
+   >=x11-libs/gtk+-3.3.8:3
+   >=x11-libs/vte-0.25.1:2.91
+   >=x11-misc/colord-1.3.1:0=
+   >=x11-libs/colord-gtk-0.1.20
+
+   packagekit? ( app-admin/packagekit-base )
+   raw? ( media-gfx/exiv2 )
+"
+# docbook-sgml-{utils,dtd:4.1} needed to generate man pages
+DEPEND="${RDEPEND}
+   app-text/docbook-sgml-dtd:4.1
+   app-text/docbook-sgml-utils
+   dev-libs/appstream-glib
+   dev-libs/libxslt
+ 

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

2017-08-15 Thread Gilles Dartiguelongue
commit: bee29934057335599f42c66401309844cb0a3266
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:17:18 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bee29934

gnome-base/gnome-light: version bump 3.22.2 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3
RepoMan-Options: --force

 gnome-base/gnome-light/gnome-light-3.24.0.ebuild | 59 
 1 file changed, 59 insertions(+)

diff --git a/gnome-base/gnome-light/gnome-light-3.24.0.ebuild 
b/gnome-base/gnome-light/gnome-light-3.24.0.ebuild
new file mode 100644
index 000..180917e5daf
--- /dev/null
+++ b/gnome-base/gnome-light/gnome-light-3.24.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit versionator
+
+P_RELEASE="$(get_version_components 2)"
+
+DESCRIPTION="Meta package for GNOME-Light, merge this package to install"
+HOMEPAGE="https://www.gnome.org/;
+LICENSE="metapackage"
+SLOT="2.0"
+IUSE="cups +gnome-shell"
+
+# when unmasking for an arch
+# double check none of the deps are still masked !
+KEYWORDS="~amd64 ~ia64 ~x86"
+
+# XXX: Note to developers:
+# This is a wrapper for the 'light' GNOME 3 desktop, and should only consist of
+# the bare minimum of libs/apps needed. It is basically gnome-base/gnome 
without
+# any apps, but shouldn't be used by users unless they know what they are 
doing.
+RDEPEND="!gnome-base/gnome
+   >=gnome-base/gnome-core-libs-${PV}[cups?]
+
+   >=gnome-base/gnome-session-${PV}
+   >=gnome-base/gnome-settings-daemon-${PV}[cups?]
+   >=gnome-base/gnome-control-center-${PV}[cups?]
+
+   >=gnome-base/nautilus-${PV}
+
+   gnome-shell? (
+   >=x11-wm/mutter-${PV}
+   >=gnome-base/gnome-shell-${PV} )
+
+   >=x11-themes/adwaita-icon-theme-${P_RELEASE}
+   >=x11-themes/gnome-themes-standard-3.22.3
+   >=x11-themes/gnome-backgrounds-${P_RELEASE}
+
+   >=x11-terms/gnome-terminal-${PV}
+"
+DEPEND=""
+PDEPEND=">=gnome-base/gvfs-1.32"
+S="${WORKDIR}"
+
+pkg_pretend() {
+   if ! use gnome-shell; then
+   # Users probably want to use e16, sawfish, etc
+   ewarn "You're not installing GNOME Shell"
+   ewarn "You will have to install and manage a window manager by 
yourself"
+   fi
+}
+
+pkg_postinst() {
+   # Remember people where to find our project information
+   elog "Please remember to look at 
https://wiki.gentoo.org/wiki/Project:GNOME;
+   elog "for information about the project and documentation."
+}



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/geocode-glib/files/, sci-geosciences/geocode-glib/

2017-08-15 Thread Gilles Dartiguelongue
commit: 538398b274487b281978d04311ee0ccc1e08d73c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 20:51:34 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=538398b2

sci-geosciences/geocode-glib: drop old revision

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 sci-geosciences/geocode-glib/Manifest  |  1 -
 .../geocode-glib-3.18.1-fix-GLIBC-features.patch   | 54 --
 .../geocode-glib/geocode-glib-3.18.2.ebuild| 53 -
 3 files changed, 108 deletions(-)

diff --git a/sci-geosciences/geocode-glib/Manifest 
b/sci-geosciences/geocode-glib/Manifest
index a55d672c512..6ffa139e906 100644
--- a/sci-geosciences/geocode-glib/Manifest
+++ b/sci-geosciences/geocode-glib/Manifest
@@ -1,3 +1,2 @@
-DIST geocode-glib-3.18.2.tar.xz 369516 SHA256 
95b11ef2697ac5dbb2f397e7117e08e157b2168624c71507656928095012494e SHA512 
3ad874d9ae2c5d172dc5a2be06ae2c78293c33f5845b1d4b4eacec789beb87cc6278cde1ab6bd098a36ce6e2596a312333f0e6cfab00b5977416ad14578ff7eb
 WHIRLPOOL 
eb65633fcd7ad2d36365fe8e869e2f0057905cf58dc297e195635d334e0afcf63406553aa736381efd6ea16389a9c3ee51335cbefdf21f50f2b901c9c4c4f881
 DIST geocode-glib-3.20.1.tar.xz 371200 SHA256 
669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2 SHA512 
0016b04928d3d7e9e3339bf1457d5ba7951af7af53b72a185f9cb3e92e9d1b1deb7ca11f95de1bcb0a3521a5b200ce3c25bb35eaf8bf15b81672846ec01b718f
 WHIRLPOOL 
5aab167244191ac29489fee4f7b68cd7c41a820d4ad127fd6412f8adbf00b7dfba03a1d372ac064054429d9442d5178314597b93ada19c0c1e66bd6f4781736b
 DIST geocode-glib-3.24.0.tar.xz 413536 SHA256 
19c1fef4fd89eb4bfe6decca45ac45a2eca9bb7933be560ce6c172194840c35e SHA512 
0e3910e99d164fdf5afd6befbcb7139a56779834fb1f2a318951c03e5196a31c4dafd7f88c37c7014377f15cd4d4b81e7080a440881e2c50aadaadf621abe3b6
 WHIRLPOOL 
23e19aa31ccbc0196d890e71c76d45c6b2d585a7a635d146a9e50a655a7c108562a641b242637ba5279c7d6bb5b362e8ad3c1f3e3e760b88cdde3604339b7097

diff --git 
a/sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch
 
b/sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch
deleted file mode 100644
index 23b14430c9b..000
--- 
a/sci-geosciences/geocode-glib/files/geocode-glib-3.18.1-fix-GLIBC-features.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 3ce317a218c255b8a8025f8f2a6010ce500dc0ee Mon Sep 17 00:00:00 2001
-From: "Anthony G. Basile" 
-Date: Tue, 22 Mar 2016 09:48:00 +
-Subject: [PATCH] Use __UCLIBC__ when checking for GLIBC features
-
-Commit f0f85d8d introduces __GLIBC__ to check for glibc only features.
-However this is not sufficient for uClibc because it shares code with
-glibc.  To select for features in glibc but not uClibc, we need
-defined(__GLIBC__) && !defined(__UCLIBC__).
-
-https://bugzilla.gnome.org/show_bug.cgi?id=764021

- geocode-glib/geocode-glib.c | 4 ++--
- geocode-glib/test-gcglib.c  | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/geocode-glib/geocode-glib.c b/geocode-glib/geocode-glib.c
-index 4e3b3fd..6215fd1 100644
 a/geocode-glib/geocode-glib.c
-+++ b/geocode-glib/geocode-glib.c
-@@ -213,7 +213,7 @@ _geocode_object_get_lang (void)
-   return geocode_object_get_lang_for_locale (setlocale (LC_MESSAGES, 
NULL));
- }
- 
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- static gpointer
- is_number_after_street (gpointer data)
- {
-@@ -246,7 +246,7 @@ is_number_after_street (gpointer data)
- gboolean
- _geocode_object_is_number_after_street (void)
- {
--#ifndef __GLIBC__
-+#if !defined(__GLIBC__) || defined(__UCLIBC__)
-   return FALSE;
- #else
-   static GOnce once = G_ONCE_INIT;
-diff --git a/geocode-glib/test-gcglib.c b/geocode-glib/test-gcglib.c
-index a23a3c3..9d7194d 100644
 a/geocode-glib/test-gcglib.c
-+++ b/geocode-glib/test-gcglib.c
-@@ -395,7 +395,7 @@ test_distance (void)
- static void
- test_locale_format (void)
- {
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
-   GeocodeForward *object;
-   GError *error = NULL;
-   GList *res;
--- 
-2.7.3
-

diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild 
b/sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild
deleted file mode 100644
index 4ab5a682fe1..000
--- a/sci-geosciences/geocode-glib/geocode-glib-3.18.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-GCONF_DEBUG="no" # --enable-debug does not do anything useful
-
-inherit gnome2
-
-DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
-HOMEPAGE="https://git.gnome.org/browse/geocode-glib;
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="+introspection test"
-
-RDEPEND="
-   >=dev-libs/glib-2.34:2
- 

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 32b6404b9e5d74727918a6b1e5c091e7a980c0f8
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 20:43:21 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32b6404b

gnome-base/libgtop: version bump 2.34.2 → 2.36.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 gnome-base/libgtop/Manifest  |  1 +
 gnome-base/libgtop/libgtop-2.36.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/gnome-base/libgtop/Manifest b/gnome-base/libgtop/Manifest
index c4de590d0e5..a9d31b380e0 100644
--- a/gnome-base/libgtop/Manifest
+++ b/gnome-base/libgtop/Manifest
@@ -1 +1,2 @@
 DIST libgtop-2.34.2.tar.xz 725720 SHA256 
268ad1478363e8c0955ea842fa134f6eb88965ab5e03166c20d8df9e7a1f8ef8 SHA512 
22ae4792236c47fda265f1b16f66f8685122f84a76e14adf2fd9e5e669c1f9776a58a2ec00564e37add98084d7e3cea621b38b8ad09b15e348f9c74f5345f19a
 WHIRLPOOL 
495146b1536c46d78112b5eb0661589cfefea176d7780badf7a834bf4def8677b9077232ca194352f75dc657cbe9d2bde3387f195893cea88218f29dca910ceb
+DIST libgtop-2.36.0.tar.xz 727072 SHA256 
13bfe34c150b2b00b03df4732e8c7ccfae09ab15897ee4f4ebf0d16b0f3ba12b SHA512 
2768c628fa3e872a940246042b2c78ad4618612ecb2cf2b95fb70343a4f1a01bb558d0ce9e5b3468f395349f338ca33d460e1d91f2c123ad39243cd0ff20d5e5
 WHIRLPOOL 
4b3742646c0eaaf525145bfe31c3da28cac97d5418e2460fc60235945ae151691bc7043303c54e97ee93287efe97bf30ee84613b9beae7e5d9e1a58afd85a0f9

diff --git a/gnome-base/libgtop/libgtop-2.36.0.ebuild 
b/gnome-base/libgtop/libgtop-2.36.0.ebuild
new file mode 100644
index 000..3bc7dfcd3b5
--- /dev/null
+++ b/gnome-base/libgtop/libgtop-2.36.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="A library that provides top functionality to applications"
+HOMEPAGE="https://git.gnome.org/browse/libgtop;
+
+LICENSE="GPL-2"
+SLOT="2/10" # libgtop soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
+IUSE="+introspection"
+
+RDEPEND="
+   >=dev-libs/glib-2.26:2
+   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.4
+   >=sys-devel/gettext-0.19.4
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   $(use_enable introspection)
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 6711fb4e080d5ffc9f26756ebd2f8a186bf0d12c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:42:01 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6711fb4e

gnome-base/gvfs: version bump 1.30.4 → 1.32.1

Enable libusb support with USE=mtp as it is used to enhance
interruption of waiting threads.

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 gnome-base/gvfs/Manifest   |   1 +
 gnome-base/gvfs/gvfs-1.32.1.ebuild | 132 +
 2 files changed, 133 insertions(+)

diff --git a/gnome-base/gvfs/Manifest b/gnome-base/gvfs/Manifest
index d28a1f319da..1a6d1030d9b 100644
--- a/gnome-base/gvfs/Manifest
+++ b/gnome-base/gvfs/Manifest
@@ -1 +1,2 @@
 DIST gvfs-1.30.4.tar.xz 1895304 SHA256 
981e0aca7f4e2e99860137f9fd99c335fa72a764156d253caf1069380a8e3afa SHA512 
305b2abc8cfcb4bdea1fb84f5a7df4aac9697494f5d63d40ce1eb234b547aed497deb4d88a2cb17f9ab4fc188d49ff56033993a17cbfebae6d65a33dc84a633a
 WHIRLPOOL 
f945786e1a8476b7a01efe75138f5b2668d99fa85d8af2994826d2131e25650e504b7e4137ee26bf9aeafd878c6fe2891dd41762d0f84bd324b8f04e7537fcb2
+DIST gvfs-1.32.1.tar.xz 1813212 SHA256 
d0b6c9edab09d52472355657a2f0a14831b2e6c58caba395f721ab683f836ade SHA512 
7bd4d137437c1704faf6a9c2712bddcc327284e752c552c2cc18c64beb5e6d291af321e92d02d4f09b619762121129cee82c13ec2a4ca39d045196ebeeb28dd8
 WHIRLPOOL 
490fab2906896131711e5d8acc9c1a15bbd160b6b02c0472201ff5cc4cdc28c1be83e3603717b038c93e9d1406108aefe2afe1d06e194cf6db5466a8ff77f3b9

diff --git a/gnome-base/gvfs/gvfs-1.32.1.ebuild 
b/gnome-base/gvfs/gvfs-1.32.1.ebuild
new file mode 100644
index 000..73995ec2f04
--- /dev/null
+++ b/gnome-base/gvfs/gvfs-1.32.1.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit autotools gnome2 systemd
+
+DESCRIPTION="Virtual filesystem implementation for gio"
+HOMEPAGE="https://wiki.gnome.org/Projects/gvfs;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+
+IUSE="afp archive bluray cdda fuse google gnome-keyring gnome-online-accounts 
gphoto2 gtk +http ios mtp nfs policykit samba systemd test +udev udisks 
zeroconf"
+REQUIRED_USE="
+   cdda? ( udev )
+   google? ( gnome-online-accounts )
+   mtp? ( udev )
+   udisks? ( udev )
+   systemd? ( udisks )
+"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
+
+RDEPEND="
+   app-crypt/gcr:=
+   >=dev-libs/glib-2.51:2
+   dev-libs/libxml2:2
+   net-misc/openssh
+   afp? ( >=dev-libs/libgcrypt-1.2.2:0= )
+   archive? ( app-arch/libarchive:= )
+   bluray? ( media-libs/libbluray:= )
+   fuse? ( >=sys-fs/fuse-2.8.0:0 )
+   gnome-keyring? ( app-crypt/libsecret )
+   gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.7.1:= )
+   google? (
+   >=dev-libs/libgdata-0.17.7:=[crypt,gnome-online-accounts]
+   >=net-libs/gnome-online-accounts-3.17.1:= )
+   gphoto2? ( >=media-libs/libgphoto2-2.5.0:= )
+   gtk? ( >=x11-libs/gtk+-3.0:3 )
+   http? ( >=net-libs/libsoup-2.42:2.4 )
+   ios? (
+   >=app-pda/libimobiledevice-1.2:=
+   >=app-pda/libplist-1:= )
+   mtp? (
+   >=dev-libs/libusb-1.0.21
+   >=media-libs/libmtp-1.1.12 )
+   nfs? ( >=net-fs/libnfs-1.9.8 )
+   policykit? (
+   sys-auth/polkit
+   sys-libs/libcap )
+   samba? ( >=net-fs/samba-4[client] )
+   systemd? ( >=sys-apps/systemd-206:0= )
+   udev? (
+   cdda? ( dev-libs/libcdio-paranoia )
+   >=virtual/libgudev-147:=
+   virtual/libudev:= )
+   udisks? ( >=sys-fs/udisks-1.97:2 )
+   zeroconf? ( >=net-dns/avahi-0.6 )
+"
+DEPEND="${RDEPEND}
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   >=sys-devel/gettext-0.19.4
+   virtual/pkgconfig
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   test? (
+   >=dev-python/twisted-core-12.3.0
+   || (
+   net-analyzer/netcat
+   net-analyzer/netcat6 ) )
+   !udev? ( >=dev-libs/libgcrypt-1.2.2:0 )
+"
+# libgcrypt.m4, provided by libgcrypt, needed for eautoreconf, bug #399043
+# test dependencies needed per https://bugzilla.gnome.org/700162
+
+# Tests with multiple failures, this is being handled upstream at:
+# https://bugzilla.gnome.org/700162
+RESTRICT="test"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.30.2-sysmacros.patch #580234
+)
+
+src_prepare() {
+   if ! use udev; then
+   sed -e 's/gvfsd-burn/ /' \
+   -e 's/burn.mount.in/ /' \
+   -e 's/burn.mount/ /' \
+   -i daemon/Makefile.am || 

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 572cbf600cd85b8e380c26568440c0469c20026c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:21:42 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=572cbf60

app-accessibility/at-spi2-atk: version bump 2.22.0 → 2.24.1

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 app-accessibility/at-spi2-atk/Manifest |  1 +
 .../at-spi2-atk/at-spi2-atk-2.24.1.ebuild  | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/app-accessibility/at-spi2-atk/Manifest 
b/app-accessibility/at-spi2-atk/Manifest
index e01130e447f..8ff12f5b30a 100644
--- a/app-accessibility/at-spi2-atk/Manifest
+++ b/app-accessibility/at-spi2-atk/Manifest
@@ -1 +1,2 @@
 DIST at-spi2-atk-2.22.0.tar.xz 306148 SHA256 
e8bdedbeb873eb229eb08c88e11d07713ec25ae175251648ad1a9da6c21113c1 SHA512 
9b815eecbe01164df8a3341a3b0e1fe57a4f333964a0836f89f54712512a32d69c333c0c099eb194716d081f5460bb6e6d2c852f7218df51549e88e75880f284
 WHIRLPOOL 
830b19dda735aa1cd03296a852d22117e957b69de20f798f4728993594e7b578558f413f38ddfcf81a8a9ad544480722db7d088f2b38827ca4293b141eb18370
+DIST at-spi2-atk-2.24.1.tar.xz 308576 SHA256 
60dc90ac4f74b8ffe96a9363c25208a443b381bacecfefea6de549f20ed6957d SHA512 
5dbc186c7ea4f7f34aa0acaf90f683e549162caa274ba5b5818ae9992b52f1b475923d9818870978e87e3dacdf1018db31810d2d53b39bb4f068bcb64a423f23
 WHIRLPOOL 
f946814957e463b746db598909884b688a0cc3bc47a9b48e1f7a10dc9ef1988784246cd6fdecb896f108557c379c611cd8614fa3aea7a74e03a6ed139d198b98

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.24.1.ebuild 
b/app-accessibility/at-spi2-atk/at-spi2-atk-2.24.1.ebuild
new file mode 100644
index 000..13c9a1bdd7f
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/at-spi2-atk-2.24.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2 multilib-minimal virtualx
+
+DESCRIPTION="Gtk module for bridging AT-SPI to Atk"
+HOMEPAGE="https://wiki.gnome.org/Accessibility;
+
+LICENSE="LGPL-2+"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos"
+IUSE="test"
+
+COMMON_DEPEND="
+   >=app-accessibility/at-spi2-core-2.17.90[${MULTILIB_USEDEP}]
+   >=dev-libs/atk-2.15.4[${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
+   >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
+"
+RDEPEND="${COMMON_DEPEND}
+   !

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

2017-08-15 Thread Gilles Dartiguelongue
commit: acfa164a365174a39df11f01a6d2218a62c2a17c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:01:49 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acfa164a

gnome-base/gnome-core-libs: version bump 3.22.2 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3
RepoMan-Options: --force

 .../gnome-core-libs/gnome-core-libs-3.24.0.ebuild  | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/gnome-base/gnome-core-libs/gnome-core-libs-3.24.0.ebuild 
b/gnome-base/gnome-core-libs/gnome-core-libs-3.24.0.ebuild
new file mode 100644
index 000..af22bc2b50b
--- /dev/null
+++ b/gnome-base/gnome-core-libs/gnome-core-libs-3.24.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Sub-meta package for the core libraries of GNOME 3"
+HOMEPAGE="https://www.gnome.org/;
+LICENSE="metapackage"
+SLOT="3.0"
+IUSE="cups python"
+
+# when unmasking for an arch
+# double check none of the deps are still masked !
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+# Note to developers:
+# This is a wrapper for the core libraries used by GNOME 3
+RDEPEND="
+   >=dev-libs/glib-2.52:2
+   >=x11-libs/gdk-pixbuf-2.36.6:2
+   >=x11-libs/pango-1.40.9
+   >=media-libs/clutter-1.26.2:1.0
+   >=x11-libs/gtk+-3.22.16:3[cups?]
+   >=dev-libs/atk-2.24
+   >=gnome-base/librsvg-2.40.18
+   >=gnome-base/gnome-desktop-${PV}:3
+   >=x11-libs/startup-notification-0.12
+
+   >=gnome-base/gvfs-1.32
+   >=gnome-base/dconf-0.26
+
+   >=media-libs/gstreamer-1.10.5:1.0
+   >=media-libs/gst-plugins-base-1.10.5:1.0
+   >=media-libs/gst-plugins-good-1.10.5:1.0
+
+   python? ( >=dev-python/pygobject-${PV}:3 )
+"
+DEPEND=""
+
+# >=x11-libs/libwnck-3.20.1:3 - not used by core packages anymore
+
+S="${WORKDIR}"



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 08a1b5cfcffbaccd1d70a6f1568137a61b85ea0d
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 20:58:23 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08a1b5cf

x11-libs/libwnck: version bump 3.20.1 → 3.24.1

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 x11-libs/libwnck/Manifest  |  1 +
 x11-libs/libwnck/libwnck-3.24.1.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/x11-libs/libwnck/Manifest b/x11-libs/libwnck/Manifest
index a8f375f1ad4..36a790982d7 100644
--- a/x11-libs/libwnck/Manifest
+++ b/x11-libs/libwnck/Manifest
@@ -1,2 +1,3 @@
 DIST libwnck-2.31.0.tar.xz 630792 SHA256 
83f732d20781fc88b22cdc6aaf2d4f388db6d3d4ff28d1a8fd45be9fb7743a9e SHA512 
54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9
 WHIRLPOOL 
369c0ce1f412a0874d2f3a09e387405632726259427fff013adc4d619f4f9f80b57e376252746bdc7fe54f27749e51127ccc0870a80629cb98afb45dc420f941
 DIST libwnck-3.20.1.tar.xz 693932 SHA256 
1cb03716bc477058dfdf3ebfa4f534de3b13b1aa067fcd064d0b7813291cba72 SHA512 
68e9ec8795a0c54edfb31299f48daed5b8c8aab9462a38fd6336f88c29cb96cff66bf852a6049fc34c28bd6cab2e5e6863a711b0ce726999ca7f8e9b07f0eaf0
 WHIRLPOOL 
2a3370a410203c92845fc65333566a176f6d69459f6aab0b4c31e08902b655284e4ecfde84fc116bc6b6d8db14b593a3faf9077f76b0f823ab283e12387d12f5
+DIST libwnck-3.24.1.tar.xz 821508 SHA256 
afa6dc283582ffec15c3374790bcbcb5fb422bd38356d72deeef35bf7f9a1f04 SHA512 
e8a31ab2dc0c282f1e0994ce6a2ccd18678dc5c140943399262e795052b7f5da2d6a5d388a74f4b10f8fac66ab138983a9caaee4e72c92a17c01ca5c39b731e1
 WHIRLPOOL 
a65658d8b17056609cce6a012ef7767f5fc6817fb68d7daae3d816de5dd911db31c0706c18bc737bc0d6db6fd459bd858c01f16ae2ee518caeba9c329c580a5b

diff --git a/x11-libs/libwnck/libwnck-3.24.1.ebuild 
b/x11-libs/libwnck/libwnck-3.24.1.ebuild
new file mode 100644
index 000..cbe70dd5006
--- /dev/null
+++ b/x11-libs/libwnck/libwnck-3.24.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit flag-o-matic gnome2
+
+DESCRIPTION="A window navigation construction kit"
+HOMEPAGE="https://developer.gnome.org/libwnck/stable/;
+
+LICENSE="LGPL-2+"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+
+IUSE="+introspection startup-notification tools"
+
+RDEPEND="
+   x11-libs/cairo[X]
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   >=dev-libs/glib-2.32:2
+   x11-libs/libX11
+   x11-libs/libXres
+   x11-libs/libXext
+   introspection? ( >=dev-libs/gobject-introspection-0.6.14:= )
+   startup-notification? ( >=x11-libs/startup-notification-0.4 )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.9
+   >=sys-devel/gettext-0.19.4
+   virtual/pkgconfig
+"
+# eautoreconf needs
+#  sys-devel/autoconf-archive
+
+src_configure() {
+   # Don't collide with SLOT=1
+   gnome2_src_configure \
+   --disable-static \
+   $(use_enable introspection) \
+   $(use_enable startup-notification) \
+   $(use_enable tools) \
+   --program-suffix=-${SLOT}
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: ea21ecc524df281794366c0b2c5e8bcdfc85ba8c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:24:15 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea21ecc5

gnome-base/gnome-extra-apps: version bump 3.22.2 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3
RepoMan-Options: --force

 .../gnome-extra-apps-3.24.0.ebuild | 75 ++
 1 file changed, 75 insertions(+)

diff --git a/gnome-base/gnome-extra-apps/gnome-extra-apps-3.24.0.ebuild 
b/gnome-base/gnome-extra-apps/gnome-extra-apps-3.24.0.ebuild
new file mode 100644
index 000..e7fe28b82ab
--- /dev/null
+++ b/gnome-base/gnome-extra-apps/gnome-extra-apps-3.24.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Sub-meta package for the applications of GNOME 3"
+HOMEPAGE="https://www.gnome.org/;
+LICENSE="metapackage"
+SLOT="3.0"
+IUSE="+games +share +shotwell +tracker"
+
+KEYWORDS="~amd64 ~x86"
+
+# Note to developers:
+# This is a wrapper for the extra apps integrated with GNOME 3
+# Keep pkg order within a USE flag as upstream releng versions file
+# TODO: Should we keep these here: gnome-power-manager, gucharmap, sound-juicer
+RDEPEND="
+   >=gnome-base/gnome-core-libs-${PV}
+
+   >=sys-apps/baobab-${PV}
+   >=media-video/cheese-${PV}
+   >=www-client/epiphany-${PV}
+   >=app-arch/file-roller-${PV}
+   >=gnome-extra/gnome-calculator-${PV}
+   >=gnome-extra/gnome-calendar-${PV}
+   >=gnome-extra/gnome-characters-${PV}
+   >=sys-apps/gnome-disk-utility-${PV}
+   >=media-gfx/gnome-font-viewer-${PV}
+   >=gnome-extra/gnome-power-manager-${PV}
+   >=media-gfx/gnome-screenshot-3.22.0
+   >=gnome-extra/gnome-system-monitor-${PV}
+   >=gnome-extra/gnome-weather-${PV}
+   >=gnome-extra/gucharmap-10:2.90
+   >=gnome-extra/sushi-${PV}
+   >=media-sound/sound-juicer-${PV}
+   >=net-misc/vino-3.22.0
+
+   >=gnome-base/dconf-editor-3.22.3
+   >=app-dicts/gnome-dictionary-${PV}
+   >=mail-client/evolution-${PV}
+   >=net-analyzer/gnome-nettool-3.8.1
+   >=gnome-extra/gnome-tweak-tool-${PV}
+   >=gnome-extra/nautilus-sendto-3.8.4
+   >=net-misc/vinagre-3.22.0
+
+   games? (
+   >=games-puzzle/five-or-more-3.22.2
+   >=games-board/four-in-a-row-3.22.1
+   >=games-board/gnome-chess-${PV}
+   >=games-puzzle/gnome-klotski-3.22.1
+   >=games-board/gnome-mahjongg-3.22.0
+   >=games-board/gnome-mines-${PV}
+   >=games-arcade/gnome-nibbles-${PV}
+   >=games-arcade/gnome-robots-3.22.1
+   >=games-puzzle/gnome-sudoku-${PV}
+   >=games-puzzle/gnome-taquin-3.22.0
+   >=games-puzzle/gnome-tetravex-3.22.0
+   >=games-puzzle/hitori-3.22.0
+   >=games-board/iagno-3.22.0
+   >=games-puzzle/lightsoff-$PV
+   >=games-puzzle/quadrapassel-3.22.0
+   >=games-puzzle/swell-foop-${PV}
+   >=games-board/tali-3.22.0
+   )
+   share? ( >=gnome-extra/gnome-user-share-3.18.3 )
+   shotwell? ( >=media-gfx/shotwell-0.26 )
+   tracker? (
+   >=app-misc/tracker-1.12
+   >=gnome-extra/gnome-documents-${PV}
+   >=media-gfx/gnome-photos-${PV}
+   >=media-sound/gnome-music-${PV} )
+"
+DEPEND=""
+S=${WORKDIR}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: b8839ba3ce72f5ab52248cd59ba198b8d397e9a0
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:11:57 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8839ba3

dev-python/pygobject: version bump 3.22.0 → 3.24.1

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/pygobject/pygobject-3.24.1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-python/pygobject/pygobject-3.24.1.ebuild 
b/dev-python/pygobject/pygobject-3.24.1.ebuild
index a6b538b28f5..879666e93fe 100644
--- a/dev-python/pygobject/pygobject-3.24.1.ebuild
+++ b/dev-python/pygobject/pygobject-3.24.1.ebuild
@@ -57,6 +57,11 @@ src_prepare() {
sed -e 's/^.*TEST_NAMES=compat_test_pygtk .*;/echo "Test disabled";/' \
-i tests/Makefile.{am,in} || die
 
+   # FAIL: test_cairo_font_options (test_cairo.TestPango)
+   # AssertionError:  != 
+   sed -e 's/^.*type(font_opts.get_subpixel_order()), int.*/#/' \
+   -i tests/test_cairo.py || die
+
gnome2_src_prepare
python_copy_sources
 }



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

2017-08-15 Thread Gilles Dartiguelongue
commit: c93b5f25e91c4b773cedb8d8d9cb7978e12a6f67
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:19:37 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93b5f25

app-accessibility/at-spi2-core: version bump 2.22.1 → 2.24.1

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 app-accessibility/at-spi2-core/Manifest|  1 +
 .../at-spi2-core/at-spi2-core-2.24.1.ebuild| 60 ++
 2 files changed, 61 insertions(+)

diff --git a/app-accessibility/at-spi2-core/Manifest 
b/app-accessibility/at-spi2-core/Manifest
index bb590ccfbe7..2bf0dc170d8 100644
--- a/app-accessibility/at-spi2-core/Manifest
+++ b/app-accessibility/at-spi2-core/Manifest
@@ -1 +1,2 @@
 DIST at-spi2-core-2.22.1.tar.xz 454048 SHA256 
6f8f39f091bfe2c57870cb8bfbb02edac4fc85cda69665e6967937daf7201c42 SHA512 
2376b57ce744351ed09a13cd02f0c02264c0998860710cfcdac59f0efb78061512986f5d7305a2f6c594d70213722f81795620e8cd2c6587c6d3f1335477171f
 WHIRLPOOL 
a3bd869b286e7fd974242c5846d219c9be3b5fb4322f7bd82f9c039cd032bbfc0917e2e54dc900283eb13a1bba14906eec3f2ef9d9b3caae1aef6bdce24fe3be
+DIST at-spi2-core-2.24.1.tar.xz 452440 SHA256 
1e90d064b937aacfe79a96232ac7e63d28d716e85bd9ff4333f865305a959b5b SHA512 
e7f354a90204f12d4e464a6b4e4cb27141af3715d7c5ec253bdd2ebe65bc7d191ae7b775c45470a1bd1fe2c0accdd4e84feeb5e1eb1a6c05f3e5e734371027be
 WHIRLPOOL 
3a3d47b49ea5be77458b325cc23405153859251052dd1b123d38b5953e3dd5d6896959703ca7941baed8a3d9ca9194183a12459f88fb6d580cee364258303291

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



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

2017-08-15 Thread Gilles Dartiguelongue
commit: c3268b9f6d30763e69eaead8581da5d694cec917
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:25:54 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3268b9f

gnome-base/gnome: version bump 3.22.2 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3
RepoMan-Options: --force

 gnome-base/gnome/gnome-3.24.0.ebuild | 51 
 1 file changed, 51 insertions(+)

diff --git a/gnome-base/gnome/gnome-3.24.0.ebuild 
b/gnome-base/gnome/gnome-3.24.0.ebuild
new file mode 100644
index 000..42d8d74dc63
--- /dev/null
+++ b/gnome-base/gnome/gnome-3.24.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Meta package for GNOME 3, merge this package to install"
+HOMEPAGE="https://www.gnome.org/;
+
+LICENSE="metapackage"
+SLOT="2.0" # Cannot be installed at the same time as gnome-2
+
+# when unmasking for an arch
+# double check none of the deps are still masked !
+KEYWORDS="~amd64 ~x86"
+
+IUSE="accessibility +bluetooth +classic +cdr cups +extras"
+
+S=${WORKDIR}
+
+# TODO: check accessibility completeness
+RDEPEND="
+   >=gnome-base/gnome-core-libs-${PV}[cups?]
+   >=gnome-base/gnome-core-apps-${PV}[cups?,bluetooth?,cdr?]
+
+   >=gnome-base/gdm-${PV}
+
+   >=x11-wm/mutter-${PV}
+   >=gnome-base/gnome-shell-${PV}[bluetooth?]
+
+   >=x11-themes/gnome-backgrounds-${PV}
+   x11-themes/sound-theme-freedesktop
+
+   accessibility? (
+   >=app-accessibility/at-spi2-atk-2.24
+   >=app-accessibility/at-spi2-core-2.24
+   >=app-accessibility/caribou-0.4.21
+   >=app-accessibility/orca-${PV}
+   >=gnome-extra/mousetweaks-3.12.0 )
+   classic? ( >=gnome-extra/gnome-shell-extensions-${PV} )
+   extras? ( >=gnome-base/gnome-extra-apps-${PV} )
+"
+
+DEPEND=""
+
+PDEPEND=">=gnome-base/gvfs-1.30.2[udisks]"
+
+pkg_postinst() {
+   # Remember people where to find our project information
+   elog "Please remember to look at 
https://wiki.gentoo.org/wiki/Project:GNOME;
+   elog "for information about the project and documentation."
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 904d0899de9c1c92235b09574e2d10afa922b7ef
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:34:05 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=904d0899

profiles/package.mask: cleanup Gnome 3.24 mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index c66f941aa4d..86eff16d324 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -478,76 +478,9 @@ app-emulation/wine-any
 
 # Gnome Team  (08 Mar 2017)
 # GNOME 3.24 mask (#611270)
->=x11-themes/adwaita-icon-theme-3.23
->=app-accessibility/at-spi2-core-2.23
->=dev-libs/atk-2.23
->=dev-cpp/atkmm-2.25
->=sys-apps/baobab-3.23
->=media-gfx/eog-3.23
->=www-client/epiphany-3.23
->=app-text/evince-3.23
->=gnome-extra/evolution-data-server-3.23
->=gnome-base/gdm-3.23
->=sci-geosciences/geocode-glib-3.23
->=dev-libs/gjs-1.47
->=dev-libs/glib-2.51
 >=net-libs/phodav-2.2
->=dev-util/gdbus-codegen-2.51
->=dev-cpp/glibmm-2.51
->=x11-themes/gnome-backgrounds-3.23
->=gnome-extra/gnome-boxes-3.23
->=gnome-extra/gnome-calculator-3.23
->=gnome-extra/gnome-calendar-3.23
->=gnome-extra/gnome-clocks-3.23
->=gnome-base/gnome-control-center-3.23
->=gnome-base/gnome-desktop-3.23
->=sys-apps/gnome-disk-utility-3.23
->=gnome-extra/gnome-logs-3.23
->=sci-geosciences/gnome-maps-3.23
->=net-libs/gnome-online-accounts-3.23
->=media-gfx/gnome-photos-3.23
->=gnome-base/gnome-session-3.23
->=gnome-base/gnome-settings-daemon-3.23
->=gnome-base/gnome-shell-3.23
->=gnome-extra/gnome-shell-extensions-3.23
->=gnome-extra/gnome-software-3.23
->=gnome-extra/gnome-system-monitor-3.23
->=x11-terms/gnome-terminal-3.23
->=dev-libs/gobject-introspection-1.51
->=dev-libs/gobject-introspection-common-1.51
->=gnome-base/gsettings-desktop-schemas-3.23
->=app-text/gspell-1.3
 >=net-libs/gtk-vnc-0.7
->=x11-libs/gtksourceview-3.23
->=gnome-base/gvfs-1.31
 >=dev-libs/libgee-0.19
->=gnome-base/libgtop-2.35
->=net-libs/libsoup-2.57
->=x11-wm/mutter-3.23
->=gnome-base/nautilus-3.23
->=app-accessibility/orca-3.23
->=dev-cpp/pangomm-2.41
->=media-video/totem-3.23
->=app-misc/tracker-1.11
->=gnome-extra/nautilus-tracker-tags-1.11
->=dev-lang/vala-0.35
->=dev-libs/vala-common-0.35
->=x11-libs/vte-0.47
->=gnome-base/dconf-editor-3.23
->=dev-util/devhelp-3.23
->=mail-client/evolution-3.23
->=games-board/gnome-mines-3.23
->=media-sound/gnome-music-3.23
->=games-arcade/gnome-nibbles-3.23
->=games-puzzle/hitori-3.23
->=games-puzzle/lightsoff-3.23
->=net-irc/polari-3.23
->=net-misc/rygel-0.33
->=games-puzzle/swell-foop-3.23
->=gnome-extra/gnome-tweak-tool-3.23
->=gnome-extra/evolution-ews-3.23
->=games-board/gnome-chess-3.23
->=games-puzzle/gnome-sudoku-3.23
 
 # Eray Aslan  (01 Mar 2017)
 # Mask experimental software



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 900a5fbd2d374e90422fb1fef70455024822689a
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:07:26 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=900a5fbd

media-libs/clutter-gtk: version bump 1.8.2 → 1.8.4

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 media-libs/clutter-gtk/Manifest |  1 +
 media-libs/clutter-gtk/clutter-gtk-1.8.4.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/media-libs/clutter-gtk/Manifest b/media-libs/clutter-gtk/Manifest
index f88baa5a3cb..148a6791dab 100644
--- a/media-libs/clutter-gtk/Manifest
+++ b/media-libs/clutter-gtk/Manifest
@@ -1 +1,2 @@
 DIST clutter-gtk-1.8.2.tar.xz 326964 SHA256 
da27d486325490ad3f65d2abf9413aeb8b4a8f7b559e4b2f73567a5344a26b94 SHA512 
f895e43c4eb2d49f5e514f4c29f406d587d6bdf15027c0632e5caa4c8a1f8048dfbef5674d7ec663379127460826c1d662b59690c8db2d3e54bedf78e357f765
 WHIRLPOOL 
9c7df5910315af969394c349c3a89d40c76a5a14da9b7650a044fdd16020588fa58d28ca506eafa7192d5593157082aadaf915d3ba542875a178c37859a47268
+DIST clutter-gtk-1.8.4.tar.xz 331508 SHA256 
521493ec038973c77edcb8bc5eac23eed41645117894aaee7300b2487cb42b06 SHA512 
810f879a56cd71f1e9c4678ef704a997ee652d052cfea56b3ed9478f7a813a35dd2fdcded028ce17411ae02da52fa31e0fb8d1f4130c7b9f6d25eeb774b51ada
 WHIRLPOOL 
d02fbe0cb62aef51f06ff92d70eb9602184295cfcb1c9bb7172dbe8a9b7e560a449f2a740145c1ca09eb30a1d796725bba34bd4a2802e94e8bf9c3bbedef47db

diff --git a/media-libs/clutter-gtk/clutter-gtk-1.8.4.ebuild 
b/media-libs/clutter-gtk/clutter-gtk-1.8.4.ebuild
new file mode 100644
index 000..15e8d0ebd03
--- /dev/null
+++ b/media-libs/clutter-gtk/clutter-gtk-1.8.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2
+
+DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+"
+HOMEPAGE="https://wiki.gnome.org/Projects/Clutter;
+LICENSE="LGPL-2.1+"
+
+SLOT="1.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="X debug examples gtk +introspection wayland"
+
+RDEPEND="
+   >=x11-libs/gtk+-3.21.0:3[X=,introspection?,wayland=]
+   >=media-libs/clutter-1.23.7:1.0[X=,gtk=,introspection?,wayland=]
+   media-libs/cogl:1.0=[introspection?]
+   introspection? ( >=dev-libs/gobject-introspection-1.32:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.24
+   >=sys-devel/gettext-0.18
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-maintainer-flags \
+   --enable-deprecated \
+   $(usex debug --enable-debug=yes ' ') \
+   $(use_enable introspection)
+}
+
+src_install() {
+   gnome2_src_install
+
+   if use examples; then
+   insinto /usr/share/doc/${PF}/examples
+   doins examples/{*.c,redhand.png}
+   fi
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 0afc43d9331f4940b5f648533858509c5858f40b
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:09:25 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0afc43d9

net-libs/libsoup: version bump 2.56.1 → 2.58.2

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-libs/libsoup/Manifest  |  1 +
 net-libs/libsoup/libsoup-2.58.2.ebuild | 92 ++
 2 files changed, 93 insertions(+)

diff --git a/net-libs/libsoup/Manifest b/net-libs/libsoup/Manifest
index 01a5b269151..bb6632626c8 100644
--- a/net-libs/libsoup/Manifest
+++ b/net-libs/libsoup/Manifest
@@ -1,2 +1,3 @@
 DIST libsoup-2.56.0.tar.xz 1821412 SHA256 
d8216b71de8247bc6f274ec054c08547b2e04369c1f8add713e9350c8ef81fe5 SHA512 
09207ea41a4f251318f99f748275ea8c1c203d3b55d7a0adaf64721198b5858f6d5bbc46215cdc723b22250c36615f0d1f9cea4e1e3ab9b489e5548a934f3b31
 WHIRLPOOL 
d57f8784471d97d3aad82e02253510ba59d1165f68d0642d5d0a098880f8c7dc949d0d1ccb6407a74752c05b2011fa3ac6bdb73cde8e52e74d22963b30e74376
 DIST libsoup-2.56.1.tar.xz 1806416 SHA256 
c32a46d77b4da433b51d8fd09a57a44b198e03bdc93e5219afcc687c7948eac3 SHA512 
5ac087eeba346c27e884a2053a4f8afdb2fc6e432527f4494024a7edc4eccdf145188a3faa64e3f4bdd98af2fcb98914e494b4ed24f92cffc2ff1485dce7d693
 WHIRLPOOL 
a821342a2e592b12e901761ceb68281f68022c269977b322ea21ed7cda8f524db48ae93400eb8b59b7dd26cdbb5ec1913f9b63701d4303a6f62123cd6d2f0094
+DIST libsoup-2.58.2.tar.xz 1815256 SHA256 
442300ca1b1bf8a3bbf2f788203287ff862542d4fc048f19a92a068a27d17b72 SHA512 
85af6fac87343bdd22312518402144d33916225f60d6fa158efdd84f7ee7ed1f9895989b3558f711c9aedc93cff35a4114ad79d6d2aa19c54cb326f162a4c7de
 WHIRLPOOL 
3b7b880c3f1374d00aef01ccc568c488efd672443da42bf6838d2a46b7cc1d4fe64f39b43205a3932767f28ef36f1552050afb45aa72d331150663d3c458ade6

diff --git a/net-libs/libsoup/libsoup-2.58.2.ebuild 
b/net-libs/libsoup/libsoup-2.58.2.ebuild
new file mode 100644
index 000..05364a4db5b
--- /dev/null
+++ b/net-libs/libsoup/libsoup-2.58.2.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 multilib-minimal python-any-r1 vala
+
+DESCRIPTION="An HTTP library implementation in C"
+HOMEPAGE="https://wiki.gnome.org/Projects/libsoup;
+
+LICENSE="LGPL-2+"
+SLOT="2.4"
+
+IUSE="debug gssapi +introspection samba ssl test vala"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~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}]
+   >=dev-libs/libxml2-2.9.1-r4:2[${MULTILIB_USEDEP}]
+   >=dev-db/sqlite-3.8.2:3[${MULTILIB_USEDEP}]
+   >=net-libs/glib-networking-2.38.2[ssl?,${MULTILIB_USEDEP}]
+   gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+   samba? ( net-fs/samba )
+"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   >=dev-util/intltool-0.35
+   >=dev-util/gtk-doc-am-1.20
+   sys-devel/gettext
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+   test? ( >=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}] )
+   vala? ( $(vala_depend) )
+"
+#  test? ( 
www-servers/apache[ssl,apache2_modules_auth_digest,apache2_modules_alias,apache2_modules_auth_basic,
+#  
apache2_modules_authn_file,apache2_modules_authz_host,apache2_modules_authz_user,apache2_modules_dir,
+#  
apache2_modules_mime,apache2_modules_proxy,apache2_modules_proxy_http,apache2_modules_proxy_connect]
+#  dev-lang/php[apache2,xmlrpc]
+#  net-misc/curl
+#  net-libs/glib-networking[ssl])"
+
+src_prepare() {
+   if ! use test; then
+   # don't waste time building tests (bug #226271)
+   sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am 
Makefile.in \
+   || die "sed failed"
+   fi
+
+   # FIXME: workaround upstream not respecting --without-apache-httpd
+   sed -e '/check: start-httpd/d' \
+   -i tests/Makefile.am tests/Makefile.in || die
+
+   use vala && vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   # FIXME: we need addpredict to workaround bug #324779 until
+   # root cause (bug #249496) is solved
+   addpredict /usr/share/snmp/mibs/.index
+
+   multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+   # Disable apache tests until they are usable on Gentoo, bug #326957
+   ECONF_SOURCE=${S} \
+   gnome2_src_configure \
+   --disable-static \
+   --disable-tls-check \
+   

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 70f8908e942bc16317033c294185361aff679d58
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 20:47:46 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f8908e

dev-libs/libgweather: version bump 3.20.4 → 3.24.1

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-libs/libgweather/Manifest  |  1 +
 dev-libs/libgweather/libgweather-3.24.1.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-libs/libgweather/Manifest b/dev-libs/libgweather/Manifest
index 69630b6e3cf..34e2c7bc1a1 100644
--- a/dev-libs/libgweather/Manifest
+++ b/dev-libs/libgweather/Manifest
@@ -1 +1,2 @@
 DIST libgweather-3.20.4.tar.xz 3342220 SHA256 
7dcdc555c48461d07a198bc44e0e6ed39105d8513b12fa97c4590f5b2d912fc2 SHA512 
65b28a2bf8e9e7d8b02972d1d2f701ac8668b1e91154ba7ee94e9a08bb98d28ce44e88842e2fe78a13ce9f942d79fd2950d8de266dae28bb262c5fc11328ada9
 WHIRLPOOL 
f01170d5e7790c22b1bfba8b6cd0e7b90708a818be2dc12a698e5ab4babb3efb6dfc368d7538b546a893a1b17b11ed04ebb0050c62b368f8f354ad9102b3c6e8
+DIST libgweather-3.24.1.tar.xz 3350680 SHA256 
1227316037b63dac4153031a22abccb3d2ac679a7409e29cd303eec499eb653c SHA512 
564464d7a18a8e0320871ea418b1163163941c950c5acea5ee65a087e44c4d81e019e2e3e4cb6751989f823cbb7c5691713d3dcef72aeaf6ff264e61b6f7b4b4
 WHIRLPOOL 
82ac37983c7c8f683b958d005f35b6eef72f5bffdfeebaca4ae903f41816d8fd3f1da6a162689b4880c05739d7d2a1238ff1277dd7694d857087b4c5a488c71f

diff --git a/dev-libs/libgweather/libgweather-3.24.1.ebuild 
b/dev-libs/libgweather/libgweather-3.24.1.ebuild
new file mode 100644
index 000..b746855aad3
--- /dev/null
+++ b/dev-libs/libgweather/libgweather-3.24.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="Library to access weather information from online services"
+HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather;
+
+LICENSE="GPL-2+"
+SLOT="2/3-6" # subslot = 3-(libgweather-3 soname suffix)
+
+IUSE="glade +introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+
+COMMON_DEPEND="
+   >=x11-libs/gtk+-3.13.5:3[introspection?]
+   >=dev-libs/glib-2.35.1:2
+   >=net-libs/libsoup-2.44:2.4
+   >=dev-libs/libxml2-2.6.0:2
+   sci-geosciences/geocode-glib
+   >=sys-libs/timezone-data-2010k
+
+   glade? ( >=dev-util/glade-3.16:3.10 )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   !

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 3872dc23b390137ff71e0b740f386aae4b6de465
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:24:33 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3872dc23

dev-libs/atk: version bump 2.22.0 → 2.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-libs/atk/Manifest  |  1 +
 dev-libs/atk/atk-2.24.0.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-libs/atk/Manifest b/dev-libs/atk/Manifest
index 8ab6fa674b7..e519f56c9ee 100644
--- a/dev-libs/atk/Manifest
+++ b/dev-libs/atk/Manifest
@@ -1 +1,2 @@
 DIST atk-2.22.0.tar.xz 745572 SHA256 
d349f5ca4974c9c76a4963e5b254720523b0c78672cbc0e1a3475dbd9b3d44b6 SHA512 
af3f6197eb97de869ee706f19564449b02c1444c413e5418323e4bf4c8cf1d98c7c8baa25189f6879d63606d4bc75f33799cb901f4697c087e868bb9a5643cba
 WHIRLPOOL 
aec1b3944101532b6330f66f2094d3d821a30da10e07d3ba1b793b9063ef18ce8790faa3d016927fe2dd8383c4b5cba9ac4d85244f83fbb73bd06077c299e851
+DIST atk-2.24.0.tar.xz 748972 SHA256 
bb2daa9a808c73a7a79d2983f333e0ba74be42fc51e3ba1faf2551a636487a49 SHA512 
3ae0a4d5f28d5619d465135c685161f690732053bcb70a47669c951fbf389b5d2ccc5c7c73d4ee8c5a3b2df14e2f5b082e812a215f10a79b27b412d077f5e962
 WHIRLPOOL 
1db8a9bc87021dbfbde769c54e7f1b5547db00138f67690026f948b0202cfec6a29a5c9d3fa7fc19e53c67f973dd57160d0d664c68d1dc27aad88e5be4cc3fa1

diff --git a/dev-libs/atk/atk-2.24.0.ebuild b/dev-libs/atk/atk-2.24.0.ebuild
new file mode 100644
index 000..08f8c3c3323
--- /dev/null
+++ b/dev-libs/atk/atk-2.24.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2 multilib-minimal
+
+DESCRIPTION="GTK+ & GNOME Accessibility Toolkit"
+HOMEPAGE="https://wiki.gnome.org/Accessibility;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+IUSE="+introspection nls test"
+
+RDEPEND="
+   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
+   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-lang/perl-5
+   dev-util/gtk-doc-am
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+   nls? ( >=sys-devel/gettext-0.19.2 )
+"
+
+src_prepare() {
+   gnome2_src_prepare
+
+   if ! use test; then
+   # don't waste time building tests (bug #226353)
+   sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am 
Makefile.in \
+   || die "sed failed"
+   fi
+
+   # Building out of sources fails, 
https://bugzilla.gnome.org/show_bug.cgi?id=752507
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+#  ECONF_SOURCE=${S} \
+   gnome2_src_configure \
+   $(multilib_native_use_enable introspection)
+
+   # work-around gtk-doc out-of-source brokedness
+#  if multilib_is_native_abi; then
+#  ln -s "${S}"/docs/html docs/html || die
+#  fi
+}
+
+multilib_src_install() {
+   gnome2_src_install
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: ebff5a09b15c8c250d0a6b525ce4b8f0e49134fe
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 22:13:22 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebff5a09

gnome-base/gnome-core-apps: version bump 3.22.2 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3
RepoMan-Options: --force

 .../gnome-core-apps/gnome-core-apps-3.24.0.ebuild  | 55 ++
 1 file changed, 55 insertions(+)

diff --git a/gnome-base/gnome-core-apps/gnome-core-apps-3.24.0.ebuild 
b/gnome-base/gnome-core-apps/gnome-core-apps-3.24.0.ebuild
new file mode 100644
index 000..e51c2332b1c
--- /dev/null
+++ b/gnome-base/gnome-core-apps/gnome-core-apps-3.24.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Sub-meta package for the core applications integrated with GNOME 
3"
+HOMEPAGE="https://www.gnome.org/;
+LICENSE="metapackage"
+SLOT="3.0"
+IUSE="+bluetooth +cdr cups"
+
+# when unmasking for an arch
+# double check none of the deps are still masked !
+KEYWORDS="~amd64 ~ia64 ~x86"
+
+# Note to developers:
+# This is a wrapper for the core apps tightly integrated with GNOME 3
+# gtk-engines:2 is still around because it's needed for gtk2 apps
+RDEPEND="
+   >=gnome-base/gnome-core-libs-${PV}[cups?]
+
+   >=gnome-base/gnome-session-${PV}
+   >=gnome-base/gnome-settings-daemon-${PV}[cups?]
+   >=gnome-base/gnome-control-center-${PV}[cups?]
+
+   >=app-crypt/gcr-3.20.0
+   >=gnome-base/nautilus-${PV}
+   >=gnome-base/gnome-keyring-3.20.0
+   >=gnome-extra/evolution-data-server-${PV}
+
+   >=app-crypt/seahorse-3.20.0
+   >=app-editors/gedit-3.22.1
+   >=app-text/evince-${PV}
+   >=gnome-extra/gnome-contacts-3.22.1
+   >=media-gfx/eog-${PV}
+   >=media-video/totem-${PV}
+   >=x11-terms/gnome-terminal-${PV}
+
+   >=gnome-extra/gnome-user-docs-${PV}
+   >=gnome-extra/yelp-3.22.0
+
+   >=x11-themes/adwaita-icon-theme-${PV}
+   >=x11-themes/gnome-themes-standard-3.22.3
+
+   bluetooth? ( >=net-wireless/gnome-bluetooth-3.20.0 )
+   cdr? ( >=app-cdr/brasero-3.12.1 )
+
+   !gnome-base/gnome-applets
+"
+DEPEND=""
+
+# >=gnome-base/gnome-menus-3.13.3:3  # not used by core gnome anymore, just 
gnome-classic extensions
+# >=net-im/empathy-3.12.12 # not part of gnome releng core or apps suite 
anymore
+
+S="${WORKDIR}"



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

2017-08-15 Thread Gilles Dartiguelongue
commit: e4ac27f0ee90fcbcf8f8113de417b1ad31e037c5
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 21:26:20 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4ac27f0

dev-python/pyatspi: version bump 2.20.3 → 2.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/pyatspi/Manifest  |  1 +
 dev-python/pyatspi/pyatspi-2.24.0.ebuild | 57 
 2 files changed, 58 insertions(+)

diff --git a/dev-python/pyatspi/Manifest b/dev-python/pyatspi/Manifest
index 134bbbaab28..99bc955c119 100644
--- a/dev-python/pyatspi/Manifest
+++ b/dev-python/pyatspi/Manifest
@@ -1 +1,2 @@
 DIST pyatspi-2.20.3.tar.xz 297368 SHA256 
628f19cc5790b02ae6ec8580902683520087fba503c06c71257c572108cb5850 SHA512 
87f9dccb0be1b85ed850abaf28270c2fd5e52a43dcd94e452f650d6aea8a52bb59d9b9e9d4312bd0fe88d549812c1ddbbceb05955687134613ecd6e1b7af4ace
 WHIRLPOOL 
5468c5cc1fc12fad84c10184014167f69b322757eaaa27e4abc25d376be27a6664a53295d66f0909923920316a4dc8c0d018165d5f5b0e382c84dc9e4252714d
+DIST pyatspi-2.24.0.tar.xz 298228 SHA256 
e7ef47a5d387fdc64a01722ef2bcced54c4d6b225fbe34867189e1f88ff0a692 SHA512 
ea0c3e5a5a417c4d494cfe33ccfcca1996f417e51f5ccd3508372a0df636fb186b9940d7832681af9b353aa50a9aabd64c5477fdabbc5016794a502396b3d67a
 WHIRLPOOL 
e39152ebe90a2e5461bbc663910821306a18a524a687cf72985bcb3601ca428ce85aa05cc6e1b9e30992eee64c1c9e434c5a039f8f6b18d7f3d133c51168a33d

diff --git a/dev-python/pyatspi/pyatspi-2.24.0.ebuild 
b/dev-python/pyatspi/pyatspi-2.24.0.ebuild
new file mode 100644
index 000..48ca4d41ff7
--- /dev/null
+++ b/dev-python/pyatspi/pyatspi-2.24.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit gnome2 python-r1
+
+DESCRIPTION="Python binding to at-spi library"
+HOMEPAGE="https://wiki.gnome.org/Accessibility;
+
+# Note: only some of the tests are GPL-licensed, everything else is LGPL
+LICENSE="LGPL-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+IUSE="" # test
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=dev-libs/atk-2.11.2
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   >=dev-python/pygobject-2.90.1:3[${PYTHON_USEDEP}]
+"
+RDEPEND="${COMMON_DEPEND}
+   >=sys-apps/dbus-1
+   >=app-accessibility/at-spi2-core-2.20.2[introspection]
+   !https://bugzilla.gnome.org/show_bug.cgi?id=689957
+   "${FILESDIR}/${PN}-2.6.0-examples-python3.patch"
+)
+
+src_prepare() {
+   gnome2_src_prepare
+   python_copy_sources
+}
+
+src_configure() {
+   python_foreach_impl run_in_build_dir gnome2_src_configure 
--disable-tests
+}
+
+src_compile() {
+   python_foreach_impl run_in_build_dir gnome2_src_compile
+}
+
+src_install() {
+   python_foreach_impl run_in_build_dir gnome2_src_install
+
+   docinto examples
+   dodoc examples/*.py
+}



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/geocode-glib/

2017-08-15 Thread Gilles Dartiguelongue
commit: 53c62a4655a85b798f82ed4266a65f1488bc7086
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 20:51:10 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 22:43:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c62a46

sci-geosciences/geocode-glib: version bump 3.20.1 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 sci-geosciences/geocode-glib/Manifest  |  1 +
 .../geocode-glib/geocode-glib-3.24.0.ebuild| 44 ++
 2 files changed, 45 insertions(+)

diff --git a/sci-geosciences/geocode-glib/Manifest 
b/sci-geosciences/geocode-glib/Manifest
index 013c929fa05..a55d672c512 100644
--- a/sci-geosciences/geocode-glib/Manifest
+++ b/sci-geosciences/geocode-glib/Manifest
@@ -1,2 +1,3 @@
 DIST geocode-glib-3.18.2.tar.xz 369516 SHA256 
95b11ef2697ac5dbb2f397e7117e08e157b2168624c71507656928095012494e SHA512 
3ad874d9ae2c5d172dc5a2be06ae2c78293c33f5845b1d4b4eacec789beb87cc6278cde1ab6bd098a36ce6e2596a312333f0e6cfab00b5977416ad14578ff7eb
 WHIRLPOOL 
eb65633fcd7ad2d36365fe8e869e2f0057905cf58dc297e195635d334e0afcf63406553aa736381efd6ea16389a9c3ee51335cbefdf21f50f2b901c9c4c4f881
 DIST geocode-glib-3.20.1.tar.xz 371200 SHA256 
669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2 SHA512 
0016b04928d3d7e9e3339bf1457d5ba7951af7af53b72a185f9cb3e92e9d1b1deb7ca11f95de1bcb0a3521a5b200ce3c25bb35eaf8bf15b81672846ec01b718f
 WHIRLPOOL 
5aab167244191ac29489fee4f7b68cd7c41a820d4ad127fd6412f8adbf00b7dfba03a1d372ac064054429d9442d5178314597b93ada19c0c1e66bd6f4781736b
+DIST geocode-glib-3.24.0.tar.xz 413536 SHA256 
19c1fef4fd89eb4bfe6decca45ac45a2eca9bb7933be560ce6c172194840c35e SHA512 
0e3910e99d164fdf5afd6befbcb7139a56779834fb1f2a318951c03e5196a31c4dafd7f88c37c7014377f15cd4d4b81e7080a440881e2c50aadaadf621abe3b6
 WHIRLPOOL 
23e19aa31ccbc0196d890e71c76d45c6b2d585a7a635d146a9e50a655a7c108562a641b242637ba5279c7d6bb5b362e8ad3c1f3e3e760b88cdde3604339b7097

diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.24.0.ebuild 
b/sci-geosciences/geocode-glib/geocode-glib-3.24.0.ebuild
new file mode 100644
index 000..d2a1d05bf0f
--- /dev/null
+++ b/sci-geosciences/geocode-glib/geocode-glib-3.24.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
+HOMEPAGE="https://git.gnome.org/browse/geocode-glib;
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+introspection test"
+
+RDEPEND="
+   >=dev-libs/glib-2.44:2
+   >=dev-libs/json-glib-0.99.2[introspection?]
+   gnome-base/gvfs[http]
+   >=net-libs/libsoup-2.42:2.4[introspection?]
+   introspection? ( >=dev-libs/gobject-introspection-0.6.3:= )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.13
+   >=sys-devel/gettext-0.19.6
+   virtual/pkgconfig
+   test? ( sys-apps/dbus )
+"
+# eautoreconf requires:
+#  dev-libs/gobject-introspection-common
+
+# FIXME: need network #424719, recheck
+# need various locales to be present
+RESTRICT="test"
+
+src_configure() {
+   gnome2_src_configure $(use_enable introspection)
+}
+
+src_test() {
+   export GVFS_DISABLE_FUSE=1
+   export GIO_USE_VFS=gvfs
+   ewarn "Tests require network access to http://where.yahooapis.com;
+   dbus-launch emake check || die "tests failed"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2017-08-15 Thread Mike Pagano
commit: c76a8530774522e3b9ce45946b046559443d41e8
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug 15 22:24:55 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug 15 22:25:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76a8530

sys-kernel/gentoo-sources: Remove reference to deblob in metadata.xml

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/gentoo-sources/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/metadata.xml 
b/sys-kernel/gentoo-sources/metadata.xml
index 0a17862888f..93b88c1e713 100644
--- a/sys-kernel/gentoo-sources/metadata.xml
+++ b/sys-kernel/gentoo-sources/metadata.xml
@@ -6,7 +6,6 @@
   Gentoo Kernel Project
 
 
-  Remove binary blobs from kernel sources to provide libre 
license compliance.
   Apply experimental patches; for more information, 
see "https://wiki.gentoo.org/wiki/Project:Kernel/Experimental;.
 
 



[gentoo-commits] proj/openrc:master commit in: sh/

2017-08-15 Thread William Hubbs
commit: 66ed8082d0c865a0b4f4cc436cf9e13351e3d6fe
Author: William Hubbs  gmail  com>
AuthorDate: Tue Aug 15 22:15:14 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 15 22:15:14 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=66ed8082

sh/openrc-run: source service script before ulimit is processed

This is needed to allow the service script author to set a default for
rc_ulimit inside the service script.

 sh/openrc-run.sh.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sh/openrc-run.sh.in b/sh/openrc-run.sh.in
index f5ffe17e..a38d46d6 100644
--- a/sh/openrc-run.sh.in
+++ b/sh/openrc-run.sh.in
@@ -243,6 +243,9 @@ sourcex "@LIBEXECDIR@/sh/s6.sh"
 sourcex "@LIBEXECDIR@/sh/start-stop-daemon.sh"
 sourcex "@LIBEXECDIR@/sh/supervise-daemon.sh"
 
+# Load our script
+sourcex "$RC_SERVICE"
+
 # Set verbose mode
 if yesno "${rc_verbose:-$RC_VERBOSE}"; then
EINFO_VERBOSE=yes
@@ -272,9 +275,6 @@ for _cmd; do
fi
 done
 
-# Load our script
-sourcex "$RC_SERVICE"
-
 eval "printf '%s\n' $required_dirs" | while read _d; do
if [ -n "$_d" ] && [ ! -d "$_d" ]; then
eerror "$RC_SVCNAME: \`$_d' is not a directory"



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

2017-08-15 Thread Jeroen Roovers
commit: e46afd040484a2709803ee5d793f52a24304f943
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 15 21:59:16 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 15 21:59:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46afd04

www-client/vivaldi-snapshot: Old.

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 www-client/vivaldi-snapshot/Manifest   |   2 -
 .../vivaldi-snapshot-1.11.917.35_p1.ebuild | 106 -
 2 files changed, 108 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index aaaebc15807..ec7b4f6a5ff 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,4 +1,2 @@
-DIST vivaldi-snapshot-1.11.917.35_p1-amd64.deb 52655480 SHA256 
af8fe1b44b6fe15633b9923c518d1499a3035e314ced42f51400bb53dcdab438 SHA512 
621a992e77948df16fbe4edb4f70ea6b1c0b2d97d1be3af4e8626fee89406effb53c86b566dca1901b4e8f046303898329a5e15b0bc0f33b9bdaed4642992a47
 WHIRLPOOL 
a385b1277f5c29bd286b57a4271d182c7fd244d15484e5b475c9a54949c29450d1620e349c7d13af3e08762f2256a3e225e1c3f75b1079dd8900b0e3c85a559a
-DIST vivaldi-snapshot-1.11.917.35_p1-i386.deb 53683816 SHA256 
425d711b9891e70f941de4217422a2414e95ad526c66fbb5c790ce4bfd866bb6 SHA512 
8666556f86156f629bbec445fd849842f7c13ddc13377f5665bc3efac847ef899e7af8905e866d57b1032a7121b75383471bd65759d3f4427782e0c5c2aa97b6
 WHIRLPOOL 
68cfe0450cceda6d3362f1b9d9c31e69448e56b06eb96294fbe4ae47997982dc83dd9373f73a7425b20eca2ea49722133290838dca076aaba520ddc3c2fc73a9
 DIST vivaldi-snapshot-1.12.933.3_p1-amd64.deb 52677220 SHA256 
a70badba8220288b08a2b23eb1f27cc4ef051a7a60e4e9747845078ed93296bc SHA512 
a95c384415b1d5e0274e13d38d298db9e13c5d5cef9bd172faa5c9ef89ce15306fbd7c2ee5204645ff33e930ab446bbc4f22adc03cead33900d5ad075afe2512
 WHIRLPOOL 
6f5c05b90b0b2eb5173e543426843aeb907d113db1f59a34743eae7688107e3aca50f2090888a7ad735eade6497e1e50ca389e8ff410edc5a6cc1249bc02e13e
 DIST vivaldi-snapshot-1.12.933.3_p1-i386.deb 53693420 SHA256 
d42c89e915502a1170fc549ac7a65738ad60ba0ef1d343cb1d7592eb8c77dc53 SHA512 
c41fc7eccf57acda87c1d0fee60aa680312e4e55260f85b2e2b29f6b13f09778d09ca3c0533cfd4bbb8dbdb66b9ea3fe3e9582b9b4109c3e773db6574885e290
 WHIRLPOOL 
60ac1f36ebcc7b921e3f97e9a4f17446238b33ebe14ee4a5596470737176e5a3269d28060c2ddfe7bff0e88df8700509363801a4f65a7955541a43a46ee82ef1

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.11.917.35_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.11.917.35_p1.ebuild
deleted file mode 100644
index 7029ed11060..000
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.11.917.35_p1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   am ar bg bn ca cs da de el en-GB en-US es es-419 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 chromium-2 eutils multilib unpacker toolchain-funcs
-
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A new browser for our friends"
-HOMEPAGE="http://vivaldi.com/;
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_;
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-
-RESTRICT="bindist mirror"
-
-S=${WORKDIR}
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   >=dev-libs/openssl-1.0.1:0
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   iconv -c -t UTF-8 usr/share/applications/${PN}.desktop > 
"${T}"/${PN}.desktop || die
-   mv "${T}"/${PN}.desktop usr/share/applications/${PN}.desktop || die
-
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-   chmod 0755 usr/share/doc/${PF} || die
-
-   rm \
-   _gpgbuilder \
-   etc/cron.daily/${PN} \
-   ${VIVALDI_HOME}/libwidevinecdm.so \
-   || die
-   rmdir \
-   etc/cron.daily/ \
-   etc/ \
-   || die
-
-   local c d
-   

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

2017-08-15 Thread Jeroen Roovers
commit: 0bacda1ee2608d66743c73fff1faf7a5aa8a5365
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 15 21:58:46 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 15 21:58:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bacda1e

www-client/vivaldi-snapshot: Version bump.

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 www-client/vivaldi-snapshot/Manifest   |   2 +
 .../vivaldi-snapshot-1.12.933.3_p1.ebuild  | 106 +
 2 files changed, 108 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index d8da7029ec8..aaaebc15807 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,2 +1,4 @@
 DIST vivaldi-snapshot-1.11.917.35_p1-amd64.deb 52655480 SHA256 
af8fe1b44b6fe15633b9923c518d1499a3035e314ced42f51400bb53dcdab438 SHA512 
621a992e77948df16fbe4edb4f70ea6b1c0b2d97d1be3af4e8626fee89406effb53c86b566dca1901b4e8f046303898329a5e15b0bc0f33b9bdaed4642992a47
 WHIRLPOOL 
a385b1277f5c29bd286b57a4271d182c7fd244d15484e5b475c9a54949c29450d1620e349c7d13af3e08762f2256a3e225e1c3f75b1079dd8900b0e3c85a559a
 DIST vivaldi-snapshot-1.11.917.35_p1-i386.deb 53683816 SHA256 
425d711b9891e70f941de4217422a2414e95ad526c66fbb5c790ce4bfd866bb6 SHA512 
8666556f86156f629bbec445fd849842f7c13ddc13377f5665bc3efac847ef899e7af8905e866d57b1032a7121b75383471bd65759d3f4427782e0c5c2aa97b6
 WHIRLPOOL 
68cfe0450cceda6d3362f1b9d9c31e69448e56b06eb96294fbe4ae47997982dc83dd9373f73a7425b20eca2ea49722133290838dca076aaba520ddc3c2fc73a9
+DIST vivaldi-snapshot-1.12.933.3_p1-amd64.deb 52677220 SHA256 
a70badba8220288b08a2b23eb1f27cc4ef051a7a60e4e9747845078ed93296bc SHA512 
a95c384415b1d5e0274e13d38d298db9e13c5d5cef9bd172faa5c9ef89ce15306fbd7c2ee5204645ff33e930ab446bbc4f22adc03cead33900d5ad075afe2512
 WHIRLPOOL 
6f5c05b90b0b2eb5173e543426843aeb907d113db1f59a34743eae7688107e3aca50f2090888a7ad735eade6497e1e50ca389e8ff410edc5a6cc1249bc02e13e
+DIST vivaldi-snapshot-1.12.933.3_p1-i386.deb 53693420 SHA256 
d42c89e915502a1170fc549ac7a65738ad60ba0ef1d343cb1d7592eb8c77dc53 SHA512 
c41fc7eccf57acda87c1d0fee60aa680312e4e55260f85b2e2b29f6b13f09778d09ca3c0533cfd4bbb8dbdb66b9ea3fe3e9582b9b4109c3e773db6574885e290
 WHIRLPOOL 
60ac1f36ebcc7b921e3f97e9a4f17446238b33ebe14ee4a5596470737176e5a3269d28060c2ddfe7bff0e88df8700509363801a4f65a7955541a43a46ee82ef1

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.12.933.3_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.12.933.3_p1.ebuild
new file mode 100644
index 000..7029ed11060
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.12.933.3_p1.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   am ar bg bn ca cs da de el en-GB en-US es es-419 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 chromium-2 eutils multilib unpacker toolchain-funcs
+
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A new browser for our friends"
+HOMEPAGE="http://vivaldi.com/;
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_;
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+RESTRICT="bindist mirror"
+
+S=${WORKDIR}
+
+DEPEND="
+   virtual/libiconv
+"
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   >=dev-libs/openssl-1.0.1:0
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   iconv -c -t UTF-8 usr/share/applications/${PN}.desktop > 
"${T}"/${PN}.desktop || die
+   mv "${T}"/${PN}.desktop usr/share/applications/${PN}.desktop || die
+
+   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
+   chmod 0755 usr/share/doc/${PF} || die
+
+   rm \
+   _gpgbuilder \
+   etc/cron.daily/${PN} \
+   ${VIVALDI_HOME}/libwidevinecdm.so \
+   || die
+   rmdir \
+   etc/cron.daily/ \
+   etc/ \
+   || die
+
+   local c d
+  

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

2017-08-15 Thread Andreas Sturmlechner
commit: 8a4d1a09b94b5c6554d3e643db4587793c411de7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 21:30:43 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 21:30:43 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8a4d1a09

kde-apps/kmouth: Frameworks merged to master

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 kde-apps/kmouth/kmouth-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/kmouth/kmouth-.ebuild 
b/kde-apps/kmouth/kmouth-.ebuild
index c8be4a70ff..af78682367 100644
--- a/kde-apps/kmouth/kmouth-.ebuild
+++ b/kde-apps/kmouth/kmouth-.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-EGIT_BRANCH="frameworks"
 KDE_HANDBOOK="forceoptional"
 inherit kde5
 



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

2017-08-15 Thread Andreas Sturmlechner
commit: adda888043d811549c2f8032889b891f85e7a0cd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 21:31:32 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 21:31:32 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=adda8880

kde-apps/kdeaccessibility-meta: Re-add kde-apps/kmouth

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild 
b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
index 2f6e073adf..1d35426950 100644
--- a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
+++ b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
@@ -12,4 +12,5 @@ IUSE=""
 RDEPEND="
$(add_kdeapps_dep kmag)
$(add_kdeapps_dep kmousetool)
+   $(add_kdeapps_dep kmouth)
 "



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

2017-08-15 Thread Andreas Sturmlechner
commit: b041d6c76472cdb28ded4e850362bc6bf0725b74
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 21:41:45 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 21:45:15 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b041d6c7

kde-apps/ksirk: Frameworks merged to master

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 kde-apps/ksirk/ksirk-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/ksirk/ksirk-.ebuild b/kde-apps/ksirk/ksirk-.ebuild
index 2c76ec7225..7222d0024e 100644
--- a/kde-apps/ksirk/ksirk-.ebuild
+++ b/kde-apps/ksirk/ksirk-.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-EGIT_BRANCH="frameworks"
 KDE_HANDBOOK="forceoptional"
 inherit kde5
 



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

2017-08-15 Thread Andreas Sturmlechner
commit: 9a8df202b6fa6fca7101e3833ea1e3efa7d97cd9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 21:43:46 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 21:45:16 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9a8df202

kde-apps/kdegames-meta: Re-add kde-apps/ksirk

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 kde-apps/kdegames-meta/kdegames-meta-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/kdegames-meta/kdegames-meta-.ebuild 
b/kde-apps/kdegames-meta/kdegames-meta-.ebuild
index f8108a6e90..ee1125c6f4 100644
--- a/kde-apps/kdegames-meta/kdegames-meta-.ebuild
+++ b/kde-apps/kdegames-meta/kdegames-meta-.ebuild
@@ -38,6 +38,7 @@ RDEPEND="
$(add_kdeapps_dep kpat)
$(add_kdeapps_dep kreversi)
$(add_kdeapps_dep kshisen)
+   $(add_kdeapps_dep ksirk)
$(add_kdeapps_dep ksnakeduel)
$(add_kdeapps_dep kspaceduel)
$(add_kdeapps_dep ksquares)



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

2017-08-15 Thread Andreas Sturmlechner
commit: b87234e3b18a44419e90f234e7dc9801ecc1152b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 21:31:44 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 21:45:16 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b87234e3

sets: Re-add kde-apps/{kmouth,ksirk} to kde{accessibility,games}-live

 sets/kdeaccessibility-live | 1 +
 sets/kdegames-live | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sets/kdeaccessibility-live b/sets/kdeaccessibility-live
index 717dc12c68..e808f0c852 100644
--- a/sets/kdeaccessibility-live
+++ b/sets/kdeaccessibility-live
@@ -1,3 +1,4 @@
 ~kde-apps/kdeaccessibility-meta-
 ~kde-apps/kmag-
 ~kde-apps/kmousetool-
+~kde-apps/kmouth-

diff --git a/sets/kdegames-live b/sets/kdegames-live
index 47c6e01224..f001a9d7ad 100644
--- a/sets/kdegames-live
+++ b/sets/kdegames-live
@@ -27,6 +27,7 @@
 ~kde-apps/kpat-
 ~kde-apps/kreversi-
 ~kde-apps/kshisen-
+~kde-apps/ksirk-
 ~kde-apps/ksnakeduel-
 ~kde-apps/kspaceduel-
 ~kde-apps/ksquares-



[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-applications-live/, ...

2017-08-15 Thread Andreas Sturmlechner
commit: 44586ff9bbada9e52bfe8ee4707feecea50dff5c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 21:36:50 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 21:46:02 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=44586ff9

Documentation: Add missing kdeaccessibility-live

 .../.kde-applications-live.base/kdeaccessibility-live| 1 +
 .../.kde-applications-live/kdeaccessibility-live | 4 
 .../package.accept_keywords/.kde-applications-live/kdegames-live | 1 +
 Documentation/package.accept_keywords/kde-applications-live.keywords | 5 +
 Documentation/package.mask/kde-applications-live | 5 +
 .../package.unmask/.kde-applications-live/kdeaccessibility-live  | 1 +
 Documentation/package.unmask/kde-applications-live   | 5 +
 7 files changed, 22 insertions(+)

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-live.base/kdeaccessibility-live
 
b/Documentation/package.accept_keywords/.kde-applications-live.base/kdeaccessibility-live
new file mode 12
index 00..2c9f5c7963
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-applications-live.base/kdeaccessibility-live
@@ -0,0 +1 @@
+../../../sets/kdeaccessibility-live
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-live/kdeaccessibility-live
 
b/Documentation/package.accept_keywords/.kde-applications-live/kdeaccessibility-live
new file mode 100644
index 00..5e4bd347c2
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-applications-live/kdeaccessibility-live
@@ -0,0 +1,4 @@
+~kde-apps/kdeaccessibility-meta- **
+~kde-apps/kmag- **
+~kde-apps/kmousetool- **
+~kde-apps/kmouth- **

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-live/kdegames-live 
b/Documentation/package.accept_keywords/.kde-applications-live/kdegames-live
index dd76478a7d..91cc8dc234 100644
--- a/Documentation/package.accept_keywords/.kde-applications-live/kdegames-live
+++ b/Documentation/package.accept_keywords/.kde-applications-live/kdegames-live
@@ -27,6 +27,7 @@
 ~kde-apps/kpat- **
 ~kde-apps/kreversi- **
 ~kde-apps/kshisen- **
+~kde-apps/ksirk- **
 ~kde-apps/ksnakeduel- **
 ~kde-apps/kspaceduel- **
 ~kde-apps/ksquares- **

diff --git 
a/Documentation/package.accept_keywords/kde-applications-live.keywords 
b/Documentation/package.accept_keywords/kde-applications-live.keywords
index 56122ba7e0..bf8372e828 100644
--- a/Documentation/package.accept_keywords/kde-applications-live.keywords
+++ b/Documentation/package.accept_keywords/kde-applications-live.keywords
@@ -15,6 +15,10 @@
 ~kde-apps/keditbookmarks- **
 ~kde-apps/kfind- **
 ~kde-apps/konqueror- **
+~kde-apps/kdeaccessibility-meta- **
+~kde-apps/kmag- **
+~kde-apps/kmousetool- **
+~kde-apps/kmouth- **
 ~kde-apps/kdeadmin-meta- **
 ~kde-apps/kcron- **
 ~kde-apps/ksystemlog- **
@@ -74,6 +78,7 @@
 ~kde-apps/kpat- **
 ~kde-apps/kreversi- **
 ~kde-apps/kshisen- **
+~kde-apps/ksirk- **
 ~kde-apps/ksnakeduel- **
 ~kde-apps/kspaceduel- **
 ~kde-apps/ksquares- **

diff --git a/Documentation/package.mask/kde-applications-live 
b/Documentation/package.mask/kde-applications-live
index be99b05746..e11e333828 100644
--- a/Documentation/package.mask/kde-applications-live
+++ b/Documentation/package.mask/kde-applications-live
@@ -5,6 +5,10 @@
 ~kde-apps/keditbookmarks-
 ~kde-apps/kfind-
 ~kde-apps/konqueror-
+~kde-apps/kdeaccessibility-meta-
+~kde-apps/kmag-
+~kde-apps/kmousetool-
+~kde-apps/kmouth-
 ~kde-apps/kdeadmin-meta-
 ~kde-apps/kcron-
 ~kde-apps/ksystemlog-
@@ -64,6 +68,7 @@
 ~kde-apps/kpat-
 ~kde-apps/kreversi-
 ~kde-apps/kshisen-
+~kde-apps/ksirk-
 ~kde-apps/ksnakeduel-
 ~kde-apps/kspaceduel-
 ~kde-apps/ksquares-

diff --git 
a/Documentation/package.unmask/.kde-applications-live/kdeaccessibility-live 
b/Documentation/package.unmask/.kde-applications-live/kdeaccessibility-live
new file mode 12
index 00..2c9f5c7963
--- /dev/null
+++ b/Documentation/package.unmask/.kde-applications-live/kdeaccessibility-live
@@ -0,0 +1 @@
+../../../sets/kdeaccessibility-live
\ No newline at end of file

diff --git a/Documentation/package.unmask/kde-applications-live 
b/Documentation/package.unmask/kde-applications-live
index be99b05746..e11e333828 100644
--- a/Documentation/package.unmask/kde-applications-live
+++ b/Documentation/package.unmask/kde-applications-live
@@ -5,6 +5,10 @@
 ~kde-apps/keditbookmarks-
 ~kde-apps/kfind-
 ~kde-apps/konqueror-
+~kde-apps/kdeaccessibility-meta-
+~kde-apps/kmag-
+~kde-apps/kmousetool-
+~kde-apps/kmouth-
 ~kde-apps/kdeadmin-meta-
 ~kde-apps/kcron-
 ~kde-apps/ksystemlog-
@@ -64,6 +68,7 @@
 

[gentoo-commits] repo/gentoo:master commit in: www-apps/kibana-bin/

2017-08-15 Thread Patrice Clement
commit: 626c7045d014d8784ed39ecbcb3b5ddfb3d151ff
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Aug 14 14:33:43 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 21:03:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626c7045

www-apps/kibana-bin: drop inactive maintainer.

Acked-by: Ferenc Erki  gmail.com>
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 www-apps/kibana-bin/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/www-apps/kibana-bin/metadata.xml b/www-apps/kibana-bin/metadata.xml
index 2d9963a03f5..1b662aaef98 100644
--- a/www-apps/kibana-bin/metadata.xml
+++ b/www-apps/kibana-bin/metadata.xml
@@ -5,10 +5,6 @@
 hydrapo...@gmail.com
 Tomáš Mózes
   
-  
-erkifer...@gmail.com
-Ferenc Erki
-  
   
 proxy-ma...@gentoo.org
 Proxy Maintainers



[gentoo-commits] repo/gentoo:master commit in: www-apps/kibana-bin/files/, www-apps/kibana-bin/

2017-08-15 Thread Patrice Clement
commit: 85605ae0ca15fe1c4943711773b88c615ac04bf0
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Aug 14 14:33:17 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 21:03:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85605ae0

www-apps/kibana-bin: drop old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 www-apps/kibana-bin/Manifest|  4 --
 www-apps/kibana-bin/files/kibana.initd-r4   | 19 
 www-apps/kibana-bin/kibana-bin-5.1.2.ebuild | 66 
 www-apps/kibana-bin/kibana-bin-5.2.2.ebuild | 67 -
 4 files changed, 156 deletions(-)

diff --git a/www-apps/kibana-bin/Manifest b/www-apps/kibana-bin/Manifest
index 6c12dc00f87..886f433fdb4 100644
--- a/www-apps/kibana-bin/Manifest
+++ b/www-apps/kibana-bin/Manifest
@@ -1,7 +1,3 @@
-DIST kibana-5.1.2-linux-x86.tar.gz 38506277 SHA256 
e612e0669de687d20ac9896c4cb7a1d7a2bdcb7205af531188013044d659ab90 SHA512 
f8d80f3c8d9643dcbf5abb8035dbde15b48f099a1bba9a9d7b18c9894f4d9cb427bc5b850d4005182cde127f9967b2d2786964518637c5312e00020e0fe8e68e
 WHIRLPOOL 
abf990db0cf0fd50f6f4d4ea1a56703d955b603b0c80b61860800886546fadd1d79fe402cfa31aa414169290f623c1877e1826c3c4dccaad230657360289d785
-DIST kibana-5.1.2-linux-x86_64.tar.gz 39069457 SHA256 
c2e30b9581e7222e8f2536d4b08087dc282a6b31a24ec0e43b905507fe2f2b04 SHA512 
d1bebb18d1b3af49b7306f6192ba46bf2485b2eb9a6ddbe9028b5dec921104fbd22ab44d028a9d8ca16730d8f8f7533abb79561b420620859a32edda07369b01
 WHIRLPOOL 
cecadd767316d1404bf60afd57dcb52da289197d173bffd5e320daa4a31c43624ff3ca4f75569916ec960beb2e5a4626159c5eaa26846060331e2bff879b3439
-DIST kibana-5.2.2-linux-x86.tar.gz 38297223 SHA256 
de0421728aca00e9d4114b45ad5519b843b76eb0795fcc2df4371d6baa1d SHA512 
189def5722ac05e58cec27902a9e72ddb9bcbf65183ce7cd488e3cabbfa934e10765a68cc2efaca190cfc148adb0b85d0edd6d15dc557a1fae6bed3c9f2e
 WHIRLPOOL 
2d1257ae2f641ac2b83decc8aec191fd0351ab6a821cda906ea176d1a37ac2bd7476046cac15e43e3ea18bbd230dc6cf2d62c03c541232a1aa153c1b41c6bbc1
-DIST kibana-5.2.2-linux-x86_64.tar.gz 38853061 SHA256 
9c7c526ce286da7f63aed9fb9f9d752ec182ff16bf374c55e55e5a0536a33563 SHA512 
15e3c7919e24f0161b734e80513747655d7dad9996c26c07f96a4b4fe8408cae310f01b518d0555d8bbfc883604b3c95a0e4323fdb0c675d5e0ea384c2e7755c
 WHIRLPOOL 
d7e3e1cbf037eba0ff76b088eafd377a54d2f0962b416f6f85790bf781c9206026c5bb34dbe80ac8601bce7ed8274eec02667f95458057dcb8fda1de685405ed
 DIST kibana-5.3.3-linux-x86.tar.gz 38182559 SHA256 
d5d2d3f234fc7f9bb1405733655755829ead2f29ee143fb77166252e6cf0bc8f SHA512 
8607e2ca994fdcc5112e81b1603343926e808aede8f77ec95bb68bde535336926c0432a491c572453024f0106405a00b7e8dfaf6f6ba94c10f0ecfc52cae1ad7
 WHIRLPOOL 
fab69d3be37c6d4c6ca40ddc32e4f1a55d8d065dbb88ead5bac8663104eb1877f4e5859abf36c0bf460a16d8d86fa423800b9e037b08b457c2b882b59afd94fd
 DIST kibana-5.3.3-linux-x86_64.tar.gz 38736812 SHA256 
b35b955a705ed1f46acb20eac50931ddeb12e6b15357f65384a1c4cc47dcc6fb SHA512 
e770a7f57cc4968a44e2e94598ba9f63be2cb971f1a943540d39301ee4233d37a8f5b20d5ea2a636ca368cbefada447f6cdb1dcf097b1831029cce904dabae13
 WHIRLPOOL 
5a064cb6fbe14384bf47959569e2bf5ca719bda528b886cbe3e782a5ac583db4c52675e41aac3f10f9d10ad1bc4fc1068967215b504e1732dd23d0ce22511753
 DIST kibana-5.4.3-linux-x86.tar.gz 52848765 SHA256 
7e2ab20c5c85bf7ba606fc372d841fb068067dce23555a1a8787e1020c0bf02d SHA512 
0319c36a5c5e27fd8e4c8ed3d218d4cdb1b9818d5de401f572464a7e5e5ef5a92a93aea5178498442e2d139b226f38dbeebb8eb4a0b09837b0cbaef49ab1b315
 WHIRLPOOL 
90d1a8558b27b9a06dd3fe015272c4cf4fe661829cb87c8b13520c542b6e1080b84e961c1dfa9fb3505ecf781b7bf43e9955138b72a2b29dfc2021289f9fa9ad

diff --git a/www-apps/kibana-bin/files/kibana.initd-r4 
b/www-apps/kibana-bin/files/kibana.initd-r4
deleted file mode 100644
index 97fed68a2c2..000
--- a/www-apps/kibana-bin/files/kibana.initd-r4
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-KIBANA_USER=${KIBANA_USER:-kibana}
-KIBANA_CONFIG=${KIBANA_CONFIG:-/etc/kibana/kibana.yml}
-
-command="/opt/kibana/bin/kibana"
-command_args="--elasticsearch ${ES_INSTANCE} --config ${KIBANA_CONFIG}"
-
-pidfile="/run/kibana.pid"
-command_background="true"
-start_stop_daemon_args="--user=\"${KIBANA_USER}\" --stdout 
/var/log/kibana/kibana.log --stderr /var/log/kibana/kibana.err"
-
-start_pre() {
-   checkpath -d -o "${KIBANA_USER}" -m750 "/var/log/kibana"
-   checkpath -f -o "${KIBANA_USER}" -m644 
"/opt/kibana/optimize/.babelcache.json"
-   checkpath -f -o "${KIBANA_USER}" -m644 "/opt/kibana/data/uuid"
-}

diff --git a/www-apps/kibana-bin/kibana-bin-5.1.2.ebuild 
b/www-apps/kibana-bin/kibana-bin-5.1.2.ebuild
deleted file mode 100644
index b93c41f279e..000
--- a/www-apps/kibana-bin/kibana-bin-5.1.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License 

[gentoo-commits] repo/gentoo:master commit in: www-apps/kibana-bin/

2017-08-15 Thread Patrice Clement
commit: 8e31913bf7f8dc4bd953d07ccfd82f901fca19cb
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Aug 14 14:32:11 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 21:03:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e31913b

www-apps/kibana-bin: version bump to 5.5.1.

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/5365

 www-apps/kibana-bin/Manifest|  2 +
 www-apps/kibana-bin/kibana-bin-5.5.1.ebuild | 67 +
 2 files changed, 69 insertions(+)

diff --git a/www-apps/kibana-bin/Manifest b/www-apps/kibana-bin/Manifest
index 5645092c0aa..6c12dc00f87 100644
--- a/www-apps/kibana-bin/Manifest
+++ b/www-apps/kibana-bin/Manifest
@@ -6,3 +6,5 @@ DIST kibana-5.3.3-linux-x86.tar.gz 38182559 SHA256 
d5d2d3f234fc7f9bb140573365575
 DIST kibana-5.3.3-linux-x86_64.tar.gz 38736812 SHA256 
b35b955a705ed1f46acb20eac50931ddeb12e6b15357f65384a1c4cc47dcc6fb SHA512 
e770a7f57cc4968a44e2e94598ba9f63be2cb971f1a943540d39301ee4233d37a8f5b20d5ea2a636ca368cbefada447f6cdb1dcf097b1831029cce904dabae13
 WHIRLPOOL 
5a064cb6fbe14384bf47959569e2bf5ca719bda528b886cbe3e782a5ac583db4c52675e41aac3f10f9d10ad1bc4fc1068967215b504e1732dd23d0ce22511753
 DIST kibana-5.4.3-linux-x86.tar.gz 52848765 SHA256 
7e2ab20c5c85bf7ba606fc372d841fb068067dce23555a1a8787e1020c0bf02d SHA512 
0319c36a5c5e27fd8e4c8ed3d218d4cdb1b9818d5de401f572464a7e5e5ef5a92a93aea5178498442e2d139b226f38dbeebb8eb4a0b09837b0cbaef49ab1b315
 WHIRLPOOL 
90d1a8558b27b9a06dd3fe015272c4cf4fe661829cb87c8b13520c542b6e1080b84e961c1dfa9fb3505ecf781b7bf43e9955138b72a2b29dfc2021289f9fa9ad
 DIST kibana-5.4.3-linux-x86_64.tar.gz 53410624 SHA256 
776b9de5787f30503303b16126e4774f204c47a21cdc6eba863ae51849521098 SHA512 
94a41ecf7cbdc1c780ae507f3d1651dcce353e074c2ea05f9c6bbf39f4ba13d0f45f307b304da6223a7a9a51241d16fa7d53dd6824f9b9decb41276f0be0172c
 WHIRLPOOL 
f61a523740e1f0174a5e1fd5cd5fec3d0246ed481d31aa70a91254f1537899744b5b8dbb1d848e36d7cd9193517ad2a0302c545be3f033d28081ba98f69170bf
+DIST kibana-5.5.1-linux-x86.tar.gz 50398631 SHA256 
a2378802117f4f5c3f1e7cf6721e66f47457615ce31bfeae2b3203b6ed0d77f1 SHA512 
c083d5c84b5d71b40390d33d01169e0ae9d0d1911191cdbaa67439d8b1ed0b3b7893bd427a7bcfde0026a3bd0a7831a29c100326f711decb9f593b5e1974932d
 WHIRLPOOL 
3933495fad69603fee08edd66431e7ebf4cd9863d31281415bccac70478f3ed93d0fe2d2803e1122b3085b194bb4a265a09be9caa24794ab4f097ef99fdf0e9d
+DIST kibana-5.5.1-linux-x86_64.tar.gz 50952073 SHA256 
a6473f6f404715c52acba0e3fec1a93f7745d52a1cb20906e803b229d2a2e475 SHA512 
088ebffb985ce9f891ac1a2e11e597df51d02ccf72b0f75256896ff99af3afe79c5298096188878645c987d5c9faa65ab9d0337957cae3803afa548e2d9fa30a
 WHIRLPOOL 
efd6e0d83911bddd936b8b8d23fc71f2c4ca9e4352006bf67db10a6e4f3076fad4483dc5486de26685ae0da25e6838def3ebab155abf9c7a7d664eddc4bbebf5

diff --git a/www-apps/kibana-bin/kibana-bin-5.5.1.ebuild 
b/www-apps/kibana-bin/kibana-bin-5.5.1.ebuild
new file mode 100644
index 000..76810f65ac5
--- /dev/null
+++ b/www-apps/kibana-bin/kibana-bin-5.5.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit user
+
+MY_PN="${PN%-bin}"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Analytics and search dashboard for Elasticsearch"
+HOMEPAGE="https://www.elastic.co/products/kibana;
+SRC_URI="amd64? ( 
https://artifacts.elastic.co/downloads/${MY_PN}/${MY_P}-linux-x86_64.tar.gz )
+   x86? ( 
https://artifacts.elastic.co/downloads/${MY_PN}/${MY_P}-linux-x86.tar.gz )"
+
+# source: LICENSE.txt and NOTICE.txt
+LICENSE="Apache-2.0 Artistic-2 BSD BSD-2 CC-BY-3.0 CC-BY-4.0 icu ISC MIT 
MPL-2.0 OFL-1.1 openssl public-domain Unlicense WTFPL-2 ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=""
+RDEPEND="net-libs/nodejs"
+
+pkg_setup() {
+   enewgroup ${MY_PN}
+   enewuser ${MY_PN} -1 -1 /opt/${MY_PN} ${MY_PN}
+}
+
+src_unpack() {
+   if use amd64; then
+   S="${WORKDIR}/${MY_P}-linux-x86_64"
+   elif use x86; then
+   S="${WORKDIR}/${MY_P}-linux-x86"
+   fi
+
+   default
+
+   # remove bundled nodejs
+   rm -r "${S}"/node
+}
+
+src_install() {
+   keepdir /opt/${MY_PN}
+   keepdir /var/log/${MY_PN}
+   keepdir /etc/${MY_PN}
+
+   insinto /etc/${MY_PN}
+   doins config/*
+   rm -rf config || die
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${MY_PN}.logrotate ${MY_PN}
+
+   newconfd "${FILESDIR}"/${MY_PN}.confd ${MY_PN}
+   newinitd "${FILESDIR}"/${MY_PN}.initd-r5 ${MY_PN}
+
+   mv * "${ED%/}"/opt/${MY_PN} || die
+}
+
+pkg_postinst() {
+   elog "This version of Kibana is compatible with Elasticsearch 5.5"
+   elog
+   elog "Be sure to point ES_INSTANCE to your Elasticsearch instance"
+   elog "in /etc/conf.d/${MY_PN}."
+   elog
+   elog "Elasticsearch can run local or remote."
+}



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

2017-08-15 Thread Patrice Clement
commit: bd36ce4c400a0e6ceb0106e9481cf8b18a24398d
Author: Nelo-T. Wallus  wallus  de>
AuthorDate: Mon Aug 14 18:23:47 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug 15 20:54:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd36ce4c

dev-python/dogpile-cache: version bump to 0.7.4.

This commit:
* bumps EAPI to version 6.
* enables python version 3.6.

Tests now work with Python 2.7.

Package-Manager: Portage-2.3.7, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/5420

 dev-python/dogpile-cache/Manifest  |  1 +
 .../dogpile-cache/dogpile-cache-0.6.4.ebuild   | 30 ++
 dev-python/dogpile-cache/metadata.xml  |  8 +++---
 3 files changed, 35 insertions(+), 4 deletions(-)

diff --git a/dev-python/dogpile-cache/Manifest 
b/dev-python/dogpile-cache/Manifest
index 1a702001453..b14496325c1 100644
--- a/dev-python/dogpile-cache/Manifest
+++ b/dev-python/dogpile-cache/Manifest
@@ -1,2 +1,3 @@
 DIST dogpile.cache-0.6.1.tar.gz 324046 SHA256 
69b52dc56bb52d974e9e9fb2764e1311abcd1fd625de07b4e5c05550ac9b40c0 SHA512 
c4743a88688d8f596469f2b3adf0cd862dd32891ae8c50d0c0421a984dfec872cbbecf936f704cf4351ae26b3ab4a26ae3b416f7c7f2ce3c41f8da2c9223178b
 WHIRLPOOL 
3e9d4f8475efd34786f8722a9073cbb434bef8a8f5ada22e0309b143fda2a3909af91d69fb2092f6443a1e4ede9650529afbae2514c1374739582eecf05e1ffc
 DIST dogpile.cache-0.6.2.tar.gz 329762 SHA256 
73793471af07af6dc5b3ee015abfaca4220caaa34c615537f5ab007ed150726d SHA512 
5882e0a355db0bec9c1a0836034481d39008051ff42f48c85679ac70a42c6366d1bcbd01ecd3ca868d7ad725197e626e52b004d62269827e2605a4ecd491ce99
 WHIRLPOOL 
c88f0c503b157c65aae4881b7339c7af7f5b5b045d812220e59736fc78737ae7004bbc0595b5cfed590e5b7d76331b156fa0f28805981bee49ff666a3172ee78
+DIST dogpile.cache-0.6.4.tar.gz 315533 SHA256 
a73aa3049cd88d7ec57a1c2e8946abdf4f14188d429c1023943fcc55c4568da1 SHA512 
0e86ed6aacbfbbbefdc3622ac956679c4986c77989daa3c3e845d4b8dbbf7945b4d0764789f03540b2ff59712e2ee86c8283cc3ee8d9e950f9ef1772db7ea137
 WHIRLPOOL 
ede8bff7a2d742a75b6d7aa40d42d17366379009d5cc9ac6313fe0523f906646e381537f7079564db14126db5314aede7b7d7c91818c707aee107dcefa47ea73

diff --git a/dev-python/dogpile-cache/dogpile-cache-0.6.4.ebuild 
b/dev-python/dogpile-cache/dogpile-cache-0.6.4.ebuild
new file mode 100644
index 000..f42dbc5de8e
--- /dev/null
+++ b/dev-python/dogpile-cache/dogpile-cache-0.6.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A locking API for expiring values while a single thread generates 
a new value."
+HOMEPAGE="https://bitbucket.org/zzzeek/dogpile.cache;
+SRC_URI="mirror://pypi/${PN:0:1}/dogpile.cache/dogpile.cache-${PV}.tar.gz"
+S="${WORKDIR}/dogpile.cache-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-cov[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}] )"
+
+# This time half the doc files are missing; Do you want them? toss a coin
+
+python_test() {
+   "${EPYTHON}" ./setup.py test || die "test failed under ${EPYTHON}"
+}

diff --git a/dev-python/dogpile-cache/metadata.xml 
b/dev-python/dogpile-cache/metadata.xml
index f5fa387f97b..823622b3f9e 100644
--- a/dev-python/dogpile-cache/metadata.xml
+++ b/dev-python/dogpile-cache/metadata.xml
@@ -10,10 +10,10 @@
Openstack


-A caching API built around the concept of a "dogpile lock", which allows
-   continued access to an expiring data value while
-   a single thread generates a new value.
-  
+   A caching API built around the concept of a "dogpile lock", 
which allows
+   continued access to an expiring data value while
+   a single thread generates a new value.
+   

dogpile.cache
zzzeek/dogpile.cache



[gentoo-commits] repo/gentoo:master commit in: dev-python/spyder/, dev-python/spyder/files/

2017-08-15 Thread Andreas Sturmlechner
commit: 8a4f7179e458a48c7167f3de6b0d4532a640b68b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 18:17:14 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 20:09:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4f7179

dev-python/spyder: Drop old

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/spyder/Manifest   |   1 -
 dev-python/spyder/files/spyder-2.3.9-build.patch | 154 ---
 dev-python/spyder/metadata.xml   |  12 --
 dev-python/spyder/spyder-2.3.9.ebuild|  51 
 4 files changed, 218 deletions(-)

diff --git a/dev-python/spyder/Manifest b/dev-python/spyder/Manifest
index ad028717f13..04c54fc6e8f 100644
--- a/dev-python/spyder/Manifest
+++ b/dev-python/spyder/Manifest
@@ -1,2 +1 @@
-DIST spyder-2.3.9.zip 3043753 SHA256 
9b69df9abc7805fead522a8a1fe5b680bd0d07922564dde51c040e9f3fcb7349 SHA512 
8808e0680779ffd0d3fad628bb9675babbede4ff92673786a8f4258ed5a0903a314c8db217e3f7aea0232282548c622df44541e14daa57b167732ff787a96166
 WHIRLPOOL 
8f8aa136216fe42d3d454211a9f8cf1f69dabce535f8a4fb5841fff3919141f957d90543e21c6809df2d0629e5011a66b5c1bdb6e1fe7fadb95a3081ef3a604e
 DIST spyder-3.0.2.tar.gz 3207709 SHA256 
c308cae5d963a7332548db2dd91ebf105263eb493ce208221a59ad77592399c1 SHA512 
7f3723bd98876aa4769877327a93aa02510689708012afc72148c67acd91ab134501ae57471d9cf0e17c9e3892a541b7730a2392ace3c6525443058d0ed01612
 WHIRLPOOL 
5f1f278fa3c6a98b8d7050bb32e9186cd7053e21d9050bf92b29088154ea3494995bf9953e04d63db4c71ccc37d3a2cdd7e38222b1f82decc2b763144cdf3642

diff --git a/dev-python/spyder/files/spyder-2.3.9-build.patch 
b/dev-python/spyder/files/spyder-2.3.9-build.patch
deleted file mode 100644
index 2a4646ab0c0..000
--- a/dev-python/spyder/files/spyder-2.3.9-build.patch
+++ /dev/null
@@ -1,154 +0,0 @@
 a/setup.py
-+++ b/setup.py
-@@ -21,8 +21,6 @@
- import shutil
- 
- from distutils.core import setup
--from distutils.command.build import build
--from distutils.command.install_data import install_data
- 
- # Check for Python 3
- PY3 = sys.version_info[0] == 3
-@@ -66,12 +64,7 @@
- def get_data_files():
- """Return data_files in a platform dependent manner"""
- if sys.platform.startswith('linux'):
--if PY3:
--data_files = [('share/applications', ['scripts/spyder3.desktop']),
--  ('share/pixmaps', ['img_src/spyder3.png'])]
--else:
--data_files = [('share/applications', ['scripts/spyder.desktop']),
--  ('share/pixmaps', ['img_src/spyder.png'])]
-+data_files = [('share/pixmaps', ['img_src/spyder.png'])]
- elif os.name == 'nt':
- data_files = [('scripts', ['img_src/spyder.ico',
-'img_src/spyder_light.ico'])]
-@@ -80,97 +73,6 @@
- return data_files
- 
- 
--class MyInstallData(install_data):
--def run(self):
--install_data.run(self)
--if sys.platform.startswith('linux'):
--try:
--subprocess.call(['update-desktop-database'])
--except:
--print("ERROR: unable to update desktop database",
--  file=sys.stderr)
--CMDCLASS = {'install_data': MyInstallData}
--
--
--# Sphinx build (documentation)
--def get_html_help_exe():
--"""Return HTML Help Workshop executable path (Windows only)"""
--if os.name == 'nt':
--hhc_base = r'C:\Program Files%s\HTML Help Workshop\hhc.exe'
--for hhc_exe in (hhc_base % '', hhc_base % ' (x86)'):
--if osp.isfile(hhc_exe):
--return hhc_exe
--else:
--return
--
--try:
--from sphinx import setup_command
--
--class MyBuild(build):
--user_options = [('no-doc', None, "Don't build Spyder documentation")] 
\
--   + build.user_options
--def __init__(self, *args, **kwargs):
--build.__init__(self, *args, **kwargs)
--self.no_doc = False
--def with_doc(self):
--setup_dir = os.path.dirname(os.path.abspath(__file__))
--is_doc_dir = os.path.isdir(os.path.join(setup_dir, 'doc'))
--install_obj = self.distribution.get_command_obj('install')
--return (is_doc_dir and not self.no_doc and not install_obj.no_doc)
--sub_commands = build.sub_commands + [('build_doc', with_doc)]
--CMDCLASS['build'] = MyBuild
--
--
--class MyInstall(install):
--user_options = [('no-doc', None, "Don't build Spyder documentation")] 
\
--   + install.user_options
--def __init__(self, *args, **kwargs):
--install.__init__(self, *args, **kwargs)
--self.no_doc = False
--CMDCLASS['install'] = MyInstall
--
--
--class MyBuildDoc(setup_command.BuildDoc):
--def run(self):
--build = self.get_finalized_command('build')
--

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

2017-08-15 Thread Andreas Sturmlechner
commit: 69a2e1d4000181f5674404c50d0ff85c7acde526
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 18:21:34 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 20:09:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69a2e1d4

dev-python/spyder: Drop old

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/spyder/spyder-3.0.2-r1.ebuild | 62 
 1 file changed, 62 deletions(-)

diff --git a/dev-python/spyder/spyder-3.0.2-r1.ebuild 
b/dev-python/spyder/spyder-3.0.2-r1.ebuild
deleted file mode 100644
index 827e16b8c06..000
--- a/dev-python/spyder/spyder-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit eutils distutils-r1
-
-DESCRIPTION="Python IDE with matlab-like features"
-HOMEPAGE="https://github.com/spyder-ide/spyder/ 
https://pypi.python.org/pypi/spyder/ http://pythonhosted.org/spyder/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc hdf5"
-
-RDEPEND="
-   || ( dev-python/PyQt5[${PYTHON_USEDEP},svg,webkit]
-   dev-python/PyQt4[${PYTHON_USEDEP},svg,webkit]
-   dev-python/pyside[${PYTHON_USEDEP},svg,webkit] )
-   dev-python/QtPy[${PYTHON_USEDEP},svg,webkit]
-   dev-python/qtconsole[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/rope[${PYTHON_USEDEP}]' python2_7)
-   $(python_gen_cond_dep 'dev-python/rope_py3k[${PYTHON_USEDEP}]' 
python3_4 python3_5)
-   dev-python/jedi[${PYTHON_USEDEP}]
-   dev-python/pyflakes[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-python/pep8[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/nbconvert[${PYTHON_USEDEP}]
-   dev-python/qtawesome[${PYTHON_USEDEP}]
-   dev-python/pickleshare[${PYTHON_USEDEP}]
-   dev-python/pyzmq[${PYTHON_USEDEP}]
-   dev-python/chardet[${PYTHON_USEDEP}]
-   hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )"
-DEPEND="${RDEPEND}
-   app-arch/unzip"
-
-# Courtesy of Arfrever
-PATCHES=( "${FILESDIR}"/${P}-build.patch )
-
-python_compile_all() {
-   if use doc; then
-   sphinx-build doc doc/html || die "Generation of documentation 
failed"
-   fi
-}
-
-python_install() {
-   distutils-r1_python_install
-   python_newscript scripts/${PN} ${PN}${EPYTHON:6:1}
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   distutils-r1_python_install_all
-   doicon spyder/images/spyder.svg
-   make_desktop_entry spyder Spyder spyder "Development;IDE"
-}



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

2017-08-15 Thread Andreas Sturmlechner
commit: 23192fa950497901243e77e0621baf62916f6b2f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 18:20:21 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 20:09:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23192fa9

dev-python/spyder: Drop dev-python/{PyQt4,pyside} options

Gentoo-bug: 620822, 610100
Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/spyder/spyder-3.0.2-r2.ebuild | 60 
 1 file changed, 60 insertions(+)

diff --git a/dev-python/spyder/spyder-3.0.2-r2.ebuild 
b/dev-python/spyder/spyder-3.0.2-r2.ebuild
new file mode 100644
index 000..bc0c9dcd883
--- /dev/null
+++ b/dev-python/spyder/spyder-3.0.2-r2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Python IDE with matlab-like features"
+HOMEPAGE="https://github.com/spyder-ide/spyder/ 
https://pypi.python.org/pypi/spyder/ http://pythonhosted.org/spyder/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc hdf5"
+
+RDEPEND="
+   dev-python/PyQt5[${PYTHON_USEDEP},svg,webkit]
+   dev-python/QtPy[${PYTHON_USEDEP},svg,webkit]
+   dev-python/qtconsole[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/rope[${PYTHON_USEDEP}]' python2_7)
+   $(python_gen_cond_dep 'dev-python/rope_py3k[${PYTHON_USEDEP}]' 
python3_4 python3_5)
+   dev-python/jedi[${PYTHON_USEDEP}]
+   dev-python/pyflakes[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/pep8[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/nbconvert[${PYTHON_USEDEP}]
+   dev-python/qtawesome[${PYTHON_USEDEP}]
+   dev-python/pickleshare[${PYTHON_USEDEP}]
+   dev-python/pyzmq[${PYTHON_USEDEP}]
+   dev-python/chardet[${PYTHON_USEDEP}]
+   hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )"
+DEPEND="${RDEPEND}
+   app-arch/unzip"
+
+# Courtesy of Arfrever
+PATCHES=( "${FILESDIR}"/${P}-build.patch )
+
+python_compile_all() {
+   if use doc; then
+   sphinx-build doc doc/html || die "Generation of documentation 
failed"
+   fi
+}
+
+python_install() {
+   distutils-r1_python_install
+   python_newscript scripts/${PN} ${PN}${EPYTHON:6:1}
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   distutils-r1_python_install_all
+   doicon spyder/images/spyder.svg
+   make_desktop_entry spyder Spyder spyder "Development;IDE"
+}



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

2017-08-15 Thread Andreas Sturmlechner
commit: dca62d0543ef6e77e65e308a9aa9a24f13aa8e7d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 18:22:29 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 20:09:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca62d05

dev-python/spyder: Fix metadata.xml

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/spyder/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/spyder/metadata.xml b/dev-python/spyder/metadata.xml
index a60f03bb092..00c53afbbf3 100644
--- a/dev-python/spyder/metadata.xml
+++ b/dev-python/spyder/metadata.xml
@@ -10,7 +10,7 @@
 Python
   
   
-  Spyder development environment and its PyQt4-based IDE tools:
+  Spyder development environment and its PyQt5-based IDE tools:
   interactive Python shell, Python code editor, workspace
   (dict/list/string/array editor), doc viewer, history log,
   environment variables editor, ...



[gentoo-commits] repo/gentoo:master commit in: media-sound/teamspeak-server-bin/

2017-08-15 Thread Andreas Sturmlechner
commit: 8576539a17ab8659e4297cabee013a4803abedc4
Author: Conrad Kostecki  conrad-kostecki  de>
AuthorDate: Mon Aug  7 14:12:32 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 19:59:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8576539a

media-sound/teamspeak-server-bin: 3.0.13.8 version bump

Gentoo-bug: 624508
Closes: https://github.com/gentoo/gentoo/pull/5316

 media-sound/teamspeak-server-bin/Manifest  |  2 +
 .../teamspeak-server-bin-3.0.13.8.ebuild   | 87 ++
 2 files changed, 89 insertions(+)

diff --git a/media-sound/teamspeak-server-bin/Manifest 
b/media-sound/teamspeak-server-bin/Manifest
index 201285f8e79..4e4070af5f5 100644
--- a/media-sound/teamspeak-server-bin/Manifest
+++ b/media-sound/teamspeak-server-bin/Manifest
@@ -1,2 +1,4 @@
 DIST teamspeak3-server_linux_amd64-3.0.13.6.tar.bz2 6492488 SHA256 
19ccd8db5427758d972a864b70d4a1263ebb9628fcc42c3de75ba87de105d179 SHA512 
95271e5a44c7a14b8fbe134b855973c1af53ac76e6ba01089116b1f63c03bae25f5abfd176f9e26207aa4da8501d646298128078ab5b475458a7ccaba2a48e9c
 WHIRLPOOL 
348356570a45d00d4e98ebfa01c8acc3ea7f3bfcf5b74a4b45715d836b0feef0eefff50534fca2f034505814187fd8b3037b22452aff159e940ed184e871
+DIST teamspeak3-server_linux_amd64-3.0.13.8.tar.bz2 6916065 SHA256 
460c771bf58c9a49b4be2c677652f21896b98a021d7fff286e59679b3f987a59 SHA512 
d8985f5850602660a6c037c1768a97c79b5842640d618ad00d242035a12820b52ba959545f3e668eb3d6079b1a228ff648c569e7d1fc64be6743ee77995ab0be
 WHIRLPOOL 
a9863eb89200b7de89775112ccf8d47f5dad08b6c06f39cbac1d09810c45dbeebd08265982e9e2b0ceea6bc9eb616b86e6cc632533a41591e391b7338c2672a2
 DIST teamspeak3-server_linux_x86-3.0.13.6.tar.bz2 6367104 SHA256 
2f70b3e70a3d9bf86106fab67a938922c8d27fec24e66e229913f78a0791b967 SHA512 
a35e0fffe320206f2ca19153bd46a910bd1690541c83ec3c784fe1f4aaf8dbe430556990f6ebe0efbe71e52d3887b725da4e659db9d1e3c96fd6fd46e6dcd40d
 WHIRLPOOL 
16d35b684f2f3af540464d80158778c62e19bd3c6ae29c791cfec4e509b5d38118b6a34ef113d0f73999adbd2d0cc35c043475866c122d243aa950fb59b99bd7
+DIST teamspeak3-server_linux_x86-3.0.13.8.tar.bz2 6772664 SHA256 
c1be39df7ee136c87e0ea1eff4e3aa84074e2d141c66d23f9a66eb5afa2b1876 SHA512 
7ef5d5d0fa2a1244011c2a68662481e4859aa1660e967b203a508497a4fd3c54db44a9f33116ed4932745942df4b5e4c646658346f288ce6191e3e5629d9638f
 WHIRLPOOL 
6246446439b676f69e56168df445c6f7b6956212e0330e4b541a84c1a2e3466273f60b26298bf7c41b0f8157d1b70c165a2e5a9feb96b3d9651463073adbca46

diff --git 
a/media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.13.8.ebuild 
b/media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.13.8.ebuild
new file mode 100644
index 000..60875a3cb83
--- /dev/null
+++ b/media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.13.8.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit multilib systemd user
+
+DESCRIPTION="Crystal Clear Cross-Platform Voice Communication Server"
+HOMEPAGE="https://www.teamspeak.com/;
+SRC_URI="
+   amd64? ( 
http://ftp.4players.de/pub/hosted/ts3/releases/${PV}/teamspeak3-server_linux_amd64-${PV}.tar.bz2
 )
+   x86? ( 
http://ftp.4players.de/pub/hosted/ts3/releases/${PV}/teamspeak3-server_linux_x86-${PV}.tar.bz2
 )"
+
+SLOT="0"
+LICENSE="teamspeak3 GPL-2"
+IUSE="doc tsdns"
+KEYWORDS="~amd64 ~x86"
+
+RESTRICT="installsources fetch mirror strip"
+
+S="${WORKDIR}/teamspeak3-server_linux_${ARCH}"
+
+QA_PREBUILT="opt/*"
+
+pkg_nofetch() {
+   elog "Please download ${A}"
+   elog "from ${HOMEPAGE}downloads and place this"
+   elog "file in ${DISTDIR}"
+}
+
+pkg_setup() {
+   enewuser teamspeak3
+}
+
+src_install() {
+   # Install wrapper
+   dosbin "${FILESDIR}"/ts3server
+
+   # Install TeamSpeak 3 server into /opt/teamspeak3-server.
+   local opt_dir="/opt/teamspeak3-server"
+   into ${opt_dir}
+   insinto ${opt_dir}
+   exeinto ${opt_dir}
+   newsbin ts3server ts3server-bin
+   doexe *.sh
+   doins *.so
+   doins -r sql
+
+   # Install documentation and tsdns.
+   dodoc -r CHANGELOG doc/*.txt
+   use doc && dodoc -r serverquerydocs doc/serverquery && \
+   docompress -x /usr/share/doc/${PF}/serverquerydocs && \
+   docompress -x /usr/share/doc/${PF}/serverquery && \
+   dosym ../../../usr/share/doc/${PF}/serverquery 
${opt_dir}/doc/serverquery && \
+   dosym ../../usr/share/doc/${PF}/serverquerydocs 
${opt_dir}/serverquerydocs
+
+   if use tsdns; then
+   newsbin tsdns/tsdnsserver tsdnsserver
+   newdoc tsdns/README README.tsdns
+   newdoc tsdns/USAGE USAGE.tsdns
+   dodoc tsdns/tsdns_settings.ini.sample
+   fi
+
+   # Install the runtime FS layout.
+   insinto /etc/teamspeak3-server
+   doins "${FILESDIR}"/server.conf "${FILESDIR}"/ts3db_mariadb.ini
+   keepdir 

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

2017-08-15 Thread Sebastian Pipping
commit: bb9e6d3811382c9432778e97f02f0a47572bf4dc
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Tue Aug 15 18:49:02 2017 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Tue Aug 15 18:51:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9e6d38

x11-misc/safeeyes: Optional PortAudio (bug #627896)

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 x11-misc/safeeyes/safeeyes-1.2.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild 
b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild
index 6305f53b5b4..98d9b9cc112 100644
--- a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild
+++ b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="portaudio"
 
 CDEPEND="${PYTHON_DEPS}"
 DEPEND="${CDEPEND}
@@ -24,7 +24,7 @@ RDEPEND="${CDEPEND}
dev-python/Babel[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pyaudio[${PYTHON_USEDEP}]
+   portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] )
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/python-xlib[${PYTHON_USEDEP}]
x11-apps/xprop



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

2017-08-15 Thread Anthony G. Basile
commit: 54113cf0eb1f1914d203f333ce156d94eb277a67
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Aug 15 18:12:58 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Aug 15 18:13:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54113cf0

net-misc/curl: version bump to 7.55.1

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-misc/curl/Manifest   |   1 +
 net-misc/curl/curl-7.55.1.ebuild | 242 +++
 2 files changed, 243 insertions(+)

diff --git a/net-misc/curl/Manifest b/net-misc/curl/Manifest
index b8aa81b5828..6b70f319c13 100644
--- a/net-misc/curl/Manifest
+++ b/net-misc/curl/Manifest
@@ -3,3 +3,4 @@ DIST curl-7.53.1.tar.bz2 2609559 SHA256 
1c7207c06d75e9136a944a2e0528337ce76f15b9
 DIST curl-7.54.0.tar.bz2 2602286 SHA256 
f50ebaf43c507fa7cc32be4b8108fa8bbd0f5022e90794388f3c7694a302ff06 SHA512 
2ed8d32a6803ecddcb587495107d9ebce724d34dae5cad1f8be241e93340e913bb8ce9b69259cb84b3d53c2e672e142c3aad471c4a251bd1d42fc06eb9d8f650
 WHIRLPOOL 
37dc3e01e0466cdfb7ed061bd791b816112ca9af6ed88dfb89e47e814111e5968d980d2a8e6542d1a87882d540d04bac9d4f4ed6f4f7c5861e3f05ee623752e7
 DIST curl-7.54.1.tar.bz2 2612443 SHA256 
fdfc4df2d001ee0c44ec071186e770046249263c491fcae48df0e1a3ca8f25a0 SHA512 
eb9639677f0ca1521ca631c520ab83ad071c52b31690e5e7f31546f6a44b2f11d1bb62282056cffb570eb290bf1e7830e87cb536295ac6a54a904663e795f2da
 WHIRLPOOL 
199b4ec87451303ed06a6864ea398f1c7f5b4f2653935aa203f1b5c0435904e70da7e899d6c60846ea275445b96d563d538dfbfed0c438206f3c5cb742cda069
 DIST curl-7.55.0.tar.bz2 2782908 SHA256 
af1d69ec6f15fe70a2cabaa98309732bf035ef2a735e4e1a3e08754d2780e5b1 SHA512 
4975864621219e937585aaf5a9a54bba112b58bbf5a8acd92e1e972ea747a15a5564143548c5d8930b8c0d0e9d27d28225d0c81e52a1ba71e4c6f9e3859c978b
 WHIRLPOOL 
a40968bb46f5325fa92c190c4e983bb5b5383e0bb2103d57c2750f9825719b77bd1d40e25095aa571b21ad4333888d4146130712f7ed260cbb269a5d1023a5d4
+DIST curl-7.55.1.tar.bz2 2786830 SHA256 
e5b1a92ed3b0c11f149886458fa063419500819f1610c020d62f25b8e4b16cfb SHA512 
bfeb39e94b8378519b2efba0a476636b80dbee3434104b98464ee81ce3871eb134e065f52abe8bedb69681b43576cb30655c8be0be6115386859d0cb426d745b
 WHIRLPOOL 
287f6f4f5464a780c338755e4e9870381937768c9f4c9545436856ea690ae6bf4d3f886dd816cf080d2ee84e2a3fbf1a0a5a78e5fbc9d9d18bde428458819a8e

diff --git a/net-misc/curl/curl-7.55.1.ebuild b/net-misc/curl/curl-7.55.1.ebuild
new file mode 100644
index 000..5227717914f
--- /dev/null
+++ b/net-misc/curl/curl-7.55.1.ebuild
@@ -0,0 +1,242 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools eutils prefix multilib-minimal
+
+DESCRIPTION="A Client that groks URLs"
+HOMEPAGE="https://curl.haxx.se/;
+SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="adns http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
+IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl"
+IUSE+=" elibc_Winnt"
+
+#lead to lots of false negatives, bug #285669
+RESTRICT="test"
+
+RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
+   ssl? (
+   curl_ssl_axtls? (
+   net-libs/axtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_gnutls? (
+   net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}]
+   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_libressl? (
+   dev-libs/libressl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_mbedtls? (
+   net-libs/mbedtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_openssl? (
+   dev-libs/openssl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_nss? (
+   dev-libs/nss:0[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   )
+   http2? ( net-libs/nghttp2[${MULTILIB_USEDEP}] )
+   idn? ( net-dns/libidn2:0[static-libs?,${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0[${MULTILIB_USEDEP}] )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   metalink? ( >=media-libs/libmetalink-0.1.1[${MULTILIB_USEDEP}] )
+   rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
+   ssh? ( net-libs/libssh2[static-libs?,${MULTILIB_USEDEP}] )
+   

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 0d89c5d7e4a91ef2f1043e4ef20fa5e79cd4e1cb
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 17:32:40 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 17:33:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d89c5d7

gnome-base/gnome-control-center: version bump 3.24.2 → 3.24.3

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 gnome-base/gnome-control-center/Manifest   |   1 +
 .../gnome-control-center-3.24.3.ebuild | 165 +
 2 files changed, 166 insertions(+)

diff --git a/gnome-base/gnome-control-center/Manifest 
b/gnome-base/gnome-control-center/Manifest
index 671574759fb..d59503cbc52 100644
--- a/gnome-base/gnome-control-center/Manifest
+++ b/gnome-base/gnome-control-center/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-control-center-3.22.2.tar.xz 7277380 SHA256 
7512ff3e256c1d43a746752e90a8079d0b064aae35283cfe863e19706ce22f92 SHA512 
a9ed72c47703fcbbd0d6f3301be7d5b3a8eff2f0c400bde19e14c5d013404fc5907765fb20af40022f7700547d06c02203a919b4db4c191f64f3ac20cb12626a
 WHIRLPOOL 
393fa9d1752330ebac81215f35df5da6ed4b457cbc5ce56a5497191584266161c4ab0105b16535ef245be62aec27c6556fca2416ce7b91651b266f224592b686
 DIST gnome-control-center-3.24.2.tar.xz 7269112 SHA256 
382a4b1bf54754c1f5f83adb1faeca2e9de70df5d3d85ac6b0fb192801518f2b SHA512 
5041d4907cba0ea188663ad574ddaac6c341ec22b69f7a3d6332b8ae0a572fe33eb19eed758f3d593fe6224d793f2ecc3677584ebf0971f3ae145363a1769cc0
 WHIRLPOOL 
6e42ec6ac877eb19cc64d5d52106662a872cd4cba25bf0fb2f0fa4a4c1d82fc4149a52f7922e1e1e6dd005133cf54d5e154f75807da58d510e7d09610b41cb7b
+DIST gnome-control-center-3.24.3.tar.xz 7302120 SHA256 
43a4d2a4c222ee4a53428a4a720f823e157e4d4c597ea1a84e438d242596cca2 SHA512 
70b827f70fb95e8db0ee01e3ba80242dfdb0f90e31c391ca470c372cb6c8626f054e1e5b79e954935e9b567564129b80957091039e16e921e1c93b3d584c71cb
 WHIRLPOOL 
3e5b9c47ef2ecf9fdba3037ace51eefab765e7dfa829586b90da267ccbd099658f489676003259796e56805fe3c90fa55577787ca84bdd5e6cfb2729757b

diff --git a/gnome-base/gnome-control-center/gnome-control-center-3.24.3.ebuild 
b/gnome-base/gnome-control-center/gnome-control-center-3.24.3.ebuild
new file mode 100644
index 000..4935e46c886
--- /dev/null
+++ b/gnome-base/gnome-control-center/gnome-control-center-3.24.3.ebuild
@@ -0,0 +1,165 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+GNOME2_EAUTORECONF="yes"
+
+inherit bash-completion-r1 gnome2
+
+DESCRIPTION="GNOME's main interface to configure various aspects of the 
desktop"
+HOMEPAGE="https://git.gnome.org/browse/gnome-control-center/;
+
+LICENSE="GPL-2+"
+SLOT="2"
+IUSE="+bluetooth +colord +cups debug +gnome-online-accounts +ibus 
input_devices_wacom kerberos networkmanager v4l wayland"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-solaris"
+
+# False positives caused by nested configure scripts
+QA_CONFIGURE_OPTIONS=".*"
+
+# gnome-session-2.91.6-r1 is needed so that 10-user-dirs-update is run at login
+# g-s-d[policykit] needed for bug #403527
+# kerberos unfortunately means mit-krb5; build fails with heimdal
+# udev could be made optional, only conditions gsd-device-panel
+# (mouse, keyboards, touchscreen, etc)
+# display panel requires colord
+# printer panel requires cups and smbclient (the latter is not patch yet to be 
separately optional)
+COMMON_DEPEND="
+   >=dev-libs/glib-2.44.0:2[dbus]
+   >=x11-libs/gdk-pixbuf-2.23.0:2
+   >=x11-libs/gtk+-3.22.0:3[X,wayland?]
+   >=gnome-base/gsettings-desktop-schemas-3.21.4
+   >=gnome-base/gnome-desktop-3.21.2:3=
+   >=gnome-base/gnome-settings-daemon-3.23.90[colord?,policykit]
+   >=x11-misc/colord-0.1.34:0=
+
+   >=dev-libs/libpwquality-1.2.2
+   dev-libs/libxml2:2
+   gnome-base/libgtop:2=
+   media-libs/fontconfig
+   >=sys-apps/accountsservice-0.6.39
+
+   >=media-libs/libcanberra-0.13[gtk3]
+   >=media-sound/pulseaudio-2[glib]
+   >=sys-auth/polkit-0.97
+   >=sys-power/upower-0.99:=
+
+   virtual/libgudev
+   x11-apps/xmodmap
+   x11-libs/cairo
+   x11-libs/libX11
+   x11-libs/libXxf86misc
+   >=x11-libs/libXi-1.2
+
+   bluetooth? ( >=net-wireless/gnome-bluetooth-3.18.2:= )
+   colord? (
+   net-libs/libsoup:2.4
+   >=x11-misc/colord-0.1.34:0=
+   >=x11-libs/colord-gtk-0.1.24 )
+   cups? (
+   >=net-print/cups-1.4[dbus]
+   >=net-fs/samba-4.0.0[client]
+   )
+   gnome-online-accounts? (
+   >=media-libs/grilo-0.3.0:0.3=
+   >=net-libs/gnome-online-accounts-3.21.5:= )
+   ibus? ( >=app-i18n/ibus-1.5.2 )
+   kerberos? ( app-crypt/mit-krb5 )
+   networkmanager? (
+   >=gnome-extra/nm-applet-1.2.0
+   >=net-misc/networkmanager-1.2.0:=[modemmanager]
+  

[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-settings-daemon/, gnome-base/gnome-settings-daemon/files/

2017-08-15 Thread Gilles Dartiguelongue
commit: 02aa485159f7f98b6a316ea9ecb75d369fdf6a43
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 17:33:07 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 17:33:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02aa4851

gnome-base/gnome-settings-daemon: version bump 3.24.2 → 3.24.3

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 gnome-base/gnome-settings-daemon/Manifest  |   1 +
 .../files/3.24.3-optional.patch| 142 ++
 .../gnome-settings-daemon-3.24.3.ebuild| 158 +
 3 files changed, 301 insertions(+)

diff --git a/gnome-base/gnome-settings-daemon/Manifest 
b/gnome-base/gnome-settings-daemon/Manifest
index a5f3d72f07b..bff715e5361 100644
--- a/gnome-base/gnome-settings-daemon/Manifest
+++ b/gnome-base/gnome-settings-daemon/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-settings-daemon-3.22.2.tar.xz 1657132 SHA256 
0a1c1f9bce59a86617c45f77bd9cb99c6db38b96678a89d7ad2ab6b7bc6a1a01 SHA512 
7bbeb0b50d178bf951f5a8375703f3e2e88b7c5082ec7394df1f277dd08059e616118e003db23dcc175b92d803924b3927326d10a2101b7923dfb0e980d277e3
 WHIRLPOOL 
edae1afc97a314f3d90c7d77d9a456e74e9fe9059353e15a5a9b8318c32d2ebad792e7c9b7acaf54a8f3ea11a5de629f06d7bdb9cb3d5bff4f0621fe6a50683a
 DIST gnome-settings-daemon-3.24.2.tar.xz 1621368 SHA256 
4aa9d72644e3ee8a30096a38986b0e9543fca92f586c561f6c8a11fb8148dcca SHA512 
fa75a499750c9e8f8fd2c1af44d033e55f90f97ef39c4159fa58a2957aeae036b4ae505dede6333b640b0dfcd0400eacd3715aeb184fc021c1d787230b1a1f12
 WHIRLPOOL 
305f16567488b54be4f7ec359f4a1249c18de74e967a410e18fd4bc8b84748bd5146a3bd2b86852d9e6a37bc829b281e79a38c7a3cfcece5f80ae516d062780f
+DIST gnome-settings-daemon-3.24.3.tar.xz 1583044 SHA256 
68c46038bc32b7cbe933cc24fa9f1eb96127d9900c07627767ab0a802f948593 SHA512 
2450c3bb31746fe4883f194094cf79e94207e74d39c992107244d89f36c3ea373a33a2dca4a55af138f03fb4abd8733da4bacb215e2202bbc0976b566f8529a6
 WHIRLPOOL 
90fa96f9e1c641a63ba4eac2160f6fbc141f31009eaa93be7a4d3737d086553bb5f3fec7a75c32c2e9a364071216a36c578948f60d89867b6e12f8d12948dab4

diff --git a/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch 
b/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch
new file mode 100644
index 000..5202f77d5dc
--- /dev/null
+++ b/gnome-base/gnome-settings-daemon/files/3.24.3-optional.patch
@@ -0,0 +1,142 @@
+From 7b7bbbeeb9fa422d5a291574910e0881fa13f171 Mon Sep 17 00:00:00 2001
+From: Ole Reifschneider 
+Date: Tue, 15 Aug 2017 18:51:42 +0200
+Subject: [PATCH] Make colord and wacom support optional
+
+Signed-off-by: Gilles Dartiguelongue 
+---
+ configure.ac  | 54 +++
+ plugins/Makefile.am   |  9 ++--
+ plugins/dummy/Makefile.am |  5 -
+ 3 files changed, 47 insertions(+), 21 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 73fe91e6..d8778c93 100644
+--- a/configure.ac
 b/configure.ac
+@@ -158,13 +158,23 @@ PKG_CHECK_MODULES(CLIPBOARD,
+ gtk+-x11-3.0
+ x11)
+ 
+-PKG_CHECK_MODULES(COLOR,
+-colord >= 1.0.2
+-gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION
+-libcanberra-gtk3
+-libgeoclue-2.0 >= $GEOCLUE_REQUIRED_VERSION
+-lcms2 >= $LCMS_REQUIRED_VERSION
+-libnotify)
++AC_ARG_ENABLE([color],
++  AS_HELP_STRING([--disable-color],
++ [turn off color plugin]),
++   [],
++   [enable_color=yes])
++
++AS_IF([test "$enable_color" = "yes"],
++  [PKG_CHECK_MODULES(COLOR,
++ colord >= 1.0.2
++ gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION
++ libcanberra-gtk3
++ libgeoclue-2.0 >= $GEOCLUE_REQUIRED_VERSION
++ lcms2 >= $LCMS_REQUIRED_VERSION
++ libnotify)
++   AC_DEFINE(HAVE_COLOR, 1, [Define if color plugin is enabled])
++  ])
++AM_CONDITIONAL(BUILD_COLOR, test "x$enable_color" = "xyes")
+ 
+ PKG_CHECK_MODULES(DATETIME,
+ libnotify >= $LIBNOTIFY_REQUIRED_VERSION
+@@ -268,23 +278,31 @@ case $host_os in
+ if test "$host_cpu" = s390 -o "$host_cpu" = s390x; then
+   have_wacom=no
+ else
+-  if test x$enable_gudev != xno; then
+-LIBWACOM_PKG="libwacom >= $LIBWACOM_REQUIRED_VERSION"
+-PKG_CHECK_MODULES(LIBWACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION])
+-PKG_CHECK_MODULES(WACOM, [gtk+-3.0 pango >= $PANGO_REQUIRED_VERSION])
+-PKG_CHECK_MODULES(WACOM_OLED, [gudev-1.0])
+-  else
+-AC_MSG_ERROR([GUdev is necessary to compile Wacom support])
+-  fi
+-  AC_DEFINE_UNQUOTED(HAVE_WACOM, 1, [Define to 1 if wacom support is 
available])
+-  have_wacom=yes
++  have_wacom=no
++  AS_IF([test "$enable_gudev" != "no"],
++

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 7387c220f02ab74c9d9e8c2496657e2f042f178a
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 16:27:59 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 17:33:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7387c220

net-libs/gnome-online-accounts: version bump 3.22.6 → 3.24.2

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-libs/gnome-online-accounts/Manifest|  1 +
 .../gnome-online-accounts-3.24.2.ebuild| 89 ++
 2 files changed, 90 insertions(+)

diff --git a/net-libs/gnome-online-accounts/Manifest 
b/net-libs/gnome-online-accounts/Manifest
index 97b0192f857..f7e0e4dda53 100644
--- a/net-libs/gnome-online-accounts/Manifest
+++ b/net-libs/gnome-online-accounts/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-online-accounts-3.22.5.tar.xz 1404888 SHA256 
a8a4894ea5c6ba4508f8fec539287f2ebaf2c9bcf4426463b6724ca58b9d8982 SHA512 
5c87decaeb64850be02c3191088d518a5c3b84cb8d202692ff50b59dbf83f28a56f5bf34873ec9cc16301da3f8b3f41a892cf6a67f9e9f9f2bf35a8bde07a258
 WHIRLPOOL 
abc5c08bcc384159ff021fcec960baf707b49bbacf1d07984b01d7180244c8e4424e4c14ce3cdb7fd89c0e88dd33bfa40dbfcd32e1ace1a6730ef64d143ba64f
 DIST gnome-online-accounts-3.22.6.tar.xz 1404728 SHA256 
464248492840f6e3c6b3a30c54dad4995c1e348bce04c899a6a26b7a2551f7e5 SHA512 
6b5370447ccc5407ed5abd32b70c94c52de1166466e731e2a0295800e598be5c068a8fd6c492d439bce1a7faea8ed3638f689438d42e335997892738b51ed673
 WHIRLPOOL 
44494f1fb48e17874120ebf0a5b765f40dbb277030d01ee073377a5030af18249a422397f6f63dc2ebebdd759d083e021cf4c1bae556fc217d64026d4afec5c0
+DIST gnome-online-accounts-3.24.2.tar.xz 1410548 SHA256 
b70ad52d1541e1e5192dd060bb11552a3af5007ab477aa81d265d1cd1cf7afba SHA512 
02e71900ab306ff97ad397af3adbed3b3c8dc20e156f77680886e580440437290d0e6a20268e816ffc46f24798a064544914395f642a15c7ee62eb92d400cf7c
 WHIRLPOOL 
ac159bbdb4aa2125b767a06a3e74558d82a5484cde8a3367e86841105595d01269542fe6f34dc1e250738961c13b3598252e5fe1223f6fed457bf35011d07579

diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-3.24.2.ebuild 
b/net-libs/gnome-online-accounts/gnome-online-accounts-3.24.2.ebuild
new file mode 100644
index 000..5109f46789a
--- /dev/null
+++ b/net-libs/gnome-online-accounts/gnome-online-accounts-3.24.2.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="GNOME framework for accessing online accounts"
+HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineAccounts;
+
+LICENSE="LGPL-2+"
+SLOT="0/1"
+IUSE="debug gnome +introspection kerberos" # telepathy"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+# pango used in goaeditablelabel
+# libsoup used in goaoauthprovider
+# goa kerberos provider is incompatible with app-crypt/heimdal, see
+# https://bugzilla.gnome.org/show_bug.cgi?id=692250
+# json-glib-0.16 needed for bug #485092
+RDEPEND="
+   >=dev-libs/glib-2.44:2
+   >=app-crypt/libsecret-0.5
+   >=dev-libs/json-glib-0.16
+   dev-libs/libxml2:2
+   >=net-libs/libsoup-2.42:2.4
+   net-libs/rest:0.7
+   net-libs/telepathy-glib
+   >=net-libs/webkit-gtk-2.7.2:4
+   >=x11-libs/gtk+-3.19.12:3
+   x11-libs/pango
+
+   introspection? ( >=dev-libs/gobject-introspection-0.6.2:= )
+   kerberos? (
+   app-crypt/gcr:0=
+   app-crypt/mit-krb5 )
+"
+#  telepathy? ( net-libs/telepathy-glib )
+# goa-daemon can launch gnome-control-center
+PDEPEND="gnome? ( 
>=gnome-base/gnome-control-center-3.2[gnome-online-accounts(+)] )"
+
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   dev-libs/libxslt
+   >=dev-util/gtk-doc-am-1.3
+   >=dev-util/gdbus-codegen-2.30.0
+   >=dev-util/intltool-0.50.1
+   sys-devel/gettext
+   virtual/pkgconfig
+
+   dev-libs/gobject-introspection-common
+   gnome-base/gnome-common
+"
+# eautoreconf needs gobject-introspection-common, gnome-common
+
+# Due to sub-configure
+QA_CONFIGURE_OPTIONS=".*"
+
+src_prepare() {
+   gnome2_src_prepare
+   vala_src_prepare
+}
+
+src_configure() {
+   # TODO: Give users a way to set the G/FB/Windows Live secrets
+   # telepathy optional support is really a badly one, bug #494456
+   gnome2_src_configure \
+   --disable-static \
+   --enable-backend \
+   --enable-documentation \
+   --enable-exchange \
+   --enable-facebook \
+   --enable-flickr \
+   --enable-foursquare \
+   --enable-imap-smtp \
+   --enable-lastfm \
+   --enable-media-server \
+   --enable-owncloud \
+   --enable-pocket \
+   --enable-telepathy \
+   --enable-windows-live \
+   $(usex debug --enable-debug=yes ' ') \
+ 

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

2017-08-15 Thread Sebastien Fabbro
commit: 33174f2c547c9561246fe41c1740175db690467d
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Tue Aug 15 16:55:48 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Aug 15 17:28:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33174f2c

dev-python/ipython: version bump, python-3* only

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/ipython/Manifest |   1 +
 dev-python/ipython/ipython-6.1.0.ebuild | 115 
 2 files changed, 116 insertions(+)

diff --git a/dev-python/ipython/Manifest b/dev-python/ipython/Manifest
index d0d26013f90..8b964d8dafb 100644
--- a/dev-python/ipython/Manifest
+++ b/dev-python/ipython/Manifest
@@ -1,3 +1,4 @@
 DIST ipython-3.2.1.tar.gz 10884249 SHA256 
c913adee7ae5b338055274c51a7d2b3cea468b5b316046fa520cd8a434b09177 SHA512 
de7723e3b859d21a58a24456c76c8d8ec98c019f290f61269f46270e7647d2b49a98671138fecd75cb6f46384fde7e09618eb5c85c175e0e442c7fae7328d8fe
 WHIRLPOOL 
9f020c167559259931dcb177d0c3a5211939632e5775c2627795ba390cf57bd62c378c15b7ee9b9ed2079180f8df8e062eb9673ed9cfc025a56f1da82c9428d1
 DIST ipython-5.3.0.tar.gz 4967956 SHA256 
bf5e615e7d96dac5a61fbf98d9e2926d98aa55582681bea7e9382992a3f43c1d SHA512 
41706d7521cc84f36f5580dc44cd91832a60aa8a7a946d15a9ec9563649b9ae97931b9f135f1fdbaecbcb0b9b925d467edfd6eec7f8c82309872047be77b598d
 WHIRLPOOL 
96478b15fd4928d11da35dbbaba6492ff12cf739c06b6f9cf8fdd827060baf5c07d093c3e340792b62102f85ada0b6ea29adc742b784ad21e5292cde09a6fa25
 DIST ipython-5.4.1.tar.gz 4973571 SHA256 
afaa92343c20cf4296728161521d84f606d8817f963beaf7198e63dfede897fb SHA512 
b37dae27a558585ec4f42fa22e86380ac81990207ec680fc7b0e6f97ac81c99d915cfe77488bc0b91a61c34e0c00b323df08aa06b142ce0fc88ce30203102907
 WHIRLPOOL 
e91e719a681c29e8ecd3e08ade470adcefb957ffddfa601f89306c19b6f6e80fa793a603948fb9fd697884474f2559ece30456be27d9034448cb618217a8cfa1
+DIST ipython-6.1.0.tar.gz 5066094 SHA256 
5c53e8ee4d4bec27879982b9f3b4aa2d6e3cfd7b26782d250fa117f85bb29814 SHA512 
6b1d9713b5e8c3870ac8cd8bea9d3a6f0c0302e3983017516128ede9f0baba21372890873df29fbba3f9d2f47ba16bfadb1c611f9de23b71595c0ab8f917695b
 WHIRLPOOL 
9b579922060a1d37487bb294314fae4ac19c8d98509c856c117c17f6eb8d617cd29b7d7fa5e44bb2b1004a70f893b0e83571f69149729b6f6ebcbaa162f257fa

diff --git a/dev-python/ipython/ipython-6.1.0.ebuild 
b/dev-python/ipython/ipython-6.1.0.ebuild
new file mode 100644
index 000..612a99813dc
--- /dev/null
+++ b/dev-python/ipython/ipython-6.1.0.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_REQ_USE='readline,sqlite,threads(+)'
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Advanced interactive shell for Python"
+HOMEPAGE="http://ipython.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples matplotlib notebook nbconvert qt4 qt5 +smp test"
+
+CDEPEND="
+   dev-python/decorator[${PYTHON_USEDEP}]
+   >=dev-python/jedi-0.10.0[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   dev-python/pickleshare[${PYTHON_USEDEP}]
+   >=dev-python/prompt_toolkit-1.0.4[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/pyparsing[${PYTHON_USEDEP}]
+   dev-python/simplegeneric[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-4.2.1[${PYTHON_USEDEP}]
+   matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )
+"
+
+RDEPEND="${CDEPEND}
+   notebook? (
+   dev-python/notebook[${PYTHON_USEDEP}]
+   dev-python/ipywidgets[${PYTHON_USEDEP}]
+   )
+   nbconvert? ( dev-python/nbconvert[${PYTHON_USEDEP}] )
+"
+
+DEPEND="${CDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/typing[${PYTHON_USEDEP}]
+   test? (
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/nbformat[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/testpath[${PYTHON_USEDEP}]
+   )
+   doc? (
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-websupport[${PYTHON_USEDEP}]
+   )
+"
+
+PDEPEND="
+   qt4? ( dev-python/qtconsole[${PYTHON_USEDEP}] )
+   qt5? ( dev-python/qtconsole[${PYTHON_USEDEP}] )
+   smp? ( dev-python/ipyparallel[${PYTHON_USEDEP}] )
+"
+
+PATCHES=( "${FILESDIR}"/2.1.0-substitute-files.patch )
+
+#DISTUTILS_IN_SOURCE_BUILD=1
+
+python_prepare_all() {
+   # Remove out of date insource files
+   rm IPython/extensions/cythonmagic.py || die
+   rm IPython/extensions/rmagic.py || die
+
+   # Prevent un-needed download during build
+   if use doc; then
+   sed -e "/^

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

2017-08-15 Thread Sebastien Fabbro
commit: c4cfbb11a2180f7e62e9a6656e7455229b07c1be
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Tue Aug 15 16:18:00 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Aug 15 17:28:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4cfbb11

dev-python/prompt_toolkit: version bump

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/prompt_toolkit/Manifest |  1 +
 .../prompt_toolkit/prompt_toolkit-1.0.15.ebuild| 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/prompt_toolkit/Manifest 
b/dev-python/prompt_toolkit/Manifest
index 8d27a35812a..8a81bd87809 100644
--- a/dev-python/prompt_toolkit/Manifest
+++ b/dev-python/prompt_toolkit/Manifest
@@ -1,2 +1,3 @@
 DIST prompt_toolkit-1.0.0.tar.gz 212138 SHA256 
5108ed9e6e40d28cb1dc90ba563987859231289700d0def999007b08f4f74ea4 SHA512 
84908871df84d82b0fd0e31c1bef63b3dde38d8e3c1459d3d5466cfda68ef48477eba5a2d4c5af831e7a3fa42ab57c56f771f8050b53223638683cee27281647
 WHIRLPOOL 
a141f2ed1bc57ef9b663877094c9fe3e4a751a59f72c327da479872bfdd48b7b70ba78f3d4be2c397acb699d2adf272a8df5c8db7b3999b2711dd1b62d4a3d0d
 DIST prompt_toolkit-1.0.14.tar.gz 241612 SHA256 
cc66413b1b4b17021675d9f2d15d57e640b06ddfd99bb724c73484126d22622f SHA512 
909bf50bf0095a8cc37581fc7384f9035eb9d6fd0d16a914e8912693476262cfe0b0c78643ba1c629bd907c861981a9740155927148fcff554446ebb4fd80959
 WHIRLPOOL 
5967bab046f70bfb74ee8e548fb3a7c5cdfeb328498176db28cf3cea5c47233697e193d4e47f0ae688718c228867b4a9b8a1c7227ce0a94b3e9b30441ec44961
+DIST prompt_toolkit-1.0.15.tar.gz 243734 SHA256 
858588f1983ca497f1cf4ffde01d978a3ea02b01c8a26a8bbc5cd2e66d816917 SHA512 
10981be2ed8b71d0cd9f663c4de047cec9664d9276968c6eec40dc45b388d1acf8eba07d534369254f178931079bf39b04eb2ceac06aa63a2021ebf62387b2f5
 WHIRLPOOL 
0736b1fa8c17cc86e8fcc729ee77d9aee658f9a505c1ccc7a6d987303a978d0e9d10df12c93f9cf6ffe35b2f9b8f8286bcbc07f29cc12c05e644bb17a8218ea4

diff --git a/dev-python/prompt_toolkit/prompt_toolkit-1.0.15.ebuild 
b/dev-python/prompt_toolkit/prompt_toolkit-1.0.15.ebuild
new file mode 100644
index 000..7543b32f535
--- /dev/null
+++ b/dev-python/prompt_toolkit/prompt_toolkit-1.0.15.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Building powerful interactive command lines in Python"
+HOMEPAGE="https://pypi.python.org/pypi/prompt_toolkit/ 
https://github.com/jonathanslenders/python-prompt-toolkit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+   dev-python/wcwidth[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+python_test() {
+   py.test || die
+}



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

2017-08-15 Thread Sebastien Fabbro
commit: 66790ec514b9db27c6db71c4008595df2837acce
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Tue Aug 15 17:27:23 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Aug 15 17:28:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66790ec5

dev-python/healpy: version bump

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/healpy/Manifest |  1 +
 dev-python/healpy/healpy-1.11.0.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/healpy/Manifest b/dev-python/healpy/Manifest
index f2f5ebae330..46b7aeb0ff8 100644
--- a/dev-python/healpy/Manifest
+++ b/dev-python/healpy/Manifest
@@ -1 +1,2 @@
 DIST healpy-1.10.3.tar.gz 4018897 SHA256 
43bdccb0081b3b5a72a9c1f523c367bc2cba91f989a60047d8043685a3beb81b SHA512 
c5862fceb597ffbc5c53204479fa9dba19287e3c08744e25edef3eaecfa726e61e8558d50d73e2bf4d19b7d0adc0ac928a38c4808fc92fe855f5eae101e18baa
 WHIRLPOOL 
f3d883f8de8c35573d865ab444818b5b3e3cbeac4176961cd8db39931a09b0d52a7f2fe7c6f3862823d32cd2ec2a569a17f6dc9e1da8510f35940f9ddbb7b66a
+DIST healpy-1.11.0.tar.gz 4033412 SHA256 
8c3c7982ae188549315a11f4d1aa6528cd1ccf078017ca20120ff2cf1b47babe SHA512 
35926c769f2fd4ebc3cd61357d742e9e1747325187e465bd3be62b4281506bd02cf3d8b982583819219e994dfa3936d6bc61914218325bb6b4ddfcffc50c802f
 WHIRLPOOL 
59cb954d30b6df3db07ae4aa94e576c94f19eaf8e99e7416bf162c362089490999b6e85a62f94c09d62d37292b82d2bfaf7e89de1b93882e0b35cd6ab8887a59

diff --git a/dev-python/healpy/healpy-1.11.0.ebuild 
b/dev-python/healpy/healpy-1.11.0.ebuild
new file mode 100644
index 000..c517d95ea5c
--- /dev/null
+++ b/dev-python/healpy/healpy-1.11.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python wrapper for healpix"
+HOMEPAGE="https://github.com/healpy;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   dev-python/astropy[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   sci-astronomy/healpix:=[cxx]
+   sci-libs/cfitsio:="
+DEPEND="${RDEPEND}
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   virtual/pkgconfig
+   test? (
+ dev-python/pytest[${PYTHON_USEDEP}]
+ dev-python/pytest-cython[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( README.rst CHANGELOG.rst CITATION )
+
+python_test() {
+   echo "backend: Agg" > matplotlibrc || die
+   MPLCONFIGDIR=. esetup.py test || die
+   rm matplotlibrc || die
+}



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

2017-08-15 Thread Sebastien Fabbro
commit: 90fd0e8238a7cddc3391ba93b3e8dc6bf317e2c3
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Tue Aug 15 17:24:12 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Aug 15 17:28:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90fd0e82

dev-python/pytest-cython: initial import

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/pytest-cython/Manifest  |  1 +
 dev-python/pytest-cython/metadata.xml  | 12 
 .../pytest-cython/pytest-cython-0.1.0.ebuild   | 22 ++
 3 files changed, 35 insertions(+)

diff --git a/dev-python/pytest-cython/Manifest 
b/dev-python/pytest-cython/Manifest
new file mode 100644
index 000..5c7333185e2
--- /dev/null
+++ b/dev-python/pytest-cython/Manifest
@@ -0,0 +1 @@
+DIST pytest-cython-0.1.0.tar.gz 19109 SHA256 
90fa7e4e619bababeb433d3ba173a80d20473cce0bf3dce2c0e6f298becf5998 SHA512 
65d8d25f95f2419ae76902cad8f0f4c9b810dbbba80621d301f53d2128dfeb11c4d74e2ac4f1e39f63aadfc1404e9000c0668efbab4793d307f0b90345023771
 WHIRLPOOL 
1d360c1dfafd6059c75741e984ce3d6a7a09bb8ff0135c8d318d8ba345c59e21d16a83a52c2a7ce222dc7ea58bc13fd6ab5e8fd32fa4df22154086e977608d2c

diff --git a/dev-python/pytest-cython/metadata.xml 
b/dev-python/pytest-cython/metadata.xml
new file mode 100644
index 000..535d87310a6
--- /dev/null
+++ b/dev-python/pytest-cython/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+pyt...@gentoo.org
+Python
+  
+  
+pytest-cython
+lgpage/pytest-cython
+  
+

diff --git a/dev-python/pytest-cython/pytest-cython-0.1.0.ebuild 
b/dev-python/pytest-cython/pytest-cython-0.1.0.ebuild
new file mode 100644
index 000..60ca2ab4411
--- /dev/null
+++ b/dev-python/pytest-cython/pytest-cython-0.1.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Plugin for testing Cython extension modules"
+HOMEPAGE="https://github.com/lgpage/pytest-cython;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/ck-sources/

2017-08-15 Thread Göktürk Yüksek
commit: c085eaae2d7c2b0b509ea1244626b24ae740f65e
Author: kuzetsa  gmail  com>
AuthorDate: Tue Aug 15 10:36:14 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Tue Aug 15 17:27:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c085eaae

sys-kernel/ck-sources: v.bump (4.9.43 & 4.12.7)

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/ck-sources/Manifest |  7 +++
 sys-kernel/ck-sources/ck-sources-4.12.7.ebuild | 60 
 sys-kernel/ck-sources/ck-sources-4.9.43.ebuild | 65 ++
 3 files changed, 132 insertions(+)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index 774059b1fcd..5193e604345 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -11,6 +11,9 @@ DIST genpatches-4.11-14.extras.tar.xz 17360 SHA256 
b9b6164eff5dbe458ee05f856770f
 DIST genpatches-4.12-7.base.tar.xz 145740 SHA256 
fe5ee55518eb59d7381806dfbd90ab33b9d16d99f1d3dc98e3fa9c3963ab64b7 SHA512 
0b772a56ae1a5819fc0fa8dc130c9f2c7701e9ebffb216b37714684811d6ea92b52a3c5720a4417893b9ebd97fee56605f5a821eee964418ae6b7d09b942acd1
 WHIRLPOOL 
b59379a8818f75ee0b1461d2edc732cf6f3c9ff2c058d4bff4767d3240ab4266a815252e16bcf5fc1d9c2365fe8096cdf710d8dca46108f6bf82a94df2f64cc5
 DIST genpatches-4.12-7.experimental.tar.xz 5188 SHA256 
b2371110a69f6e68e3bbaf2ecfaf9f8589824de94ff3f1bffceeb49948a659fe SHA512 
6204a007435249ec10b68718b1e63ceb446d13bfd7b1af9f40b88fa7c5a485633b7dfbafd71302dc1041ad1f83e01eb5c6c458e517a679b6c8085cf545e5be4e
 WHIRLPOOL 
6d4d9bdaa52404a038c2f53cad0e10c088f6ccdb9400983bbc13801b37e2aa8c89266d44318fa8925341e7e33a0146c68a718cbfb9126f673558dfafc1e4d5dc
 DIST genpatches-4.12-7.extras.tar.xz 17356 SHA256 
bc6c9e7e68f5cd1a011e72165fa07d80cd55fcee72ba2b41f2005cac9c60c0fc SHA512 
5a21b90460759b52f4a100fd649746c1082871dd4bb69d84dd49ee1682d203dba024398eb844eda7c545a8a405d28600059fd7c21d1f3db25ce750283fe3015c
 WHIRLPOOL 
4d886e5e702a3ec5c24543f7f8e33bcd889d71a69d6dd6ad4a8d40ad17d11c270f81d17cd91f096f7e2f66870717ed0d439a4a85ecf6f9f9effd70e3806d5ed4
+DIST genpatches-4.12-8.base.tar.xz 150876 SHA256 
3e2cecfa779c67a2dd174ac6de9489680967098e8ad051bb6e2e6f9e76796d58 SHA512 
f699d790586f1db369dd4a4f85cabc4ddafdf28c6db23372eae7fd0c944d1ed8b0adee67e206519798f751de64734f4f9e6da2eba74a6e300df5306efad9b0e7
 WHIRLPOOL 
dd734e52ce6b2e111786c2bfb517c2ec00b6d990b12100867eb8ed64019edb4ac7894fe7f71a400111e4e03637a176f0a17e385376948e49807bbfc390bc544c
+DIST genpatches-4.12-8.experimental.tar.xz 5188 SHA256 
a543b132702d856c1d0102af6e2e5f9ecd3d68d3340e1cd3c79cf2be448cdb9d SHA512 
4499ec8c5d4ca191e79c888e27825353e3c352f97a091d992552c293c41ca071befc162ed9b68b24c5ac1697a91c9ca6a1e4f507d29f94125ad82c36455ade88
 WHIRLPOOL 
2db819825fb8ea6f7f4b5b9b2cd9a8412022c74f6d94c89cb70dcb002aa834d602334aa8bce32a39922cfde619227153072fa4a23abb14f913083967e975091c
+DIST genpatches-4.12-8.extras.tar.xz 17348 SHA256 
8a8ab6b7fde738260621a1a2a8eb83a0382f7a027e726ae8ba1a5be22805f297 SHA512 
f9eb2773f3178aaafb5ccc9fc5f21b602bdfd3fac59633ad94d8268fee45261f88daede52b35fe035f6c3bb685941984aea6974af518caea18e475a0f31be223
 WHIRLPOOL 
36f3877941c97e51139435d5e3acaee057b602214ab8f82b32c45c89c97732a577919757ae687545d25e3fd75fb3522f041775bd4de6c00dbeced972e24df7e8
 DIST genpatches-4.9-40.base.tar.xz 873248 SHA256 
bff6bf6340301b0afee5b0fc1b74c40ac56b8c0c8a6dd491f47520bd3f7a4778 SHA512 
d7f62112978aa40a5e34d62ed1843b666f101b65e5c0c5f7fb0273a942a3174767b8ada6b2d26942b67f822a4f56b12e87493037712eebe433e9769ee12f3e52
 WHIRLPOOL 
ef094fe40bc703f7ad9023ea5a51a33b9b65d7f4d22027b3ef88954006be165b8903b4f337c451487457960780cc1041a1b3b84dcb9befb270546188bd9b7c21
 DIST genpatches-4.9-40.experimental.tar.xz 106408 SHA256 
df363fca6154b95b9ce7a80f59511a0d7b79cefa8d225cf4ce63ccd8aaed223c SHA512 
10fd0e22f7e064cc367eca6cea8243ebb7da4b2d72aa5001f02a6fe17e4945591bd6575b1e85172140ee60007071845fba5244014f40294a0f092bb6571cacc3
 WHIRLPOOL 
35de6e7e38b77e151bc5faa4d10db51d9b10b37ea15c29fab2b1b5df2b758d96c21c1f32309ba521ca7dc5cdd4c18c3ad16854c0105c99ea4098f36a81e1964b
 DIST genpatches-4.9-40.extras.tar.xz 17360 SHA256 
b9b6164eff5dbe458ee05f856770f545a28764d17d2216afd16940513053e16f SHA512 
968906db8bb837f79478d8912220b4691de8231b06bf479b224a60b001831d1ea3824b4a47ae66894a3b7c2aefffbf0523570888ebe7e81f7c321c184e51a611
 WHIRLPOOL 
d4ebfdd022a6ffa74a1a3f6f4d93366156c43ab9c3f9ba4d2d4b5395fba0a6cfb5800c9d9b2333de90d965eb66117e226647330213a566d3960e6d071b7c7acb
@@ -20,9 +23,13 @@ DIST genpatches-4.9-42.extras.tar.xz 17348 SHA256 
a32be57a1acd9ffeb7d63b7482fcd0
 DIST genpatches-4.9-43.base.tar.xz 947816 SHA256 
e5f0ea2d1a4a92eb81f4e0c4264e965ccefd5a726ea64b1b013a547cb5318cb4 SHA512 
1ce02d2742a6bd5efe91f5242b5eee14e6ebd6b679c27ab818839c3a182331f74d02bde3c017cc24b0bf7b9eccef97768db17fe1d766434613342caa9a68a1a9
 WHIRLPOOL 
9ae29ce3db0349af7436a12cdf5ce600b002cbd64859691ed4c179a17434db716e0161e1614fe03ac79227fc47e9c926d72094515411f875e46d6090666d61b4
 DIST 

[gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-docs/

2017-08-15 Thread Mike Pagano
commit: 53511028bb1311ed8b15719f5c5e0ca75ff50b13
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug 15 17:25:37 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug 15 17:25:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53511028

sys-kernel/linux-docs: Version bumps to top three supported LTS kernels. 
Removal of old versions.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/linux-docs/Manifest | 10 +---
 sys-kernel/linux-docs/linux-docs-3.14.22.ebuild| 64 --
 sys-kernel/linux-docs/linux-docs-4.1.12.ebuild | 64 --
 ...x-docs-3.4.104.ebuild => linux-docs-4.1.ebuild} |  2 +-
 sys-kernel/linux-docs/linux-docs-4.2.5.ebuild  | 64 --
 sys-kernel/linux-docs/linux-docs-4.3.ebuild| 64 --
 ...x-docs-3.10.58.ebuild => linux-docs-4.4.ebuild} |  2 +-
 ...x-docs-3.12.30.ebuild => linux-docs-4.9.ebuild} |  2 +-
 8 files changed, 6 insertions(+), 266 deletions(-)

diff --git a/sys-kernel/linux-docs/Manifest b/sys-kernel/linux-docs/Manifest
index 382551df84e..ea280b2dd28 100644
--- a/sys-kernel/linux-docs/Manifest
+++ b/sys-kernel/linux-docs/Manifest
@@ -1,7 +1,3 @@
-DIST linux-3.10.58.tar.xz 73287940 SHA256 
dffd5af29d516caf1b2fba8360acad81eec24af744e2da4e28ca3289e113961b SHA512 
cfca039bfd919fecc87db1b5b7b408510f161eae2bcf7e2eb317473f52c553acd2d2e3a7afc4da10e84463b3ce362e9a7cb8cc0db7b6625bf1b5461b82833d77
 WHIRLPOOL 
975ad7aba0ba34c06e7df83424a63764edf54c26924006c942995a60d730c6e71d14bccc778b4e25bd00cb6cad02d917889d728de16a880f2cc7d9dc251d6d69
-DIST linux-3.12.30.tar.xz 76465772 SHA256 
24941aa7e5b9c556080d59e63ef9eea4e739ed1b29d367d2e777243f90633480 SHA512 
3f0b188547f0f0adcd8d7e6246465020bee316eda8ca20be8140f2115ae04d58a3d2e37ef60480ebe009797c71db5a14dd60cfcff958561cb12d313ee0d18499
 WHIRLPOOL 
d139c36f20d08cb721c1ac08e48e33aba04b1b04c199b557ab814dbb3fb048d6ccf0f0e4fcf5bb2c430888dfa891981770e1973f7cbdda49ba5c284fbaa44a91
-DIST linux-3.14.22.tar.xz 78451580 SHA256 
77a0c7a41b1fc4232a959c539e48f98071769c8cc553e013291fbfadba62b084 SHA512 
2d2f40fc18f2769a1fe53115de91ea37aeab53f5b4ca9bedaf7622447c87a97c5d59c2e4a3faf1356d00a365a970d7a53d98fdbdc7e967aef402918e7bff9b61
 WHIRLPOOL 
89768ea13f7e1b912feabb303e6146dc0886702c3133cb15d4f2351ddc6976af4b135a61f0dc78f3a4da6a51ea515cd322f008e9074b3d427a6116b287aa197a
-DIST linux-3.4.104.tar.xz 67176948 SHA256 
8bf42d8befdd61a296546dfb626eca7c108b7c3eb0c284f4bd4273c628e1c275 SHA512 
a8d86b0fa9bbb602262f8e4155870a5e33224597030d6b6777480ea81127564d9bf94389d8adb59c8e9cec2f586f59031968d33ec3b6b82c10e13924c303872b
 WHIRLPOOL 
95cb16ceab4899689145385c5acbe4cf46682e9f5258dc99b6b890347c06aba903858a0fd98d9d34a264a9db46c54e9fa6da0821bb33bd3a2a3fb6a82ba7f451
-DIST linux-4.1.12.tar.xz 83044368 SHA256 
4b49b246b2b99404432fdaa3338a01ce84dcd05b9501aaa71b04d81ac6e13f61 SHA512 
e75636441f589bc132ebde17aa3c510b4277da9c5646e3785c5fdca7e1a860e280fbb1819818a34529de5062e54dccb2335a7e6d3c3aaed51d0317c860fbe601
 WHIRLPOOL 
4514c131790c30e0ecf8359951ec806f919f75aa3aa2166b5a3bed37b4c5e53c13c1914341913dfc1ab6db55539da63586bdb339a1157af90c2a93f5e79fb420
-DIST linux-4.2.5.tar.xz 85538096 SHA256 
7c43bb038ddf7396b998fb802b1453f68035cba2dcadeb507f54520bbe533187 SHA512 
323e08348e185346606db5cd10e0c8b038d68f480592b4a74dd5f9e4eda6853c2763f75b6c73fe91903bff67b29a5bb5dbbb36d60e56fd9764009f3a5881ab21
 WHIRLPOOL 
b275baf06f87e6593d45bd889aed45fdfff63f1ef180d6332d95e790f60cf0bffce69ea792c45af22752347c58b2634a4a67e306da15af8390f37598c9ce326c
-DIST linux-4.3.tar.xz 86920812 SHA256 
4a622cc84b8a3c38d39bc17195b0c064d2b46945dfde0dae18f77b120bc9f3ae SHA512 
d25812043850530fdcfdb48523523ee980747f3c2c1266149330844dae2cba0d056d4ddd9c0f129f570f5d1f6df5c20385aec5f6a2e0755edc1e2f5f93e2c6bc
 WHIRLPOOL 
e3f131443acc14d4f67bbd3f4e1c57af3d822c41c85a112564d54667a591c8619dce42327fd8166d30a2d7adfaf433c2e2134d4995c91c08f65ac0cc2190f935
+DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
+DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc
+DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: app-admin/salt/, app-admin/salt/files/

2017-08-15 Thread Manuel Rüger
commit: aa053bca0804c086700570dec17cd10c4169f70d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Aug 15 17:16:54 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Aug 15 17:16:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa053bca

app-admin/salt: Apply fix for bug #627928 to 2015.8.13 as well

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 .../salt-2015.8.13-sanitize-minion-name.patch  |  36 ++
 app-admin/salt/salt-2015.8.13-r1.ebuild| 141 +
 2 files changed, 177 insertions(+)

diff --git a/app-admin/salt/files/salt-2015.8.13-sanitize-minion-name.patch 
b/app-admin/salt/files/salt-2015.8.13-sanitize-minion-name.patch
new file mode 100644
index 000..6ede1399072
--- /dev/null
+++ b/app-admin/salt/files/salt-2015.8.13-sanitize-minion-name.patch
@@ -0,0 +1,36 @@
+From aa87d67258a5b6742fc53d06c7bdac0f643bc9f1 Mon Sep 17 00:00:00 2001
+From: Ch3LL 
+Date: Tue, 1 Aug 2017 13:44:32 -0400
+Subject: [PATCH] Add clean_id function to salt.utils.verify.py
+
+---
+ salt/utils/verify.py | 11 ++-
+ 1 file changed, 10 insertions(+), 1 deletion(-)
+
+diff --git a/salt/utils/verify.py b/salt/utils/verify.py
+index 5cac0fa651b..a3dc67db336 100644
+--- a/salt/utils/verify.py
 b/salt/utils/verify.py
+@@ -480,12 +480,21 @@ def clean_path(root, path, subdir=False):
+ return ''
+ 
+ 
++def clean_id(id_):
++'''
++Returns if the passed id is clean.
++'''
++if re.search(r'\.\.{sep}'.format(sep=os.sep), id_):
++return False
++return True
++
++
+ def valid_id(opts, id_):
+ '''
+ Returns if the passed id is valid
+ '''
+ try:
+-return bool(clean_path(opts['pki_dir'], id_))
++return bool(clean_path(opts['pki_dir'], id_)) and clean_id(id_)
+ except (AttributeError, KeyError, TypeError) as e:
+ return False
+ 

diff --git a/app-admin/salt/salt-2015.8.13-r1.ebuild 
b/app-admin/salt/salt-2015.8.13-r1.ebuild
new file mode 100644
index 000..ed02341af26
--- /dev/null
+++ b/app-admin/salt/salt-2015.8.13-r1.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=(python2_7)
+
+inherit eutils systemd distutils-r1
+
+DESCRIPTION="Salt is a remote execution and configuration manager"
+HOMEPAGE="https://saltstack.com/community/;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/${PN}stack/${PN}.git;
+   EGIT_BRANCH="develop"
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~x86 ~amd64"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron 
nova"
+IUSE+=" openssl portage profile redis selinux test timelib raet +zeromq 
vim-syntax"
+
+RDEPEND="sys-apps/pciutils
+   dev-python/jinja[${PYTHON_USEDEP}]
+   >=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/markupsafe[${PYTHON_USEDEP}]
+   >=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=www-servers/tornado-4.2.1[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]
+   libcloud? ( >=dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] )
+   mako? ( dev-python/mako[${PYTHON_USEDEP}] )
+   ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
+   libvirt? ( dev-python/libvirt-python[${PYTHON_USEDEP}] )
+   openssl? (
+   dev-libs/openssl:*[-bindist]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   )
+   raet? (
+   >=dev-python/libnacl-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/ioflo-1.1.7[${PYTHON_USEDEP}]
+   >=dev-python/raet-0.6.0[${PYTHON_USEDEP}]
+   )
+   zeromq? (
+   >=dev-python/pyzmq-2.2.0[${PYTHON_USEDEP}]
+   >=dev-python/pycrypto-2.6.1[${PYTHON_USEDEP}]
+   )
+   cherrypy? ( >=dev-python/cherrypy-3.2.2[${PYTHON_USEDEP}] )
+   mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] )
+   portage? ( sys-apps/portage[${PYTHON_USEDEP}] )
+   keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
+   mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
+   redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )
+   selinux? ( sec-policy/selinux-salt )
+   timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )
+   nova? ( >=dev-python/python-novaclient-2.17.0[${PYTHON_USEDEP}] )
+   neutron? ( >=dev-python/python-neutronclient-2.3.6[${PYTHON_USEDEP}] )
+   gnupg? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
+   profile? ( dev-python/yappi[${PYTHON_USEDEP}] )
+   vim-syntax? ( app-vim/salt-vim )"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+

[gentoo-commits] repo/gentoo:master commit in: app-admin/salt/

2017-08-15 Thread Manuel Rüger
commit: aa3f92f4fbdb1865e005f901de7017c404955f13
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Aug 15 16:56:43 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Aug 15 16:58:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa3f92f4

app-admin/salt: Version bump to 2016.3.7 and 2016.11.7

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 app-admin/salt/Manifest  |   2 +
 app-admin/salt/salt-2016.11.7.ebuild | 146 +++
 app-admin/salt/salt-2016.3.7.ebuild  | 142 ++
 3 files changed, 290 insertions(+)

diff --git a/app-admin/salt/Manifest b/app-admin/salt/Manifest
index 4b37df70080..b1ea0687f61 100644
--- a/app-admin/salt/Manifest
+++ b/app-admin/salt/Manifest
@@ -3,5 +3,7 @@ DIST salt-2015.8.13.tar.gz 7036243 SHA256 
cca82c9a4f267692660b098c1f76e54ab6a241
 DIST salt-2016.11.4.tar.gz 9360198 SHA256 
fb4109b28d3fd898291c162e42ef843fbd4c3e57244075670fa8f366e705765f SHA512 
ba928b61766d34774ce2e623fa79a46f6d373295c55b336e1b451e6a4afb0d547d78ceb9e466b64d8ba8bdbf2e750cbb77d008bc76308602729ae08241b8d346
 WHIRLPOOL 
cb599c83d1adb3c0281106cf447df42da1439f033f23cfc8370edc537fd2d60af66c4451dcedb12aee0447499184ab413ce1cf200b26b3ef48c8932bccb977be
 DIST salt-2016.11.5.tar.gz 9246550 SHA256 
b81427a4a3e47a98726f948bdc16a5b6b366f93fdac0b2c817e8f87d9036f8be SHA512 
9afb40dbd3a508eacc4350050763e2b219817d7de25ccf2d61d7f74b857238922ea40cc4c6372fd520bc6f524d84fb0a2d65f9890bedd79d0fc6c177edf9
 WHIRLPOOL 
684c8f147fbe38928b3f7510e704654270fcc4aacdf81c4f3b90a9f275566a2b8cf2155aff223d3ead2740d79e479d10cf233b4386b8e76ddb7b481f3471ebb6
 DIST salt-2016.11.6.tar.gz 9410028 SHA256 
9031af68d31d0416fe3161526ef122a763afc6182bd63fe48b6c4d0a16a0703a SHA512 
8b375eeaf8380c750700ae9b500e012f0b8ae281c8b5aa68d3443393a5bb7dd46612f2aeb3ba01719dd28d9e128dc88f1faa8023f5f5e7ff684a1f0483c30120
 WHIRLPOOL 
c74aa93b60851a4978746fd0fe60f4fcbe0e8bb447cb19fcd3eede9d5880ef3ece96b2d9dc4cab4d8f09f08ce9ad2fd9d4bb63c295aefcf25b178e4c3c77d992
+DIST salt-2016.11.7.tar.gz 9409315 SHA256 
279fa5bd73b5616620f628234575140f91df28b0d40d931569f179efabf27a2d SHA512 
5bb52d75fafd57cd8efebe9b94dc3b53e39b476f6289e3509f1324fc86bb57a85d0ac832270c80629c04f301a749e018789c842e90cc3f2167445854e0f0ed99
 WHIRLPOOL 
984f297a23d59a129feaac40debc4aecaf64b2540cf62cae503c01cbe7413fdbeb58d18ed86b33b4da6f84a167bb7fed0fd502fca737720242dad91f7afad581
 DIST salt-2016.3.6.tar.gz 8432840 SHA256 
4cc45f48255b7e46631807b071674552872c322ab77f398c9beefbf14d6a212f SHA512 
949d70504310cd88139c520812a870e4c68e6b0c7ec6decfd157283994d6be659e7823a4453d1b6464c24fc762bc9ba61d4f6a767c4d6f65e496c7f5b6589a8d
 WHIRLPOOL 
3d5abdbe0e297cbfc1b0f7fce0d6959132bbe917abc80ad7bb368a2ec657c0c0019123a22558c3fbdec489cb20430243ff837658d55da6755a07d4ec4d35158c
+DIST salt-2016.3.7.tar.gz 8516192 SHA256 
3dd65ec44ca372c91b8254b625414cd7e795fdba274a07de902c3f33e199007b SHA512 
78f3e23f7f05c8940bdb0359bc323cdb94c027d8abe554c8504d7e978f64f25d7b1f48450aed506e58ed8cbf9c272d95741dd330617809c663451f70b8d1
 WHIRLPOOL 
69e72d8a15310b5c1578de8c43d4a2f71cf1bdf3ae827a6283720f17a74972fd3d3fe84a95f045df77fdde82614ac6a30f549176fc44062569f40e8969e7f6fe
 DIST salt-2017.7.0.tar.gz 11399842 SHA256 
aaf45f8dcf95a20b56072e620100432d058ab297210c4902dc90e197b236b064 SHA512 
21d8350413ad6a262d4c19c4cb3cbd4bc718f411bab49141626729b659c1ee72340542b342ec0fb012cb11c313bd56ec6534416d2128ae548ed8950affb6c834
 WHIRLPOOL 
e9716b689069c79922c9e47d430ed16efc8adb9ba528202cfc86d00a39e746b3723e12f2f6abf443a8ae5adb64d81bbd916e395973ddf6639dcbc32d589b6881

diff --git a/app-admin/salt/salt-2016.11.7.ebuild 
b/app-admin/salt/salt-2016.11.7.ebuild
new file mode 100644
index 000..e68adad560f
--- /dev/null
+++ b/app-admin/salt/salt-2016.11.7.ebuild
@@ -0,0 +1,146 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils systemd distutils-r1
+
+DESCRIPTION="Salt is a remote execution and configuration manager"
+HOMEPAGE="https://saltstack.com/community/;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/${PN}stack/${PN}.git;
+   EGIT_BRANCH="develop"
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~x86 ~amd64"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="cherrypy ldap libcloud libvirt gnupg keyring mako mongodb mysql neutron 
nova"
+IUSE+=" openssl portage profile redis selinux test timelib raet +zeromq 
vim-syntax"
+
+RDEPEND="sys-apps/pciutils
+   dev-python/jinja[${PYTHON_USEDEP}]
+   >=dev-python/msgpack-0.3[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/markupsafe[${PYTHON_USEDEP}]
+   >=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=www-servers/tornado-4.2.1[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: app-admin/salt/

2017-08-15 Thread Manuel Rüger
commit: 1497049565c26d3556ceba08b0429779e621367c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Aug 15 16:57:37 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Aug 15 16:58:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14970495

app-admin/salt: Remove old

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 app-admin/salt/Manifest  |   4 -
 app-admin/salt/salt-2016.11.4.ebuild | 146 ---
 app-admin/salt/salt-2016.11.5.ebuild | 146 ---
 app-admin/salt/salt-2016.11.6.ebuild | 146 ---
 app-admin/salt/salt-2016.3.6.ebuild  | 142 --
 5 files changed, 584 deletions(-)

diff --git a/app-admin/salt/Manifest b/app-admin/salt/Manifest
index b1ea0687f61..61ca6b524eb 100644
--- a/app-admin/salt/Manifest
+++ b/app-admin/salt/Manifest
@@ -1,9 +1,5 @@
 DIST salt-2015.5.10.tar.gz 5693422 SHA256 
863a96e70f8521af35fe11b10d25b3205a0bfbba9a8aee02e2842aa7106496fd SHA512 
78a4cbe5c771208e957360689a25ae4e44566987e07e7fda54e6db9028485eacc6ad016c65c981090f9b5d95331e46048a094aecc27703b3956c06ab6ebad95d
 WHIRLPOOL 
805b48df07707d85d8338251f26c72164a5421731fc11f5c933b72af97348a2f11ee35889f72ec032acbea275e98575d35786b56fd84a7917f8fdbc30567ae86
 DIST salt-2015.8.13.tar.gz 7036243 SHA256 
cca82c9a4f267692660b098c1f76e54ab6a24131391893719bde0eb3a1ed2959 SHA512 
ec8626f7360542bfeea90fc3d6fd9d9d015da4c2a6adf9957c22501ed9531b0a44d2cbc4853c41856b4cd46c142d2441884ec99700f3c0a5310cc428f9f1ec2a
 WHIRLPOOL 
c21f3bdc5fd674ea664c7e8fd58ef6685328a6ee3679850f3e9a085b1e604e1224a3323b906b47075fb8dd39f373583fb549e7b0f3f725d44928bcf716955a10
-DIST salt-2016.11.4.tar.gz 9360198 SHA256 
fb4109b28d3fd898291c162e42ef843fbd4c3e57244075670fa8f366e705765f SHA512 
ba928b61766d34774ce2e623fa79a46f6d373295c55b336e1b451e6a4afb0d547d78ceb9e466b64d8ba8bdbf2e750cbb77d008bc76308602729ae08241b8d346
 WHIRLPOOL 
cb599c83d1adb3c0281106cf447df42da1439f033f23cfc8370edc537fd2d60af66c4451dcedb12aee0447499184ab413ce1cf200b26b3ef48c8932bccb977be
-DIST salt-2016.11.5.tar.gz 9246550 SHA256 
b81427a4a3e47a98726f948bdc16a5b6b366f93fdac0b2c817e8f87d9036f8be SHA512 
9afb40dbd3a508eacc4350050763e2b219817d7de25ccf2d61d7f74b857238922ea40cc4c6372fd520bc6f524d84fb0a2d65f9890bedd79d0fc6c177edf9
 WHIRLPOOL 
684c8f147fbe38928b3f7510e704654270fcc4aacdf81c4f3b90a9f275566a2b8cf2155aff223d3ead2740d79e479d10cf233b4386b8e76ddb7b481f3471ebb6
-DIST salt-2016.11.6.tar.gz 9410028 SHA256 
9031af68d31d0416fe3161526ef122a763afc6182bd63fe48b6c4d0a16a0703a SHA512 
8b375eeaf8380c750700ae9b500e012f0b8ae281c8b5aa68d3443393a5bb7dd46612f2aeb3ba01719dd28d9e128dc88f1faa8023f5f5e7ff684a1f0483c30120
 WHIRLPOOL 
c74aa93b60851a4978746fd0fe60f4fcbe0e8bb447cb19fcd3eede9d5880ef3ece96b2d9dc4cab4d8f09f08ce9ad2fd9d4bb63c295aefcf25b178e4c3c77d992
 DIST salt-2016.11.7.tar.gz 9409315 SHA256 
279fa5bd73b5616620f628234575140f91df28b0d40d931569f179efabf27a2d SHA512 
5bb52d75fafd57cd8efebe9b94dc3b53e39b476f6289e3509f1324fc86bb57a85d0ac832270c80629c04f301a749e018789c842e90cc3f2167445854e0f0ed99
 WHIRLPOOL 
984f297a23d59a129feaac40debc4aecaf64b2540cf62cae503c01cbe7413fdbeb58d18ed86b33b4da6f84a167bb7fed0fd502fca737720242dad91f7afad581
-DIST salt-2016.3.6.tar.gz 8432840 SHA256 
4cc45f48255b7e46631807b071674552872c322ab77f398c9beefbf14d6a212f SHA512 
949d70504310cd88139c520812a870e4c68e6b0c7ec6decfd157283994d6be659e7823a4453d1b6464c24fc762bc9ba61d4f6a767c4d6f65e496c7f5b6589a8d
 WHIRLPOOL 
3d5abdbe0e297cbfc1b0f7fce0d6959132bbe917abc80ad7bb368a2ec657c0c0019123a22558c3fbdec489cb20430243ff837658d55da6755a07d4ec4d35158c
 DIST salt-2016.3.7.tar.gz 8516192 SHA256 
3dd65ec44ca372c91b8254b625414cd7e795fdba274a07de902c3f33e199007b SHA512 
78f3e23f7f05c8940bdb0359bc323cdb94c027d8abe554c8504d7e978f64f25d7b1f48450aed506e58ed8cbf9c272d95741dd330617809c663451f70b8d1
 WHIRLPOOL 
69e72d8a15310b5c1578de8c43d4a2f71cf1bdf3ae827a6283720f17a74972fd3d3fe84a95f045df77fdde82614ac6a30f549176fc44062569f40e8969e7f6fe
 DIST salt-2017.7.0.tar.gz 11399842 SHA256 
aaf45f8dcf95a20b56072e620100432d058ab297210c4902dc90e197b236b064 SHA512 
21d8350413ad6a262d4c19c4cb3cbd4bc718f411bab49141626729b659c1ee72340542b342ec0fb012cb11c313bd56ec6534416d2128ae548ed8950affb6c834
 WHIRLPOOL 
e9716b689069c79922c9e47d430ed16efc8adb9ba528202cfc86d00a39e746b3723e12f2f6abf443a8ae5adb64d81bbd916e395973ddf6639dcbc32d589b6881

diff --git a/app-admin/salt/salt-2016.11.4.ebuild 
b/app-admin/salt/salt-2016.11.4.ebuild
deleted file mode 100644
index e68adad560f..000
--- a/app-admin/salt/salt-2016.11.4.ebuild
+++ /dev/null
@@ -1,146 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils systemd distutils-r1
-
-DESCRIPTION="Salt is a remote execution and configuration manager"
-HOMEPAGE="https://saltstack.com/community/;
-
-if [[ ${PV} == * ]]; then
-   inherit 

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 560be81e542cf2bc8e0198b0bdc9837e021da22d
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 16:21:15 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 16:24:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560be81e

profiles/package.mask: add gnome games to Gnome 3.24 mask

due to depending on newer vala.

 profiles/package.mask | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6a9cc1161e5..c66f941aa4d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -546,6 +546,8 @@ app-emulation/wine-any
 >=games-puzzle/swell-foop-3.23
 >=gnome-extra/gnome-tweak-tool-3.23
 >=gnome-extra/evolution-ews-3.23
+>=games-board/gnome-chess-3.23
+>=games-puzzle/gnome-sudoku-3.23
 
 # Eray Aslan  (01 Mar 2017)
 # Mask experimental software



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

2017-08-15 Thread Andreas Sturmlechner
commit: 21d0157d65621d1692d3d91cfdef677c9e10ab9c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 15:55:40 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 15:55:40 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=21d0157d

kde-plasma/powerdevil: Add USE=brightness-control

Reported-by: Arfrever in #gentoo-kde

Upstream commit: a3a61317ddebbcad526aa0496f766c9b1a4abdd6

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 kde-plasma/powerdevil/metadata.xml   | 1 +
 kde-plasma/powerdevil/powerdevil-.ebuild | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/powerdevil/metadata.xml 
b/kde-plasma/powerdevil/metadata.xml
index 86d83ec7bd..35e126c721 100644
--- a/kde-plasma/powerdevil/metadata.xml
+++ b/kde-plasma/powerdevil/metadata.xml
@@ -6,6 +6,7 @@
Gentoo KDE Project


+   Enable screen brightness 
control using app-misc/ddcutil
Enable sys-auth/consolekit 
support instead of logind session tracking
Enable wireless energy saving actions via 
kde-frameworks/bluez-qt and 
kde-frameworks/networkmanager-qt


diff --git a/kde-plasma/powerdevil/powerdevil-.ebuild 
b/kde-plasma/powerdevil/powerdevil-.ebuild
index 9da44b48ed..acd1904e99 100644
--- a/kde-plasma/powerdevil/powerdevil-.ebuild
+++ b/kde-plasma/powerdevil/powerdevil-.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 DESCRIPTION="Power management for KDE Plasma Shell"
 HOMEPAGE="https://projects.kde.org/projects/kde/workspace/powerdevil;
 KEYWORDS=""
-IUSE="consolekit +wireless"
+IUSE="+brightness-control consolekit +wireless"
 
 DEPEND="
$(add_frameworks_dep kactivities)
@@ -40,12 +40,12 @@ DEPEND="
$(add_qt_dep qtx11extras)
virtual/libudev:=
x11-libs/libxcb
+   brightness-control? ( app-misc/ddcutil )
wireless? (
$(add_frameworks_dep bluez-qt)
$(add_frameworks_dep networkmanager-qt)
)
 "
-
 RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
>=sys-power/upower-0.9.23
@@ -60,6 +60,7 @@ RDEPEND="${DEPEND}
 
 src_configure() {
local mycmakeargs=(
+   $(cmake-utils_use_find_package brightness-control DDCUtil)
$(cmake-utils_use_find_package wireless KF5BluezQt)
$(cmake-utils_use_find_package wireless KF5NetworkManagerQt)
)



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

2017-08-15 Thread William Hubbs
commit: 9e512ce426a86f0abd63ab8dc442bb3665b01219
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Aug 15 15:44:31 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 15 15:44:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e512ce4

profiles/package.mask: unmask ansible-2.3.2.0-r1

This was approved by maintainers.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4838a9789ef..6a9cc1161e5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -34,11 +34,6 @@
 =dev-java/javatoolkit-0.4.0
 =dev-java/javatoolkit-0.5.0
 
-# Denis Dupeyron  (09 Aug 2017)
-# Masked for testing of fix for long standing incompatibility between recent 
versions of ansible and jinja
-# https://github.com/ansible/ansible/issues/20494
-=app-admin/ansible-2.3.2.0-r1
-
 # Pawel Hajdan, Jr.  (09 Aug 2017)
 # Dev channel releases are only for people who are developers or want more
 # experimental features and accept a more unstable release.



[gentoo-commits] repo/gentoo:master commit in: eclass/

2017-08-15 Thread Gilles Dartiguelongue
commit: 00ae77b43af07205c13b59dbd884b00858ef386c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 15:00:08 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ae77b4

vala.eclass: allow vala 0.36

 eclass/vala.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index 37011ab34ec..f8a45cdebed 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -31,7 +31,7 @@ VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.32}
 # @ECLASS-VARIABLE: VALA_MAX_API_VERSION
 # @DESCRIPTION:
 # Maximum vala API version (e.g. 0.32).
-VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.34}
+VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.36}
 
 # @ECLASS-VARIABLE: VALA_USE_DEPEND
 # @DEFAULT_UNSET



[gentoo-commits] repo/gentoo:master commit in: games-board/gnome-chess/

2017-08-15 Thread Gilles Dartiguelongue
commit: 1bd8f0f6c099942f8fa80e5982ded4228e93f46b
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug  8 21:12:32 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd8f0f6

games-board/gnome-chess: version bump 3.22.2 → 3.24.1

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --force

 games-board/gnome-chess/Manifest  |  1 +
 games-board/gnome-chess/gnome-chess-3.24.1.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/games-board/gnome-chess/Manifest b/games-board/gnome-chess/Manifest
index 24a5dbb445b..66be526aa23 100644
--- a/games-board/gnome-chess/Manifest
+++ b/games-board/gnome-chess/Manifest
@@ -1 +1,2 @@
 DIST gnome-chess-3.22.2.tar.xz 2774176 SHA256 
dffdf7f5c5f4ea6bba7ff88b457a75ee5e4c5d9d522d27e1ea4a3d4bb3927792 SHA512 
ae939c5a79b4f0ae24a8a5b4a3efa0620aaf913ef46d944abad7f638477b0d711e6ca6b7c1e593a67100ad1ae4b423c7d87c51808911cc38e6022a3fbeafb47e
 WHIRLPOOL 
92fa30ec9ef3eba4dc3326535992214979178ef654626a4a9a4da8d9f881823c3fa1f737fe5e5676964f83c4c372d873701e36e2467d248d5730596cf91e668c
+DIST gnome-chess-3.24.1.tar.xz 2808208 SHA256 
6c9647beb7579b0a8de4e73698d931b1d9ac2efab4e7d3649f482d2c68ebf8a3 SHA512 
738bae74a547ccf9f0f3dcccaf164af785086ab54190094d602effae0f3f7c07fb6be4eba4aa8706045f70cb12c407a5151bc836d784c0cd254b1c371670e559
 WHIRLPOOL 
7ea336f0dbe5304704c24a904f3b3bcda20e086815019a702743afb52f4a32e601879d5a4558ddf230eaabecf1ff0614ae303276410cce45b22335bb784ba0d9

diff --git a/games-board/gnome-chess/gnome-chess-3.24.1.ebuild 
b/games-board/gnome-chess/gnome-chess-3.24.1.ebuild
new file mode 100644
index 000..3031a08ae53
--- /dev/null
+++ b/games-board/gnome-chess/gnome-chess-3.24.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_MIN_API_VERSION="0.36"
+
+inherit gnome2 vala readme.gentoo-r1
+
+DESCRIPTION="Play the classic two-player boardgame of chess"
+HOMEPAGE="https://wiki.gnome.org/Apps/Chess;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/glib-2.40:2
+   >=gnome-base/librsvg-2.32:2
+   >=x11-libs/gtk+-3.19:3
+"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   app-text/yelp-tools
+   dev-libs/appstream-glib
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+DOC_CONTENTS="For being able to play against computer you will
+   need to install a chess engine like, for example, games-board/gnuchess"
+
+src_prepare() {
+   gnome2_src_prepare
+   vala_src_prepare
+}
+
+src_install() {
+   gnome2_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   gnome2_pkg_postinst
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: app-dicts/gnome-dictionary/

2017-08-15 Thread Gilles Dartiguelongue
commit: cc8548bab2bbfc15192a0e20f54e8b044759f763
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 14:22:02 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc8548ba

app-dicts/gnome-dictionary: version bump 3.20.0 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 app-dicts/gnome-dictionary/Manifest|  1 +
 .../gnome-dictionary-3.24.0.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/app-dicts/gnome-dictionary/Manifest 
b/app-dicts/gnome-dictionary/Manifest
index ab90415c9d0..93538fba61b 100644
--- a/app-dicts/gnome-dictionary/Manifest
+++ b/app-dicts/gnome-dictionary/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-dictionary-3.18.1.tar.xz 864460 SHA256 
92cf2d519335b125018468c22405499fdb320e4446201c7b0f55f1a441bf05cc SHA512 
efe4d1f8810bf218bae4d393be1d26938ed3a814ed22fb96c0bded5f874c32229b215351b08462eef1c92b756640a3d4e1c0f5ea1ee49f67e519bcf0d53aba74
 WHIRLPOOL 
c20c73504e8ce0745170ec21296191d14770f252c80b208e4ac08659f80d2ece79cd2d408b4e3bdee992475a67be2ec77f4c16e501e8bbbebe8c0a95c3911e7b
 DIST gnome-dictionary-3.20.0.tar.xz 871916 SHA256 
efb36377d46eff9291d3b8fec37baab2355f9dc8bc7edb791b6a625574716121 SHA512 
9be2564b5bf543e80afdb946c16b16e2daf6c31875e352b7c2d7e34436791fc9470eadb42eba3a4c1893e2f2568e6bb88d19ea4a0b8dbb2eca2dd4c95aeaf229
 WHIRLPOOL 
4c22c0b2f7f668f5efc3857ba4bf33808d52a524b4d8ccbe1ac91839daff97d7271cf5f8196c0fbaa47266bb83f9f0705c83d1fe5949f633bfa50269554e057f
+DIST gnome-dictionary-3.24.0.tar.xz 878756 SHA256 
41e7064a0cfab18e881a95ce9f1712ee5c9f426904b16f3bc04c35ebd1bbd9f2 SHA512 
1c31149b02978a1840563941767e3ce2be4f6a5e790eb9126c0f0c50d932987f46447fe3bac0e2eb8ce87be1521d13e56d8a14e86407e367a6dd76cd5a77de30
 WHIRLPOOL 
3daf0e1efcf0783e6ad0d97877ff41037df0c257f60e95920d7dd1948a0f1c495964ee96497c826814d2e5a77a350da5eb0e5b6a49127065abd1264490f35010

diff --git a/app-dicts/gnome-dictionary/gnome-dictionary-3.24.0.ebuild 
b/app-dicts/gnome-dictionary/gnome-dictionary-3.24.0.ebuild
new file mode 100644
index 000..72899df9509
--- /dev/null
+++ b/app-dicts/gnome-dictionary/gnome-dictionary-3.24.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Dictionary utility for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Dictionary;
+
+LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
+SLOT="0/10" # subslot = suffix of libgdict-1.0.so
+IUSE="debug +introspection ipv6"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.42:2[dbus]
+   x11-libs/cairo:=
+   >=x11-libs/gtk+-3.21.1:3
+   x11-libs/pango
+   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   gnome-base/gsettings-desktop-schemas
+   !

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

2017-08-15 Thread Gilles Dartiguelongue
commit: 0f9dab4437125d3bcc901fc59460ae53b4f18c84
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 14:52:38 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9dab44

dev-libs/vala-common: version ump 0.34.9 → 0.36.4

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-libs/vala-common/Manifest  |  1 +
 dev-libs/vala-common/vala-common-0.36.4.ebuild | 76 ++
 2 files changed, 77 insertions(+)

diff --git a/dev-libs/vala-common/Manifest b/dev-libs/vala-common/Manifest
index b558937b49c..799d2df52b5 100644
--- a/dev-libs/vala-common/Manifest
+++ b/dev-libs/vala-common/Manifest
@@ -1,3 +1,4 @@
 DIST vala-0.32.1.tar.xz 2759528 SHA256 
dd0d47e548a34cfb1e4b04149acd082a86414c49057ffb79902eb9a508a161a9 SHA512 
d59db1bd9132f93f187c30ccabff9d21fe8685293a6494e5b009d883de4f844cc4b8dc5d3b6eb4e026a93490f2e4ff7ba83ff22a093c6f8f85e68d83f5fe1bb0
 WHIRLPOOL 
d61a171cacb62f008e15408729b809f9a13f11880395526a9890ddfed1a41d0ad021c57c8d9d93ffdf6f99ee5231fffdb4fa1763d8b7238a8f62ae67f4aa22ca
 DIST vala-0.34.8.tar.xz 2778228 SHA256 
22899bad63436ccfab4abc44face3bf4c1e4e72dea5891d67626dc360078c0a3 SHA512 
03739173aa2b4e5d476037c77ac86543b97bd6eeb94f40dcce952da127e32baefa0dfa83f9d6e8ea254d4aee5ecd557964520926239bd119da72c771e30ece14
 WHIRLPOOL 
b5874c5b08427d758fdd0e02f1f431296acc7451c609c75b06017e26ea11c835b89ddd1803de0a24f957b0c7f2ad6f4473c674b8cc76317a84c0d6d3b5ddaf8b
 DIST vala-0.34.9.tar.xz 2783952 SHA256 
36662f77e36abf9ce6f46e3015c4512276e6361553bdcc2d75566ed83a1da19d SHA512 
8128dfbb50d0db2317feb4a358310de972ecb6f4dccaceb4d55cf3a024f4d83422e3137c92238e1a0a0b4766367ad307909a1310445017c71944ac30fc68d01f
 WHIRLPOOL 
acd16be2cfea35257f041e5dcf4e5b68fd06f55929b55dcbb95624bc25c3b4230ab6cda98ef5dad7fceb31958a33318897698aec5fdbc5ba33d766cfc083b5c5
+DIST vala-0.36.4.tar.xz 2846516 SHA256 
e9f23ce711c1a72ce664d10946fbc5953f01b0b7f2a3562e7a01e362d86de059 SHA512 
cc804b9ad0bda4968660084c5d5e38761b0d478a6c504d3d2e6188fdd2deef4a4315d7278191f19b3bcbee66e0b02733deb6050d168305c85cef8f203ecc13ac
 WHIRLPOOL 
9763176101af16ae516e5183000297dcb629805d172be245bea5b02cebc04a7c3dd8227565c29170cd1ad896aef1f4a9bfd52ffebeb2ee024c0bd877a69ce348

diff --git a/dev-libs/vala-common/vala-common-0.36.4.ebuild 
b/dev-libs/vala-common/vala-common-0.36.4.ebuild
new file mode 100644
index 000..01ce4db1896
--- /dev/null
+++ b/dev-libs/vala-common/vala-common-0.36.4.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME_ORG_MODULE="vala"
+
+inherit gnome.org
+
+DESCRIPTION="Build infrastructure for packages that use Vala"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+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 
~x64-solaris"
+IUSE=""
+
+# Previously ${PN} was part of dev-lang/vala
+RDEPEND="
+   ! /dev/null
+   eend $?
+   fi
+   if has_version ' /dev/null
+   eend $?
+   fi
+   if has_version ' /dev/null
+   eend $?
+   fi
+   if has_version ' /dev/null
+   eend $?
+   if [[ -f "${EROOT}usr/share/vala-0.16/Makefile.vapigen" ]]; then
+   ebegin "Removing old vala-0.16 makefile template"
+   rm "${EROOT}usr/share/vala-0.16/Makefile.vapigen" &> 
/dev/null
+   eend $?
+   fi
+   fi
+   if has_version ' /dev/null
+   eend $?
+   if [[ -f "${EROOT}usr/share/vala-0.18/Makefile.vapigen" ]]; then
+   ebegin "Removing old vala-0.18 makefile template"
+   rm "${EROOT}usr/share/vala-0.18/Makefile.vapigen" &> 
/dev/null
+   eend $?
+   fi
+   fi
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 87a174d580091e7b71062c284a0aa3428bd9fe07
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 14:53:36 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a174d5

profiles/package.mask: add missing vala-common to Gnome 3.24 mask

 profiles/package.mask | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 1f9bd2f06a2..4838a9789ef 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -536,6 +536,7 @@ app-emulation/wine-any
 >=app-misc/tracker-1.11
 >=gnome-extra/nautilus-tracker-tags-1.11
 >=dev-lang/vala-0.35
+>=dev-libs/vala-common-0.35
 >=x11-libs/vte-0.47
 >=gnome-base/dconf-editor-3.23
 >=dev-util/devhelp-3.23



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

2017-08-15 Thread Gilles Dartiguelongue
commit: 2108b5d95f67c27436d544cde4aebaeb740a1a4c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 14:54:06 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2108b5d9

dev-lang/vala: version ump 0.34.9 → 0.36.4

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-lang/vala/Manifest   |  1 +
 dev-lang/vala/vala-0.36.4.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index b558937b49c..799d2df52b5 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -1,3 +1,4 @@
 DIST vala-0.32.1.tar.xz 2759528 SHA256 
dd0d47e548a34cfb1e4b04149acd082a86414c49057ffb79902eb9a508a161a9 SHA512 
d59db1bd9132f93f187c30ccabff9d21fe8685293a6494e5b009d883de4f844cc4b8dc5d3b6eb4e026a93490f2e4ff7ba83ff22a093c6f8f85e68d83f5fe1bb0
 WHIRLPOOL 
d61a171cacb62f008e15408729b809f9a13f11880395526a9890ddfed1a41d0ad021c57c8d9d93ffdf6f99ee5231fffdb4fa1763d8b7238a8f62ae67f4aa22ca
 DIST vala-0.34.8.tar.xz 2778228 SHA256 
22899bad63436ccfab4abc44face3bf4c1e4e72dea5891d67626dc360078c0a3 SHA512 
03739173aa2b4e5d476037c77ac86543b97bd6eeb94f40dcce952da127e32baefa0dfa83f9d6e8ea254d4aee5ecd557964520926239bd119da72c771e30ece14
 WHIRLPOOL 
b5874c5b08427d758fdd0e02f1f431296acc7451c609c75b06017e26ea11c835b89ddd1803de0a24f957b0c7f2ad6f4473c674b8cc76317a84c0d6d3b5ddaf8b
 DIST vala-0.34.9.tar.xz 2783952 SHA256 
36662f77e36abf9ce6f46e3015c4512276e6361553bdcc2d75566ed83a1da19d SHA512 
8128dfbb50d0db2317feb4a358310de972ecb6f4dccaceb4d55cf3a024f4d83422e3137c92238e1a0a0b4766367ad307909a1310445017c71944ac30fc68d01f
 WHIRLPOOL 
acd16be2cfea35257f041e5dcf4e5b68fd06f55929b55dcbb95624bc25c3b4230ab6cda98ef5dad7fceb31958a33318897698aec5fdbc5ba33d766cfc083b5c5
+DIST vala-0.36.4.tar.xz 2846516 SHA256 
e9f23ce711c1a72ce664d10946fbc5953f01b0b7f2a3562e7a01e362d86de059 SHA512 
cc804b9ad0bda4968660084c5d5e38761b0d478a6c504d3d2e6188fdd2deef4a4315d7278191f19b3bcbee66e0b02733deb6050d168305c85cef8f203ecc13ac
 WHIRLPOOL 
9763176101af16ae516e5183000297dcb629805d172be245bea5b02cebc04a7c3dd8227565c29170cd1ad896aef1f4a9bfd52ffebeb2ee024c0bd877a69ce348

diff --git a/dev-lang/vala/vala-0.36.4.ebuild b/dev-lang/vala/vala-0.36.4.ebuild
new file mode 100644
index 000..919b19f4a46
--- /dev/null
+++ b/dev-lang/vala/vala-0.36.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Compiler for the GObject type system"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1"
+SLOT="0.36"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-libs/glib-2.32:2
+   >=dev-libs/vala-common-${PV}
+"
+DEPEND="${RDEPEND}
+   !${CATEGORY}/${PN}:0
+   dev-libs/libxslt
+   sys-devel/flex
+   virtual/pkgconfig
+   virtual/yacc
+   test? (
+   dev-libs/dbus-glib
+   >=dev-libs/glib-2.26:2 )
+"
+
+src_configure() {
+   # weasyprint enables generation of PDF from HTML
+   gnome2_src_configure \
+   --disable-unversioned \
+   VALAC=: \
+   WEASYPRINT=:
+}



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

2017-08-15 Thread Gilles Dartiguelongue
commit: c845f794adf558e1b96917304afa805257d6ee36
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug 15 15:07:44 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c845f794

dev-util/devhelp: version bump 3.22.0 → 3.24.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-util/devhelp/Manifest  |  1 +
 dev-util/devhelp/devhelp-3.24.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/dev-util/devhelp/Manifest b/dev-util/devhelp/Manifest
index c4d636d191c..f6954c00465 100644
--- a/dev-util/devhelp/Manifest
+++ b/dev-util/devhelp/Manifest
@@ -1 +1,2 @@
 DIST devhelp-3.22.0.tar.xz 491908 SHA256 
59cae02e12d238cc5fc3f049d779895ba89701426d9173f5b534d4ab90c5ffb0 SHA512 
16d9853c4514d7b28381e3755e34682a2e9d64d666bb7d39094289d4990eb981efac041b7bf7f8beef5a018cab71c461ecd4e7b7a099fbc132f5b8f7b79749dc
 WHIRLPOOL 
a46088f7cf373106cfecaa87f2cac350e05fb94dc925f12e22f9f000754124dfe62845d23a14689c386167e54f0b74bdd4ec5bb2b08b0aad61c54d5f16070713
+DIST devhelp-3.24.0.tar.xz 615460 SHA256 
4858de1c815532ad160d1bf9facd28859972e3a052908a8edf73f866c8cce430 SHA512 
56b1eeaf9d3c3357d3140002bed5c29bf7b21953d964405190a1c9cad69d08000efa0220bbc36c67db4151b15ee37c37e061e6fa63c8a79f626e1ec0ce386062
 WHIRLPOOL 
fb0502408fd14ce12b77ae6f0a08cde6d95ea48ac8737ced17e845f4f4fd22eb9233acf656c1ccebec30f200905848fc87da6e0aad8bb0bf4b750df1123cc56c

diff --git a/dev-util/devhelp/devhelp-3.24.0.ebuild 
b/dev-util/devhelp/devhelp-3.24.0.ebuild
new file mode 100644
index 000..a22c80a3b51
--- /dev/null
+++ b/dev-util/devhelp/devhelp-3.24.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+# gedit-3.8 is python3 only, this also per:
+# https://bugzilla.redhat.com/show_bug.cgi?id=979450
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit gnome2 python-single-r1 toolchain-funcs
+
+DESCRIPTION="An API documentation browser for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Devhelp;
+
+LICENSE="GPL-2+"
+SLOT="0/3-3" # subslot = 3-(libdevhelp-3 soname version)
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd"
+IUSE="gedit +introspection"
+REQUIRED_USE="gedit? ( ${PYTHON_REQUIRED_USE} )"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.38:2[dbus]
+   >=x11-libs/gtk+-3.20:3
+   >=net-libs/webkit-gtk-2.6.0:4
+   introspection? ( >=dev-libs/gobject-introspection-1.30:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   gedit? (
+   ${PYTHON_DEPS}
+   app-editors/gedit[introspection,python,${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   x11-libs/gtk+[introspection] )
+   gnome-base/gsettings-desktop-schemas
+"
+DEPEND="${COMMON_DEPEND}
+   ${PYTHON_DEPS}
+   >=dev-util/gtk-doc-am-1.25
+   virtual/pkgconfig
+"
+# eautoreconf requires:
+#  dev-libs/appstream-glib
+#  sys-devel/autoconf-archive
+
+pkg_setup() {
+   use gedit && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   if ! use gedit ; then
+   sed -e '/SUBDIRS/ s/gedit-plugin//' -i misc/Makefile.{am,in} || 
die
+   fi
+
+   gnome2_src_prepare
+}
+
+src_configure() {
+   local myconf=""
+   # ICC is crazy, silence warnings (bug #154010)
+   if [[ $(tc-getCC) == "icc" ]] ; then
+   myconf="--with-compile-warnings=no"
+   fi
+   gnome2_src_configure \
+   $(use_enable introspection) \
+   ${myconf}
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/gnome-sudoku/

2017-08-15 Thread Gilles Dartiguelongue
commit: d4c32d483ae0f43355f37a45d22e1533a3f65144
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Aug  8 21:26:54 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Tue Aug 15 15:09:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4c32d48

games-puzzle/gnome-sudoku: version bump 3.22.2 → 3.24.0

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --force

 games-puzzle/gnome-sudoku/Manifest |  1 +
 .../gnome-sudoku/gnome-sudoku-3.24.0.ebuild| 37 ++
 2 files changed, 38 insertions(+)

diff --git a/games-puzzle/gnome-sudoku/Manifest 
b/games-puzzle/gnome-sudoku/Manifest
index 2e41db0c5fc..f106a53891f 100644
--- a/games-puzzle/gnome-sudoku/Manifest
+++ b/games-puzzle/gnome-sudoku/Manifest
@@ -1 +1,2 @@
 DIST gnome-sudoku-3.22.2.tar.xz 2884852 SHA256 
08c48ba0ce3497727e5e19b086d28258e4bab61834c2f7e23fce256685a5e2eb SHA512 
4f25848490d3ca1c9a777f7eaf183797c2cff9159851145520ea68d280e46743f5a0f24d5e7290c45d5d5b272ed7cd4d4748116bc573bd117638b620981f6069
 WHIRLPOOL 
d2b14560e3c887243cefea276710df97d4bba3c12a6efe368dfc208bf8d078d0ca993f1f4fd98d6a3eaf8983b1a02332e01511a76e00377e042e5783e65bdfd8
+DIST gnome-sudoku-3.24.0.tar.xz 2890256 SHA256 
04a29447889448ee5d5840cb5b2fd05ce6031c38a24809ce4919647ee6f485d7 SHA512 
3e00726be6ceebe6107f0e7c1100e1072f815dcaf0f4d5f2ce5cf75ae0393457aead001fe8b43420d20ef6e09bc8a7d6fd79d8aaa72a87c21e7c9f8d18ee0809
 WHIRLPOOL 
bb1b4dcd27c0741fdf9e1a8a01a5d3a50c0581291eb3310565c0c7f3f2061f49c8f2eeadeb76cff0d9323c56c3356017052ed66ad1a5180dd8bff03dd4ab0a4c

diff --git a/games-puzzle/gnome-sudoku/gnome-sudoku-3.24.0.ebuild 
b/games-puzzle/gnome-sudoku/gnome-sudoku-3.24.0.ebuild
new file mode 100644
index 000..be06e7d13d8
--- /dev/null
+++ b/games-puzzle/gnome-sudoku/gnome-sudoku-3.24.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_MIN_API_VERSION="0.36"
+
+inherit gnome2 vala
+
+DESCRIPTION="Test your logic skills in this number grid puzzle"
+HOMEPAGE="https://wiki.gnome.org/Apps/Sudoku;
+
+LICENSE="GPL-3+ CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/glib-2.40:2
+   dev-libs/libgee:0.8=[introspection]
+   dev-libs/json-glib
+   >=dev-libs/qqwing-1.3.4
+   x11-libs/gdk-pixbuf:2[introspection]
+   >=x11-libs/gtk+-3.19.0:3[introspection]
+   x11-libs/pango[introspection]
+"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   app-text/yelp-tools
+   dev-libs/appstream-glib
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   gnome2_src_prepare
+   vala_src_prepare
+}



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

2017-08-15 Thread Andreas Sturmlechner
commit: 59f8ceab591f86ca8dcc892885e46336ed4b5e95
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 15:03:33 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 15:03:33 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=59f8ceab

kde5.eclass: Re-order unconditional Frameworks tests disabling

To produce more compatible forceoptional-recursive tests.

 eclass/kde5.eclass | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index afc990f944..93e4f01277 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -624,11 +624,6 @@ kde5_src_prepare() {
fi
fi
 
-   # in frameworks, tests = manual tests so never build them
-   if [[ ${CATEGORY} = kde-frameworks ]] && [[ ${PN} != 
extra-cmake-modules ]]; then
-   cmake_comment_add_subdirectory tests
-   fi
-
# only build unit tests when required
if ! use_if_iuse test ; then
if [[ ${KDE_TEST} = forceoptional ]] ; then
@@ -659,6 +654,11 @@ kde5_src_prepare() {
cmake_comment_add_subdirectory autotests test tests
fi
fi
+
+   # in frameworks, tests = manual tests so never build them
+   if [[ ${CATEGORY} = kde-frameworks ]] && [[ ${PN} != 
extra-cmake-modules ]]; then
+   cmake_comment_add_subdirectory tests
+   fi
 }
 
 # @FUNCTION: kde5_src_configure



[gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-php/

2017-08-15 Thread Andreas Sturmlechner
commit: 6bbdcdb08c296840aea63328e7091e1ffa8134ca
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 11:21:33 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 11:21:33 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6bbdcdb0

dev-util/kdevelop-php: test subdirs conditionalised upstream

Upstream commit 3b3dd4d885b5a428289143db28b4b1c9efc1f53d

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-util/kdevelop-php/kdevelop-php-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/kdevelop-php/kdevelop-php-.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-.ebuild
index 35fa16b513..366514b602 100644
--- a/dev-util/kdevelop-php/kdevelop-php-.ebuild
+++ b/dev-util/kdevelop-php/kdevelop-php-.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 KDEBASE="kdevelop"
 KDE_DOC_DIR="docs"
 KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional-recursive"
+KDE_TEST="forceoptional"
 KMNAME="kdev-php"
 VIRTUALX_REQUIRED="test"
 inherit kde5



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

2017-08-15 Thread Andreas Sturmlechner
commit: 599fbba8a0b5bf9ee31215bdb2c9f518148b6f40
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 15:03:02 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 15:03:02 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=599fbba8

kde5.eclass: Update KDE_TEST documentation

 eclass/kde5.eclass | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 251026233d..afc990f944 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -105,8 +105,10 @@ fi
 # when USE=!test.
 # If set to "forceoptional", remove a Qt5Test dependency and comment test
 # subdirs from the root CMakeLists.txt in addition to the above.
-# If set to "forceoptional-recursive", remove a Qt5Test dependency and comment
-# test subdirs from *any* CMakeLists.txt in addition to the above.
+# If set to "forceoptional-recursive", remove Qt5Test dependencies and make
+# test subdirs according to KDE_TESTPATTERN from *any* CMakeLists.txt in ${S}
+# and below conditional on BUILD_TESTING. This is always meant as a short-term
+# fix and creates ${T}/${P}-tests-optional.patch to refine and submit upstream.
 if [[ ${CATEGORY} = kde-frameworks ]]; then
: ${KDE_TEST:=true}
 else



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

2017-08-15 Thread Andreas Sturmlechner
commit: ea131436455ae403f4db3c200940130bb92532d5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 14:45:47 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 14:46:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea131436

net-libs/libssh: Sort IUSE, drop unused eclass, switch HOMEPAGE to https

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-libs/libssh/libssh-.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-libs/libssh/libssh-.ebuild 
b/net-libs/libssh/libssh-.ebuild
index b42c05d96e3..193f9eb86e6 100644
--- a/net-libs/libssh/libssh-.ebuild
+++ b/net-libs/libssh/libssh-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils cmake-multilib multilib git-r3
+inherit cmake-multilib git-r3
 
 DESCRIPTION="Access a working SSH implementation by means of a library"
 HOMEPAGE="http://www.libssh.org/;
@@ -12,20 +12,19 @@ EGIT_REPO_URI="git://git.libssh.org/projects/libssh.git"
 LICENSE="LGPL-2.1"
 KEYWORDS=""
 SLOT="0"
-IUSE="debug doc examples gcrypt gssapi libressl pcap +sftp ssh1 server 
static-libs test zlib"
+IUSE="debug doc examples gcrypt gssapi libressl pcap server +sftp ssh1 
static-libs test zlib"
 # Maintainer: check IUSE-defaults at DefineOptions.cmake
 
 RDEPEND="
-   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
!gcrypt? (
!libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] 
)
libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] )
)
gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
gssapi? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
 "
-DEPEND="
-   ${RDEPEND}
+DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( >=dev-util/cmocka-0.3.1[${MULTILIB_USEDEP}] )
 "
@@ -35,12 +34,13 @@ DOCS=( AUTHORS README ChangeLog )
 EGIT_MIN_CLONE_TYPE=single
 
 src_prepare() {
+   cmake-utils_src_prepare
+
# just install the examples do not compile them
sed -i \
-e '/add_subdirectory(examples)/s/^/#DONOTWANT/' \
CMakeLists.txt || die
 
-   cmake-utils_src_prepare
 }
 
 multilib_src_configure() {



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kfilemetadata/

2017-08-15 Thread Andreas Sturmlechner
commit: 9f32a8a6e0436d53ab55e254166f5724f0f2b799
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 14:28:27 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 14:28:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f32a8a6

kde-frameworks/kfilemetadata: Disable randomly broken test

Git master has test fixing commits, let's revisit with 5.38 release.

Gentoo-bug: 627848
Package-Manager: Portage-2.3.7, Repoman-2.3.3

 kde-frameworks/kfilemetadata/kfilemetadata-5.37.0.ebuild | 9 +
 1 file changed, 9 insertions(+)

diff --git a/kde-frameworks/kfilemetadata/kfilemetadata-5.37.0.ebuild 
b/kde-frameworks/kfilemetadata/kfilemetadata-5.37.0.ebuild
index b2924d5f880..545d166e7f3 100644
--- a/kde-frameworks/kfilemetadata/kfilemetadata-5.37.0.ebuild
+++ b/kde-frameworks/kfilemetadata/kfilemetadata-5.37.0.ebuild
@@ -50,6 +50,15 @@ src_configure() {
kde5_src_configure
 }
 
+src_test() {
+   # bug #627848
+   local myctestargs=(
+   -E "(extractorcollectiontest)"
+   )
+
+   kde5_src_test
+}
+
 pkg_postinst() {
kde5_pkg_postinst
 



[gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/

2017-08-15 Thread Lars Wendler
commit: 440d4b8eb10095b6fefee012e631014492f2923a
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Aug 15 13:52:10 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Aug 15 14:02:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=440d4b8e

net-fs/nfs-utils: Removed old.

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-fs/nfs-utils/nfs-utils-1.3.1-r4.ebuild | 171 -
 1 file changed, 171 deletions(-)

diff --git a/net-fs/nfs-utils/nfs-utils-1.3.1-r4.ebuild 
b/net-fs/nfs-utils/nfs-utils-1.3.1-r4.ebuild
deleted file mode 100644
index e538fcb4923..000
--- a/net-fs/nfs-utils/nfs-utils-1.3.1-r4.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils flag-o-matic multilib autotools systemd
-
-DESCRIPTION="NFS client and server daemons"
-HOMEPAGE="http://linux-nfs.org/;
-SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86"
-IUSE="caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux 
tcpd +uuid"
-REQUIRED_USE="kerberos? ( nfsv4 )"
-RESTRICT="test" #315573
-
-# kth-krb doesn't provide the right include
-# files, and nfs-utils doesn't build against heimdal either,
-# so don't depend on virtual/krb.
-# (04 Feb 2005 agriffis)
-DEPEND_COMMON="tcpd? ( sys-apps/tcp-wrappers )
-   caps? ( sys-libs/libcap )
-   sys-libs/e2fsprogs-libs
-   >=net-nds/rpcbind-0.2.0-r1
-   net-libs/libtirpc
-   libmount? ( sys-apps/util-linux )
-   nfsdcld? ( >=dev-db/sqlite-3.3 )
-   nfsv4? (
-   <=dev-libs/libevent-2.1
-   >=net-libs/libnfsidmap-0.21-r1
-   kerberos? (
-   >=net-libs/libtirpc-0.2.4-r1[kerberos]
-   app-crypt/mit-krb5
-   )
-   nfsidmap? (
-   >=net-libs/libnfsidmap-0.24
-   >=sys-apps/keyutils-1.5.9
-   )
-   )
-   nfsv41? (
-   sys-fs/lvm2
-   )
-   uuid? ( sys-apps/util-linux )"
-RDEPEND="${DEPEND_COMMON}
-   !net-nds/portmap
-   ! 
id_resolver.conf
-   doins id_resolver.conf
-   fi
-
-   insinto /etc
-   doins "${FILESDIR}"/exports
-   keepdir /etc/exports.d
-
-   local f list=() opt_need=""
-   if use nfsv4 ; then
-   opt_need="rpc.idmapd"
-   list+=( rpc.idmapd rpc.pipefs )
-   use kerberos && list+=( rpc.gssd rpc.svcgssd )
-   fi
-   for f in nfs nfsclient rpc.statd "${list[@]}" ; do
-   newinitd "${FILESDIR}"/${f}.initd ${f}
-   done
-   newinitd "${FILESDIR}"/nfsmount.initd-1.3.1 nfsmount # Nuke after 
2015/08/01
-   for f in nfs nfsclient ; do
-   newconfd "${FILESDIR}"/${f}.confd ${f}
-   done
-   sed -i \
-   -e "/^NFS_NEEDED_SERVICES=/s:=.*:=\"${opt_need}\":" \
-   "${ED}"/etc/conf.d/nfs || die #234132
-
-   systemd_dounit systemd/*.{mount,service,target}
-   if ! use nfsv4 || ! use kerberos ; then
-   rm "${D}$(systemd_get_unitdir)"/rpc-{gssd,svcgssd}.service || 
die
-   fi
-   rm "${D}$(systemd_get_unitdir)"/nfs-config.service || die
-   sed -i -r \
-   -e "/^EnvironmentFile=/s:=.*:=${EPREFIX}/etc/conf.d/nfs:" \
-   -e '/^(After|Wants)=nfs-config.service$/d' \
-   -e 's:/usr/sbin/rpc.statd:/sbin/rpc.statd:' \
-   "${D}$(systemd_get_unitdir)"/* || die
-}
-
-pkg_postinst() {
-   # Install default xtab and friends if there's none existing.  In
-   # src_install we put them in /usr/lib/nfs for safe-keeping, but
-   # the daemons actually use the files in /var/lib/nfs.  #30486
-   local f
-   mkdir -p "${EROOT}"/var/lib/nfs #368505
-   for f in "${EROOT}"/usr/$(get_libdir)/nfs/*; do
-   [[ -e ${EROOT}/var/lib/nfs/${f##*/} ]] && continue
-   einfo "Copying default ${f##*/} from 
${EPREFIX}/usr/$(get_libdir)/nfs to ${EPREFIX}/var/lib/nfs"
-   cp -pPR "${f}" "${EROOT}"/var/lib/nfs/
-   done
-
-   if systemd_is_booted; then
-   if [[ ${REPLACING_VERSIONS} < 1.3.0 ]]; then
-   ewarn "We have switched to upstream systemd unit files. 
Since"
-   ewarn "they got renamed, you should probably enable the 
new ones."
-   ewarn "You can run 'equery files nfs-utils | grep 
systemd'"
-   ewarn "to know what services you need to enable now."
-   fi
-   else
-   ewarn "If you use OpenRC, the nfsmount service has been 
replaced with nfsclient."
-   ewarn "If you were using nfsmount, please add nfsclient and 
netmount to the"
-   ewarn "same runlevel as 

[gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/

2017-08-15 Thread Lars Wendler
commit: b2dbe930719e9ee2c0d131f774cf1d87b0c86a8a
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Aug 15 14:02:37 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Aug 15 14:02:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2dbe930

net-fs/nfs-utils: Bump to version 2.1.2_rc5

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-fs/nfs-utils/Manifest   |   1 +
 net-fs/nfs-utils/nfs-utils-2.1.2_rc5.ebuild | 190 
 2 files changed, 191 insertions(+)

diff --git a/net-fs/nfs-utils/Manifest b/net-fs/nfs-utils/Manifest
index 86af6b300a9..d5798c70b25 100644
--- a/net-fs/nfs-utils/Manifest
+++ b/net-fs/nfs-utils/Manifest
@@ -2,3 +2,4 @@ DIST nfs-utils-1.3.1.tar.bz2 785800 SHA256 
748c4afbdfd3e92017fe579f1dd3280a10db1
 DIST nfs-utils-1.3.4.tar.bz2 814545 SHA256 
c529c82a82320daae811f3d3a143f83d2714d7e7a43beadd42fcd6022c17d590 SHA512 
765c0bc55a9a0bdb2c25d8fb7189a9054fb9f2dd51726eda29f44e5d5c423e245b02307dfcfab9239276d8f44869a72732416f6e9ef5a1f80753d9243ba1b38c
 WHIRLPOOL 
6dc556ef7d00a583c222eb62a600b0d83c6f91ad65d89ca14e1fb3c8aaacf4fbae492e6f0ca3fb0821e2b666f0806ad5fddec041a1124b86b9941540cdfb08b4
 DIST nfs-utils-2.1.1.tar.bz2 820083 SHA256 
0a28416948516c26f3bfe90425b0de09b79364dc1f508bf1dda8de66e1edbb09 SHA512 
ed358280b7e124154632040bf747f6e4c3c6e4156bf90e82ff6915b1488f1c0dd65251a3a0f9b7ca96b9664d64e24b379828da9b524e64a3c769a44f4c930448
 WHIRLPOOL 
bb28ae312b64c3493a1393a5b41eda457367594a71e230379ec04ffea3eb29d60ab8254e4981b0aa9cbe778dc1fbe9b08dc8615184a35cdb22bf4e5e04e56a6c
 DIST nfs-utils-2.1.2_rc3.tar.gz 475356 SHA256 
5b379316a2cc49b07f72042b72eadee0bfe7c88e65d7b5baa4798e6cefca5a82 SHA512 
2f948994f275b405678240deecc879900cc0e72476adaf552db059364f08f0929722013d751e0bc7913c30eb3f8183d1fc7693709c063fc92e20b71edd24ccef
 WHIRLPOOL 
6a16a9cc3d22d883b6a8aa2d2f01dce81f9a1df03154a80e4aa43ae9bb878a15f0ca37951702f780341283da94d885b7be3656a950285ef79619e09dc465727f
+DIST nfs-utils-2.1.2_rc5.tar.gz 476401 SHA256 
52b32896572e0f81dffd5ccd90c367e5d00b5d371b8deef45dc744ee1b7ad2ab SHA512 
28670ca993c1bf953632086ab15cec1b6a525fb1b28243e382f246362cfb2629c9d0416f4f65c6a2f2c46202a4c6855d1924a7f8c984395ddb98b6d4f4b0cbcb
 WHIRLPOOL 
f2e2f75c0a989402f75740164870e250a12f29f4b3f0eb7102cecf57aea0d647a0a7860798f9333e8bef9efc4af72f516c885c62cd079e89470d108cdaca4b9d

diff --git a/net-fs/nfs-utils/nfs-utils-2.1.2_rc5.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.1.2_rc5.ebuild
new file mode 100644
index 000..133e06869f0
--- /dev/null
+++ b/net-fs/nfs-utils/nfs-utils-2.1.2_rc5.ebuild
@@ -0,0 +1,190 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools flag-o-matic multilib systemd
+
+DESCRIPTION="NFS client and server daemons"
+HOMEPAGE="http://linux-nfs.org/;
+
+if [[ "${PV}" = *_rc* ]] ; then
+   inherit versionator
+   MY_PV="$(replace_all_version_separators -)"
+   
SRC_URI="http://git.linux-nfs.org/?p=steved/nfs-utils.git;a=snapshot;h=refs/tags/${PN}-${MY_PV};sf=tgz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
+else
+   SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux 
tcpd +uuid"
+REQUIRED_USE="kerberos? ( nfsv4 )"
+RESTRICT="test" #315573
+
+# kth-krb doesn't provide the right include
+# files, and nfs-utils doesn't build against heimdal either,
+# so don't depend on virtual/krb.
+# (04 Feb 2005 agriffis)
+DEPEND_COMMON="tcpd? ( sys-apps/tcp-wrappers )
+   caps? ( sys-libs/libcap )
+   sys-libs/e2fsprogs-libs
+   >=net-nds/rpcbind-0.2.4
+   net-libs/libtirpc:=
+   libmount? ( sys-apps/util-linux )
+   nfsdcld? ( >=dev-db/sqlite-3.3 )
+   nfsv4? (
+   dev-libs/libevent:=
+   >=net-libs/libnfsidmap-0.21-r1
+   kerberos? (
+   >=net-libs/libtirpc-0.2.4-r1[kerberos]
+   app-crypt/mit-krb5
+   )
+   nfsidmap? (
+   >=net-libs/libnfsidmap-0.24
+   >=sys-apps/keyutils-1.5.9
+   )
+   )
+   nfsv41? (
+   sys-fs/lvm2
+   )
+   uuid? ( sys-apps/util-linux )"
+RDEPEND="${DEPEND_COMMON}
+   !net-nds/portmap
+   ! 
id_resolver.conf
+   doins id_resolver.conf
+   fi
+
+   insinto /etc
+   doins "${FILESDIR}"/exports
+   keepdir /etc/exports.d
+
+   local f list=() opt_need=""
+   if use nfsv4 ; then
+   opt_need="rpc.idmapd"
+   list+=( rpc.idmapd rpc.pipefs )
+   use kerberos && list+=( rpc.gssd rpc.svcgssd )
+   fi
+   for f in nfs nfsclient rpc.statd "${list[@]}" ; do
+   newinitd "${FILESDIR}"/${f}.initd ${f}
+  

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

2017-08-15 Thread Andreas Sturmlechner
commit: e3e81354aebe234f21608cf498b40df7f05ff8dd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug 15 13:39:15 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 13:39:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e81354

net-libs/libssh: Sort IUSE, drop unused eclass, patches before sed

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-libs/libssh/libssh-0.7.5-r1.ebuild | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/net-libs/libssh/libssh-0.7.5-r1.ebuild 
b/net-libs/libssh/libssh-0.7.5-r1.ebuild
index 082de3cdefc..6cf8db76a11 100644
--- a/net-libs/libssh/libssh-0.7.5-r1.ebuild
+++ b/net-libs/libssh/libssh-0.7.5-r1.ebuild
@@ -4,29 +4,28 @@
 EAPI=6
 
 MY_P="${PN}-${PV/_rc/rc}"
-inherit eutils cmake-multilib multilib
+inherit cmake-multilib
 
 DESCRIPTION="Access a working SSH implementation by means of a library"
-HOMEPAGE="http://www.libssh.org/;
+HOMEPAGE="https://www.libssh.org/;
 SRC_URI="https://red.libssh.org/attachments/download/218/${MY_P}.tar.xz -> 
${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
 SLOT="0/4" # subslot = soname major version
-IUSE="debug doc examples gcrypt gssapi libressl pcap +sftp ssh1 server 
static-libs test zlib"
+IUSE="debug doc examples gcrypt gssapi libressl pcap server +sftp ssh1 
static-libs test zlib"
 # Maintainer: check IUSE-defaults at DefineOptions.cmake
 
 RDEPEND="
-   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
!gcrypt? (
!libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] 
)
libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] )
)
gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
gssapi? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
 "
-DEPEND="
-   ${RDEPEND}
+DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( >=dev-util/cmocka-0.3.1[${MULTILIB_USEDEP}] )
 "
@@ -42,17 +41,17 @@ PATCHES=(
 )
 
 src_prepare() {
+   cmake-utils_src_prepare
+
# just install the examples do not compile them
sed -i \
-e '/add_subdirectory(examples)/s/^/#DONOTWANT/' \
CMakeLists.txt || die
 
# keyfile torture test is currently broken
-   sed \
+   sed -i \
-e '/torture_keyfiles/d' \
-   -i tests/unittests/CMakeLists.txt || die
-
-   cmake-utils_src_prepare
+   tests/unittests/CMakeLists.txt || die
 }
 
 multilib_src_configure() {



[gentoo-commits] repo/gentoo:master commit in: net-libs/libssh/files/, net-libs/libssh/

2017-08-15 Thread Andreas Sturmlechner
commit: cff4c91c68bcc74b06f0d2f9420480ecd0d2e1bf
Author: Mihai Moldovan  ionic  de>
AuthorDate: Tue Aug 15 12:48:58 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug 15 12:49:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cff4c91c

net-libs/libssh: Backport upstream fixes

Gentoo-bug: 627900
Package-Manager: Portage-2.3.7, Repoman-2.3.3

 .../libssh-0.7.5-fix-config-buffer-underflow.patch |  25 +
 .../files/libssh-0.7.5-fix-config-parsing.patch|  32 +++
 net-libs/libssh/libssh-0.7.5-r1.ebuild | 101 +
 3 files changed, 158 insertions(+)

diff --git 
a/net-libs/libssh/files/libssh-0.7.5-fix-config-buffer-underflow.patch 
b/net-libs/libssh/files/libssh-0.7.5-fix-config-buffer-underflow.patch
new file mode 100644
index 000..7ff03263d19
--- /dev/null
+++ b/net-libs/libssh/files/libssh-0.7.5-fix-config-buffer-underflow.patch
@@ -0,0 +1,25 @@
+From 0cffb88b80b1e8b7e292646b955e9b9ca02315c4 Mon Sep 17 00:00:00 2001
+From: Aris Adamantiadis 
+Date: Thu, 8 Jun 2017 00:22:02 +0200
+Subject: config: fix buffer underflow with unrecognized opcodes
+
+---
+ src/config.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/config.c b/src/config.c
+index 519926e7..6187c90f 100644
+--- a/src/config.c
 b/src/config.c
+@@ -218,7 +218,7 @@ static int ssh_config_parse_line(ssh_session session, 
const char *line,
+   }
+ 
+   opcode = ssh_config_get_opcode(keyword);
+-  if (*parsing == 1 && opcode != SOC_HOST) {
++  if (*parsing == 1 && opcode != SOC_HOST && opcode != SOC_UNSUPPORTED) {
+   if (seen[opcode] != 0) {
+   return 0;
+   }
+-- 
+cgit v1.1
+

diff --git a/net-libs/libssh/files/libssh-0.7.5-fix-config-parsing.patch 
b/net-libs/libssh/files/libssh-0.7.5-fix-config-parsing.patch
new file mode 100644
index 000..3596cf02105
--- /dev/null
+++ b/net-libs/libssh/files/libssh-0.7.5-fix-config-parsing.patch
@@ -0,0 +1,32 @@
+From 5333be5988c3789e7011598995f4df90d50d84d0 Mon Sep 17 00:00:00 2001
+From: "Artyom V. Poptsov" 
+Date: Sun, 4 Jun 2017 11:54:55 +0300
+Subject: config: Bugfix: Don't skip unseen opcodes
+
+libssh fails to read the configuration from a config file due to a
+wrong check in 'ssh_config_parse_line' procedure in 'config.c'; it's
+effectively skipping every opcode (and therefore every option) from
+the file.  The change fixes that behaviour.
+
+Signed-off-by: Artyom V. Poptsov 
+Reviewed-by: Andreas Schneider 
+---
+ src/config.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/config.c b/src/config.c
+index 6478fc5f..519926e7 100644
+--- a/src/config.c
 b/src/config.c
+@@ -219,7 +219,7 @@ static int ssh_config_parse_line(ssh_session session, 
const char *line,
+ 
+   opcode = ssh_config_get_opcode(keyword);
+   if (*parsing == 1 && opcode != SOC_HOST) {
+-  if (seen[opcode] == 0) {
++  if (seen[opcode] != 0) {
+   return 0;
+   }
+   seen[opcode] = 1;
+-- 
+cgit v1.1
+

diff --git a/net-libs/libssh/libssh-0.7.5-r1.ebuild 
b/net-libs/libssh/libssh-0.7.5-r1.ebuild
new file mode 100644
index 000..082de3cdefc
--- /dev/null
+++ b/net-libs/libssh/libssh-0.7.5-r1.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_P="${PN}-${PV/_rc/rc}"
+inherit eutils cmake-multilib multilib
+
+DESCRIPTION="Access a working SSH implementation by means of a library"
+HOMEPAGE="http://www.libssh.org/;
+SRC_URI="https://red.libssh.org/attachments/download/218/${MY_P}.tar.xz -> 
${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
+SLOT="0/4" # subslot = soname major version
+IUSE="debug doc examples gcrypt gssapi libressl pcap +sftp ssh1 server 
static-libs test zlib"
+# Maintainer: check IUSE-defaults at DefineOptions.cmake
+
+RDEPEND="
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
+   !gcrypt? (
+   !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] 
)
+   libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] )
+   )
+   gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
+   gssapi? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+"
+DEPEND="
+   ${RDEPEND}
+   doc? ( app-doc/doxygen )
+   test? ( >=dev-util/cmocka-0.3.1[${MULTILIB_USEDEP}] )
+"
+
+DOCS=( AUTHORS README ChangeLog )
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.5.0-tests.patch
+   "${FILESDIR}"/${P}-fix-config-parsing.patch
+   "${FILESDIR}"/${P}-fix-config-buffer-underflow.patch
+)
+
+src_prepare() {
+   # just install the examples do not compile them
+   sed -i \
+   -e '/add_subdirectory(examples)/s/^/#DONOTWANT/' \
+   

[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-LibXSLT/

2017-08-15 Thread Andreas Hüttel
commit: 12ddf82e8caa2bb1bab68d900ccb60c701ff2e4c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Aug 15 12:41:22 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Aug 15 12:41:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12ddf82e

dev-perl/XML-LibXSLT: Disable failing subtest

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild 
b/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild
index 3b8faaae2c2..da590b150cb 100644
--- a/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild
+++ b/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild
@@ -22,3 +22,6 @@ DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
virtual/pkgconfig
 "
+
+PERL_RM_FILES=( t/06entities.t )
+# test fails, reason unknown



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

2017-08-15 Thread Manuel Rüger
commit: 3bb8bc7bf8957952a82ed24f81c1480276b395ad
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Aug 15 12:37:27 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Aug 15 12:37:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb8bc7b

dev-python/pytoml: Initial version

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 dev-python/pytoml/Manifest |  2 ++
 dev-python/pytoml/metadata.xml | 12 
 dev-python/pytoml/pytoml-0.1.14.ebuild | 26 ++
 3 files changed, 40 insertions(+)

diff --git a/dev-python/pytoml/Manifest b/dev-python/pytoml/Manifest
new file mode 100644
index 000..9370e715d87
--- /dev/null
+++ b/dev-python/pytoml/Manifest
@@ -0,0 +1,2 @@
+DIST pytoml-0.1.14.tar.gz 7679 SHA256 
ced2c5d5c240fa96adf2ccbdfa071d51cc80415dd11a4ea800ff0ec987459d34 SHA512 
1a608dfa563ebf979bd72b7fad755d3c02afbda6cff99a0ed9a36ca8eecaaea5f89b7b39ff1f5204dd7302e8957c8304dbc4c221e56589c7654edc0fe93f3178
 WHIRLPOOL 
08c21677b00368b3de54362840179dc5b37e57072ec57799b60ccf59686eee271492aebdbd0ace93db36fdd316d79309b5b6f42c29ea39e976c32946850e2975
+DIST toml-test-fa9501a192b7c46b82059caddaef978e3de883dc.tar.gz 16627 SHA256 
a097166292d39e69b8d95f20d67e3609e48b96d88a11e76382e1e5e8e099209d SHA512 
fea37ebf547633016a83c8e59e7d01a8df2e2795fdb8954246d10e4763675474e112fc52adfed38d3d8ce25bb5a60ef820f798aec2477b0fb7755f1cd6a66a98
 WHIRLPOOL 
1e409d25c3a3b3050e4e268579f48cedea9964a148a8931eb02a5577be05cc52066a160ec5ebbd42919efd670b81e6601968df20887e152a724e1fba72db0412

diff --git a/dev-python/pytoml/metadata.xml b/dev-python/pytoml/metadata.xml
new file mode 100644
index 000..0b02f1b3ec2
--- /dev/null
+++ b/dev-python/pytoml/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   Python
+   
+   
+   avakar/pytoml
+   pytoml
+   
+

diff --git a/dev-python/pytoml/pytoml-0.1.14.ebuild 
b/dev-python/pytoml/pytoml-0.1.14.ebuild
new file mode 100644
index 000..4fbf49311c5
--- /dev/null
+++ b/dev-python/pytoml/pytoml-0.1.14.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+inherit distutils-r1
+
+TOML_TEST_COMMIT="fa9501a192b7c46b82059caddaef978e3de883dc"
+
+DESCRIPTION="A TOML-0.4.0 parser/writer for Python"
+HOMEPAGE="https://github.com/avakar/pytoml;
+SRC_URI="https://github.com/avakar/pytoml/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   test? ( 
https://github.com/avakar/toml-test/archive/${TOML_TEST_COMMIT}.tar.gz -> 
toml-test-${TOML_TEST_COMMIT}.tar.gz )"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   cp -R ../toml-test-${TOML_TEST_COMMIT}/* test/toml-test/ || die
+   ${EPYTHON} test/test.py || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/openmittsu/

2017-08-15 Thread Ulrich Müller
commit: 501e1bec49aad0b03289c80cfc21b4d9801c296d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Aug 15 12:35:08 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Aug 15 12:36:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501e1bec

net-im/openmittsu: Add USE dependency on dev-qt/qtnetwork-5.7.1:5=[ssl].

Bug: 627008
Package-Manager: Portage-2.3.7, Repoman-2.3.3

 net-im/openmittsu/openmittsu-0.9.2.109.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/openmittsu/openmittsu-0.9.2.109.ebuild 
b/net-im/openmittsu/openmittsu-0.9.2.109.ebuild
index 04c452cf647..3ac1b11f840 100644
--- a/net-im/openmittsu/openmittsu-0.9.2.109.ebuild
+++ b/net-im/openmittsu/openmittsu-0.9.2.109.ebuild
@@ -18,7 +18,7 @@ DEPEND=">=dev-libs/libsodium-1.0.11:=
>=dev-qt/qtcore-5.7.1:5=
>=dev-qt/qtgui-5.7.1:5=
>=dev-qt/qtmultimedia-5.7.1:5=
-   >=dev-qt/qtnetwork-5.7.1:5=
+   >=dev-qt/qtnetwork-5.7.1:5=[ssl]
>=dev-qt/qtsql-5.7.1:5=[sqlite]
>=dev-qt/qtwidgets-5.7.1:5=
>=media-gfx/qrencode-3.4.4-r1"



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/

2017-08-15 Thread Michał Górny
commit: d9284d682a7f68bce8934017665e56eeccf4413a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 15 11:19:07 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 15 12:35:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9284d68

sys-devel/clang: Disable RISCV following upstream

 sys-devel/clang/clang-5.0..ebuild | 2 +-
 sys-devel/clang/clang-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/clang/clang-5.0..ebuild 
b/sys-devel/clang/clang-5.0..ebuild
index df33aa3a8b7..268b06fbc7b 100644
--- a/sys-devel/clang/clang-5.0..ebuild
+++ b/sys-devel/clang/clang-5.0..ebuild
@@ -20,7 +20,7 @@ EGIT_BRANCH="release_50"
 
 # Keep in sync with sys-devel/llvm
 ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC RISCV Sparc SystemZ X86 XCore )
+   NVPTX PowerPC Sparc SystemZ X86 XCore )
 ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 

diff --git a/sys-devel/clang/clang-.ebuild 
b/sys-devel/clang/clang-.ebuild
index 57378c25ed3..73335e4fa4f 100644
--- a/sys-devel/clang/clang-.ebuild
+++ b/sys-devel/clang/clang-.ebuild
@@ -19,7 +19,7 @@ EGIT_REPO_URI="https://git.llvm.org/git/clang.git
 
 # Keep in sync with sys-devel/llvm
 ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC RISCV Sparc SystemZ X86 XCore )
+   NVPTX PowerPC Sparc SystemZ X86 XCore )
 ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/

2017-08-15 Thread Michał Górny
commit: 74f8341b0214ff640ae97a059bace9c015001e9d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 15 11:21:39 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 15 12:35:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f8341b

dev-ml/llvm-ocaml: Disable RISCV following upstream

 dev-ml/llvm-ocaml/llvm-ocaml-5.0..ebuild | 2 +-
 dev-ml/llvm-ocaml/llvm-ocaml-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-5.0..ebuild 
b/dev-ml/llvm-ocaml/llvm-ocaml-5.0..ebuild
index f094afad03b..28df8234f9e 100644
--- a/dev-ml/llvm-ocaml/llvm-ocaml-5.0..ebuild
+++ b/dev-ml/llvm-ocaml/llvm-ocaml-5.0..ebuild
@@ -19,7 +19,7 @@ EGIT_BRANCH="release_50"
 
 # Keep in sync with sys-devel/llvm
 ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC RISCV Sparc SystemZ X86 XCore )
+   NVPTX PowerPC Sparc SystemZ X86 XCore )
 ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 

diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild 
b/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild
index d5f507e9e10..b377e8cd12a 100644
--- a/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild
+++ b/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild
@@ -18,7 +18,7 @@ EGIT_REPO_URI="https://git.llvm.org/git/llvm.git
 
 # Keep in sync with sys-devel/llvm
 ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC RISCV Sparc SystemZ X86 XCore )
+   NVPTX PowerPC Sparc SystemZ X86 XCore )
 ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 



[gentoo-commits] repo/gentoo:master commit in: profiles/desc/

2017-08-15 Thread Michał Górny
commit: 9deb7d08ae3d995842418b9171caef4dac1b6335
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 15 10:23:10 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 15 12:35:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9deb7d08

profiles/desc: Include LLVM_TARGETS for all experimental targets

 profiles/desc/llvm_targets.desc | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/profiles/desc/llvm_targets.desc b/profiles/desc/llvm_targets.desc
index f48ed646f4e..1c65ccad350 100644
--- a/profiles/desc/llvm_targets.desc
+++ b/profiles/desc/llvm_targets.desc
@@ -1,18 +1,21 @@
-# Copyright 1999-2016 Gentoo Foundation.
+# Copyright 1999-2017 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
 
 AArch64 - AArch64 CPU target (arm64 in Gentoo)
 AMDGPU - AMDGPU target (supports R600 and GCN GPUs)
 ARM - ARM CPU target
+AVR - 8-bit Atmel AVR microcontroller target [EXPERIMENTAL]
 BPF - Berkeley Packet Filter target
 Hexagon - Qualcomm Hexagon DSP target
 Lanai - Lanai CPU target
 Mips - MIPS CPU target (includes MIPS64)
 MSP430 - MSP430 CPU target (experimental)
+Nios2 - Nios2 CPU target [EXPERIMENTAL]
 NVPTX - NVIDIA PTX (GPU) target (32-bit and 64-bit)
 PowerPC - PowerPC CPU target (PPC32 and PPC64)
-RISCV - RISC-V CPU target
+RISCV - RISC-V CPU target [EXPERIMENTAL]
 Sparc - Sparc CPU target
 SystemZ - SystemZ (s390x) CPU target
+WebAssembly - WebAssembly backend [EXPERIMENTAL]
 X86 - X86 CPU target (includes amd64)
 XCore - XCore CPU target



[gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/

2017-08-15 Thread Michał Górny
commit: d75b1a18d1de933041ac0f74d18f3334343cdba1
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 15 11:22:44 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 15 12:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d75b1a18

dev-ml/llvm-ocaml: Include all experimental targets in -

 dev-ml/llvm-ocaml/llvm-ocaml-.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild 
b/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild
index b377e8cd12a..b4f26a2e7dd 100644
--- a/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild
+++ b/dev-ml/llvm-ocaml/llvm-ocaml-.ebuild
@@ -17,8 +17,10 @@ EGIT_REPO_URI="https://git.llvm.org/git/llvm.git
https://github.com/llvm-mirror/llvm.git;
 
 # Keep in sync with sys-devel/llvm
+ALL_LLVM_EXPERIMENTAL_TARGETS=( AVR Nios2 RISCV WebAssembly )
 ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC Sparc SystemZ X86 XCore )
+   NVPTX PowerPC Sparc SystemZ X86 XCore
+   "${ALL_LLVM_EXPERIMENTAL_TARGETS[@]}" )
 ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 
@@ -72,7 +74,10 @@ src_configure() {
 
-DBUILD_SHARED_LIBS=ON
-DLLVM_OCAML_OUT_OF_TREE=ON
-   -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}"
+   # cheap hack: LLVM combines both anyway, and the only difference
+   # is that the former list is explicitly verified at cmake time
+   -DLLVM_TARGETS_TO_BUILD=""
+   -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}"
-DLLVM_BUILD_TESTS=$(usex test)
 
# disable various irrelevant deps and settings



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/

2017-08-15 Thread Michał Górny
commit: d77f6af91976b51327d494aef5eeb734f30deed6
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 15 12:26:08 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 15 12:35:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d77f6af9

sys-devel/clang: Finally remove back-compat USE=multitarget

 sys-devel/clang/clang-4.0.1.ebuild| 7 +++
 sys-devel/clang/clang-5.0..ebuild | 8 +++-
 sys-devel/clang/clang-.ebuild | 8 +++-
 3 files changed, 9 insertions(+), 14 deletions(-)

diff --git a/sys-devel/clang/clang-4.0.1.ebuild 
b/sys-devel/clang/clang-4.0.1.ebuild
index 9bc810a7d53..21a5adf2696 100644
--- a/sys-devel/clang/clang-4.0.1.ebuild
+++ b/sys-devel/clang/clang-4.0.1.ebuild
@@ -27,8 +27,8 @@ LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 LICENSE="UoI-NCSA"
 SLOT="$(get_major_version)"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="debug default-compiler-rt default-libcxx +doc multitarget
-   +static-analyzer test xml elibc_musl kernel_FreeBSD 
${ALL_LLVM_TARGETS[*]}"
+IUSE="debug default-compiler-rt default-libcxx +doc +static-analyzer
+   test xml elibc_musl kernel_FreeBSD ${ALL_LLVM_TARGETS[*]}"
 
 RDEPEND="
~sys-devel/llvm-${PV}:${SLOT}=[debug=,${LLVM_TARGET_USEDEPS// 
/,},${MULTILIB_USEDEP}]
@@ -51,8 +51,7 @@ PDEPEND="
default-libcxx? ( sys-libs/libcxx )"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   || ( ${ALL_LLVM_TARGETS[*]} )
-   multitarget? ( ${ALL_LLVM_TARGETS[*]} )"
+   || ( ${ALL_LLVM_TARGETS[*]} )"
 
 # We need extra level of indirection for CLANG_RESOURCE_DIR
 S=${WORKDIR}/x/y/cfe-${PV/_/}.src

diff --git a/sys-devel/clang/clang-5.0..ebuild 
b/sys-devel/clang/clang-5.0..ebuild
index 268b06fbc7b..2ecd222748d 100644
--- a/sys-devel/clang/clang-5.0..ebuild
+++ b/sys-devel/clang/clang-5.0..ebuild
@@ -27,9 +27,8 @@ LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 LICENSE="UoI-NCSA"
 SLOT="$(get_major_version)"
 KEYWORDS=""
-IUSE="debug default-compiler-rt default-libcxx +doc multitarget
-   +static-analyzer test xml z3 elibc_musl kernel_FreeBSD
-   ${ALL_LLVM_TARGETS[*]}"
+IUSE="debug default-compiler-rt default-libcxx +doc +static-analyzer
+   test xml z3 elibc_musl kernel_FreeBSD ${ALL_LLVM_TARGETS[*]}"
 
 RDEPEND="
~sys-devel/llvm-${PV}:${SLOT}=[debug=,${LLVM_TARGET_USEDEPS// 
/,},${MULTILIB_USEDEP}]
@@ -55,8 +54,7 @@ PDEPEND="
default-libcxx? ( sys-libs/libcxx )"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   || ( ${ALL_LLVM_TARGETS[*]} )
-   multitarget? ( ${ALL_LLVM_TARGETS[*]} )"
+   || ( ${ALL_LLVM_TARGETS[*]} )"
 
 # We need extra level of indirection for CLANG_RESOURCE_DIR
 S=${WORKDIR}/x/y/${P}

diff --git a/sys-devel/clang/clang-.ebuild 
b/sys-devel/clang/clang-.ebuild
index 007031b3637..8dd135d6aa2 100644
--- a/sys-devel/clang/clang-.ebuild
+++ b/sys-devel/clang/clang-.ebuild
@@ -28,9 +28,8 @@ LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 LICENSE="UoI-NCSA"
 SLOT="6"
 KEYWORDS=""
-IUSE="debug default-compiler-rt default-libcxx +doc multitarget
-   +static-analyzer test xml z3 elibc_musl kernel_FreeBSD
-   ${ALL_LLVM_TARGETS[*]}"
+IUSE="debug default-compiler-rt default-libcxx +doc +static-analyzer
+   test xml z3 elibc_musl kernel_FreeBSD ${ALL_LLVM_TARGETS[*]}"
 
 RDEPEND="
~sys-devel/llvm-${PV}:${SLOT}=[debug=,${LLVM_TARGET_USEDEPS// 
/,},${MULTILIB_USEDEP}]
@@ -56,8 +55,7 @@ PDEPEND="
default-libcxx? ( sys-libs/libcxx )"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   || ( ${ALL_LLVM_TARGETS[*]} )
-   multitarget? ( ${ALL_LLVM_TARGETS[*]} )"
+   || ( ${ALL_LLVM_TARGETS[*]} )"
 
 # We need extra level of indirection for CLANG_RESOURCE_DIR
 S=${WORKDIR}/x/y/${P}



  1   2   >