[gentoo-commits] proj/gamerlay:master commit in: games-strategy/glest/, games-strategy/glest/files/

2018-02-03 Thread Vadim A. Misbakh-Soloviov
commit: 46f799ab1e1167af047d75d8ba333e56d8da3a13
Author: Vadim A. Misbakh-Soloviov  mva  name>
AuthorDate: Sun Feb  4 06:34:53 2018 +
Commit: Vadim A. Misbakh-Soloviov  mva  name>
CommitDate: Sun Feb  4 06:37:35 2018 +
URL:https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=46f799ab

games-strategy/glest: drop due to many problems:

- Semidead upstream
- not compatible with modern GCC
- not compatible with modern glibc

Fixes https://bugs.gentoo.org/616150

 .../glest/files/glest-3.2.2-gentoo.patch   | 151 -
 .../glest/files/glest-3.2.2-xerces-c.patch |  49 ---
 games-strategy/glest/glest-3.2.2-r1.ebuild |  85 
 games-strategy/glest/metadata.xml  |   5 -
 4 files changed, 290 deletions(-)

diff --git a/games-strategy/glest/files/glest-3.2.2-gentoo.patch 
b/games-strategy/glest/files/glest-3.2.2-gentoo.patch
deleted file mode 100644
index 633fe37..000
--- a/games-strategy/glest/files/glest-3.2.2-gentoo.patch
+++ /dev/null
@@ -1,151 +0,0 @@
-diff -urN glest-source-3.2.2/glest_game/ai/ai_interface.h 
glest-source-3.2.2_mod/glest_game/ai/ai_interface.h
 glest-source-3.2.2/glest_game/ai/ai_interface.h2009-04-15 
11:17:19.0 +0400
-+++ glest-source-3.2.2_mod/glest_game/ai/ai_interface.h2009-04-15 
12:25:04.0 +0400
-@@ -84,7 +84,11 @@
-   bool isFreeCells(const Vec2i , int size, Field field);
- 
- private:
--  string getLogFilename() const   {return 
"ai"+intToStr(factionIndex)+".log";}
-+  string getLogFilename() const   {
-+string logfn=getenv("HOME");
-+logfn+="/.glest/ai"+intToStr(factionIndex)+".log";
-+return logfn;
-+  }
- };
- 
- }}//end namespace
-diff -urN glest-source-3.2.2/glest_game/ai/ai_rule.cpp 
glest-source-3.2.2_mod/glest_game/ai/ai_rule.cpp
 glest-source-3.2.2/glest_game/ai/ai_rule.cpp   2009-04-15 
11:17:19.0 +0400
-+++ glest-source-3.2.2_mod/glest_game/ai/ai_rule.cpp   2009-04-15 
11:19:02.0 +0400
-@@ -17,6 +17,8 @@
- #include "unit.h"
- #include "leak_dumper.h"
- 
-+#include 
-+
- using Shared::Graphics::Vec2i;
- 
- namespace Glest{ namespace Game{
-diff -urN glest-source-3.2.2/glest_game/game/game.cpp 
glest-source-3.2.2_mod/glest_game/game/game.cpp
 glest-source-3.2.2/glest_game/game/game.cpp2009-04-15 
11:17:19.0 +0400
-+++ glest-source-3.2.2_mod/glest_game/game/game.cpp2009-04-15 
12:21:29.0 +0400
-@@ -443,7 +443,8 @@
-   }
-   else if(key=='E'){
-   for(int i=0; i<100; ++i){
--  string path= "screens/screen" + intToStr(i) + 
".tga";
-+  string path=getenv("HOME");
-+  path+="/.glest/screens/screen" + intToStr(i) + 
".tga";
-   
-   FILE *f= fopen(path.c_str(), "rb");
-   if(f==NULL){
-diff -urN glest-source-3.2.2/glest_game/main/main.cpp 
glest-source-3.2.2_mod/glest_game/main/main.cpp
 glest-source-3.2.2/glest_game/main/main.cpp2009-04-15 
11:17:19.0 +0400
-+++ glest-source-3.2.2_mod/glest_game/main/main.cpp2009-04-15 
12:32:04.0 +0400
-@@ -114,6 +114,17 @@
- // =
- 
- int glestMain(int argc, char** argv){
-+  if (!getenv("HOME"))
-+  throw runtime_error("HOME external variable is not set");
-+
-+  char path[PATH_MAX];
-+  snprintf(path, PATH_MAX, "%s/.glest", getenv("HOME"));
-+  mkdir(path, 0750);
-+
-+  snprintf(path, PATH_MAX, "%s/.glest/screens", getenv("HOME"));
-+  mkdir(path, 0750);
-+
-+  chdir("@GENTOO_DATADIR@");
- 
-   MainWindow *mainWindow= NULL;
-   Program *program= NULL;
-diff -urN glest-source-3.2.2/glest_game/main/program.cpp 
glest-source-3.2.2_mod/glest_game/main/program.cpp
 glest-source-3.2.2/glest_game/main/program.cpp 2009-04-15 
11:17:19.0 +0400
-+++ glest-source-3.2.2_mod/glest_game/main/program.cpp 2009-04-15 
12:11:51.0 +0400
-@@ -196,9 +196,11 @@
-   updateTimer.init(GameConstants::updateFps, maxTimes);
-   updateCameraTimer.init(GameConstants::cameraFps, maxTimes);
- 
--//log start
--  Logger = Logger::getInstance();
--  logger.setFile("glest.log");
-+  //log start
-+  char path[PATH_MAX];
-+  snprintf(path, PATH_MAX, "%s/.glest/glest.log", getenv("HOME"));
-+  Logger = Logger::getInstance();
-+  logger.setFile(path);
-   logger.clear();
- 
-   //lang
-diff -urN glest-source-3.2.2/shared_lib/sources/util/leak_dumper.cpp 
glest-source-3.2.2_mod/shared_lib/sources/util/leak_dumper.cpp
 glest-source-3.2.2/shared_lib/sources/util/leak_dumper.cpp 2009-04-15 
11:17:19.0 +0400
-+++ glest-source-3.2.2_mod/shared_lib/sources/util/leak_dumper.cpp 
2009-04-15 12:04:49.0 

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

2018-02-03 Thread Lars Wendler
commit: 02e0dfe70d20108b8134963003bc1ae83c1a5a48
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  4 06:29:29 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  4 06:29:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e0dfe7

media-sound/grip: Bump to version 3.6.3

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-sound/grip/Manifest  |  1 +
 media-sound/grip/grip-3.6.3.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/media-sound/grip/Manifest b/media-sound/grip/Manifest
index 32d27c61678..c2c8bef76ca 100644
--- a/media-sound/grip/Manifest
+++ b/media-sound/grip/Manifest
@@ -3,3 +3,4 @@ DIST grip-3.4.3.tar.gz 740870 BLAKE2B 
d6b703d4ba08bf976a53e70772977a6b0fd5cd231f
 DIST grip-3.5.2.tar.gz 952153 BLAKE2B 
e82ccb50636e68ab9862d2004a4dbe59399372b76a835b33350e539a186fed516e7b4961fe930b3beb5168554324a5bebeee5ef03d1cb7731d7f9d7c1fd1feb9
 SHA512 
25fbc1aadfcbab57ae585afe0a6663d9640a3614c1b655abd238f272116eccf524e4de465784265cd1f12b48c4cdeb9fdd318f989052400a0bfc9855a5420421
 DIST grip-3.6.1.tar.gz 958967 BLAKE2B 
2355312f26bb1bf503dedf0bea07e7a0ea1ede1a90cfa215188a4c0396c2b50315ff8e6579c66a5d1284622f80022a5b6681559a169fe2eff21e1f3226466799
 SHA512 
ebb0945833189b17d814fee9a68acf25786f83fa7d1e47523512b25c1ef9d146d5d218c8422c7b37fbb7cf63558cc093795ef4078639f8e35c9947d76d6d2fcf
 DIST grip-3.6.2.tar.gz 959393 BLAKE2B 
09f7c6bbd5e82ada26795f082feb0d35cd21e14bac0e5881502c65d1e64f501eb086d5843b5120408186435ce6a95771bcf94972881fc449d4c4c2130f929066
 SHA512 
8aba6dbf4cb374dbe76fb5358f4b550187840a1248f9a60d8441a123ad5abe49d6fe4bcd491047d19432dd90a6dbd9060737f9e2ba19fa60e5e4c50ec5fd8cf8
+DIST grip-3.6.3.tar.gz 960255 BLAKE2B 
9aad33c04e98f60e5f7871e36f2e4bf616a16486482e7363d165ae7d9fc5343a52583e490b9b9757d31b051e6e96165d35931370e2681d727db7abb0854db2d5
 SHA512 
f94c5dc24a1355a024833992d05a7c05d84367a004607c9d6c7aa6d4bc24dd93b11e0a061689eb521a8abe637472011a1a4c8e968c48ac8447457cffc4d2957d

diff --git a/media-sound/grip/grip-3.6.3.ebuild 
b/media-sound/grip/grip-3.6.3.ebuild
new file mode 100644
index 000..b664cc4ecb4
--- /dev/null
+++ b/media-sound/grip/grip-3.6.3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils flag-o-matic toolchain-funcs libtool
+
+DESCRIPTION="GTK+ based Audio CD Player/Ripper"
+HOMEPAGE="https://sourceforge.net/projects/grip/;
+SRC_URI="mirror://sourceforge/grip/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="vorbis"
+
+# lame and vorbis-tools are no real RDEPENDs. But without them
+# grip cannot convert ripped files to any format. So use them as
+# a sane default.
+RDEPEND="
+   gnome-base/libgnome
+   >=gnome-base/libgnomeui-2.2.0
+   >=media-libs/id3lib-3.8.3
+   media-sound/cdparanoia
+   media-sound/lame
+   net-misc/curl
+   >=x11-libs/gtk+-2.2:2
+   x11-libs/libX11
+   x11-libs/pango
+   x11-libs/vte:0
+   vorbis? ( media-sound/vorbis-tools )
+"
+# gnome-extra/yelp, see bug 416843
+DEPEND="
+   ${RDEPEND}
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+
+   sed '/^Icon/s@grip\b@gripicon@' -i grip.desktop || die
+}
+
+src_configure() {
+   # Bug #69536
+   [[ $(tc-arch) == "x86" ]] && append-flags "-mno-sse"
+
+   strip-linguas be bg ca de en en_CA en_GB en_US es fi fr hu it ja nb nl 
pl_PL pt_BR ru sr vi zh_CN zh_HK zh_TW
+
+   econf
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/grip/files/, media-sound/grip/

2018-02-03 Thread Lars Wendler
commit: 29aef7cf9f081dce8c251f828ca13a0c7479047d
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  4 06:30:28 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  4 06:30:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29aef7cf

media-sound/grip: Removed old.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-sound/grip/Manifest  |  2 -
 .../files/grip-3.3.1-implicit-declaration.patch| 32 -
 .../grip/files/grip-3.3.1-invalid-genre-size.patch | 30 -
 media-sound/grip/grip-3.3.1-r3.ebuild  | 52 --
 media-sound/grip/grip-3.6.1.ebuild | 52 --
 5 files changed, 168 deletions(-)

diff --git a/media-sound/grip/Manifest b/media-sound/grip/Manifest
index c2c8bef76ca..16dd05b9c64 100644
--- a/media-sound/grip/Manifest
+++ b/media-sound/grip/Manifest
@@ -1,6 +1,4 @@
-DIST grip-3.3.1.tar.gz 812562 BLAKE2B 
7aa7cdb0d9c4b60d42e5af108299923466f69df1b14ecbe06b1b56b7a8719e12389c90d1478328c5e05f14cb65f7da23486c8467a7707bee35f33fa51e8e40ea
 SHA512 
380e36cb4e58180e543e1d293d38108f4879842ed63106da875e00747e98c2c06da1e706cfaf4ff26f481bba0ca941eb1201f430de04b0f313b1307ddd7e88d3
 DIST grip-3.4.3.tar.gz 740870 BLAKE2B 
d6b703d4ba08bf976a53e70772977a6b0fd5cd231fc16bf6a387497ad6db8e0ba2226ebe05d77135e7ec55911af0d3cd6cb7608da1452083335f9f8f46cbc182
 SHA512 
e7690cfe375de525f7dde7cc4d64ac9577f702a58bbd2cc1aa318dba58b208a8affe9e8e07078d6a16ba1340b0bd17edce1c8cf750631c8d677a3bd2679bb361
 DIST grip-3.5.2.tar.gz 952153 BLAKE2B 
e82ccb50636e68ab9862d2004a4dbe59399372b76a835b33350e539a186fed516e7b4961fe930b3beb5168554324a5bebeee5ef03d1cb7731d7f9d7c1fd1feb9
 SHA512 
25fbc1aadfcbab57ae585afe0a6663d9640a3614c1b655abd238f272116eccf524e4de465784265cd1f12b48c4cdeb9fdd318f989052400a0bfc9855a5420421
-DIST grip-3.6.1.tar.gz 958967 BLAKE2B 
2355312f26bb1bf503dedf0bea07e7a0ea1ede1a90cfa215188a4c0396c2b50315ff8e6579c66a5d1284622f80022a5b6681559a169fe2eff21e1f3226466799
 SHA512 
ebb0945833189b17d814fee9a68acf25786f83fa7d1e47523512b25c1ef9d146d5d218c8422c7b37fbb7cf63558cc093795ef4078639f8e35c9947d76d6d2fcf
 DIST grip-3.6.2.tar.gz 959393 BLAKE2B 
09f7c6bbd5e82ada26795f082feb0d35cd21e14bac0e5881502c65d1e64f501eb086d5843b5120408186435ce6a95771bcf94972881fc449d4c4c2130f929066
 SHA512 
8aba6dbf4cb374dbe76fb5358f4b550187840a1248f9a60d8441a123ad5abe49d6fe4bcd491047d19432dd90a6dbd9060737f9e2ba19fa60e5e4c50ec5fd8cf8
 DIST grip-3.6.3.tar.gz 960255 BLAKE2B 
9aad33c04e98f60e5f7871e36f2e4bf616a16486482e7363d165ae7d9fc5343a52583e490b9b9757d31b051e6e96165d35931370e2681d727db7abb0854db2d5
 SHA512 
f94c5dc24a1355a024833992d05a7c05d84367a004607c9d6c7aa6d4bc24dd93b11e0a061689eb521a8abe637472011a1a4c8e968c48ac8447457cffc4d2957d

diff --git a/media-sound/grip/files/grip-3.3.1-implicit-declaration.patch 
b/media-sound/grip/files/grip-3.3.1-implicit-declaration.patch
deleted file mode 100644
index 2319b772a9b..000
--- a/media-sound/grip/files/grip-3.3.1-implicit-declaration.patch
+++ /dev/null
@@ -1,32 +0,0 @@
 grip-3.3.1/src/status_window.c
-+++ grip-3.3.1/src/status_window.c
-@@ -23,6 +23,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include "status_window.h"
 grip-3.3.1/src/tray.c
-+++ grip-3.3.1/src/tray.c
-@@ -20,6 +20,9 @@
-  * USA
-  */
- 
-+#include "cdplay.h"
-+#include "common.h"
-+#include "rip.h"
- #include "tray.h"
- #include "../pixmaps/rip1.xpm"
- #include "../pixmaps/menuplay.xpm"
 grip-3.3.1/src/cdplay.c
-+++ grip-3.3.1/src/cdplay.c
-@@ -28,6 +28,7 @@
- #include "cddev.h"
- #include "discedit.h"
- #include "dialog.h"
-+#include "tray.h"
- #include "rip.h"
- #include "grip_id3.h"
- 

diff --git a/media-sound/grip/files/grip-3.3.1-invalid-genre-size.patch 
b/media-sound/grip/files/grip-3.3.1-invalid-genre-size.patch
deleted file mode 100644
index c826fc6e2e8..000
--- a/media-sound/grip/files/grip-3.3.1-invalid-genre-size.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-http://bugs.gentoo.org/285105
-
 grip-3.3.1/src/id3.c
-+++ grip-3.3.1/src/id3.c
-@@ -252,8 +252,8 @@
-   
-   if ( frames[ i ] ) {
-   char *c_data = NULL;
--  char gen[ 5 ] = "(   )";
--  char trk[ 4 ] = "   ";
-+  char gen[ 6 ] = "(   )"; /* max unsigned char: 255 */
-+  char trk[ 3 ] = "  "; /* max CDDA tracks: 99 */
-   
-   switch( frameids[ i ] ) {
-   case ID3FID_TITLE:
-@@ -278,12 +278,12 @@
- 
-   case ID3FID_CONTENTTYPE:
- c_data = gen;
--sprintf( gen, "(%d)", genre ); /* XXX */
-+snprintf( gen, 6, "(%d)", genre );
- break;
- 
-   case ID3FID_TRACKNUM:
- c_data = trk;
--sprintf( trk, "%d", tracknum ); /* XXX */
-+snprintf( trk, 3, "%d", tracknum );
- break;
- 
-   default:

diff --git a/media-sound/grip/grip-3.3.1-r3.ebuild 
b/media-sound/grip/grip-3.3.1-r3.ebuild
deleted file mode 100644
index 

[gentoo-commits] repo/gentoo:master commit in: games-simulation/openttd/

2018-02-03 Thread Lars Wendler
commit: de327d25985bcbbb47fe704f1957a1fddb67ebcb
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  4 06:06:20 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  4 06:06:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de327d25

games-simulation/openttd: Bump to version 1.7.2

Closes: https://bugs.gentoo.org/646268
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 games-simulation/openttd/Manifest |   1 +
 games-simulation/openttd/openttd-1.7.2.ebuild | 170 ++
 2 files changed, 171 insertions(+)

diff --git a/games-simulation/openttd/Manifest 
b/games-simulation/openttd/Manifest
index 14ac19cb516..d0028388230 100644
--- a/games-simulation/openttd/Manifest
+++ b/games-simulation/openttd/Manifest
@@ -1 +1,2 @@
 DIST openttd-1.7.1-source.tar.gz 10090311 BLAKE2B 
339171cd2895398ee1fedcfd24d1126fbc060b6d4530b267310b3f220448f8e6469a726e71e9882bea117585ea7b9f7271205f576ee2b26de6dec079f57f1620
 SHA512 
4a0d2ee424374b50fe0d089b86ff16b5de3159848a38143ca6745e349b6126567f1e4beda9afe2e6bc21ce1166acf719d3f5c95703a14c1379f8857e83d3
+DIST openttd-1.7.2-source.tar.gz 10097175 BLAKE2B 
a027b6ca6d3116dc3e6ad6ae43965682107268e367032418200cf1c1e16c5b5dad39c275ea57d923f17564d80cceb0e9909dc5aaf7ee230242f0ce0f46f06b1a
 SHA512 
44d25061c42cb9c81baa67a40ff31a6681dcbb121c61db74c5179a31f189919471a82b7fd3f79c2cdeef02af5b47ec35fdbdc7feed74ca2360c028869fe772e8

diff --git a/games-simulation/openttd/openttd-1.7.2.ebuild 
b/games-simulation/openttd/openttd-1.7.2.ebuild
new file mode 100644
index 000..f6e90e926ac
--- /dev/null
+++ b/games-simulation/openttd/openttd-1.7.2.ebuild
@@ -0,0 +1,170 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils gnome2-utils
+
+DESCRIPTION="OpenTTD is a clone of Transport Tycoon Deluxe"
+HOMEPAGE="http://www.openttd.org/;
+SRC_URI="http://binaries.openttd.org/releases/${PV}/${P}-source.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="aplaymidi debug dedicated iconv icu lzo +openmedia +png 
cpu_flags_x86_sse +timidity +truetype zlib"
+RESTRICT="test" # needs a graphics set in order to test
+
+RDEPEND="!dedicated? (
+   media-libs/libsdl[sound,X,video]
+   icu? (
+   dev-libs/icu-layoutex
+   dev-libs/icu-le-hb
+   >=dev-libs/icu-58.1:=
+   )
+   truetype? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   sys-libs/zlib
+   )
+   )
+   lzo? ( dev-libs/lzo:2 )
+   iconv? ( virtual/libiconv )
+   png? ( media-libs/libpng:0 )
+   zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+PDEPEND="
+   !dedicated? (
+   openmedia? (
+   games-misc/openmsx
+   games-misc/opensfx
+   )
+   aplaymidi? ( media-sound/alsa-utils )
+   !aplaymidi? ( timidity? ( media-sound/timidity++ ) )
+   )
+   openmedia? ( >=games-misc/opengfx-0.4.7 )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.6.0-cflags.patch
+)
+
+src_configure() {
+   local myopts=()
+   # there is an allegro interface available as well as sdl, but
+   # the configure for it looks broken so the sdl interface is
+   # always built instead.
+   local myopts+=( --without-allegro )
+
+   # libtimidity not needed except for some embedded platform
+   # nevertheless, it will be automagically linked if it is
+   # installed. Hence, we disable it.
+   myopts+=( --without-libtimidity )
+
+   use debug && myopts+=( --enable-debug=3 )
+
+   if use dedicated ; then
+   myopts+=( --enable-dedicated )
+   else
+   use aplaymidi && myopts+=( --with-midi='/usr/bin/aplaymidi' )
+   myopts+=(
+   $(use_with truetype freetype)
+   $(use_with icu)
+   --with-sdl
+   )
+   fi
+   if use png || { use !dedicated && use truetype; } || use zlib ; then
+   myopts+=( --with-zlib )
+   else
+   myopts+=( --without-zlib )
+   fi
+
+   # configure is a hand-written bash-script, so econf will not work.
+   # It's all built as C++, upstream uses CFLAGS internally.
+   CFLAGS="" ./configure \
+   --disable-strip \
+   --prefix-dir="${EPREFIX%/}/usr" \
+   --binary-dir="bin" \
+   --install-dir="${D}" \
+   --menu-group="Game;Simulation;" \
+   ${myopts[@]} \
+   $(use_with iconv) \
+   $(use_with png) \
+   $(use_with cpu_flags_x86_sse sse) \
+   $(use_with lzo liblzo2) \
+   || die
+}
+
+src_compile() {
+   emake VERBOSE=1

[gentoo-commits] repo/gentoo:master commit in: games-strategy/freeciv/

2018-02-03 Thread Lars Wendler
commit: 646c2153d2ca776aea214b6962b89046078156a7
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  4 06:03:18 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  4 06:03:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646c2153

games-strategy/freeciv: Bump to versions 2.5.10 and 2.6.0_beta2

Removed old.

Closes: https://bugs.gentoo.org/646266
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 games-strategy/freeciv/Manifest|  3 +-
 ...iv-2.6.0_beta1.ebuild => freeciv-2.5.10.ebuild} | 37 --
 ...6.0_beta1.ebuild => freeciv-2.6.0_beta2.ebuild} |  2 +-
 3 files changed, 17 insertions(+), 25 deletions(-)

diff --git a/games-strategy/freeciv/Manifest b/games-strategy/freeciv/Manifest
index e6798cd6bd2..1abf5589715 100644
--- a/games-strategy/freeciv/Manifest
+++ b/games-strategy/freeciv/Manifest
@@ -1,2 +1,3 @@
+DIST freeciv-2.5.10.tar.bz2 40920632 BLAKE2B 
1fb6d3d8130088c818ffe95c68a4061732278da8b7e477347cc67e7cc770526a65006844db0d3ecdb462a903fb5589d18666ffe6c9262956bf30fbc0c79742e5
 SHA512 
198ea42af083ebbfc4d79cbcbc9fc2dd548c92581301d77fd9cff0e2addc7b7255090471dc52aceb966320958b3a4c542615d5ec91a114dfc805fe993864a6f5
 DIST freeciv-2.5.9.tar.bz2 41176249 BLAKE2B 
d590318e8f03c726fd36714751ed666574951bf988a37b1ee6527a07dcdf4e637cfa525c2ecdf83d537fefdc4c3fd4a3db2c0e037424825af6d1c38f009293c9
 SHA512 
e8002dc2d0c313ec34d6245f69bf8cc9ed4f98a826d9f564e21cbca379529f6060b8efb3453ec38cb2c7efd222a4aea04033c3ff84b191271ba0af5b770c7677
-DIST freeciv-2.6.0-beta1.tar.bz2 51744941 BLAKE2B 
e9d25aee0b13c189ff3a0c6a94c8925075fb7da22f40308db5db8d3bec580f46179228bd278279f0aa1d2fff606913af94ed1b25ae4d51f677f98738a056fb97
 SHA512 
5e70239e375710ec61f69f6daaa62d1c6881df3f5ddb2905229e2c0cec5cad9ce33688693580b2a24aa5aff79471cda4dbef4f9d51df34bd491b5284b12782e5
+DIST freeciv-2.6.0-beta2.tar.bz2 51503051 BLAKE2B 
45bf863a530d726261670cbdcd16daefeecaa72e3f090d98d274baa0cd52f3cd0dd1807d660863c822a2dafd170ad51a6b45d756c43aaf6e95e70c74460ce90b
 SHA512 
e92411f43192dc28bcd492f7e78f455cbc18264c7720dd8d35eb86fcc6da5e3927d79751bd1cd6f88d2904283c0844910415df5d7e36d0b9b76ab5fe3c872976

diff --git a/games-strategy/freeciv/freeciv-2.6.0_beta1.ebuild 
b/games-strategy/freeciv/freeciv-2.5.10.ebuild
similarity index 86%
copy from games-strategy/freeciv/freeciv-2.6.0_beta1.ebuild
copy to games-strategy/freeciv/freeciv-2.5.10.ebuild
index 4fc0202df50..b235bb640ff 100644
--- a/games-strategy/freeciv/freeciv-2.6.0_beta1.ebuild
+++ b/games-strategy/freeciv/freeciv-2.5.10.ebuild
@@ -1,16 +1,15 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit flag-o-matic gnome2-utils ltprune xdg-utils
+inherit eutils flag-o-matic gnome2-utils
 
 DESCRIPTION="multiplayer strategy game (Civilization Clone)"
 HOMEPAGE="http://www.freeciv.org/;
-SRC_URI="mirror://sourceforge/freeciv/${P/_/-}.tar.bz2"
+SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-[[ ${PV} != *_beta* ]] || [[ ${PV} != *_rc* ]] || \
 KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE="auth aimodules dedicated +gtk ipv6 mapimg modpack mysql nls qt5 readline 
sdl +server +sound sqlite system-lua"
 
@@ -38,19 +37,19 @@ RDEPEND="app-arch/bzip2
dev-qt/qtwidgets:5
)
sdl? (
-   media-libs/libsdl2[video]
-   media-libs/sdl2-gfx
-   media-libs/sdl2-image[png]
-   media-libs/sdl2-ttf
+   media-libs/libsdl[video]
+   media-libs/sdl-gfx
+   media-libs/sdl-image[png]
+   media-libs/sdl-ttf
)
server? ( aimodules? ( sys-devel/libtool:2 ) )
sound? (
-   media-libs/libsdl2[sound]
-   media-libs/sdl2-mixer[vorbis]
+   media-libs/libsdl[sound]
+   media-libs/sdl-mixer[vorbis]
)
!sdl? ( !gtk? ( x11-libs/gtk+:2 ) )
)
-   system-lua? ( >=dev-lang/lua-5.3 )"
+   system-lua? ( >=dev-lang/lua-5.2 )"
 DEPEND="${RDEPEND}
virtual/pkgconfig
!dedicated? (
@@ -58,8 +57,6 @@ DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
)"
 
-S="${WORKDIR}/${P/_/-}"
-
 pkg_setup() {
if use !dedicated && use !server ; then
ewarn "Disabling server USE flag will make it impossible"
@@ -102,27 +99,21 @@ src_configure() {
 
if use dedicated ; then
myclient="no"
-   myeconfargs+=(
-   --enable-server
-   --enable-freeciv-manual=html
-   )
+   myeconfargs+=( --enable-server )
else
if use !sdl && use !gtk && ! use qt5 ; then
einfo 

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-virtualbox/files/

2018-02-03 Thread Lars Wendler
commit: dd4e89de99b74b9f59e146bf55b659cef05ef306
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Feb  3 19:54:57 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  4 05:42:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd4e89de

x11-drivers/xf86-video-virtualbox: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/7040

 .../xf86-video-virtualbox-5.1.30-sysmacros.patch | 20 
 1 file changed, 20 deletions(-)

diff --git 
a/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5.1.30-sysmacros.patch
 
b/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5.1.30-sysmacros.patch
deleted file mode 100644
index 0ee85e52f00..000
--- 
a/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5.1.30-sysmacros.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 VirtualBox-5.1.30/src/VBox/Main/src-server/linux/HostHardwareLinux.cpp
-+++ VirtualBox-5.1.30/src/VBox/Main/src-server/linux/HostHardwareLinux.cpp
-@@ -64,6 +64,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- 
- 
/*
 VirtualBox-5.1.30/src/VBox/Main/src-server/linux/USBGetDevices.cpp
-+++ VirtualBox-5.1.30/src/VBox/Main/src-server/linux/USBGetDevices.cpp
-@@ -47,6 +47,7 @@
- 
- #include 
- #include 
-+#include 
- #include 
- 
- #include 



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

2018-02-03 Thread Anthony G. Basile
commit: b11999d9269c2fc924839e95f0834e64d0fec9c6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Feb  4 04:11:30 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Feb  4 04:11:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b11999d9

dev-python/python-gnupg: version bump to 0.4.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/python-gnupg/Manifest  |  1 +
 dev-python/python-gnupg/python-gnupg-0.4.1.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/python-gnupg/Manifest b/dev-python/python-gnupg/Manifest
index c9c71e40830..0e43d665518 100644
--- a/dev-python/python-gnupg/Manifest
+++ b/dev-python/python-gnupg/Manifest
@@ -1 +1,2 @@
 DIST python-gnupg-0.4.0.tar.gz 43987 BLAKE2B 
59e72f894c5d554ba2a7c348ad3625500798ad6ac18332a3bb668b42559f52b58e3cd0f8b79ef1a99f37e796b48169d0bf36414e938e9039784cede4303cbb03
 SHA512 
f486ec97aee01cf46d055421211ff5704093a382155043b7ced6f809dc15d7669d5869038a1b26c5f1831076d85c929d781bc22e35ab293a14bc6e2f5f27fa32
+DIST python-gnupg-0.4.1.tar.gz 44534 BLAKE2B 
0b58312b9f094b29f7009bb7a44ea3607be826ae2fda958dae0ba9dd5a2d7f81843fe23a6fe336b9df85c059e5b114787dab372df42b14b83cb73fb02abee919
 SHA512 
0920a1de4d98a745f7747280672975db04c40b59ea4436745cdbefa86a0c88bfdc086d6dd312c82a0a9e9f8cafb5651f8e17d86e0ee37282b5fc36e7ac8d1a1e

diff --git a/dev-python/python-gnupg/python-gnupg-0.4.1.ebuild 
b/dev-python/python-gnupg/python-gnupg-0.4.1.ebuild
new file mode 100644
index 000..505d46b3c06
--- /dev/null
+++ b/dev-python/python-gnupg/python-gnupg-0.4.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Python wrapper for GNU Privacy Guard"
+HOMEPAGE="http://pythonhosted.org/python-gnupg/ 
https://github.com/vsajip/python-gnupg/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+
+RDEPEND="app-crypt/gnupg"
+DEPEND="${RDEPEND}"
+
+# Tests are still hanging.
+RESTRICT="test"
+
+python_test() {
+   # Note; 1 test fails under pypy only
+   "${PYTHON}" test_gnupg.py || die "Tests fail with ${EPYTHON}"
+}



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

2018-02-03 Thread Tim Harder
commit: b7227fe6c6f55318998ca7ac82e2fa6505407f60
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Feb  4 01:35:44 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Feb  4 01:37:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7227fe6

dev-python/onkyo-eiscp: initial import

 dev-python/onkyo-eiscp/Manifest|  1 +
 .../files/onkyo-eiscp-1.2.4-exclude-tests.patch| 11 ++
 dev-python/onkyo-eiscp/metadata.xml| 12 +++
 dev-python/onkyo-eiscp/onkyo-eiscp-1.2.4.ebuild| 24 ++
 4 files changed, 48 insertions(+)

diff --git a/dev-python/onkyo-eiscp/Manifest b/dev-python/onkyo-eiscp/Manifest
new file mode 100644
index 000..94bc031c814
--- /dev/null
+++ b/dev-python/onkyo-eiscp/Manifest
@@ -0,0 +1 @@
+DIST onkyo-eiscp-1.2.4.tar.gz 41394 BLAKE2B 
09bd0d91290fae8452b5ad8db36f85aaedc2286335b766a24dc1da6287f0f28eceb112e09709fc0a2b8d3d0e8c1d6e3f46633e263c7037d853786b1cec1990aa
 SHA512 
77aba800bb7472ccf4a32f116d13d04ab5339f77bee9a86c16522e77a11d991d7fc10d0fdb16f75afcdd5b84b4d063de7962e72cf4583dfbdbde69cd15b65a73

diff --git a/dev-python/onkyo-eiscp/files/onkyo-eiscp-1.2.4-exclude-tests.patch 
b/dev-python/onkyo-eiscp/files/onkyo-eiscp-1.2.4-exclude-tests.patch
new file mode 100644
index 000..03baf2d475b
--- /dev/null
+++ b/dev-python/onkyo-eiscp/files/onkyo-eiscp-1.2.4-exclude-tests.patch
@@ -0,0 +1,11 @@
+--- onkyo-eiscp-1.2.4/setup.py
 onkyo-eiscp-1.2.4/setup.py
+@@ -19,7 +19,7 @@
+ author_email='mich...@elsdoerfer.com',
+ description='Control Onkyo receivers over ethernet.',
+ long_description=long_description,
+-packages = find_packages(),
++packages = find_packages(exclude=["tests"]),
+ entry_points="""[console_scripts]\nonkyo = eiscp.script:run\n""",
+ install_requires=['docopt>=0.4.1', 'netifaces'],
+ platforms='any',

diff --git a/dev-python/onkyo-eiscp/metadata.xml 
b/dev-python/onkyo-eiscp/metadata.xml
new file mode 100644
index 000..257521c026a
--- /dev/null
+++ b/dev-python/onkyo-eiscp/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   radher...@gentoo.org
+   Tim Harder
+   
+   
+   miracle2k/onkyo-eiscp
+   onkyo-eiscp
+   
+

diff --git a/dev-python/onkyo-eiscp/onkyo-eiscp-1.2.4.ebuild 
b/dev-python/onkyo-eiscp/onkyo-eiscp-1.2.4.ebuild
new file mode 100644
index 000..355a69afdc9
--- /dev/null
+++ b/dev-python/onkyo-eiscp/onkyo-eiscp-1.2.4.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 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="Control Onkyo A/V receivers over the network"
+HOMEPAGE="https://github.com/miracle2k/onkyo-eiscp 
https://pypi.python.org/pypi/onkyo-eiscp;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}
+   >=dev-python/docopt-0.4.1[${PYTHON_USEDEP}]
+   dev-python/netifaces[${PYTHON_USEDEP}]
+"
+
+PATCHES=( "${FILESDIR}"/${P}-exclude-tests.patch )



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

2018-02-03 Thread Matt Thode
commit: 7ffba28b463b621342b94077639696d3fabb8f95
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Feb  4 00:52:24 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Feb  4 00:52:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ffba28b

dev-python/castellan: 0.12.2 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/castellan/Manifest|  2 --
 dev-python/castellan/castellan-0.12.1.ebuild | 41 
 dev-python/castellan/castellan-0.12.2.ebuild |  2 +-
 dev-python/castellan/castellan-0.4.0.ebuild  | 30 
 4 files changed, 1 insertion(+), 74 deletions(-)

diff --git a/dev-python/castellan/Manifest b/dev-python/castellan/Manifest
index ef2cc2bf00d..c5aed3b7082 100644
--- a/dev-python/castellan/Manifest
+++ b/dev-python/castellan/Manifest
@@ -1,3 +1 @@
-DIST castellan-0.12.1.tar.gz 50245 BLAKE2B 
93f56301ffb57f44fd89fccafa5a2aaede3a3b8f54bf223e1e2a3cc1f14304b2d153557d62f884140512ef72747268b9f86e1102b067a0810bf8235df2e72a7e
 SHA512 
f5e3a8a6ed6c00caa242d2a2a1431f2ddd56ff0168a62fa825eb90083cc1830fe2d8bc4d21b8ed6d1b5f6d1042cb2ad778d49e6a39b003768a61b9ff4d389027
 DIST castellan-0.12.2.tar.gz 50938 BLAKE2B 
03cec0cd85042c482432bef7a0115413a9ea03aab0dc1d4a65b5cb9893b57e2164a5174fb984c8ffcd190b27f9c26552dc242f9d79e3d60dce5a4a27479e
 SHA512 
11ed1eb7fa1e5721f26afe23299ac7b0d13b4570b1f0670f4b13ac05149bdb9b9daa85cd1b29374f7d67eaa22957088b2f42313e23d8c0adf4edef108f7b44d9
-DIST castellan-0.4.0.tar.gz 49026 BLAKE2B 
f5c4854ce4837a33c6bca369799da2f6b6109a1ebb2bebf47ee93f687214f9388039c237d474ef401b3f983d18af6e4d84f3d6fe3418d3f8989c6811a3f4
 SHA512 
2ccb2a757810c6ec125dbb8832cd09f918f9fbf84836ff69c79872471c7e4e40bc8030e305336ad9821de7c3b93617d39917387a6ab8f68443fb09d3f74d4dd5

diff --git a/dev-python/castellan/castellan-0.12.1.ebuild 
b/dev-python/castellan/castellan-0.12.1.ebuild
deleted file mode 100644
index b2400c1455a..000
--- a/dev-python/castellan/castellan-0.12.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Generic Key Manager interface for OpenStack"
-HOMEPAGE="https://pypi.python.org/pypi/castellan;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.6[${PYTHON_USEDEP}]
-   !~dev-python/cryptography-2.0[${PYTHON_USEDEP}]
-   >=dev-python/python-barbicanclient-4.0.0[${PYTHON_USEDEP}]
-   !~dev-python/python-barbicanclient-4.5.0[${PYTHON_USEDEP}]
-   !~dev-python/python-barbicanclient-4.5.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-4.0.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-4.3.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-4.4.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-context-2.14.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-i18n-3.15.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.22.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.20.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/keystoneauth-3.1.0[${PYTHON_USEDEP}]
-"

diff --git a/dev-python/castellan/castellan-0.12.2.ebuild 
b/dev-python/castellan/castellan-0.12.2.ebuild
index cb2b3e5e78b..1ce8247b5de 100644
--- a/dev-python/castellan/castellan-0.12.2.ebuild
+++ b/dev-python/castellan/castellan-0.12.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]

diff --git a/dev-python/castellan/castellan-0.4.0.ebuild 
b/dev-python/castellan/castellan-0.4.0.ebuild
deleted file mode 100644
index aa1c79087c7..000
--- a/dev-python/castellan/castellan-0.4.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Generic Key Manager interface for OpenStack"
-HOMEPAGE="https://pypi.python.org/pypi/castellan;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND="  >=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-  

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

2018-02-03 Thread Matt Thode
commit: 448f3b8e3d0219b185e013917e443483d64be2cd
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Feb  4 00:56:30 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Feb  4 00:56:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448f3b8e

dev-python/keyring: 10.6.0 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/keyring/Manifest  |  4 
 dev-python/keyring/keyring-10.3.3.ebuild | 31 --
 dev-python/keyring/keyring-10.4.0.ebuild | 37 ---
 dev-python/keyring/keyring-10.5.0.ebuild | 38 
 dev-python/keyring/keyring-10.5.1.ebuild | 38 
 dev-python/keyring/keyring-10.6.0.ebuild |  2 +-
 6 files changed, 1 insertion(+), 149 deletions(-)

diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest
index a1278959ce8..77a13cdd2af 100644
--- a/dev-python/keyring/Manifest
+++ b/dev-python/keyring/Manifest
@@ -1,6 +1,2 @@
-DIST keyring-10.3.3.tar.gz 39531 BLAKE2B 
cb1f790ab13e30a3cbcb101bbfee0dd3b9b64744edf5ae9a5f2221c3de44a8ea5b60590a0c5868454b38dab9437107cb0da04cf247fdead54fc8787afa74ff2b
 SHA512 
6087b9553d3a8df4abbcc0bacc18d769fda04c092781bd79817ceb5984a2548b5c3a4a2bda15a95040b9db59750a91d8eebbc2420d5f9dbd2fa3d6f10884e26a
-DIST keyring-10.4.0.tar.gz 39632 BLAKE2B 
c284c42b46ed07b8e7aa6d3cd609887afd7bc890a3390274c719003cca70ddfc9fa8ae3a88d314d1d33e690e8a80718434b608105335beccf0858abad9a5d28e
 SHA512 
34b1503588fedd480b2031d5557349bc6cd70108e68205a38338e091d2865df512f9a9aa3525fb11fbbb9bc06b2cfa759685495ca94b4044ec034070aa3dc0bb
-DIST keyring-10.5.0.tar.gz 40664 BLAKE2B 
6a556ccf6819729e68700b58583b9a92c6785100d8f30130bb3778ad74085fcab9cfa4eca3c381ecabedff397649b9dd2d50c8c6a4d6d6c1e22d34b7ac813056
 SHA512 
da1cd064ae896458b1bfc6906a3d40abaa45b6e69f5760fb87d7f7176eab2c909515bbf6e3f01ecd821e340fd1f967ef2aed02053d4211e87533ea4fd6b4e08c
-DIST keyring-10.5.1.tar.gz 40755 BLAKE2B 
0a4914a0f07ac898487258c8ae700ccc6883aea8581d58b3802d971f6079a646fe45467562ac752d965ff39c8b68f7fdbf5daec7f947bf88e6bca6ddb09393a6
 SHA512 
2e18487c061d67b866390e4f2f740ceb281b75e9ead01c00e2851aec9f56cffb6268334b35d64b498eaa719639fceceb29cf6adf46c6930e3506c04f672e897c
 DIST keyring-10.6.0.tar.gz 40782 BLAKE2B 
acd327711a8f7deb08d172000294d5f104e2d01b65dc7412fa8ceec1c24405206982af04e75da0dfdb7a224a4f8c9ad6f8d5f37106e68eb1add637d7d5027c4f
 SHA512 
56e9c11ac6d50d22ca74f6d677eb24da876a27c84501d8be4ad0cee44356a67213a7d255e0fdab1343411b75b55e9ab50210d0ae95879ae9f3acb8cbe73f9848
 DIST keyring-11.0.0.tar.gz 40883 BLAKE2B 
50ce8bf1265899a3054edf2fabef75694190e06e83a56b5de8e76b3d6c4ea460971d74c1a03d936765914d3b2a1812836bb56363911b706d20d59c158e8478f2
 SHA512 
d4937e84e6de18ed8fcba02d2d297ecc5a6434623c362f5608141041acbc7bc27fbf94e54a5a503a02b725df737fa8505d0d91e2c3e84298fa4044d7dc99f207

diff --git a/dev-python/keyring/keyring-10.3.3.ebuild 
b/dev-python/keyring/keyring-10.3.3.ebuild
deleted file mode 100644
index 2ed6a912560..000
--- a/dev-python/keyring/keyring-10.3.3.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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="Provides access to the system keyring service"
-HOMEPAGE="https://github.com/jaraco/keyring;
-SRC_URI="mirror://pypi/k/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="PSF-2"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
-   dev-python/secretstorage[${PYTHON_USEDEP}]
-   test? (
-   dev-python/pytest-runner[${PYTHON_USEDEP}]
-   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
-   )"
-RDEPEND=""
-
-python_test() {
-   py.test -v -v || die "testsuite failed under ${EPYTHON}"
-}

diff --git a/dev-python/keyring/keyring-10.4.0.ebuild 
b/dev-python/keyring/keyring-10.4.0.ebuild
deleted file mode 100644
index 50461563b99..000
--- a/dev-python/keyring/keyring-10.4.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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="Provides access to the system keyring service"
-HOMEPAGE="https://github.com/jaraco/keyring;
-SRC_URI="mirror://pypi/k/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="PSF-2"
-KEYWORDS="~arm amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
-   dev-python/secretstorage[${PYTHON_USEDEP}]
-   test? (
-   dev-python/pytest-runner[${PYTHON_USEDEP}]
-   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
-   

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

2018-02-03 Thread Matt Thode
commit: 479cf0077d8e88f00fb6d1aa1bd2582f6dc2bde0
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Feb  4 00:49:06 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Feb  4 00:49:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=479cf007

sys-block/tgt: 1.0.73 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-block/tgt/Manifest  |  1 -
 sys-block/tgt/tgt-1.0.71.ebuild | 65 -
 sys-block/tgt/tgt-1.0.73.ebuild |  2 +-
 3 files changed, 1 insertion(+), 67 deletions(-)

diff --git a/sys-block/tgt/Manifest b/sys-block/tgt/Manifest
index a023411240b..93665bc1367 100644
--- a/sys-block/tgt/Manifest
+++ b/sys-block/tgt/Manifest
@@ -1,3 +1,2 @@
-DIST tgt-1.0.71.tar.gz 296540 BLAKE2B 
89cc4a79119b07bd61a74c838a647b44e0c05b4cdf7e1b2d93580c503c588e6e75ba25a81f30ff4ec2bcfa2669847aff2c3243ce95b50fd53b15a25f6112
 SHA512 
db74deb199ef341577ab505b7202651e6c28aa9d62d37d3492b1775a2944284e1d3bb7c99b6d8bedd3456807641952876719ecd66553bd8c8dabbee5669f9428
 DIST tgt-1.0.72.tar.gz 296698 BLAKE2B 
6625bf87b37f4683aaf0c29264e69e400c6d238c9eaa7d9bb6fd46a76b542a8477ad8c7e9913d3dde70caaf02c323a2c01a3bd78b2d092829f4530015225012f
 SHA512 
4fdb1b8f3c2487f66629024132f7fa53ab69b9eba67d380fb18aa2d9c143e77bdf808b3ff8d1e2bf1d4420cf1792944d6f79731ddbb095d52b53d573d9f1281c
 DIST tgt-1.0.73.tar.gz 296814 BLAKE2B 
a3c81c00f716678aa9388f6a4562bd0b6fe0e2c705aee9655f942ffafae4bab3bbbaff521a8b7aefab208a354e0c1c617b85cdd08247a77d1026d0482d2b6528
 SHA512 
e6410f16c54f71d9a33d511438169a0ca305a7b9a9dd6abbaae9f0b31c18223fa1f3a11b575322d3bb94df129b4f9b186079a7d7cbd27e31734151154edab1da

diff --git a/sys-block/tgt/tgt-1.0.71.ebuild b/sys-block/tgt/tgt-1.0.71.ebuild
deleted file mode 100644
index ccb001c49fc..000
--- a/sys-block/tgt/tgt-1.0.71.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic toolchain-funcs
-
-MY_TREE="f2a6db5"
-
-DESCRIPTION="Linux SCSI target framework (tgt)"
-HOMEPAGE="http://stgt.sourceforge.net;
-SRC_URI="https://github.com/fujita/tgt/tarball/v${PV} -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="fcoe fcp ibmvio infiniband rbd"
-
-CDEPEND="dev-perl/Config-General
-   dev-libs/libxslt
-   rbd? ( sys-cluster/ceph )
-   infiniband? (
-   sys-fabric/libibverbs:=
-   sys-fabric/librdmacm:=
-   )"
-DEPEND="${CDEPEND}
-   app-text/docbook-xsl-stylesheets"
-RDEPEND="${DEPEND}
-   dev-libs/libaio
-   sys-apps/sg3_utils"
-
-S=${WORKDIR}/fujita-tgt-${MY_TREE}
-
-pkg_setup() {
-   tc-export CC
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.0.69-sysmacros.patch #580594
-
-   sed -i -e 's:\($(CC)\) $^:\1 $(LDFLAGS) $^:' usr/Makefile || die
-
-   # make sure xml docs are generated before trying to install them
-   sed -i -e "s@install: @& all @g" doc/Makefile || die
-}
-
-src_compile() {
-   local myconf
-   use ibmvio && myconf="${myconf} IBMVIO=1"
-   use infiniband && myconf="${myconf} ISCSI_RDMA=1"
-   use fcp && myconf="${myconf} FCP=1"
-   use fcoe && myconf="${myconf} FCOE=1"
-   use rbd && myconf="${myconf} CEPH_RBD=1"
-
-   emake -C usr/ KERNELSRC="${KERNEL_DIR}" ISCSI=1 ${myconf}
-   emake -C doc
-}
-
-src_install() {
-   emake  install-programs install-scripts install-doc DESTDIR="${D}" 
docdir=/usr/share/doc/${PF}
-   newinitd "${FILESDIR}"/tgtd.initd tgtd
-   newconfd "${FILESDIR}"/tgtd.confd tgtd
-   dodir /etc/tgt
-   keepdir /etc/tgt
-}

diff --git a/sys-block/tgt/tgt-1.0.73.ebuild b/sys-block/tgt/tgt-1.0.73.ebuild
index d052002e5da..0677386365d 100644
--- a/sys-block/tgt/tgt-1.0.73.ebuild
+++ b/sys-block/tgt/tgt-1.0.73.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/fujita/tgt/tarball/v${PV} -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="fcoe fcp ibmvio infiniband rbd"
 
 CDEPEND="dev-perl/Config-General



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

2018-02-03 Thread Mike Pagano
commit: dfc80c818d809f01edde22cea8476806591c6e64
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Feb  4 00:24:47 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Feb  4 00:24:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfc80c81

sys-kernel/gentoo-sources: Linux patch 4.4.115

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.4.115.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 19718de01ab..94a187fe3c3 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -94,6 +94,9 @@ DIST genpatches-4.4-117.extras.tar.xz 16452 BLAKE2B 
9e482d457abb019663d022a8c297
 DIST genpatches-4.4-118.base.tar.xz 1754144 BLAKE2B 
f64fffae61f17195d5b8402e6ea7d6212c555fb25d71953627f16bdeeaeb3b64b9c67234b0cdd83b7c81b0cda8ac4a0868f3eb158d87376350371a792640fb92
 SHA512 
93a63ac4c76a8dec29db45e8ac640af65dce3852685b329237448b69904b83b9fd193a9fcd83cdd6517f4fa11cef75d83af02a8e9662754676d9319a8088aec2
 DIST genpatches-4.4-118.experimental.tar.xz 87788 BLAKE2B 
c729f9c8c14d64c68987953e848f1e615cf034253eb85536a12fa7d542902bd6d3c0c6946d7cf83af99425711bc3b02108e9f1a0be329f48340d2a388a924443
 SHA512 
723ebb901488d7559bc79b7aa3fd108609acfcb51ba0738dbf5b5e6853dacaaa8853b59a6e073b15969017f868c9b6ebd94d2f4f5f022c9ab60959393ca05bdc
 DIST genpatches-4.4-118.extras.tar.xz 16456 BLAKE2B 
ddb6559900ab60daddd8f0f3e24bfcc486263bcdd1cade2b84564400c0c7c6635c3979c9adb86129621ca320d9c0fdbf5d03de2beb513bb1e41b4b6c96cd5ea1
 SHA512 
99b486c95be1e89e26f9d3a06f2afd2bbd96a935f55a4c3fdccdb670401b52042d1d0a025ec5ca7907be9dc557139107ebd6ec97311f9d7aad5b0d3d008c68d3
+DIST genpatches-4.4-119.base.tar.xz 1768028 BLAKE2B 
2772ca3166de6ce5833134f3e1a58295912c760364a7634591ad86edac60672b5bea9eebb2e9285d6a644ccc2091c040516776d575190dbaa9094d3f6315aa7b
 SHA512 
a0dc9eb02d5cd002ce0e00e59c5e8a3b226a89ab03dc5de25b26bdc98f6cf58b5b25962c49893b70fe6938da60f08d627f9fcf42d92df9d499da4c44aa8477bd
+DIST genpatches-4.4-119.experimental.tar.xz 87760 BLAKE2B 
d152ca04d2b064605cf65bcd0d57bd990504fc83653ee407332d74f36bb26477f96c2cd1524137e1a6fbf82bdbc8ea026ae679fb490ac719314b2cfd9db65051
 SHA512 
dd7c7c63ef1457051381a1ad84c25c4b9291b1c4ffc999da3eeb1c53adc343fd4881a715b169258284eb6fe814b077ce9fc46edb1ab2e54a4d4f05735c902420
+DIST genpatches-4.4-119.extras.tar.xz 16472 BLAKE2B 
575206fd6f1d59205d88ff8177a0497675d4f99349bdb5884800288c5bdd4f578cbb031f23b3bf5b261515f4f8fe3c65bc658311449bdb32d1e09c06aa0fc750
 SHA512 
d7dda67d16ad0ae77ee378efbc1c17dda234273951ec20b6f7f1865e86b00a42bedd1e57f46d229f7ede2a39be8e56f2986636d2cd3ba9b29ef77dd8cefccbb8
 DIST genpatches-4.4-91.base.tar.xz 1428436 BLAKE2B 
4b706e9682e883dd1954632efe5ec161347432a6260c353e160b8591f8377e6d1e1768acd2e3e72237e3ea6b7104137e3504e3f290fb12b0dabf662b0fb034c1
 SHA512 
c25be04b33558f7ebcee66df992aae38f29181474ebed82958d4d50639097b4a82eaf256d7b3576bfcd0cd3fe7682956e1d2cdbdb912d47fe86205d9b554
 DIST genpatches-4.4-91.experimental.tar.xz 87760 BLAKE2B 
d8a165fb3708192a12e826a713e896ca83785da084c9a9aeaae909473c598669867fa303636d762facd2d7bc1a857da3ba0d994ee62d008dc17955dd84181942
 SHA512 
0bbc83e076d45da1d0258bfd7f6acf6170e99891a9a857b2552f3a0fcefff4f318a8c5c8779591b0bb654760f905530de18723f2ba960618eae59a1b7219c28f
 DIST genpatches-4.4-91.extras.tar.xz 16468 BLAKE2B 
b99298cd9e57a2b8a0619495df0450373c9f5c14ff2398d76534c7167f3a563c05e67f9aff80ff97a474ae7a8cb298a4ffbc5eab25d79075aac5cc01964c3e9d
 SHA512 
229922945fcb882a0cb7dcba8bac9de51683690462a8df59e181a03d702fcb1c9b54078c5434624b4a197c481f0bb9b73dca58456ef5a5884a30bfd3644dfd6d

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.115.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.115.ebuild
new file mode 100644
index 000..c8f803e6a30
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.115.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="119"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/amd64/, releases/weekly/specs/amd64/hardened/

2018-02-03 Thread Jorge Manuel B. S. Vicetto
commit: f696bdbdba1718a3aa686c77e245964c1c96c65f
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Sun Feb  4 00:05:33 2018 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Sun Feb  4 00:06:35 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=f696bdbd

Make the minimal stage4 use the stages portage config and not the cloud-stages.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 releases/weekly/specs/amd64/hardened/stage4-minimal.spec| 2 +-
 releases/weekly/specs/amd64/hardened/stage4-nomultilib-minimal.spec | 2 +-
 releases/weekly/specs/amd64/stage4-minimal.spec | 2 +-
 releases/weekly/specs/amd64/stage4-nomultilib-minimal.spec  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/releases/weekly/specs/amd64/hardened/stage4-minimal.spec 
b/releases/weekly/specs/amd64/hardened/stage4-minimal.spec
index 92e2a8d4..a4b90390 100644
--- a/releases/weekly/specs/amd64/hardened/stage4-minimal.spec
+++ b/releases/weekly/specs/amd64/hardened/stage4-minimal.spec
@@ -5,7 +5,7 @@ rel_type: hardened
 profile: default/linux/amd64/17.0/hardened
 snapshot: latest
 source_subpath: hardened/stage3-amd64-hardened-latest
-portage_confdir: @REPO_DIR@/releases/weekly/portage/cloud-stages
+portage_confdir: @REPO_DIR@/releases/weekly/portage/stages
 
 stage4/use:
bindist

diff --git 
a/releases/weekly/specs/amd64/hardened/stage4-nomultilib-minimal.spec 
b/releases/weekly/specs/amd64/hardened/stage4-nomultilib-minimal.spec
index 6b62ed21..33d86be5 100644
--- a/releases/weekly/specs/amd64/hardened/stage4-nomultilib-minimal.spec
+++ b/releases/weekly/specs/amd64/hardened/stage4-nomultilib-minimal.spec
@@ -5,7 +5,7 @@ rel_type: hardened
 profile: default/linux/amd64/17.0/no-multilib/hardened
 snapshot: latest
 source_subpath: hardened/stage3-amd64-hardened+nomultilib-latest
-portage_confdir: @REPO_DIR@/releases/weekly/portage/cloud-stages
+portage_confdir: @REPO_DIR@/releases/weekly/portage/stages
 
 stage4/use:
bindist

diff --git a/releases/weekly/specs/amd64/stage4-minimal.spec 
b/releases/weekly/specs/amd64/stage4-minimal.spec
index 2d6ed613..68ccf01a 100644
--- a/releases/weekly/specs/amd64/stage4-minimal.spec
+++ b/releases/weekly/specs/amd64/stage4-minimal.spec
@@ -5,7 +5,7 @@ rel_type: default
 profile: default/linux/amd64/17.0
 snapshot: latest
 source_subpath: default/stage3-amd64-latest
-portage_confdir: @REPO_DIR@/releases/weekly/portage/cloud-stages
+portage_confdir: @REPO_DIR@/releases/weekly/portage/stages
 
 stage4/use:
bindist

diff --git a/releases/weekly/specs/amd64/stage4-nomultilib-minimal.spec 
b/releases/weekly/specs/amd64/stage4-nomultilib-minimal.spec
index 4b64ed3d..56baa012 100644
--- a/releases/weekly/specs/amd64/stage4-nomultilib-minimal.spec
+++ b/releases/weekly/specs/amd64/stage4-nomultilib-minimal.spec
@@ -5,7 +5,7 @@ rel_type: default
 profile: default/linux/amd64/17.0/no-multilib
 snapshot: latest
 source_subpath: default/stage3-amd64-nomultilib-latest
-portage_confdir: @REPO_DIR@/releases/weekly/portage/cloud-stages
+portage_confdir: @REPO_DIR@/releases/weekly/portage/stages
 
 stage4/use:
bindist



[gentoo-commits] proj/linux-patches: New tag: 4.4-119

2018-02-03 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Feb  4 00:04:27 2018 +

New tag: 4.4-119




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

2018-02-03 Thread Mike Pagano
commit: de7c664c0084935b751094ce9df7d055ed6a9ffd
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Feb  3 23:51:16 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 23:51:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7c664c

sys-kernel/gentoo-sources: Linux patch 4.9.80

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.9.80.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 37015cf7a70..19718de01ab 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -142,6 +142,9 @@ DIST genpatches-4.9-81.extras.tar.xz 17356 BLAKE2B 
3e26281722b92a9720a04bdc35910
 DIST genpatches-4.9-82.base.tar.xz 1500228 BLAKE2B 
a00811475170bf38c5d7b47d333bcda666d292e9ce9ea98331def2b34da2cdaa996e83742eae48beb59d358ea728b839cbfd0e2c44bfae95c45a960d6070a84b
 SHA512 
529345d0d47b0965768f1575174a4666739f5ded0f5387eebcb414e263e3a4c296e6ba2d3b9323ff71a7e269973b525d1fd9bfc29d413c470bbe6e45b7c83beb
 DIST genpatches-4.9-82.experimental.tar.xz 106392 BLAKE2B 
e732422fa294c6c4f2c41b4e75a3b4242bfc1ae2a5d3163de3b67120d09deb8d5a517f1fc02f3b77e79434e6e53fc1dd4261aac3183b0e786eff66408157c835
 SHA512 
ac3d6cbcfb08b839cb1333d144df4e34478ae60443e00a7bb6a34efbf1464f366f2c6ac271fdf82268234c2272e0454421a1c3a360f9160695a724ff6b0b9166
 DIST genpatches-4.9-82.extras.tar.xz 17356 BLAKE2B 
ed2439bfe88bce646e5b70ea03cb340910f70b9a17dcfe15921dcd53018de7358c9acd304ff83bf2894abf7a57bbb91a6c9f474f3b4e44d1094dd5e0bad2d6b6
 SHA512 
5d315412d6cb9e4f0c5fcf302592294a52da40c6c773f632d2cf581bc2af7dec487f5e883b142b46a6ecdd6171777b787f511bbaf33047d4b512fa376585
+DIST genpatches-4.9-83.base.tar.xz 1517252 BLAKE2B 
880a6c5c38583e027bf8ce6efd5d24c16f411d675e8d269406bdbf7196b540baafe7ea4e17d9c0fb3ab75605103059265fc6ae02d9bf7871468cd5bef7856c38
 SHA512 
010c2a7969207abd4c7b462fa2f9e7796e0c5f261f41064b03fd82593d00cb33db3e6b9bc2eda1dc6bab37ef4d979513545ca434c3725d71b2156c4ad5faa50e
+DIST genpatches-4.9-83.experimental.tar.xz 106424 BLAKE2B 
1255fe2d88222acd77366fe580bca9e80fc30ce4bf10de846172efdb011d7f4391eafd32a23b550e95afc14a3fb222192f0112459a1acb148c4c82bf7449f2ec
 SHA512 
1d84ab93028e0150698c8986890c0d1e06ddbbc0cb84b31a5a03130f5580e4253c78600caf20cf8c3d2bd28aa928e7c67d3c0329403ddc5b62388f3932bdeda2
+DIST genpatches-4.9-83.extras.tar.xz 17364 BLAKE2B 
127ce0405586999eb9c7013931389704067302da2b2544a95993cb4ece57324878f6037b9a7f87622a4ec5a9b14dc7133511ec9a66298482cfe9fe27850fdfd2
 SHA512 
578e6ffd62d76451b72c1443410dbb805f57056b970943d7c055b4c7beedc7007f835cace28b6b54101649eca7fff135a62dd01ffc65f738f781e52a6a579989
 DIST linux-4.1.tar.xz 83017828 BLAKE2B 
d1dc4e458db191f16306b3d2d7eb60ef5e04307406c769cccdd88beb407f8de228ab1f095a44d6e992b06d01cd896fda31dec1cdf16667f4ca0b628da594aee3
 SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 DIST linux-4.12.tar.xz 99186576 BLAKE2B 
02d031c7f2f29849c06a6b5b589af78bc486a05a758267e47f2ff16844ae8ca701fff53cb859fcc105f7ea92c0769acf8d7f7cc116444c15235ef4d63cadc8c0
 SHA512 
8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.80.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.80.ebuild
new file mode 100644
index 000..50a437fff90
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.80.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="83"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2018-02-03 Thread Tim Harder
commit: 4ee1310d547e547b8134121afbaa6d33d498dd8a
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Feb  3 23:49:25 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Feb  3 23:50:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ee1310d

dev-python/docopt: stabilize 0.6.2-r2

 dev-python/docopt/docopt-0.6.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/docopt/docopt-0.6.2-r2.ebuild 
b/dev-python/docopt/docopt-0.6.2-r2.ebuild
index 7fa8b559234..9c8f2263128 100644
--- a/dev-python/docopt/docopt-0.6.2-r2.ebuild
+++ b/dev-python/docopt/docopt-0.6.2-r2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND=""



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

2018-02-03 Thread Tim Harder
commit: 822b087a235bad1f1c37860b9544efe81a4c2424
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Feb  3 23:49:49 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Feb  3 23:50:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=822b087a

dev-python/docopt: remove old

 dev-python/docopt/docopt-0.6.2-r1.ebuild | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/dev-python/docopt/docopt-0.6.2-r1.ebuild 
b/dev-python/docopt/docopt-0.6.2-r1.ebuild
deleted file mode 100644
index 92f692dab4e..000
--- a/dev-python/docopt/docopt-0.6.2-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Pythonic argument parser, that will make you smile"
-HOMEPAGE="https://pypi.python.org/pypi/docopt https://github.com/docopt/docopt;
-SRC_URI="
-   mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
-   https://github.com/docopt/docopt/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-# not implemented in this version, git already has it
-RESTRICT=test
-
-python_test() {
-   esetup.py test
-}



[gentoo-commits] proj/releng:master commit in: releases/weekly/portage/stages/package.keywords/, ...

2018-02-03 Thread Jorge Manuel B. S. Vicetto
commit: 3a67711017557586166aea1f4ea5b7a0fe84db4f
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Sat Feb  3 23:45:31 2018 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Sat Feb  3 23:47:23 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=3a677110

Keyword newer version of portage to see if we can get past the virtual 
"troubles" and disable "rsync-verify" for the cloud stages. Move the portage 
package.keywords to the releng dir so it gets removed
from the final stage.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 .../package.keywords => cloud-stages/package.keywords/releng}/portage| 0
 releases/weekly/portage/cloud-stages/package.use/releng/portage  | 1 +
 releases/weekly/portage/stages/package.keywords/{ => releng}/portage | 0
 3 files changed, 1 insertion(+)

diff --git a/releases/weekly/portage/stages/package.keywords/portage 
b/releases/weekly/portage/cloud-stages/package.keywords/releng/portage
similarity index 100%
copy from releases/weekly/portage/stages/package.keywords/portage
copy to releases/weekly/portage/cloud-stages/package.keywords/releng/portage

diff --git a/releases/weekly/portage/cloud-stages/package.use/releng/portage 
b/releases/weekly/portage/cloud-stages/package.use/releng/portage
new file mode 100644
index ..2dedcf80
--- /dev/null
+++ b/releases/weekly/portage/cloud-stages/package.use/releng/portage
@@ -0,0 +1 @@
+sys-apps/portage -rsync-verify

diff --git a/releases/weekly/portage/stages/package.keywords/portage 
b/releases/weekly/portage/stages/package.keywords/releng/portage
similarity index 100%
rename from releases/weekly/portage/stages/package.keywords/portage
rename to releases/weekly/portage/stages/package.keywords/releng/portage



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

2018-02-03 Thread Mart Raudsepp
commit: 761858f8d2099fae09eae94a6de30718e08e0074
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:26:31 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:42:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761858f8

www-client/epiphany: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 www-client/epiphany/Manifest   |  1 -
 www-client/epiphany/epiphany-3.22.7.ebuild | 72 --
 2 files changed, 73 deletions(-)

diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest
index d8b4166567f..4e8bc6f5ac3 100644
--- a/www-client/epiphany/Manifest
+++ b/www-client/epiphany/Manifest
@@ -1,2 +1 @@
-DIST epiphany-3.22.7.tar.xz 2293224 BLAKE2B 
2b3cde7d8eec1d539614e54c4ee5911f8673bedfb59d44207dff9d5196e0b79ccba0f2ee4e42e82d9d2d08de5bfdb9a625d5ea9c3dc984f76443e680b3c55121
 SHA512 
8150952e89b86d05958bd9f9a0c78ba583764ec878220c8e328cb936108faf25a10837e038bd1a0ba1279555d2f95f819477cfddcb67c31e5b4c3533daf446bd
 DIST epiphany-3.24.5.tar.xz 3216736 BLAKE2B 
8a4dd668606521d1b0144afc9ace8607f52eac457f0059e6087216323ec1132dbe1c755e40dfe9993bf685e5444db1268ada1cdf55edc04c51058fdd256c6047
 SHA512 
a8f203d182b8c87878a3272f8b4f642b0cf4128476e0727208135cfdffeb293425cf662c58820f0d3aed2e1b20fe6dc4cf5cbb8277a398c6f533a0bea34f40f2

diff --git a/www-client/epiphany/epiphany-3.22.7.ebuild 
b/www-client/epiphany/epiphany-3.22.7.ebuild
deleted file mode 100644
index a7701018ee3..000
--- a/www-client/epiphany/epiphany-3.22.7.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# 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 eutils gnome2 virtualx
-
-DESCRIPTION="GNOME webbrowser based on Webkit"
-HOMEPAGE="https://wiki.gnome.org/Apps/Web;
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="test"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
-
-COMMON_DEPEND="
-   >=app-crypt/gcr-3.5.5:=[gtk]
-   >=app-crypt/libsecret-0.14
-   >=app-text/iso-codes-0.35
-   >=dev-libs/glib-2.44.0:2[dbus]
-   >=dev-libs/libxml2-2.6.12:2
-   >=dev-libs/libxslt-1.1.7
-   >=gnome-base/gsettings-desktop-schemas-0.0.1
-   >=net-dns/avahi-0.6.22[dbus]
-   >=net-libs/webkit-gtk-2.14.2:4=
-   >=net-libs/libsoup-2.48:2.4
-   >=x11-libs/gtk+-3.19.1:3
-   >=x11-libs/libnotify-0.5.1:=
-   gnome-base/gnome-desktop:3=
-
-   dev-db/sqlite:3
-   x11-libs/libX11
-"
-# epiphany-extensions support was removed in 3.7; let's not pretend it still 
works
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-   !www-client/epiphany-extensions
-"
-# paxctl needed for bug #407085
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=dev-util/intltool-0.50
-   sys-apps/paxctl
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # https://bugzilla.gnome.org/show_bug.cgi?id=751591
-   "${FILESDIR}"/${PN}-3.16.0-unittest-1.patch
-
-   # https://bugzilla.gnome.org/show_bug.cgi?id=751593
-   "${FILESDIR}"/${PN}-3.14.0-unittest-2.patch
-)
-
-src_configure() {
-   # https://bugzilla.gnome.org/show_bug.cgi?id=778495
-   append-cflags -std=gnu11
-
-   gnome2_src_configure \
-   --enable-shared \
-   --disable-static \
-   --with-distributor-name=Gentoo \
-   $(use_enable test tests)
-}
-
-src_test() {
-   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-   GSETTINGS_SCHEMA_DIR="${S}/data" virtx emake check
-}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gnome-backgrounds/

2018-02-03 Thread Mart Raudsepp
commit: b08df9a80f4f490995f3bb2c3b71a59a251b440b
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:34:27 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:42:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b08df9a8

x11-themes/gnome-backgrounds: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-themes/gnome-backgrounds/Manifest |  1 -
 .../gnome-backgrounds/gnome-backgrounds-3.22.1.ebuild | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/x11-themes/gnome-backgrounds/Manifest 
b/x11-themes/gnome-backgrounds/Manifest
index 6bedb58c825..6355e5db7a0 100644
--- a/x11-themes/gnome-backgrounds/Manifest
+++ b/x11-themes/gnome-backgrounds/Manifest
@@ -1,2 +1 @@
-DIST gnome-backgrounds-3.22.1.tar.xz 14847496 BLAKE2B 
d8f1601ae88f5fcb4efce076993618e765d542c22eb5c1214e32adeaea6555da69067d76028dc37541f4747f575be522b49130b77deaded1a6818be843bf1e99
 SHA512 
277d65228e2be0211f7ee15aeb3262c7e43c4788fec74ac857beacb414d527eb612f9e2999765e9ecba67ea6e3921dc94605a2934f10b0bb6377ea7f149a5a0c
 DIST gnome-backgrounds-3.24.0.tar.xz 15223020 BLAKE2B 
5a4bf10bb767da9ac1b89e426a517c0ad9b76d62d764b4398e3381cb9b1bd425ab8f36835a681e1586bbd95f5f2d08307a2680d2aae45bcfc400fa0c61e3938d
 SHA512 
ba044cd21d4c22dd6bf1a93a17579f2bc5f2b9198e40331486772f4fcb81a1c0179949a162e5a1e332f49cd833ca773cf27c1592966e94afbecd8b4d0728c24b

diff --git a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.22.1.ebuild 
b/x11-themes/gnome-backgrounds/gnome-backgrounds-3.22.1.ebuild
deleted file mode 100644
index 384143c84ae..000
--- a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.22.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A set of backgrounds packaged with the GNOME desktop"
-HOMEPAGE="https://git.gnome.org/browse/gnome-backgrounds;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: x11-terms/gnome-terminal/

2018-02-03 Thread Mart Raudsepp
commit: 18b6c735b06ec408dcb71786741b1fb599fdfcfd
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:32:20 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:42:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b6c735

x11-terms/gnome-terminal: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-terms/gnome-terminal/Manifest  |  2 -
 .../gnome-terminal/gnome-terminal-3.22.2.ebuild| 75 --
 2 files changed, 77 deletions(-)

diff --git a/x11-terms/gnome-terminal/Manifest 
b/x11-terms/gnome-terminal/Manifest
index 3dd9aa88041..edfa93d1a40 100644
--- a/x11-terms/gnome-terminal/Manifest
+++ b/x11-terms/gnome-terminal/Manifest
@@ -1,4 +1,2 @@
-DIST gnome-terminal-3.22.0-transparency.patch.xz 4588 BLAKE2B 
7cce4166fa2a47cd4cf55e2ee64790f7ed94d4c75b326dca15d49aef0f3a81e9c6200cd84d46b1a251376b4a108e3b94bcb53b3908b9a34306df6467a34c0760
 SHA512 
f30a25902842345f8c1b81cbe6ea9da25f428ce8867c4e021369b25a17e8135a944fa6ef4b4cba329edc5ad8af8e53c3ca4d61d172085edde80a9ee215323990
-DIST gnome-terminal-3.22.2.tar.xz 1952372 BLAKE2B 
eddaa5b3900211a2823c86353c68b96aa2a5c3f4ccd51c553ab0a5c328b4dc6e922944ea62bfab7a1dd131464196e2a88c3cd365591b5deafc722b826ce18671
 SHA512 
3fa550c49c35d53c220d1f7a3f3d49d5130e3dd4af657e05627782abb84a449c6632a9919f5a97c78a5b9d92137e8d4bd68d8b880cd86203f866b85b9cda3db3
 DIST gnome-terminal-3.24.2.tar.xz 1960952 BLAKE2B 
c94303cd8b322a37c70487fbab0f6ecd27b8e831cf44cdc80c82b31d2758f7c6927704d31c229cbbe41be565748238bbfcfae72470f273f7f3a9378c218af8b5
 SHA512 
08cd7b1b08cf22618554b1a051dcfee4a967165bfe93b77a6bc8b0c935695101e773e8d53a482d71aadb9ba7be7ac991d82dbf53b7a6f74f1f5144e4158f8a93
 DIST gnome-terminal-notify-open-title-transparency.patch.xz 37448 BLAKE2B 
159bbcf6ca387af8ae2f05c23b48afcdf11351025420ecfd10d1b8a1dd9c2c8016d1c89c6fca20dde3bf8ffe3a6091232a989cfd520fa6761f65eec29b569d84
 SHA512 
9af0d56df105a5bdb81b2609794669557a7f442f71b240ee10a6411fab20ad74c14489dbb9a536e208515053ea17776b3a15afb3b949a75a66f8c2ab3dbbff96

diff --git a/x11-terms/gnome-terminal/gnome-terminal-3.22.2.ebuild 
b/x11-terms/gnome-terminal/gnome-terminal-3.22.2.ebuild
deleted file mode 100644
index 8ca6e4999c7..000
--- a/x11-terms/gnome-terminal/gnome-terminal-3.22.2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# 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 readme.gentoo-r1
-
-DESCRIPTION="The Gnome Terminal"
-HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/;
-SRC_URI="${SRC_URI}
-   !vanilla? ( 
https://dev.gentoo.org/~mgorny/dist/gnome-terminal-3.22.0-transparency.patch.xz 
)"
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="debug +gnome-shell +nautilus vanilla"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux"
-
-# FIXME: automagic dependency on gtk+[X], just transitive but needs proper 
control
-RDEPEND="
-   >=dev-libs/glib-2.42:2[dbus]
-   >=x11-libs/gtk+-3.20:3[X]
-   >=x11-libs/vte-0.46.1:2.91
-   >=dev-libs/libpcre2-10
-   >=gnome-base/dconf-0.14
-   >=gnome-base/gsettings-desktop-schemas-0.1.0
-   sys-apps/util-linux
-   gnome-shell? ( gnome-base/gnome-shell )
-   nautilus? ( >=gnome-base/nautilus-3 )
-"
-# itstool required for help/* with non-en LINGUAS, see bug #549358
-# xmllint required for glib-compile-resources, see bug #549304
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-libs/libxml2
-   dev-util/gdbus-codegen
-   >=dev-util/intltool-0.50
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-DOC_CONTENTS="To get previous working directory inherited in new opened
-   tab you will need to add the following line to your ~/.bashrc:\n
-   . /etc/profile.d/vte-2.91.sh"
-
-src_prepare() {
-   if ! use vanilla; then
-   # OpenSuSE patches, 
https://bugzilla.gnome.org/show_bug.cgi?id=695371
-   # 
http://pkgs.fedoraproject.org/cgit/rpms/gnome-terminal.git/tree/gnome-terminal-transparency-notify.patch
 (first 3 parts)
-   eapply "${WORKDIR}"/${PN}-3.22.0-transparency.patch
-   eautoreconf
-   fi
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --disable-migration \
-   $(use_enable debug) \
-   $(use_enable gnome-shell search-provider) \
-   $(use_with nautilus nautilus-extension) \
-   VALAC=$(type -P true)
-}
-
-src_install() {
-   DOCS="AUTHORS ChangeLog HACKING NEWS"
-   gnome2_src_install
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   readme.gentoo_print_elog
-}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/zuki-themes/

2018-02-03 Thread Mart Raudsepp
commit: f6479c0fd20573ea8a162d27a16264f4c5122537
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:38:39 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:43:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6479c0f

x11-themes/zuki-themes: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-themes/zuki-themes/Manifest  |  2 -
 x11-themes/zuki-themes/zuki-themes-3.20.ebuild   | 47 ---
 x11-themes/zuki-themes/zuki-themes-3.24.2.ebuild | 49 
 3 files changed, 98 deletions(-)

diff --git a/x11-themes/zuki-themes/Manifest b/x11-themes/zuki-themes/Manifest
index ff3468ae2ac..05fb3319294 100644
--- a/x11-themes/zuki-themes/Manifest
+++ b/x11-themes/zuki-themes/Manifest
@@ -1,3 +1 @@
-DIST zuki-themes-3.20.tar.gz 910945 BLAKE2B 
cadcadae015c4d988824942f9c2b2ce2f39025e280d1dd5f3ee4fc1cb0b578d81bbe0af3a57096aead4f0cc82aeb3f5e85203350bb1ca3430342823190f77179
 SHA512 
ffe7044bcb1974fc9c63dd8d6e5fa7278a58956df92a943832d6c1de282552ac69593ed5ce5376500fd48a12d80cb8c7e946cb0fe45dd07e5020734f7fa42180
-DIST zuki-themes-3.24.2.tar.gz 906520 BLAKE2B 
2114d0236c9e5314d431d1a93bd06ac987cbff7f3a518b1aab8c90884c4f8c95f66830afb1ecaa5e3b60fbeebf83cd315f2014ea1409f4939330d18532bce525
 SHA512 
848b52fed9da6ab072f4210f70b7475a248c6b853079d13f5a600eed41f8ea3a00063fc89f08eb78a21d7c8f8725e0826294015138e152cde2b8bee375e8156f
 DIST zuki-themes-3.24.3.tar.gz 906469 BLAKE2B 
443e99711fe9908fef976f0609401413f90e54f0bc0aa1bf8ddd65085ad755457402618336884be354030c6548e39a8cc0c5a5079b7b64d17760fadb0792319f
 SHA512 
79ce43816db11dcd4be383bf4e0512aac0863214aa3fd3a545f06b922d441d3d1ddaf63ace166736b7598bf6f4ebdd1568092622eea3ef48b2ce37fbefd312ba

diff --git a/x11-themes/zuki-themes/zuki-themes-3.20.ebuild 
b/x11-themes/zuki-themes/zuki-themes-3.20.ebuild
deleted file mode 100644
index 0f83b61ed09..000
--- a/x11-themes/zuki-themes/zuki-themes-3.20.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PV="${PV}-1"
-DESCRIPTION="Zuki themes for GTK, gnome-shell and more"
-HOMEPAGE="http://gnome-look.org/content/show.php/Zukitwo?content=140562;
-SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome-shell mate xfce"
-
-RDEPEND="
-   >=x11-themes/gnome-themes-standard-3.6
-   >=x11-themes/gtk-engines-murrine-0.98.1.1
-   gnome-shell? ( media-fonts/roboto )
-   !http://gnome-look.org/content/show.php/Zukitwo?content=140562;
-SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gnome-shell mate xfce"
-
-RDEPEND="
-   >=x11-themes/gnome-themes-standard-3.6
-   >=x11-themes/gtk-engines-murrine-0.98.1.1
-   gnome-shell? ( media-fonts/roboto )
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/gnome-disk-utility/

2018-02-03 Thread Mart Raudsepp
commit: d3b10b988c9e420ecc9a34b1f43edc19e152adb3
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:24:11 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:42:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3b10b98

sys-apps/gnome-disk-utility: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-apps/gnome-disk-utility/Manifest   |  1 -
 .../gnome-disk-utility-3.22.1.ebuild   | 45 --
 2 files changed, 46 deletions(-)

diff --git a/sys-apps/gnome-disk-utility/Manifest 
b/sys-apps/gnome-disk-utility/Manifest
index 9a8258e970f..99e9545d33a 100644
--- a/sys-apps/gnome-disk-utility/Manifest
+++ b/sys-apps/gnome-disk-utility/Manifest
@@ -1,2 +1 @@
-DIST gnome-disk-utility-3.22.1.tar.xz 1455508 BLAKE2B 
49075e3b6e413a6c69e483004aba7fe4212c2494992f7177ae8ea139bab9f4f657e9ce756ba558b073a09c7c8fe24f58e470bb52811a7bc98fb9c6048ed9b98c
 SHA512 
f8ea64eb5adc3d6d55669bfa85c80a23f91ecb86f8632ae4ef035ad5062375e4fd73581f6ad12f6d83b1d6d98508a046b64a5a6544dea59765da2ff4b42b2d37
 DIST gnome-disk-utility-3.24.1.tar.xz 1947976 BLAKE2B 
a3b9d02417bed415bf6b9b8d86abcfa857abe316133ce7abfa11db835831e916d879b09d1e1129d12621b0234ffa27c1e246837cb614c51c54ce387a9c73bea4
 SHA512 
ae6bf83e005733ae985987411a9fe25b0059f64484fc0d613ad54af478130782974607bec53713ee36c2a28de653ceba82b0fb091aee57101773c0eeeaaed2d5

diff --git a/sys-apps/gnome-disk-utility/gnome-disk-utility-3.22.1.ebuild 
b/sys-apps/gnome-disk-utility/gnome-disk-utility-3.22.1.ebuild
deleted file mode 100644
index 93b42aaebd3..000
--- a/sys-apps/gnome-disk-utility/gnome-disk-utility-3.22.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# 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="Disk Utility for GNOME using udisks"
-HOMEPAGE="https://git.gnome.org/browse/gnome-disk-utility;
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="fat gnome systemd"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86"
-
-COMMON_DEPEND="
-   >=app-arch/xz-utils-5.0.5
-   >=app-crypt/libsecret-0.7
-   >=dev-libs/glib-2.31:2[dbus]
-   dev-libs/libpwquality
-   >=media-libs/libcanberra-0.1[gtk3]
-   >=media-libs/libdvdread-4.2.0
-   >=sys-fs/udisks-2.1.1:2
-   >=x11-libs/gtk+-3.16.0:3
-   >=x11-libs/libnotify-0.7:=
-   systemd? ( >=sys-apps/systemd-209:0= )
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-   fat? ( sys-fs/dosfstools )
-   gnome? ( >=gnome-base/gnome-settings-daemon-3.8 )
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.50.2
-   dev-libs/appstream-glib
-   dev-libs/libxslt
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable gnome gsd-plugin) \
-   $(use_enable systemd libsystemd)
-}



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

2018-02-03 Thread Mart Raudsepp
commit: c108da0200d6dd51d0c017d761554e2bde6b5b61
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:30:34 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:42:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c108da02

x11-libs/vte: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-libs/vte/Manifest  |  2 -
 x11-libs/vte/vte-0.48.3.ebuild | 90 --
 2 files changed, 92 deletions(-)

diff --git a/x11-libs/vte/Manifest b/x11-libs/vte/Manifest
index 1edcc3122fc..ed2b79c219d 100644
--- a/x11-libs/vte/Manifest
+++ b/x11-libs/vte/Manifest
@@ -1,7 +1,5 @@
 DIST vte-0.28.2.tar.xz 962340 BLAKE2B 
1e4b5977962265be77917ccfc9118ed93232c03d7a16b6c08a27e721fe71f8c1dd1783a439530d7b3d915111cb8cc78281f1e9e351d6a83edd31f224309ca1e9
 SHA512 
d6a50481aaa8946cca3779e0b328fef551be534d70366a75385d1f8ead3fcddec57bed85c7d4bc2d9f34546532129e63083aafa33cbb0efcbc7dc9d66e7c45f6
 DIST vte-0.36.5.tar.xz 1017504 BLAKE2B 
a7a94b389660f9bbf7aa8033e4a5e2cc96c39458e43960ad2ce785f2fbe1597c7156d090aab220e909ae31f8731d0d961686dce08aef0f270581c01de4bf19b0
 SHA512 
43f9211381238ca6cb7f49c8a9dd8f48f702e9968e038fa26ee69228c1fc86061d5dbfabb2c27f677280e89ae9080f20594f3c27481246e3f91dd5f3ea0354f6
 DIST vte-0.46.2.tar.xz 989756 BLAKE2B 
5b62ca5425604301f748a214610e2e6e2431f9ad9d21b0867e8d8e34910f1b6c4b77029b57b8255dbd04c6e960aaa2583a2ec670f4683b2331290f22ea957454
 SHA512 
abcf94752094314b01eb14156e894bedb24f959d4faf84bb070b34eb2745f01d029859ef959ddf1475776605a1721e4d011ae7ad57fc4937d8bfcbecc8b0cf61
-DIST vte-0.48.3.tar.xz 1009364 BLAKE2B 
a16b56ecab0db7ee1a9f8bc9f975ba13fb1dbbdcee77fd6c6f7c11df4680eb644566bc30ffb2ac6009c0ed891bb20598eebaeb87837ae1ac72d7eb8241d2e119
 SHA512 
3037b61a759cfcf56838bc7804df5a211da416bff9ddc5791f8a8d5157b90926985cfe57d7edbab42de64945d5e668470fe4129a218fb9c7af546648e1660c72
 DIST vte-0.48.4-command-notify.patch.xz 5500 BLAKE2B 
88b655403d2bef034604a283b173fece305af35f51b20f9d4811b33265b5a6eb83441e0b978539de501d118a8431c4a9a9a69a111a03c45adc87763b15b09fd2
 SHA512 
b8ba202aedb5d821962a7cdc89e6ef8ac8a3480dd7681bf8ce708ce511598f3335ba153750d40cb06e9a2c5bab5888b3daef9096458c2889d94028feaa394575
 DIST vte-0.48.4.tar.xz 1008296 BLAKE2B 
9f946d6909d38896ec80db2a02666d809155997b27109724fb318d28200220f1514fb23e4cdc90263a756914b5db442c947578c8854a535cb960a06f7bc03a77
 SHA512 
4b75bd881e58b5043bc44e391ef3a826a2c25d0f1bb5ffb890367e11a60b1bcbce091575ede6972a89ae043b39c51897f91fca1faf6872664d602e503d8020fc
-DIST vte-2.91-command-notify.patch.xz 6012 BLAKE2B 
4a37464ed214e80e5db8eb6a9c09a33816d143e081a5391709be3cd3611197f75d5cfe750ecdfdc95199328ae4894d7ad56598ba5025e108cd8e2720af68
 SHA512 
e6a8955f99c98183c60df770b5c6826c5a456aaac3c83a8d0fa5037d2dd250450c8287dff335e22ca32332645d13d298cecc5d2c884c7c9da65d09dfd2a79054

diff --git a/x11-libs/vte/vte-0.48.3.ebuild b/x11-libs/vte/vte-0.48.3.ebuild
deleted file mode 100644
index 69d23935661..000
--- a/x11-libs/vte/vte-0.48.3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-VALA_USE_DEPEND="vapigen"
-VALA_MIN_API_VERSION="0.32"
-
-inherit gnome2 vala
-
-DESCRIPTION="Library providing a virtual terminal emulator widget"
-HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Terminal/VTE;
-
-LICENSE="LGPL-2+"
-SLOT="2.91"
-IUSE="+crypt debug glade +introspection vala vanilla"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
-REQUIRED_USE="vala? ( introspection )"
-
-SRC_URI="${SRC_URI} !vanilla? ( 
https://dev.gentoo.org/~leio/distfiles/${PN}-${SLOT}-command-notify.patch.xz )"
-
-RDEPEND="
-   >=dev-libs/glib-2.40:2
-   >=dev-libs/libpcre2-10.21
-   >=x11-libs/gtk+-3.16:3[introspection?]
-   >=x11-libs/pango-1.22.0
-
-   sys-libs/ncurses:0=
-   sys-libs/zlib
-
-   crypt?  ( >=net-libs/gnutls-3.2.7:0= )
-   glade? ( >=dev-util/glade-3.9:3.10 )
-   introspection? ( >=dev-libs/gobject-introspection-0.9.0:= )
-"
-DEPEND="${RDEPEND}
-   dev-util/gperf
-   dev-libs/libxml2
-   >=dev-util/gtk-doc-am-1.13
-   >=dev-util/intltool-0.35
-   sys-devel/gettext
-   virtual/pkgconfig
-
-   vala? ( $(vala_depend) )
-"
-RDEPEND="${RDEPEND}
-   !x11-libs/vte:2.90[glade]
-"
-
-src_prepare() {
-   if ! use vanilla; then
-   # First half of 
http://pkgs.fedoraproject.org/cgit/rpms/vte291.git/tree/vte291-command-notify-scroll-speed.patch
-   # Adds OSC 777 support for desktop notifications in 
gnome-terminal or elsewhere
-   eapply "${WORKDIR}/${PN}-${SLOT}-command-notify.patch"
-   fi
-
-   use vala && vala_src_prepare
-
-   # build fails because of -Werror with gcc-5.x
-   sed -e 's#-Werror=format=2#-Wformat=2#' -i configure || die "sed 

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

2018-02-03 Thread Mart Raudsepp
commit: 7490d960242db038f63c5a3a7f90dd8298dce895
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:20:15 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:42:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7490d960

sys-apps/baobab: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-apps/baobab/Manifest |  1 -
 sys-apps/baobab/baobab-3.22.1.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/sys-apps/baobab/Manifest b/sys-apps/baobab/Manifest
index aa06aed02f9..97a319d581d 100644
--- a/sys-apps/baobab/Manifest
+++ b/sys-apps/baobab/Manifest
@@ -1,2 +1 @@
-DIST baobab-3.22.1.tar.xz 947932 BLAKE2B 
820c483964ef44d9ce557253128030044f456986e4c71bc0c2e64436290fd2b9e4aeadb1cb717179de68064faf80df5deaeced91d535eb5ae084abeb897b62fd
 SHA512 
6fae974ef79dc9b61269cc07fcdb4f6d8f043cf3eb8239c2408a7ccb1445800c1beda85da8ae9e0da1a39604e4896a6aab0ab04391286df20c20783d208c6c36
 DIST baobab-3.24.0.tar.xz 970636 BLAKE2B 
bac7397a0b157723f8341b09b7e00fdaef2a50803ff901be6c307aa733b72478f7b3f62850e3e8445b79d1ad17668c617655aa7268402a487ee6e10267d0a7a2
 SHA512 
7a16cdc7b4e77e8bad23bccc171b4e552b2eb33a43822579cdf4b1d5ac76526955c0efeadf355fcda3a72b1fd6f8dbf2a6088406b5a21b8ecc4d06ff525baa17

diff --git a/sys-apps/baobab/baobab-3.22.1.ebuild 
b/sys-apps/baobab/baobab-3.22.1.ebuild
deleted file mode 100644
index 25b752e2597..000
--- a/sys-apps/baobab/baobab-3.22.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Disk usage browser for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Baobab;
-
-LICENSE="GPL-2+ FDL-1.1+"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.40:2[dbus]
-   >=x11-libs/gtk+-3.19.1:3
-"
-RDEPEND="${COMMON_DEPEND}
-   gnome-base/gsettings-desktop-schemas
-   x11-themes/adwaita-icon-theme
-   !

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

2018-02-03 Thread Andreas Sturmlechner
commit: 03bec672e2ecce3128a9102b37c265afc327829f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb  3 23:36:01 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 23:36:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03bec672

kde4-meta.eclass: Mark @DEAD for removal

 eclass/kde4-meta.eclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass
index 3df6fe39dbb..88d9ef89ad1 100644
--- a/eclass/kde4-meta.eclass
+++ b/eclass/kde4-meta.eclass
@@ -1,6 +1,8 @@
 # Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 #
+# @DEAD
+# Removal on 2018-03-06.
 # @ECLASS: kde4-meta.eclass
 # @MAINTAINER:
 # k...@gentoo.org



[gentoo-commits] repo/gentoo:master commit in: dev-util/kdevplatform/, profiles/updates/, profiles/, kde-apps/katepart/, ...

2018-02-03 Thread Andreas Sturmlechner
commit: bbb56207c2caf40da4e3b1ac76274c4823cd2a92
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 31 20:47:32 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 23:28:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbb56207

profiles: Remove last-rited packages

Closes: https://bugs.gentoo.org/642462

 dev-util/kdevplatform/Manifest|   1 -
 dev-util/kdevplatform/kdevplatform-5.1.2.ebuild   | 107 --
 dev-util/kdevplatform/metadata.xml|  12 ---
 kde-apps/katepart/Manifest|   1 -
 kde-apps/katepart/katepart-4.14.3.ebuild  |  21 -
 kde-apps/katepart/metadata.xml|   8 --
 kde-apps/kdebase-data/Manifest|   1 -
 kde-apps/kdebase-data/kdebase-data-16.04.3.ebuild |  36 
 kde-apps/kdebase-data/metadata.xml|   8 --
 kde-apps/konsolepart/Manifest |   1 -
 kde-apps/konsolepart/konsolepart-4.14.3.ebuild|  59 
 kde-apps/konsolepart/metadata.xml |   8 --
 profiles/arch/powerpc/package.use.mask|   1 -
 profiles/package.mask |  10 --
 profiles/updates/2Q-2015  |   1 -
 profiles/updates/4Q-2016  |   1 -
 16 files changed, 276 deletions(-)

diff --git a/dev-util/kdevplatform/Manifest b/dev-util/kdevplatform/Manifest
deleted file mode 100644
index d0c70a99794..000
--- a/dev-util/kdevplatform/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST kdevplatform-5.1.2.tar.xz 2051776 BLAKE2B 
3e7e91d5438b8a528e640671418399d302c8c9ee96d3e98cfe2ab68e64be63d7af98b1f4f11e512e9e79e17cddbd75731528d7dd9deab52c753a9f5be7dbce8e
 SHA512 
cba58144b1c431789c6ceedee673f365af411a185944c5f6e2d8a8f46bf8bd817de0454d8ee6c2db28675a78940cb4293bb5e6430bdce77e4bd98e335889

diff --git a/dev-util/kdevplatform/kdevplatform-5.1.2.ebuild 
b/dev-util/kdevplatform/kdevplatform-5.1.2.ebuild
deleted file mode 100644
index 78bfc95f5b5..000
--- a/dev-util/kdevplatform/kdevplatform-5.1.2.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_BRANCH="5.1"
-KDEBASE="kdevelop"
-KDE_TEST="true"
-VIRTUALDBUS_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="KDE development support libraries and apps"
-IUSE="cvs reviewboard subversion +welcomepage"
-[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kbookmarks)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdeclarative)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktexteditor)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep sonnet)
-   $(add_frameworks_dep threadweaver)
-   $(add_kdeapps_dep libkomparediff2)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qttest)
-   $(add_qt_dep qtwebkit)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   dev-libs/grantlee:5
-   reviewboard? ( dev-libs/purpose )
-   subversion? (
-   dev-libs/apr:1
-   dev-libs/apr-util:1
-   dev-vcs/subversion
-   )
-   welcomepage? ( $(add_qt_dep qtdeclarative 'widgets') )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost
-   $(add_qt_dep qtconcurrent)
-"
-RDEPEND="${COMMON_DEPEND}
-   cvs? ( dev-vcs/cvs )
-   reviewboard? ( $(add_kdeapps_dep ktp-accounts-kcm) )
-   !dev-util/kdevelop:4
-   !dev-util/kdevplatform:4
-"
-
-REQUIRED_USE="test? ( welcomepage )"
-
-RESTRICT+=" test"
-
-src_prepare() {
-   kde5_src_prepare
-   # root tests subdirectory actually does not contain tests, installs 
stuff
-   if ! use test; then
-   sed -i -e "/add_subdirectory(tests)/ s/#DONOTCOMPILE //" \
-   CMakeLists.txt || die "Failed to fix CMakeLists.txt"
-   sed -i -e '1s/^/find_package(Qt5Test \$\{QT_MIN_VERSION\})\n/' \
-   

[gentoo-commits] proj/linux-patches: New tag: 4.9-83

2018-02-03 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 23:24:33 2018 +

New tag: 4.9-83




[gentoo-commits] repo/gentoo:master commit in: app-office/skrooge/

2018-02-03 Thread Andreas Sturmlechner
commit: ddce8d5d02bd34687f740a4e5de1ad370467ef64
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb  3 23:10:13 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 23:19:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddce8d5d

app-office/skrooge: 2.11.0 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-office/skrooge/Manifest  |  1 +
 app-office/skrooge/skrooge-2.11.0.ebuild | 96 
 2 files changed, 97 insertions(+)

diff --git a/app-office/skrooge/Manifest b/app-office/skrooge/Manifest
index 254bee687df..a51bba14a2e 100644
--- a/app-office/skrooge/Manifest
+++ b/app-office/skrooge/Manifest
@@ -1 +1,2 @@
 DIST skrooge-2.10.5.tar.xz 19309980 BLAKE2B 
388e4c4b13acfd1b5f981dc88a9763bc2eb23f7cf8d7cd3f018746964639557768b3654b9161a1b79e1752aaa1335264607bc4475148a755fa5a4b282a36d60d
 SHA512 
02fdee00b430ffba8c05222b87da31f5d2390634e816e141806fc4e3cceab83134ccda9619ff944f70eb704af4d2ee08338bf196ad7dcea8221a05d13e1b4c8e
+DIST skrooge-2.11.0.tar.xz 20677024 BLAKE2B 
d8995746a64489cf9b6c824c8d6349f2ef10a57fcc086c97db0ce1b65e31f72fa4c41994b4dd4ab85df008e2721bd84a029a9f71ea219d6203856e314895e2ef
 SHA512 
088ef94d2eaa866a1cf3f55ed960bccf27a80e3a1138855b35fa301c799468b0d0594a03310872a9b3ce2513d1ac9a8df3fa039636517f7b2b135fda65a67e00

diff --git a/app-office/skrooge/skrooge-2.11.0.ebuild 
b/app-office/skrooge/skrooge-2.11.0.ebuild
new file mode 100644
index 000..f5110fcfb09
--- /dev/null
+++ b/app-office/skrooge/skrooge-2.11.0.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+KDE_TEST="forceoptional"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Personal finances manager, aiming at being simple and intuitive"
+HOMEPAGE="https://skrooge.org/;
+[[ ${PV} ==  ]] || SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="activities designer kde ofx"
+
+COMMON_DEPEND="
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwallet)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtconcurrent)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative 'widgets')
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtscript)
+   $(add_qt_dep qtsql)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtwebkit)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   app-crypt/qca:2[qt5(+)]
+   dev-db/sqlcipher
+   dev-libs/grantlee:5
+   activities? ( $(add_frameworks_dep kactivities) )
+   kde? ( $(add_frameworks_dep krunner) )
+   ofx? ( dev-libs/libofx )
+"
+DEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep kjobwidgets)
+   $(add_frameworks_dep kwindowsystem)
+   dev-libs/libxslt
+   virtual/pkgconfig
+   x11-misc/shared-mime-info
+   designer? (
+   $(add_frameworks_dep kdesignerplugin)
+   $(add_qt_dep designer)
+   )
+"
+RDEPEND="${COMMON_DEPEND}
+   !app-office/skrooge:4
+"
+
+REQUIRED_USE="test? ( designer )"
+
+# hangs + installs files
+RESTRICT+=" test"
+
+src_configure() {
+   local mycmakeargs=(
+   -DSKG_BUILD_TEST=$(usex test)
+   -DSKG_DESIGNER=$(usex designer)
+   $(cmake-utils_use_find_package activities KF5Activities)
+   $(cmake-utils_use_find_package kde KF5Runner)
+   $(cmake-utils_use_find_package ofx LibOfx)
+   )
+
+   kde5_src_configure
+}
+
+src_test() {
+   local mycmakeargs=(
+   -DSKG_BUILD_TEST=ON
+   )
+   kde5_src_test
+}



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

2018-02-03 Thread Andreas Sturmlechner
commit: a7c3f344ee2b7cd74ee7c5287a547e040c2c9b7d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb  3 23:06:05 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 23:19:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7c3f344

media-gfx/kxstitch: 2.1.1 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-gfx/kxstitch/Manifest  |  1 +
 media-gfx/kxstitch/kxstitch-2.1.1.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/media-gfx/kxstitch/Manifest b/media-gfx/kxstitch/Manifest
index 49c9a4f600c..5f57d7200fa 100644
--- a/media-gfx/kxstitch/Manifest
+++ b/media-gfx/kxstitch/Manifest
@@ -1,2 +1,3 @@
 DIST kxstitch-2.0.0.tar.xz 1681648 BLAKE2B 
669eda3060244636b4ad8bb6e7e7899eb183d7a0f3b264bc40c3bda7146be2a6e10b165165889b7d0043dc5921ff8153775dfa5436546e3cd7be99a4cc144434
 SHA512 
0ce9ec517659fd9a3163671cdb32d451487aa812355c9abb38cf143192ed49e3e32afc003a0064e9a63303b5de40d8859f92066d886dc06c6d1fe03c8790122f
 DIST kxstitch-2.1.0.tar.xz 1727616 BLAKE2B 
34e362b37ef94ed9657254fc4887eb77b0937c4ebdc2b76b09ae9ebbbe6dc490fdafa4c189a87177c26bc1d24fa0b150436a547c3b82dbf74b269fd87f674928
 SHA512 
c31b8f4c33a86967b02ad2d6c9be84931e607644c8683c41b3160c86fee8714d77a10f770d94ae3905c81261dfdaf13957783a83d2235594656bf2884f944608
+DIST kxstitch-2.1.1.tar.xz 1726364 BLAKE2B 
47257408f31ca7db4bddf984150baac6cd850206cedb95c73b0d62ee9f966028afd97bb3653b385104a1c679512c35f41aa25c5b703c715e565d48cfda59da36
 SHA512 
d5a6b6d06bfb894dd7404cb81350389f1ebf5c8a463eb792358abd67f362d1e1f578d06319461a006625864f1c4a69ebb4ccd0db422870c3eae0516c9132a3b3

diff --git a/media-gfx/kxstitch/kxstitch-2.1.1.ebuild 
b/media-gfx/kxstitch/kxstitch-2.1.1.ebuild
new file mode 100644
index 000..3e24a1c98c3
--- /dev/null
+++ b/media-gfx/kxstitch/kxstitch-2.1.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+inherit kde5
+
+DESCRIPTION="Program to create cross stitch patterns"
+HOMEPAGE="https://userbase.kde.org/KXStitch;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="5"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND="
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtx11extras)
+   $(add_qt_dep qtxml)
+   media-gfx/imagemagick[cxx]
+   x11-libs/libX11
+"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+"
+RDEPEND="${COMMON_DEPEND}
+   !media-gfx/kxstitch:4
+"



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

2018-02-03 Thread Mart Raudsepp
commit: 2989af14579d0cc546deaca78a57c9c7ae515adf
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:14:01 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:14:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2989af14

sci-geosciences/geocode-glib: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sci-geosciences/geocode-glib/Manifest  |  1 -
 .../geocode-glib/geocode-glib-3.20.1.ebuild| 45 --
 2 files changed, 46 deletions(-)

diff --git a/sci-geosciences/geocode-glib/Manifest 
b/sci-geosciences/geocode-glib/Manifest
index 65a7a940210..8960f1594e1 100644
--- a/sci-geosciences/geocode-glib/Manifest
+++ b/sci-geosciences/geocode-glib/Manifest
@@ -1,2 +1 @@
-DIST geocode-glib-3.20.1.tar.xz 371200 BLAKE2B 
7872ced7d4edee0c45c00c2e876cb307e5eac4615b194cf69bd6fbc3e50c809c9d8b85604c1273f6e65f1be1db88ca811f913124c4697c8ac676118861a3caa9
 SHA512 
0016b04928d3d7e9e3339bf1457d5ba7951af7af53b72a185f9cb3e92e9d1b1deb7ca11f95de1bcb0a3521a5b200ce3c25bb35eaf8bf15b81672846ec01b718f
 DIST geocode-glib-3.24.0.tar.xz 413536 BLAKE2B 
37eebd39bb64d614af338e323b7c37c9bcf554d82b761c135326a9b2c0ab405901739ffe89f50c35932d162e4d2743a21caf4f446924c5d9f47bcf50eb11f4e8
 SHA512 
0e3910e99d164fdf5afd6befbcb7139a56779834fb1f2a318951c03e5196a31c4dafd7f88c37c7014377f15cd4d4b81e7080a440881e2c50aadaadf621abe3b6

diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.20.1.ebuild 
b/sci-geosciences/geocode-glib/geocode-glib-3.20.1.ebuild
deleted file mode 100644
index 20b873a33c4..000
--- a/sci-geosciences/geocode-glib/geocode-glib-3.20.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# 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.34: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.18
-   virtual/pkgconfig
-   test? ( sys-apps/dbus )
-"
-# eautoreconf requires:
-#  dev-libs/gobject-introspection-common
-#  gnome-base/gnome-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: net-misc/gnome-online-miners/

2018-02-03 Thread Mart Raudsepp
commit: 273ef652878798f4608c87b9a38e56d798d3ceea
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:09:01 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:09:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=273ef652

net-misc/gnome-online-miners: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-misc/gnome-online-miners/Manifest  |  1 -
 .../gnome-online-miners-3.22.0.ebuild  | 39 --
 2 files changed, 40 deletions(-)

diff --git a/net-misc/gnome-online-miners/Manifest 
b/net-misc/gnome-online-miners/Manifest
index f84d36349f4..7a1e2d1adfb 100644
--- a/net-misc/gnome-online-miners/Manifest
+++ b/net-misc/gnome-online-miners/Manifest
@@ -1,2 +1 @@
-DIST gnome-online-miners-3.22.0.tar.xz 272832 BLAKE2B 
67e56662dc74e35f23f7db5ae586a761a0043e01c07cb3ac9d3dd43b2f978e1472155748ac1c67498c1f30f0b342cab40d35a9934eff28ac31493778a8fc0c6f
 SHA512 
91fafb41523b239fae6dda6dbbf0a1c64dba6089f70b2336574604c996c2e09e1f64445621c170ec70a98736362633443aea5ed7028cd8347d9beaaeb7f4aed4
 DIST gnome-online-miners-3.24.0.tar.xz 272572 BLAKE2B 
6331e72f65510041cc278670df328ab6ec5336bb76ec1c6681136c6731c70b9d343ef296062da6de302cfea195d1b99c0040e1e016394b2fe3bbbe077915cd76
 SHA512 
96c6aa99b99553c399ecef754d10a918d8ef3bdf6369a77357241091edc9c2ff7a8350f8a064bb011deddac75b25bdde8006e8d72b6562f9cdcf3b373e693253

diff --git a/net-misc/gnome-online-miners/gnome-online-miners-3.22.0.ebuild 
b/net-misc/gnome-online-miners/gnome-online-miners-3.22.0.ebuild
deleted file mode 100644
index d8ce960d90d..000
--- a/net-misc/gnome-online-miners/gnome-online-miners-3.22.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Crawls through your online content"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineMiners;
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="flickr"
-KEYWORDS="amd64 x86"
-
-# libgdata[gnome] needed for goa support
-RDEPEND="
-   >=app-misc/tracker-1:0=
-   >=dev-libs/glib-2.35.1:2
-   >=dev-libs/libgdata-0.15.2:0=[crypt,gnome-online-accounts]
-   media-libs/grilo:0.3
-   >=net-libs/gnome-online-accounts-3.13.3:=
-   >=net-libs/libgfbgraph-0.2.2:0.2
-   >=net-libs/libzapojit-0.0.2
-   flickr? ( media-plugins/grilo-plugins:0.3[flickr] )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable flickr) \
-   --disable-static \
-   --enable-facebook \
-   --enable-google \
-   --enable-media-server \
-   --enable-owncloud \
-   --enable-windows-live
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 40dd36be7b62d9712591037184e4df1189bd7b53
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:02:46 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:02:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40dd36be

net-libs/gnome-online-accounts: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-libs/gnome-online-accounts/Manifest|  1 -
 .../gnome-online-accounts-3.22.7.ebuild| 93 --
 2 files changed, 94 deletions(-)

diff --git a/net-libs/gnome-online-accounts/Manifest 
b/net-libs/gnome-online-accounts/Manifest
index 9e01f4042f9..1f5513d7600 100644
--- a/net-libs/gnome-online-accounts/Manifest
+++ b/net-libs/gnome-online-accounts/Manifest
@@ -1,2 +1 @@
-DIST gnome-online-accounts-3.22.7.tar.xz 1404820 BLAKE2B 
7a9bd80c5a240ff7172dda5cfe93fa7410b83e7f3b14c615a465b322d5ee07b220773c7424e8dd4c2e0dcacbd11545cfa968f247e545a9eaa530e6d2ecebfb72
 SHA512 
76a5b6897540f05126786caeddd392d465063571e3884484aa68cd66de851f2f72351afe74dd7e38d8fb8a628d57bd8dde0c8379f909f9de19e451cdf9112b67
 DIST gnome-online-accounts-3.24.4.tar.xz 1412004 BLAKE2B 
96e92eefeedb94563af755367b4932469d8a55bd545324bb1ebffb4798bd0a499aafe9523abc7c707342b1c78f912c499335708dfb3f9a149567b64877f0bbd9
 SHA512 
6e12f03d3ff9b9c831705f0310923b2c3e0daeee1304bb3dfa52fd17d6df49656f3380a1ffd9f30f75890340fb7ee23f53789e4df357a0aeba4e31667fd9c45a

diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-3.22.7.ebuild 
b/net-libs/gnome-online-accounts/gnome-online-accounts-3.22.7.ebuild
deleted file mode 100644
index 77b22c15dc7..000
--- a/net-libs/gnome-online-accounts/gnome-online-accounts-3.22.7.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# 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"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-IUSE="debug gnome +introspection kerberos vala" # telepathy"
-REQUIRED_USE="vala? ( introspection )"
-
-# 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.40: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=[gtk]
-   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? ( $(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() {
-   use vala && vala_src_prepare
-   gnome2_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 ' ') \
-   $(use_enable kerberos) \
-   $(use_enable introspection) \
-   $(use_enable vala)
-   #$(use_enable telepathy)
-   # gudev & cheese from sub-configure is overriden
-   # by top level configure, and disabled so leave it like that
-}



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

2018-02-03 Thread Andreas Sturmlechner
commit: def38ee73e4cd930ab8d9ce6e03e43e9739c044e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb  3 23:17:45 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 23:17:45 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=def38ee7

app-office/skrooge: Fix DEPENDs

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-office/skrooge/skrooge-.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-office/skrooge/skrooge-.ebuild 
b/app-office/skrooge/skrooge-.ebuild
index 69e820e632..c302e46e17 100644
--- a/app-office/skrooge/skrooge-.ebuild
+++ b/app-office/skrooge/skrooge-.ebuild
@@ -40,6 +40,7 @@ COMMON_DEPEND="
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative 'widgets')
$(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtscript)
$(add_qt_dep qtsql)
@@ -47,7 +48,7 @@ COMMON_DEPEND="
$(add_qt_dep qtwebkit)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
-   app-crypt/qca:2[qt5]
+   app-crypt/qca:2[qt5(+)]
dev-db/sqlcipher
dev-libs/grantlee:5
activities? ( $(add_frameworks_dep kactivities) )



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gnome-maps/

2018-02-03 Thread Mart Raudsepp
commit: 8d370f65682532f3b7e971683512d6306711b515
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:16:25 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:16:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d370f65

sci-geosciences/gnome-maps: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sci-geosciences/gnome-maps/Manifest|  1 -
 .../gnome-maps/gnome-maps-3.22.2.ebuild| 44 --
 2 files changed, 45 deletions(-)

diff --git a/sci-geosciences/gnome-maps/Manifest 
b/sci-geosciences/gnome-maps/Manifest
index 884a30974f5..7c6a2632124 100644
--- a/sci-geosciences/gnome-maps/Manifest
+++ b/sci-geosciences/gnome-maps/Manifest
@@ -1,2 +1 @@
-DIST gnome-maps-3.22.2.tar.xz 1086264 BLAKE2B 
c51a387b562921704976946e244fa6bdf0abc42588a3e361e4886e08690c382cbd8f9fcdbcece48eaa9315d01c952ba161df3a799172bdeab12bf20df8eeddb2
 SHA512 
bdff6c55c811c9a12f2a56adfb2acbad4dfd3ceba761a4c50463b025eb9df01f5849f871b7934eae659ab8f90db7cd612694de40fdecbc9d63a3b59d343ee997
 DIST gnome-maps-3.24.3.tar.xz 1145872 BLAKE2B 
bd6e9652c341def652beea966d3a171a050219f3bc83288bd83eacb069899cd94d154d53bcea081bdfefdeee9b74e56c158c703ed92c9fcb5e35ecd718900e4a
 SHA512 
b4a4c278359803e11b1aa43fb522a84b95eecfc349a134322f45db7acfe93867a61f6bd48e55a07d5d602b8161cdf5949a6b5d4da1212659e133260063ab6198

diff --git a/sci-geosciences/gnome-maps/gnome-maps-3.22.2.ebuild 
b/sci-geosciences/gnome-maps/gnome-maps-3.22.2.ebuild
deleted file mode 100644
index 2441838d16a..000
--- a/sci-geosciences/gnome-maps/gnome-maps-3.22.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A map application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Maps;
-
-LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   >=app-misc/geoclue-0.12.99:2.0[introspection]
-   >=dev-libs/folks-0.10
-   >=dev-libs/gjs-1.44.0
-   >=dev-libs/gobject-introspection-0.6.3:=
-   >=dev-libs/glib-2.39.3:2
-   >=dev-libs/libgee-0.16:0.8[introspection]
-   dev-libs/libxml2:2
-   >=media-libs/libchamplain-0.12.14:0.12[gtk,introspection]
-   net-libs/rest:0.7[introspection]
-   >=sci-geosciences/geocode-glib-3.15.2[introspection]
-   >=x11-libs/gtk+-3.15.9:3[introspection]
-"
-# Found by grepping imports.gi in ${S}
-RDEPEND="${COMMON_DEPEND}
-   app-crypt/libsecret[introspection]
-   dev-libs/libgweather[introspection]
-   media-libs/clutter-gtk:1.0[introspection]
-   media-libs/clutter:1.0[introspection]
-   media-libs/cogl:1.0[introspection]
-   net-libs/gnome-online-accounts[introspection]
-   net-libs/libgfbgraph[introspection]
-   net-libs/libsoup:2.4[introspection]
-   net-libs/webkit-gtk:4[introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.40
-   virtual/pkgconfig
-"



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

2018-02-03 Thread Mart Raudsepp
commit: 7335677087fe8da7f3c1d6653907ef5097f9b038
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:10:32 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:10:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73356770

net-misc/rygel: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-misc/rygel/Manifest|  1 -
 net-misc/rygel/rygel-0.32.1.ebuild | 88 --
 2 files changed, 89 deletions(-)

diff --git a/net-misc/rygel/Manifest b/net-misc/rygel/Manifest
index 86a3edee2b4..d1c06eb88eb 100644
--- a/net-misc/rygel/Manifest
+++ b/net-misc/rygel/Manifest
@@ -1,2 +1 @@
-DIST rygel-0.32.1.tar.xz 3977648 BLAKE2B 
8d1777bb0092779ca545ee561e80504180cd3aeb4add0f0a41bcd8001a8130b0e52a31216414f9d4ee949fe3aaf4e607faf718c250680085692e0e262dfb0639
 SHA512 
55aaed85a44496792bf9bc34d150f1f9d79b7c440da4351c730580200cc7e3a19f378dd93fdf2ab5b4c19cd793a25481c2bf15f3e7043595e6971eca983f0767
 DIST rygel-0.34.0.tar.xz 3997364 BLAKE2B 
2906bcdea61caddd93a7fa0363c7957ce3c0443581a625b40712d2c75f25d05c693b745f72392c917190f754533c03c524fefa80799a5e8163f44eb22c1d33da
 SHA512 
90e582f42e73376bbe6b06f33d44c6a70969961728dc512523bcc578b5b7c3f826cb425b469ade87d3fdf82117309f8589c30b1cdd8ba74cc14424c7f2efdb21

diff --git a/net-misc/rygel/rygel-0.32.1.ebuild 
b/net-misc/rygel/rygel-0.32.1.ebuild
deleted file mode 100644
index 3a2cff597a1..000
--- a/net-misc/rygel/rygel-0.32.1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 systemd versionator virtualx
-
-DESCRIPTION="Rygel is an open source UPnP/DLNA MediaServer"
-HOMEPAGE="https://wiki.gnome.org/Projects/Rygel;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="X +introspection +sqlite tracker test transcode"
-
-# The deps for tracker? and transcode? are just the earliest available
-# version at the time of writing this ebuild
-RDEPEND="
-   >=dev-libs/glib-2.40.0:2
-   >=dev-libs/libgee-0.8:0.8
-   >=dev-libs/libxml2-2.7:2
-   >=media-libs/gupnp-dlna-0.9.4:2.0
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   >=media-libs/libmediaart-0.7:2.0
-   media-plugins/gst-plugins-soup:1.0
-   >=net-libs/gssdp-0.13
-   >=net-libs/gupnp-0.20.14
-   >=net-libs/gupnp-av-0.12.8
-   >=net-libs/libsoup-2.44:2.4
-   >=sys-apps/util-linux-2.20
-   x11-misc/shared-mime-info
-   introspection? ( >=dev-libs/gobject-introspection-1.33.4:= )
-   sqlite? (
-   >=dev-db/sqlite-3.5:3
-   dev-libs/libunistring:=
-   x11-libs/gdk-pixbuf:2
-   )
-   tracker? ( >=app-misc/tracker-0.16:= )
-   transcode? (
-   media-libs/gst-plugins-bad:1.0
-   media-plugins/gst-plugins-twolame:1.0
-   media-plugins/gst-plugins-libav:1.0
-   )
-   X? ( >=x11-libs/gtk+-3:3 )
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc-am
-   >=sys-devel/gettext-0.19.7
-   virtual/pkgconfig
-"
-# Maintainer only
-#   app-text/docbook-xsl-stylesheets
-#  >=dev-lang/vala-0.22
-#   dev-libs/libxslt
-
-src_configure() {
-   # We set xsltproc because man pages are provided by upstream
-   # and we do not want to regenerate them automagically.
-   gnome2_src_configure \
-   XSLTPROC=$(type -P false) \
-   --enable-gst-launch-plugin \
-   --with-media-engine=gstreamer \
-   --enable-nls \
-   --with-systemduserunitdir=$(systemd_get_userunitdir) \
-   $(use_enable introspection) \
-   $(use_enable sqlite media-export-plugin) \
-   $(use_enable sqlite lms-plugin) \
-   $(use_enable test tests) \
-   $(use_enable tracker tracker-plugin) \
-   $(use_with X ui)
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   local v
-   for v in ${REPLACING_VERSIONS}; do
-   if ! version_is_at_least 0.28.2-r1 ${v}; then
-   elog "This version stops forcing the automatical 
starting of"
-   elog "rygel as upstream pretends. This way, it will 
honor the"
-   elog "user settings at Sharing section in 
gnome-control-center."
-   elog "If you desire to keep getting rygel autostarting 
always"
-   elog "you will need to configure your desktop to do it."
-   break
-   fi
-   done
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 8f84218348358769a0d450f91ab7c219fd5b6af8
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 23:12:36 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 23:12:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f842183

net-voip/telepathy-salut: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../telepathy-salut/telepathy-salut-0.8.1.ebuild   | 62 --
 1 file changed, 62 deletions(-)

diff --git a/net-voip/telepathy-salut/telepathy-salut-0.8.1.ebuild 
b/net-voip/telepathy-salut/telepathy-salut-0.8.1.ebuild
deleted file mode 100644
index 99d3cba79ec..000
--- a/net-voip/telepathy-salut/telepathy-salut-0.8.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-any-r1
-
-DESCRIPTION="A link-local XMPP connection manager for Telepathy"
-HOMEPAGE="https://telepathy.freedesktop.org/wiki/CategorySalut;
-SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 sparc x86 ~x86-linux"
-IUSE="gnutls test"
-
-RDEPEND="
-   >=dev-libs/dbus-glib-0.61
-   dev-libs/libxml2
-   >=dev-libs/glib-2.28:2
-   >=sys-apps/dbus-1.1.0
-   >=net-libs/telepathy-glib-0.17.1
-   >=net-dns/avahi-0.6.22[dbus]
-   net-libs/libsoup:2.4
-   sys-apps/util-linux
-   gnutls? ( >=net-libs/gnutls-2.10.2 )
-   !gnutls? ( >=dev-libs/openssl-0.9.8g:0[-bindist] )
-"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   dev-libs/libxslt
-   virtual/pkgconfig
-   test? (
-   >=dev-libs/check-0.9.4
-   net-libs/libgsasl
-   dev-python/twisted-words )
-"
-# FIXME: needs xmppstream python module
-#   >=net-dns/avahi-0.6.22[python]
-
-src_prepare() {
-   # Fix uninitialized variable, upstream bug #37701
-   epatch "${FILESDIR}/${PN}-0.5.0-uninitialized.patch"
-}
-
-src_configure() {
-   econf \
-   --disable-coding-style-checks \
-   --disable-plugins \
-   --disable-Werror \
-   --disable-static \
-   --disable-avahi-tests \
-   --docdir=/usr/share/doc/${PF} \
-   --with-tls=$(usex gnutls gnutls openssl)
-   #$(use_enable test avahi-tests)
-}
-
-src_install() {
-   MAKEOPTS+=" -j1" default # bug 413581
-   prune_libtool_files
-}



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

2018-02-03 Thread Mart Raudsepp
commit: ae8acfc3be31d611dcbb9d637b41164254143d5d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:49:40 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:59:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae8acfc3

media-sound/gnome-sound-recorder: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-sound/gnome-sound-recorder/Manifest  |  1 -
 .../gnome-sound-recorder-3.21.92.ebuild| 30 --
 2 files changed, 31 deletions(-)

diff --git a/media-sound/gnome-sound-recorder/Manifest 
b/media-sound/gnome-sound-recorder/Manifest
index 568b9883e22..3cf5a46d105 100644
--- a/media-sound/gnome-sound-recorder/Manifest
+++ b/media-sound/gnome-sound-recorder/Manifest
@@ -1,2 +1 @@
-DIST gnome-sound-recorder-3.21.92.tar.xz 450092 BLAKE2B 
ebfd5e671b4c379e294e19f1f17de7f96c3d70fb3b0bfe8becfc919b76d055350603ccc03c8795bb96f64846b4d8b4f875eda73a998932aa2fef1db5ea605daa
 SHA512 
60afa42367f9087e580037213f06c1eab10a4a29fcf3c90f9737e73c9d6a1dbdb990cd010d7e33021c0e25bb33ff673e35bffb74d6fbc33b82047a0516ff31be
 DIST gnome-sound-recorder-3.24.0.1.tar.xz 452240 BLAKE2B 
37b2b81255af5aff4de08e92bf7db216b229885b1aeee87d91a1210412634b62641758c6132290b75494f780d304d78dee4c3d5d7e08de46736750c2730b20d0
 SHA512 
00e190e8d6a1a3961122485742705da4d85ef926453ff8098718566771600690562597f012f7cd9dc61b5910b4e75cc7518e86a092f052c3fc40a96310ab3c3f

diff --git 
a/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.21.92.ebuild 
b/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.21.92.ebuild
deleted file mode 100644
index 0197fe572ed..000
--- a/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.21.92.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Simple sound recorder"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/SoundRecorder;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-# For the list of plugins, see src/audioProfile.js
-COMMON_DEPEND="
-   dev-libs/gjs
-   dev-libs/glib:2
-   >=dev-libs/gobject-introspection-1.0
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.12:3[introspection]
-"
-RDEPEND="${COMMON_DEPEND}
-   media-libs/gstreamer:1.0[introspection]
-   media-libs/gst-plugins-base:1.0[introspection]
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.26
-   virtual/pkgconfig
-"



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

2018-02-03 Thread Mart Raudsepp
commit: c656d56d55a640f818bb0e6e8d6c55b99881218a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:51:17 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:59:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c656d56d

media-sound/sound-juicer: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-sound/sound-juicer/Manifest  |  1 -
 .../sound-juicer/sound-juicer-3.22.1.ebuild| 61 --
 2 files changed, 62 deletions(-)

diff --git a/media-sound/sound-juicer/Manifest 
b/media-sound/sound-juicer/Manifest
index e6acb5617ec..e189e35ef29 100644
--- a/media-sound/sound-juicer/Manifest
+++ b/media-sound/sound-juicer/Manifest
@@ -1,2 +1 @@
-DIST sound-juicer-3.22.1.tar.xz 1015520 BLAKE2B 
20bf45a7b5acc11eef53e03011b66bb0054746973acf30940185c45608fce2a521a9ee60b7662f2be20ab1e27af567176c869718096cdff298a676d313e23511
 SHA512 
023bc24006930edc9c224e0d437d2c3dbd513af9c56737cca800e38e8f56d76686e5fdff13e9cdb81f27fe3dd87b274611484a8beb0f8705d4cde5d56a23f7a2
 DIST sound-juicer-3.24.0.tar.xz 1019588 BLAKE2B 
04ba81aaa2e02fa0f6d7bfc1304be3dd1eb750c324c577b4a12809fbf43fc5ff74339750af3d99e91dc66bb0f0e4e6c33144177421f34258fb13c949a3fd5b63
 SHA512 
7bd158a4e3a7c3072513fc508f59cd70b6d9371cde142fdb58597e72b3687790b9368fc7e1a35fd8c7b49cb28703f8b2da4a789854f96cdc0af076278818a91f

diff --git a/media-sound/sound-juicer/sound-juicer-3.22.1.ebuild 
b/media-sound/sound-juicer/sound-juicer-3.22.1.ebuild
deleted file mode 100644
index 408ea917967..000
--- a/media-sound/sound-juicer/sound-juicer-3.22.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="CD ripper for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/SoundJuicer;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="debug flac test vorbis"
-
-COMMON_DEPEND="
-   app-text/iso-codes
-   >=dev-libs/glib-2.49.5:2[dbus]
-   >=x11-libs/gtk+-3.21.6:3
-   media-libs/libcanberra[gtk3]
-   >=app-cdr/brasero-2.90
-   sys-apps/dbus
-   gnome-base/gsettings-desktop-schemas
-
-   >=media-libs/libdiscid-0.4.0
-   >=media-libs/musicbrainz-5.0.1:5=
-
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0[vorbis?]
-   flac? ( media-plugins/gst-plugins-flac:1.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   gnome-base/gvfs[cdda,udev]
-   || (
-   media-plugins/gst-plugins-cdparanoia:1.0
-   media-plugins/gst-plugins-cdio:1.0 )
-   media-plugins/gst-plugins-meta:1.0
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   gnome-base/gnome-common
-   >=sys-devel/gettext-0.19.6
-   virtual/pkgconfig
-   test? ( ~app-text/docbook-xml-dtd-4.3 )
-"
-
-src_prepare() {
-   gnome2_src_prepare
-
-   # FIXME: gst macros does not take GST_INSPECT override anymore but we 
need a
-   # way to disable inspection due to gst-clutter always creating a GL 
context
-   # which is forbidden in sandbox since it needs write access to
-   # /dev/card*/dri
-   sed -e "s|\(gstinspect=\).*|\1$(type -P true)|" \
-   -i configure || die
-}
-
-src_configure() {
-   gnome2_src_configure \
-   $(usex debug --enable-debug=yes ' ')
-}



[gentoo-commits] repo/gentoo:master commit in: media-video/totem/

2018-02-03 Thread Mart Raudsepp
commit: 4d98718aae191f7b8c1dcc444e6bcb3b30531f3d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:57:11 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:59:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d98718a

media-video/totem: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-video/totem/Manifest   |   1 -
 media-video/totem/totem-3.22.1-r1.ebuild | 130 ---
 2 files changed, 131 deletions(-)

diff --git a/media-video/totem/Manifest b/media-video/totem/Manifest
index 6a5e81c56f4..92de57ea8c0 100644
--- a/media-video/totem/Manifest
+++ b/media-video/totem/Manifest
@@ -1,2 +1 @@
-DIST totem-3.22.1.tar.xz 1982788 BLAKE2B 
fe9dae757201dc0f0c39f635f192322ec12fff5f3f02202771dc6f97d83f3e5865db757b3a42e98a0c172f43f0c82198e51be88e8b84915670a4f81af600e120
 SHA512 
919f313d2af1d72256ccfa1fe41fe897427b7558c2308da8c257e5b5439f90af9a47a905dd692ab4cabec730a5be0e55710932f91bc6e2f63949f5d83c840e97
 DIST totem-3.24.0.tar.xz 1987260 BLAKE2B 
81cb8c359b2225148a18f7a5c6ae9990cbe2e2f3b9a6a31012c9c8c0920c0cea6bad0a5d9407a79530fadf00fb845fe9e6aa8dbc84d0f8d6e84fbc144d86bc9e
 SHA512 
488db91e09b7f5947e81cb547c753367542820777faab561582707b012e664f232d3810d543dfbe0823adf3d8302c2fe6cc387f4225a362d15a6df8b4342

diff --git a/media-video/totem/totem-3.22.1-r1.ebuild 
b/media-video/totem/totem-3.22.1-r1.ebuild
deleted file mode 100644
index 15a878d7bf5..000
--- a/media-video/totem/totem-3.22.1-r1.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes" # plugins are dlopened
-PYTHON_COMPAT=( python{3_4,3_5} )
-PYTHON_REQ_USE="threads"
-
-inherit autotools gnome2 python-single-r1
-
-DESCRIPTION="Media player for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Videos;
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="debug +introspection lirc nautilus +python test"
-# see bug #359379
-REQUIRED_USE="
-   python? ( introspection ${PYTHON_REQUIRED_USE} )
-"
-
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd"
-
-# FIXME:
-# Runtime dependency on gnome-session-2.91
-COMMON_DEPEND="
-   >=dev-libs/glib-2.35:2[dbus]
-   >=dev-libs/libpeas-1.1[gtk]
-   >=dev-libs/libxml2-2.6:2
-   >=dev-libs/totem-pl-parser-3.10.1:0=[introspection?]
-   >=media-libs/clutter-1.17.3:1.0[gtk]
-   >=media-libs/clutter-gst-2.99.2:3.0
-   >=media-libs/clutter-gtk-1.8.1:1.0
-   >=x11-libs/cairo-1.14
-   >=x11-libs/gdk-pixbuf-2.23.0:2
-   >=x11-libs/gtk+-3.19.4:3[introspection?]
-
-   >=media-libs/grilo-0.3.0:0.3[playlist]
-   >=media-libs/gstreamer-1.6.0:1.0
-   >=media-libs/gst-plugins-base-1.6.0:1.0[X,introspection?,pango]
-   media-libs/gst-plugins-good:1.0
-
-   x11-libs/libX11
-
-   gnome-base/gnome-desktop:3=
-   gnome-base/gsettings-desktop-schemas
-
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-   lirc? ( app-misc/lirc )
-   nautilus? ( >=gnome-base/nautilus-2.91.3 )
-   python? (
-   ${PYTHON_DEPS}
-   >=dev-python/pygobject-2.90.3:3[${PYTHON_USEDEP}] )
-"
-RDEPEND="${COMMON_DEPEND}
-   media-plugins/grilo-plugins:0.3
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   x11-themes/adwaita-icon-theme
-   python? (
-   >=dev-libs/libpeas-1.1.0[python,${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   >=x11-libs/gtk+-3.5.2:3[introspection] )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.5
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-proto/xextproto
-   x11-proto/xproto
-
-   dev-libs/gobject-introspection-common
-   gnome-base/gnome-common
-"
-# eautoreconf needs:
-#  app-text/yelp-tools
-#  dev-libs/gobject-introspection-common
-#  gnome-base/gnome-common
-# docbook-xml-dtd is needed for user doc
-# Prevent dev-python/pylint dep, bug #482538
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   # Prevent pylint usage by tests, bug #482538
-   sed -i -e 's/ check-pylint//' src/plugins/Makefile.plugins || die
-
-   eautoreconf
-   gnome2_src_prepare
-
-   # FIXME: upstream should provide a way to set GST_INSPECT, bug #358755 
& co.
-   # gst-inspect causes sandbox violations when a plugin needs write 
access to
-   # /dev/dri/card* in its init phase.
-   sed -e "s|\(gst10_inspect=\).*|\1$(type -P true)|" \
-   -i configure || die
-}
-
-src_configure() {
-   # Disabled: sample-python, sample-vala
-   local 

[gentoo-commits] repo/gentoo:master commit in: media-video/cheese/

2018-02-03 Thread Mart Raudsepp
commit: 911856817f06b59a1ac38a625dec47944c4a055c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:54:36 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:59:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91185681

media-video/cheese: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-video/cheese/Manifest |  1 -
 media-video/cheese/cheese-3.22.1.ebuild | 76 -
 2 files changed, 77 deletions(-)

diff --git a/media-video/cheese/Manifest b/media-video/cheese/Manifest
index d24163b6615..2ed89583559 100644
--- a/media-video/cheese/Manifest
+++ b/media-video/cheese/Manifest
@@ -1,2 +1 @@
-DIST cheese-3.22.1.tar.xz 1843092 BLAKE2B 
ac96629373bf02fc8e92eaea372045c72b7a69230d970d346cb3fffccf3083d03e7d9a96b85281a6725a6e96f792c7ae993e598e47f074ceee39f43f50304d52
 SHA512 
193e421a0310a60871b8e0ac7ac28c16b7ed1caf0869904f803f45c4b15be74ab98dd88df54e5ce8c0885f466004d182450350295d3d89264e6f39035a389656
 DIST cheese-3.24.0.tar.xz 1846412 BLAKE2B 
bc18ee7009f4297df232c0ffdc40f5783891f721efe137e4127c7ea61595dcb033e98b415ea31e5918d93c408355e6534ddd95687a570b5abcc1c5ce0603d262
 SHA512 
c81d2f3038970f735960a2cbcec3a074ac2e9835d3f1fa6aae83d65299692d0464fed274e71caa59831a105430ce5db56557ea0cda27c72cdb050a59331b3107

diff --git a/media-video/cheese/cheese-3.22.1.ebuild 
b/media-video/cheese/cheese-3.22.1.ebuild
deleted file mode 100644
index 417f004eff1..000
--- a/media-video/cheese/cheese-3.22.1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MIN_API_VERSION="0.26"
-
-inherit gnome2 vala virtualx
-
-DESCRIPTION="A cheesy program to take pictures and videos from your webcam"
-HOMEPAGE="https://wiki.gnome.org/Apps/Cheese;
-
-LICENSE="GPL-2+"
-SLOT="0/8" # subslot = libcheese soname version
-IUSE="+introspection test"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.39.90:2
-   >=x11-libs/gtk+-3.13.4:3[introspection?]
-   >=gnome-base/gnome-desktop-2.91.6:3=
-   >=media-libs/libcanberra-0.26[gtk3]
-   >=media-libs/clutter-1.13.2:1.0[introspection?]
-   >=media-libs/clutter-gtk-0.91.8:1.0
-   media-libs/clutter-gst:3.0
-   media-libs/cogl:1.0=[introspection?]
-
-   media-video/gnome-video-effects
-   x11-libs/gdk-pixbuf:2[jpeg,introspection?]
-   x11-libs/libX11
-   x11-libs/libXtst
-
-   >=media-libs/gstreamer-1.4:1.0[introspection?]
-   
>=media-libs/gst-plugins-base-1.4:1.0[introspection?,ogg,pango,theora,vorbis,X]
-
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-"
-RDEPEND="${COMMON_DEPEND}
-   >=media-libs/gst-plugins-bad-1.4:1.0
-   >=media-libs/gst-plugins-good-1.4:1.0
-
-   >=media-plugins/gst-plugins-jpeg-1.4:1.0
-   >=media-plugins/gst-plugins-v4l2-1.4:1.0
-   >=media-plugins/gst-plugins-vpx-1.4:1.0
-"
-DEPEND="${COMMON_DEPEND}
-   $(vala_depend)
-   app-text/docbook-xml-dtd:4.3
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   dev-util/gdbus-codegen
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.50
-   dev-util/itstool
-   virtual/pkgconfig
-   x11-proto/xf86vidmodeproto
-   test? ( dev-libs/glib:2[utils] )
-"
-
-src_prepare() {
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   GST_INSPECT=$(type -P true) \
-   $(use_enable introspection) \
-   --disable-lcov \
-   --disable-static
-}
-
-src_test() {
-   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-   GSETTINGS_SCHEMA_DIR="${S}/data" virtx emake check
-}



[gentoo-commits] repo/gentoo:master commit in: net-irc/polari/

2018-02-03 Thread Mart Raudsepp
commit: 4eb705eae5a53b462238f63a4e22f24a50f6742c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:58:25 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:59:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eb705ea

net-irc/polari: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-irc/polari/Manifest |  1 -
 net-irc/polari/polari-3.22.2.ebuild | 35 ---
 2 files changed, 36 deletions(-)

diff --git a/net-irc/polari/Manifest b/net-irc/polari/Manifest
index 210d557a807..bcac65e8a93 100644
--- a/net-irc/polari/Manifest
+++ b/net-irc/polari/Manifest
@@ -1,2 +1 @@
-DIST polari-3.22.2.tar.xz 617316 BLAKE2B 
3eca7e01270f02973e90188a81a15215e5fc8cca19b684dec7185d906d6312a5188a0b67c7b664c708a6cac4ab58516c20f3c47efa2db0d0324ad86d145cdc42
 SHA512 
36bc3b506c73f5d27c32430a19134c2b147f6344840d3cd3ee2bee14369f4c8fc87b30445fbb8186e0dc79fbc8336985d6ef2e018c9a1f8809f06ee7ac68c876
 DIST polari-3.24.2.tar.xz 804160 BLAKE2B 
c0e651d478cf814d1e055ef196ea725a17c50ee4836df7939b73dc59bbea0f74d8dbf6ceebd07b3748b6814fa52ae8a300515ac8f6952f59546e7c27ed35d6da
 SHA512 
23a475d657556e7f4e93dde8e545bf7bede227635d540bd006b85b068923d87e713bd05f14d8ccde458bf6efd4920665bca02ea41c4de870680581ebfa595f0e

diff --git a/net-irc/polari/polari-3.22.2.ebuild 
b/net-irc/polari/polari-3.22.2.ebuild
deleted file mode 100644
index 247adce60ae..000
--- a/net-irc/polari/polari-3.22.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2
-
-DESCRIPTION="An IRC client for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Polari;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-COMMON_DEPEND="
-   app-crypt/libsecret[introspection]
-   >=dev-libs/gjs-1.45.3
-   >=dev-libs/glib-2.43.4:2
-   >=dev-libs/gobject-introspection-1.50:=
-   net-im/telepathy-logger[introspection]
-   net-libs/libsoup:2.4[introspection]
-   net-libs/telepathy-glib[introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-   >=x11-libs/gtk+-3.21.6:3[introspection]
-"
-RDEPEND="${COMMON_DEPEND}
-   >=net-irc/telepathy-idle-0.2
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=sys-devel/gettext-0.19.6
-   virtual/pkgconfig
-"



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

2018-02-03 Thread Mart Raudsepp
commit: 09620ff5e195a9a28c40314b0b63f36a42c965ba
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:48:29 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:59:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09620ff5

media-sound/gnome-music: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-sound/gnome-music/Manifest   |  1 -
 .../gnome-music/gnome-music-3.22.2-r1.ebuild   | 63 --
 2 files changed, 64 deletions(-)

diff --git a/media-sound/gnome-music/Manifest b/media-sound/gnome-music/Manifest
index 78589c0a995..5eb283fdb7b 100644
--- a/media-sound/gnome-music/Manifest
+++ b/media-sound/gnome-music/Manifest
@@ -1,2 +1 @@
-DIST gnome-music-3.22.2.tar.xz 1547556 BLAKE2B 
4cd54ca211018a21b744e14fa2b81e7a229e293bd4e4288771969bc75d2845fb05862b679c35218d7c1a85a595def5eeacf6009f3fca6b8e46a08395d7c9d40d
 SHA512 
5f30a943209171f19f344139b40725649a56499ad874be138d8681e0ff81fda7fe85fc1b20c3dcf7fea21dd28a0921a47fe28fe064fa1ea8d51a313ec56e7924
 DIST gnome-music-3.24.2.tar.xz 1557848 BLAKE2B 
329d60da4c2c601524e01bddf086ea699bc10ea311d440ae24af0a83829d7ad4c351963e1b08bd30a8538c9b9987d9f2a41f95690ae31e75c06aac0cc9db2dcf
 SHA512 
a922c80f922b9231e9bbe0cbd1fd33c059c719350c250dbb24316224e3306de7576303119fc9ec303f569559c36d6b076b5ec1076b4f9221a8fb133dcd9f040e

diff --git a/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild 
b/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild
deleted file mode 100644
index 8c6f870f32a..000
--- a/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_4,3_5} )
-
-inherit gnome2 python-single-r1
-
-DESCRIPTION="Music management for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Music;
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   >=app-misc/tracker-1.9.0[introspection(+)]
-   >=dev-python/pygobject-3.21.1:3[cairo,${PYTHON_USEDEP}]
-   >=dev-libs/glib-2.28:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=media-libs/grilo-0.3.1:0.3[introspection]
-   media-libs/libmediaart:2.0[introspection]
-   >=x11-libs/gtk+-3.19.3:3[introspection]
-"
-# xdg-user-dirs-update needs to be there to create needed dirs
-# https://bugzilla.gnome.org/show_bug.cgi?id=731613
-RDEPEND="${COMMON_DEPEND}
-   || (
-   app-misc/tracker[gstreamer]
-   app-misc/tracker[ffmpeg]
-   )
-   x11-libs/libnotify[introspection]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   media-libs/gstreamer:1.0[introspection]
-   media-libs/gst-plugins-base:1.0[introspection]
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/grilo-plugins:0.3[tracker]
-   x11-misc/xdg-user-dirs
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.26
-   virtual/pkgconfig
-"
-
-pkg_setup() {
-   python_setup
-}
-
-src_prepare() {
-   sed -e '/sys.path.insert/d' -i "${S}"/gnome-music.in || die "python 
fixup sed failed"
-   gnome2_src_prepare
-}
-
-src_install() {
-   gnome2_src_install
-   python_fix_shebang "${D}"usr/bin/gnome-music
-}



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2018-02-03 Thread Thomas Deutschmann
commit: 0d92ad400e3dc1753df979c8a54001da91aecfe3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb  3 22:58:06 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb  3 22:58:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d92ad40

net-firewall/nftables: Bump to v0.8.2

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 net-firewall/nftables/Manifest  |  1 +
 net-firewall/nftables/nftables-0.8.2.ebuild | 84 +
 2 files changed, 85 insertions(+)

diff --git a/net-firewall/nftables/Manifest b/net-firewall/nftables/Manifest
index d0f5ddd5bf4..08868d16b55 100644
--- a/net-firewall/nftables/Manifest
+++ b/net-firewall/nftables/Manifest
@@ -1,2 +1,3 @@
 DIST nftables-0.8.1.tar.gz 329098 BLAKE2B 
d6e5803e146ed5883761d620ef1549e883a2947b495a9b1ff2a40c70794ab5125596e0802fb60bff6d1a21e666c94338b92a22ef3c4c1b66e0b4521cd3dfb78d
 SHA512 
5cae3a411f24adc17786b45d4ed8256eb44fd90f044f7f5d7ddebb1875d0317197e13128d9b22115cd7fcdfa21dba3c539de325ecedce707f8766c93e03efc75
+DIST nftables-0.8.2.tar.gz 332736 BLAKE2B 
9730735a7112a80e257ee2dc4f7f957b6d62964d5bbf85bbed8d375e07ef86021f21f027e889b913bc5862ccda57942a4411fda7e642c949d1fbf37e640e5b5a
 SHA512 
cc97937014c65bb2489759ac2f603d354be8d3b60f6e0f0f8c2598dc59a66d8701f426c9f91bc4b17d0f574832835ffc38de054a554bda02e09c617fd2a8129b
 DIST nftables-0.8.tar.gz 327629 BLAKE2B 
a484c22ac010f68fc7458c12cabd0c35e474a0bf81fa4edbefba12d75b424898d38adb11a7fbb4542efbbb2d14be823701b3d9ced7b9fd669338366733fa169b
 SHA512 
90ffebc338c121334ca42822793b6fdeff48390e755c690308919de47064b53f9af735a2c2914e5255f1bddec90484599337d4cdd67f7a01a3956deefcef9fcb

diff --git a/net-firewall/nftables/nftables-0.8.2.ebuild 
b/net-firewall/nftables/nftables-0.8.2.ebuild
new file mode 100644
index 000..a38042ed9a6
--- /dev/null
+++ b/net-firewall/nftables/nftables-0.8.2.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools linux-info systemd
+
+DESCRIPTION="Linux kernel (3.13+) firewall, NAT and packet mangling tools"
+HOMEPAGE="https://netfilter.org/projects/nftables/;
+SRC_URI="https://git.netfilter.org/nftables/snapshot/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~x86"
+IUSE="debug doc +gmp +readline"
+
+RDEPEND=">=net-libs/libmnl-1.0.3:0=
+   gmp? ( dev-libs/gmp:0= )
+   readline? ( sys-libs/readline:0= )
+   >=net-libs/libnftnl-1.0.9:0="
+
+DEPEND="${RDEPEND}
+   >=app-text/docbook2X-0.8.8-r4
+   doc? ( >=app-text/dblatex-0.3.7 )
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig"
+
+S="${WORKDIR}/v${PV}"
+
+pkg_setup() {
+   if kernel_is ge 3 13; then
+   CONFIG_CHECK="~NF_TABLES"
+   linux-info_pkg_setup
+   else
+   eerror "This package requires kernel version 3.13 or newer to 
work properly."
+   fi
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --sbindir="${EPREFIX}"/sbin
+   $(use_enable doc pdf-doc)
+   $(use_enable debug)
+   $(use_with readline cli)
+   $(use_with !gmp mini_gmp)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   dodir /usr/libexec/${PN}
+   exeinto /usr/libexec/${PN}
+   doexe "${FILESDIR}"/libexec/${PN}.sh
+
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   newinitd "${FILESDIR}"/${PN}.init ${PN}
+   keepdir /var/lib/nftables
+
+   systemd_dounit "${FILESDIR}"/systemd/${PN}-restore.service
+   systemd_enable_service basic.target ${PN}-restore.service
+}
+
+pkg_postinst() {
+   local save_file
+   save_file="${EROOT%/}/var/lib/nftables/rules-save"
+
+   # In order for the nftables-restore systemd service to start
+   # the save_file must exist.
+   if [[ ! -f ${save_file} ]]; then
+   touch ${save_file}
+   fi
+
+   elog "If you are creating firewall rules before the next system restart 
"
+   elog "the nftables-restore service must be manually started in order to 
"
+   elog "save those rules on shutdown."
+}



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

2018-02-03 Thread Thomas Deutschmann
commit: 105002b6edc98265a270914f51df8f219b4f314f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb  3 22:52:33 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb  3 22:52:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105002b6

net-misc/keychain: Bump to v2.8.5

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 net-misc/keychain/Manifest  |  1 +
 net-misc/keychain/keychain-2.8.5.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/net-misc/keychain/Manifest b/net-misc/keychain/Manifest
index 9553b4a7a69..0e2a84bc4e4 100644
--- a/net-misc/keychain/Manifest
+++ b/net-misc/keychain/Manifest
@@ -2,3 +2,4 @@ DIST keychain-2.8.1.tar.gz 43866 BLAKE2B 
7b861d9ded273341da47ee8db77b5b665a81cbb
 DIST keychain-2.8.2.tar.gz 44211 BLAKE2B 
0916ffebbfa682480e7599d7a07a74e916ab780af47f2c4094fff42147ad461a23bdae81cf18ca5ebba8f21b3917f74cfa3503026fe1f58beff2946173c45cba
 SHA512 
741cffb5affaeaf2cea701d76e3bae8a0cbc2b781bf5d578001e763cee531011aacfb1754974afcb63e6d46588716e62e5f96fff63eff76dd5ad8ee7e16ac196
 DIST keychain-2.8.3.tar.gz 44205 BLAKE2B 
dcdddaa31d28a401ba4aaca842a8a0c50f18feab3ecd4e2d917eb4f7c2f7c7602c369d82dc82ddf788984b94e95ce4006ee3777995d8ab48cbe9797e39f5bb52
 SHA512 
493f376fff386069202eadcbef61140e8e66d195e7f73574948e69d8e778bd8f2c2926a174cd25b4380c17f0fb769d423a3b36af4a98aa39f55db22c45216447
 DIST keychain-2.8.4.tar.gz 66143 BLAKE2B 
eee39aa4f6d0e14277cc005247fe69ba9e83fc49427e3947c5ecaaf4d9d25c92f0ff22eb5fc7cca38c86dd6320c7b7c068841a960816ed97e20ab31c77dc2fa9
 SHA512 
182d6c6bc1f278839b1127eb0b0b7d094a06251c86a5ebb10410e657d3cb2e7207c75aa9d1f655a5fd4b4f2290f4bdcf00b3714cb0f825e6ef9eecfc486c6abe
+DIST keychain-2.8.5.tar.gz 66446 BLAKE2B 
a81d746aef5210f8f66d86c00ea693a0e2a8427cf853690065ed86c30baf70f23894faaca5cde7d46378405e074641ed3d641dae7bd818b7e9fc1585ad6348a0
 SHA512 
2b98a9937b058267150d62d4f95653c4bbab6117a0774ac266abf95020c41905412b1522a82abf71722f25f6af31ba3498f6d54622009498c845802bf2df6024

diff --git a/net-misc/keychain/keychain-2.8.5.ebuild 
b/net-misc/keychain/keychain-2.8.5.ebuild
new file mode 100644
index 000..6f06f6475bd
--- /dev/null
+++ b/net-misc/keychain/keychain-2.8.5.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Agent manager for OpenSSH, ssh.com, Sun SSH, and GnuPG"
+HOMEPAGE="http://www.funtoo.org/Keychain;
+SRC_URI="https://github.com/funtoo/keychain/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND="dev-lang/perl"
+RDEPEND=""
+
+src_install() {
+   dobin ${PN}
+   doman ${PN}.1
+   dodoc ChangeLog README.md
+}



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

2018-02-03 Thread Andrew John Hughes
commit: 23eb35798698e5111c3cca64f04ae019dbddafbf
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Sat Feb  3 22:48:42 2018 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Sat Feb  3 22:48:42 2018 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=23eb3579

Merge branch 'master' of git://anongit.gentoo.org/proj/java

 dev-java/gradle-bin/Manifest | 1 +
 .../gradle-bin/{gradle-bin-3.5-r1.ebuild => gradle-bin-4.4.1.ebuild} | 0
 2 files changed, 1 insertion(+)



[gentoo-commits] proj/java:master commit in: dev-java/gcj-jdk/, dev-java/gcj-jdk/files/

2018-02-03 Thread Andrew John Hughes
commit: 97c0077e752b024cc79a476477c52d403ec5023c
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Sat Feb  3 22:48:32 2018 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Sat Feb  3 22:48:32 2018 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=97c0077e

dev-java/gcj-jdk: Update to latest version of GCC 5 and merge with broken 
system version, which lacks environment file.

Package-Manager: portage-2.3.5

 dev-java/gcj-jdk/ChangeLog |  10 +-
 .../gcj-jdk/files/{gcj-jdk.env => gcj-jdk.env.sh}  |   8 +-
 dev-java/gcj-jdk/gcj-jdk-5.1.0-r2.ebuild   | 109 -
 ...cj-jdk-5.3.0.ebuild => gcj-jdk-5.4.0-r1.ebuild} |  11 +--
 4 files changed, 18 insertions(+), 120 deletions(-)

diff --git a/dev-java/gcj-jdk/ChangeLog b/dev-java/gcj-jdk/ChangeLog
index 3261fcef..8beb1bcc 100644
--- a/dev-java/gcj-jdk/ChangeLog
+++ b/dev-java/gcj-jdk/ChangeLog
@@ -1,7 +1,15 @@
 # ChangeLog for dev-java/gcj-jdk
-# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2018 Gentoo Foundation; Distributed under the GPL v2
 # $Header: /var/cvsroot/gentoo-x86/dev-java/gcj-jdk/ChangeLog,v 1.19 
2015/05/21 08:50:13 chewi Exp $
 
+*gcj-jdk-5.4.0-r1 (03 Feb 2018)
+
+  03 Feb 2018; Andrew John Hughes 
+  +files/gcj-jdk.env.sh, +gcj-jdk-5.4.0-r1.ebuild, -files/gcj-jdk.env,
+  -gcj-jdk-5.1.0-r2.ebuild, -gcj-jdk-5.3.0.ebuild:
+  dev-java/gcj-jdk: Update to latest version of GCC 5 and merge with broken
+  system version, which lacks environment file.
+
 *gcj-jdk-5.3.0 (25 Mar 2016)
 
   25 Mar 2016; Andrew John Hughes 

diff --git a/dev-java/gcj-jdk/files/gcj-jdk.env 
b/dev-java/gcj-jdk/files/gcj-jdk.env.sh
similarity index 72%
rename from dev-java/gcj-jdk/files/gcj-jdk.env
rename to dev-java/gcj-jdk/files/gcj-jdk.env.sh
index beed450e..0fde8b32 100644
--- a/dev-java/gcj-jdk/files/gcj-jdk.env
+++ b/dev-java/gcj-jdk/files/gcj-jdk.env.sh
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-VERSION="GCJ @PV@"
-JAVA_HOME="@GENTOO_PORTAGE_EPREFIX@/usr/lib/@P@"
-JDK_HOME="@GENTOO_PORTAGE_EPREFIX@/usr/lib/@P@"
+VERSION="GCJ ${PV}"
+JAVA_HOME="${EPREFIX}/usr/$(get_libdir)/${P}"
+JDK_HOME="${EPREFIX}/usr/$(get_libdir)/${P}"
 JAVAC="${JAVA_HOME}/bin/javac"
 PATH="${JAVA_HOME}/bin"
 ROOTPATH="${JAVA_HOME}/bin"

diff --git a/dev-java/gcj-jdk/gcj-jdk-5.1.0-r2.ebuild 
b/dev-java/gcj-jdk/gcj-jdk-5.1.0-r2.ebuild
deleted file mode 100644
index 8790c660..
--- a/dev-java/gcj-jdk/gcj-jdk-5.1.0-r2.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit java-vm-2 multilib
-
-DESCRIPTION="Java wrappers around GCJ"
-HOMEPAGE="http://www.gentoo.org/;
-SRC_URI=""
-
-LICENSE="GPL-2"
-#KEYWORDS="~amd64"
-SLOT="0"
-IUSE="awt javadoc"
-
-API_DIFF_PV="5.1.0"
-
-# perl is needed for javac wrapper
-RDEPEND="
-   dev-java/ecj-gcj:*
-   dev-lang/perl
-   ~sys-devel/gcc-${PV}[awt?,gcj]
-   javadoc? ( dev-java/gnu-classpath:0[gjdoc] )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"
-
-src_install() {
-   # jre lib paths ...
-   local libarch="$(get_system_arch)"
-   local gcc_version=${PV}
-   local gccbin=$(gcc-config -B ${gcc_version})
-   gccbin=${gccbin#"${EPREFIX}"}
-   local gcclib=$(gcc-config -L ${gcc_version} | cut -d':' -f1)
-   gcclib=${gcclib#"${EPREFIX}"}
-   local gcjhome="/usr/$(get_libdir)/${P}"
-   local gcjprefix="${EPREFIX}${gcjhome}"
-   local gccchost="${CHOST}"
-   local gcjlibdir=$(echo 
"${EPREFIX}"/usr/$(get_libdir)/gcj-${gcc_version}-*)
-   gcjlibdir=${gcjlibdir#"${EPREFIX}"}
-
-   # links
-   dodir ${gcjhome}/bin
-   dodir ${gcjhome}/jre/bin
-   dosym ${gccbin}/gij ${gcjhome}/bin/java
-   dosym ${gccbin}/gij ${gcjhome}/jre/bin/java
-   dosym ${gccbin}/gjar ${gcjhome}/bin/jar
-   dosym ${gccbin}/grmic ${gcjhome}/bin/rmic
-   dosym ${gccbin}/gjavah ${gcjhome}/bin/javah
-   dosym ${gccbin}/jcf-dump ${gcjhome}/bin/javap
-   dosym ${gccbin}/gappletviewer ${gcjhome}/bin/appletviewer
-   dosym ${gccbin}/gjarsigner ${gcjhome}/bin/jarsigner
-   dosym ${gccbin}/grmiregistry ${gcjhome}/bin/rmiregistry
-   dosym ${gccbin}/grmiregistry ${gcjhome}/jre/bin/rmiregistry
-   dosym ${gccbin}/gkeytool ${gcjhome}/bin/keytool
-   dosym ${gccbin}/gkeytool ${gcjhome}/jre/bin/keytool
-   dosym ${gccbin}/gnative2ascii ${gcjhome}/bin/native2ascii
-   dosym ${gccbin}/gorbd ${gcjhome}/bin/orbd
-   dosym ${gccbin}/gorbd ${gcjhome}/jre/bin/orbd
-   dosym ${gccbin}/grmid ${gcjhome}/bin/rmid
-   dosym ${gccbin}/grmid ${gcjhome}/jre/bin/rmid
-   dosym ${gccbin}/gserialver ${gcjhome}/bin/serialver
-   dosym 

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

2018-02-03 Thread Thomas Deutschmann
commit: 73a5396aaf8e8b597910e97e5f355268ecdb4bc0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb  3 22:46:43 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb  3 22:47:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73a5396a

dev-util/checkbashisms: Bump to v2.17.12

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-util/checkbashisms/Manifest|  1 +
 .../checkbashisms/checkbashisms-2.17.12.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-util/checkbashisms/Manifest b/dev-util/checkbashisms/Manifest
index 80fab4755f4..9f001b79fb2 100644
--- a/dev-util/checkbashisms/Manifest
+++ b/dev-util/checkbashisms/Manifest
@@ -1,2 +1,3 @@
 DIST devscripts_2.17.10.tar.xz 706396 BLAKE2B 
711a991bc958782e0003fd32b947dee8df829d5a3e24268160d1a507b39dea34d9e4ead3999103850c4388f2e4185f655c09c8d5f25d422107bef18eee9d0498
 SHA512 
eb2bcd29237696e0e768d2513fa895891cb2b368c41c6d611ad7db815400b22317324b8326d4e71b1ab511a8a7abafdf0a2f2641da955034ae58b3d4aad3fc77
 DIST devscripts_2.17.11.tar.xz 708508 BLAKE2B 
54f9fccf54a760da1ce9619117040033510a48da815380f0e05beb4fb44a5d8ab9b959328fea11665b66ea36ce56a7810ac52a4010768a8ccf9753c4337c0703
 SHA512 
bcce427b551ba1ee19b794e4a8243ae6c8efdf7fb6f108b7cd0e43a93ce9a12bee99800fc40c2b8a2bbf6451adceaeadf6042752fa2e404cad2d014ff03474bf
+DIST devscripts_2.17.12.tar.xz 712676 BLAKE2B 
a0d04f042d5337ab89e5cdb7f16b4de306052e1f7517ed05ff7fab447d8425b44a37941e7672c69f36ce93b3c73c06d706bb6c0e8c0932d626789b0d141193f1
 SHA512 
21de10d8742c3f2c3c83fc2660ccb7aed112e78c7a7857de62c0fa1b84d7c03a9e488b60a291e5529e3c5632c3f5d206dc11e88ac133a7e84632e1885041e3c5

diff --git a/dev-util/checkbashisms/checkbashisms-2.17.12.ebuild 
b/dev-util/checkbashisms/checkbashisms-2.17.12.ebuild
new file mode 100644
index 000..be58ae776f2
--- /dev/null
+++ b/dev-util/checkbashisms/checkbashisms-2.17.12.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN="devscripts"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Perl script to check for commonly used bash features not defined 
by POSIX"
+HOMEPAGE="https://packages.debian.org/devscripts 
https://anonscm.debian.org/cgit/collab-maint/devscripts.git;
+SRC_URI="mirror://debian/pool/main/d/${MY_PN}/${MY_P/-/_}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# Requires python packages to check tools we don't need anyway
+RESTRICT="test"
+
+RDEPEND="dev-lang/perl
+   virtual/perl-Getopt-Long
+   !

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

2018-02-03 Thread Mart Raudsepp
commit: c6a688787317c72278ab9ba6f02f343e30d1cdae
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:43:49 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:43:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a68878

media-gfx/gnome-photos: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/gnome-photos/Manifest   |  1 -
 media-gfx/gnome-photos/gnome-photos-3.22.6.ebuild | 65 ---
 2 files changed, 66 deletions(-)

diff --git a/media-gfx/gnome-photos/Manifest b/media-gfx/gnome-photos/Manifest
index 04a25d74d12..a1219972586 100644
--- a/media-gfx/gnome-photos/Manifest
+++ b/media-gfx/gnome-photos/Manifest
@@ -1,2 +1 @@
-DIST gnome-photos-3.22.6.tar.xz 962468 BLAKE2B 
ceb0e54801f42a681b26e95d670a7fbb0f62d9965e38452f8d5aab045c85bb0ee57558e90caa6a8090f978c5a02b6f327692460dfe5de92bf88079dd86fc8ba9
 SHA512 
4fb2a67b5acdbd63cf6f252d0116a4b759e0e6daae48d638ce96ec35f24deee44720c45cb0720a26b6a380e66bbde1619173de340375828bc2f4ef943606fe26
 DIST gnome-photos-3.24.5.tar.xz 985864 BLAKE2B 
d5e7dd48a6f81c9ca6efa7dcb2b17fdeb781070d1789514098b8cf30bcd12eba145e57e584f42f66286579ad40ef31f370c471abaab30ba684bada9878afc3c4
 SHA512 
8dcdb9962a55d6e2e9aa28ef86dcc9100f80fa9739763cea1475052379050a23428e09e8416ed75b9a9b1c85a9bc27d94a75faeefde3d546195c21f04f85379d

diff --git a/media-gfx/gnome-photos/gnome-photos-3.22.6.ebuild 
b/media-gfx/gnome-photos/gnome-photos-3.22.6.ebuild
deleted file mode 100644
index 5a11fd322e7..000
--- a/media-gfx/gnome-photos/gnome-photos-3.22.6.ebuild
+++ /dev/null
@@ -1,65 +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 gnome2 python-any-r1 virtualx
-
-DESCRIPTION="Access, organize and share your photos on GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Photos;
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="flickr test upnp-av"
-
-COMMON_DEPEND="
-   >=app-misc/tracker-1:=[miner-fs]
-   >=dev-libs/glib-2.44:2
-   gnome-base/gnome-desktop:3=
-   >=dev-libs/libgdata-0.15.2:0=[gnome-online-accounts]
-   media-libs/babl
-   >=media-libs/gegl-0.3.5:0.3[cairo,jpeg2k,raw]
-   media-libs/gexiv2
-   >=media-libs/grilo-0.3.0:0.3=
-   >=media-libs/libpng-1.6:0=
-   >=net-libs/gnome-online-accounts-3.8:=
-   >=net-libs/libgfbgraph-0.2.1:0.2
-   >=x11-libs/cairo-1.14
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.19.1:3
-"
-# gnome-online-miners is also used for google, facebook, DLNA - not only flickr
-# but out of all the grilo-plugins, only upnp-av and flickr get used, which 
have USE flags here,
-# so don't pull it always, but only if either USE flag is enabled
-RDEPEND="${COMMON_DEPEND}
-   net-misc/gnome-online-miners[flickr?]
-   upnp-av? ( media-plugins/grilo-plugins:0.3[upnp-av] )
-   flickr? ( media-plugins/grilo-plugins:0.3[flickr] )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-util/desktop-file-utils
-   >=dev-util/intltool-0.50.1
-   virtual/pkgconfig
-   test? ( $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-
-python_check_deps() {
-   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   # XXX: how to deal with rdtscp support, x86intrin
-   gnome2_src_configure \
-   $(use_enable test dogtail)
-}
-
-src_test() {
-   virtx emake check
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 468820675d40e2f46fd2a3a97bee0d6414b40720
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:44:47 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:44:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46882067

media-gfx/simple-scan: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/simple-scan/Manifest|  1 -
 media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/media-gfx/simple-scan/Manifest b/media-gfx/simple-scan/Manifest
index da6ee0088ca..0e5d9c5a0c1 100644
--- a/media-gfx/simple-scan/Manifest
+++ b/media-gfx/simple-scan/Manifest
@@ -1,2 +1 @@
-DIST simple-scan-3.22.0.1.tar.xz 659564 BLAKE2B 
6001f03b6dbdec8b84ac3098f86b131df8784cd65a6a557ecda6465e1fdeac49ad8efb43fd1ea93aa933efc1c7edb6753ede103fee35d7074da191a2bb114c03
 SHA512 
2513887546c1e6764cffeac26638646b03eaf2f2e5d8013d9c29dfd4fbe200b347f7ee8a94e402497d1e8bdc3ba55d2fb2a740eecc8663c692f75fda2b1607c0
 DIST simple-scan-3.24.1.tar.xz 669452 BLAKE2B 
927c3479a96525e2996aab7c8d37b585f93fb07315a4f5cb0292b29befb0417df6e6afb059158d9840903d7474bf0d4fb97e634c585ca7654581b82a264e80f0
 SHA512 
9f0ced644b13dcaad4f1e23a6520b1cbe3c36d995fca4791383f959986cd396f123638a23dbd02a9511ef7e1c9c915b3a025e9b7e4de4542a4c180c4fe29e2b9

diff --git a/media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild 
b/media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild
deleted file mode 100644
index a51727d2014..000
--- a/media-gfx/simple-scan/simple-scan-3.22.0.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 vala versionator
-
-DESCRIPTION="Simple document scanning utility"
-HOMEPAGE="https://launchpad.net/simple-scan;
-
-MY_PV=$(get_version_component_range 1-2)
-SRC_URI="https://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.xz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="colord" # packagekit
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.32:2
-   dev-libs/libgusb[vala]
-   >=media-gfx/sane-backends-1.0.20:=
-   >=sys-libs/zlib-1.2.3.1:=
-   virtual/jpeg:0=
-   x11-libs/cairo:=
-   >=x11-libs/gtk+-3:3
-   colord? ( >=x11-misc/colord-0.1.24:=[udev] )
-"
-# packagekit? ( app-admin/packagekit-base )
-RDEPEND="${COMMON_DEPEND}
-   x11-misc/xdg-utils
-   x11-themes/adwaita-icon-theme
-"
-DEPEND="${COMMON_DEPEND}
-   $(vala_depend)
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=sys-devel/gettext-0.19.7
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # Force build from vala sources due to mismatch between generated
-   # C files and configure switches
-   # https://bugs.launchpad.net/simple-scan/+bug/1462769
-   rm -f src/simple_scan_vala.stamp || die
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-packagekit \
-   $(use_enable colord)
-   # $(use_enable packagekit)
-}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/gnome-font-viewer/

2018-02-03 Thread Mart Raudsepp
commit: 83d8d84104e3a395fd33e7a8911f3392d99dd9c5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:42:45 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:42:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83d8d841

media-gfx/gnome-font-viewer: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/gnome-font-viewer/Manifest   |  1 -
 .../gnome-font-viewer-3.22.0.ebuild| 26 --
 2 files changed, 27 deletions(-)

diff --git a/media-gfx/gnome-font-viewer/Manifest 
b/media-gfx/gnome-font-viewer/Manifest
index 2c4d1d6fc3c..6e35d5bd712 100644
--- a/media-gfx/gnome-font-viewer/Manifest
+++ b/media-gfx/gnome-font-viewer/Manifest
@@ -1,2 +1 @@
-DIST gnome-font-viewer-3.22.0.tar.xz 320680 BLAKE2B 
d1324c1316d1f43727a5fd38164a9f114d84f20bb73207adf4e6799dbde52cd8151d246f0452334bc1211c11d944b1471ba3b1e10031ee2e55855bcb74a4721b
 SHA512 
deea5dce759fa7134701f5edddf4838a0221ef776777fabd071982fddc8d3a6c535a55035d4457d262db54760c3616335d9ef89e29f846a648c1d9d522018978
 DIST gnome-font-viewer-3.24.0.tar.xz 321600 BLAKE2B 
85fbd170ccf3b9464f51b6c6d556fa8d9fce155581b37d2db0ff37abb703b4fefad3b2f5db7ed09edd033bc36aacd4a574b84fefdac4cb516c43f1255d9c0d8a
 SHA512 
b951e98161dde808aaea0666c0266a3381c82a264dc7280fcd4e4debcf07bd44c940e738a2dd5134276625e404f87323f57930764ed2faeedad831ba6a8bb591

diff --git a/media-gfx/gnome-font-viewer/gnome-font-viewer-3.22.0.ebuild 
b/media-gfx/gnome-font-viewer/gnome-font-viewer-3.22.0.ebuild
deleted file mode 100644
index 9b22738513c..000
--- a/media-gfx/gnome-font-viewer/gnome-font-viewer-3.22.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Font viewer for GNOME"
-HOMEPAGE="https://git.gnome.org/browse/gnome-font-viewer;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-RDEPEND="
-   >=dev-libs/glib-2.35.1:2
-   gnome-base/gnome-desktop:3=
-   media-libs/fontconfig:1.0
-   media-libs/freetype:2
-   >=media-libs/harfbuzz-0.9.9
-   >=x11-libs/gtk+-3.20:3
-"
-DEPEND="${RDEPEND}
-   >=dev-util/intltool-0.40
-   virtual/pkgconfig
-"



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

2018-02-03 Thread Mart Raudsepp
commit: bfb7ccea396954798f6bad7aed134442a658effe
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:39:17 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:39:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb7ccea

media-gfx/eog: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/eog/Manifest  |  1 -
 media-gfx/eog/eog-3.20.5.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/media-gfx/eog/Manifest b/media-gfx/eog/Manifest
index 949f2182ac8..fe9d4b09fab 100644
--- a/media-gfx/eog/Manifest
+++ b/media-gfx/eog/Manifest
@@ -1,2 +1 @@
-DIST eog-3.20.5.tar.xz 4622880 BLAKE2B 
c70e9bd8c93b3443910803b6c65d49ac3e4cc67767cc7cf1632034294ecb3be5a983c8fa58583d3438cd894dbe2132c5794cbfb2d47f51c0c3c0732a8e0e3bb2
 SHA512 
b4256cfe5f42921efd58d7ce09fa2a82d0328e1fe4cd94e953cc161c23b5079d05b89106ec78c670079d0b6ff0f31eeff25d67c259a600dbb4a0afe25b5d93a1
 DIST eog-3.24.1.tar.xz 4632496 BLAKE2B 
24d6957285d5dae7fa2299165b1bac236e75dfa77938132c1d3f8f7312ed4a07d5d3a770fdbdbcf5ee1966a43b4443d331fbedec47575836e2170fa3022e657f
 SHA512 
c007b6f2cd2b59747db72a5b86ecb34ac87fe0910a2d33df466eb05ebe5ff638fb9e57b15f2ea9328c95037334a2fd9010895241ff285628b7ed7b6d65912fb0

diff --git a/media-gfx/eog/eog-3.20.5.ebuild b/media-gfx/eog/eog-3.20.5.ebuild
deleted file mode 100644
index 24b66cdb230..000
--- a/media-gfx/eog/eog-3.20.5.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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="The Eye of GNOME image viewer"
-HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome;
-
-LICENSE="GPL-2+"
-SLOT="1"
-
-IUSE="debug +exif +introspection +jpeg lcms +svg tiff xmp"
-REQUIRED_USE="exif? ( jpeg )"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-RDEPEND="
-   >=dev-libs/glib-2.42.0:2[dbus]
-   >=dev-libs/libpeas-0.7.4:=[gtk]
-   >=gnome-base/gnome-desktop-2.91.2:3=
-   >=gnome-base/gsettings-desktop-schemas-2.91.92
-   >=x11-libs/gtk+-3.19.11:3[introspection,X]
-   >=x11-misc/shared-mime-info-0.20
-
-   >=x11-libs/gdk-pixbuf-2.30.0:2[jpeg?,tiff?]
-   x11-libs/libX11
-
-   exif? ( >=media-libs/libexif-0.6.14 )
-   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
-   jpeg? ( virtual/jpeg:0 )
-   lcms? ( media-libs/lcms:2 )
-   svg? ( >=gnome-base/librsvg-2.36.2:2 )
-   xmp? ( media-libs/exempi:2 )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.16
-   >=dev-util/intltool-0.50.1
-   dev-util/itstool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(usex debug --enable-debug=yes ' ') \
-   $(use_enable introspection) \
-   $(use_with jpeg libjpeg) \
-   $(use_with exif libexif) \
-   $(use_with lcms cms) \
-   $(use_with xmp) \
-   $(use_with svg librsvg)
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 791ebaf0ff1144ae7f2885565f94f20624477f7a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:23:12 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:34:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=791ebaf0

gnome-extra/gnome-system-monitor: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-system-monitor/Manifest  |  1 -
 .../gnome-system-monitor-3.22.2.ebuild | 39 --
 2 files changed, 40 deletions(-)

diff --git a/gnome-extra/gnome-system-monitor/Manifest 
b/gnome-extra/gnome-system-monitor/Manifest
index 3ff55f4a62e..3920fff8ab7 100644
--- a/gnome-extra/gnome-system-monitor/Manifest
+++ b/gnome-extra/gnome-system-monitor/Manifest
@@ -1,2 +1 @@
-DIST gnome-system-monitor-3.22.2.tar.xz 907524 BLAKE2B 
81a1efd150439b84f471f7836d79da13d848c234372f41f67cd09d17b4ae6dfe36e3f9f9b8b769f611715513bd5c2624a058c24bf511a8aa46f85b0a6487fccd
 SHA512 
ff713efc63a8b5f247c27358f69fcb8b27d631fb242bddc6a819b453996f7c49ba8a883bd3dc38437dccd227cbf393e473226d597af0994f25f4ca3246707d13
 DIST gnome-system-monitor-3.24.0.tar.xz 930956 BLAKE2B 
f08b6da2ee9d45d232f1d1f019b6844f6fcf50baf85944d240611fbc0794cce6755d6b7daf275f4d97686558fc0f2525a8700fda473b576f8d5d41f66f118275
 SHA512 
4155d9f130cc1e38d32b76d10ca91056d82b90ca555f9ded26acfd1ef018b92163b0cc2256861b8e166b3bfa7eadc6c900aa9c79fd0c859045197ab2eaf3dc9f

diff --git 
a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.22.2.ebuild 
b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.22.2.ebuild
deleted file mode 100644
index 62a944fda1f..000
--- a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.22.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="The Gnome System Monitor"
-HOMEPAGE="https://help.gnome.org/users/gnome-system-monitor/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="systemd X"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-RDEPEND="
-   >=dev-libs/glib-2.37.3:2
-   >=gnome-base/libgtop-2.28.2:2=
-   >=x11-libs/gtk+-3.12:3[X(+)]
-   >=dev-cpp/gtkmm-3.3.18:3.0
-   >=dev-cpp/glibmm-2.34:2
-   >=dev-libs/libxml2-2.0:2
-   >=gnome-base/librsvg-2.35:2
-   systemd? ( >=sys-apps/systemd-44:0= )
-   X? ( >=x11-libs/libwnck-2.91.0:3 )
-"
-# eautoreconf requires gnome-base/gnome-common
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.41.0
-   virtual/pkgconfig
-"
-
-src_configure() {
-   # XXX: appdata is deprecated by appstream-glib, upstream must upgrade
-   gnome2_src_configure \
-   $(use_enable systemd) \
-   $(use_enable X wnck) \
-   APPDATA_VALIDATE="$(type -P true)"
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 27d6fdc17d6f395d44b4b28f3816b1bcd1f8aefa
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:19:37 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:33:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27d6fdc1

gnome-extra/gnome-power-manager: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-power-manager/Manifest   |  1 -
 .../gnome-power-manager-3.22.2.ebuild  | 55 --
 2 files changed, 56 deletions(-)

diff --git a/gnome-extra/gnome-power-manager/Manifest 
b/gnome-extra/gnome-power-manager/Manifest
index a49f3d5dbe9..e330ef432ab 100644
--- a/gnome-extra/gnome-power-manager/Manifest
+++ b/gnome-extra/gnome-power-manager/Manifest
@@ -1,2 +1 @@
-DIST gnome-power-manager-3.22.2.tar.xz 453204 BLAKE2B 
3b0213481bdba4fdbcc25987660cd358271355a1d259b848399e8dde4e093dd4d8020277e44eafe0cf448e6fccf0abdc68fd8e28d1a654ea45c1ea46f4f2ca41
 SHA512 
a8039404bf9850422d385281b6572485b39b5fd63c7eec1b41df14f4d551898a90c8d943683517744d0dc2d851a7fd1f7697655af91a0d17a3df476828a763aa
 DIST gnome-power-manager-3.24.0.tar.xz 554616 BLAKE2B 
f39ce93943426fe8e833b48b5e7e4a02645eb3ffd28aa9e3e8c515d159950409ae9904b2683419d0087b3ced8e30f1c42b4dd9c511100041952449aef0b18e0f
 SHA512 
fbbac0f5176382ccd13497cd80792d10ca4bc39fa4cc0585543f5458ba0f256ffb66b7ebd82667e482ba33cf2b6f3ef6a64bf2f55ac224e1d9ab2e2b7491e4e0

diff --git a/gnome-extra/gnome-power-manager/gnome-power-manager-3.22.2.ebuild 
b/gnome-extra/gnome-power-manager/gnome-power-manager-3.22.2.ebuild
deleted file mode 100644
index a095427215a..000
--- a/gnome-extra/gnome-power-manager/gnome-power-manager-3.22.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="GNOME power management service"
-HOMEPAGE="https://projects.gnome.org/gnome-power-manager/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.45.8:2
-   >=x11-libs/gtk+-3.3.8:3
-   >=x11-libs/cairo-1
-   >=sys-power/upower-0.99:=
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-sgml-dtd:4.1
-   app-text/docbook-sgml-utils
-   dev-libs/appstream-glib
-   >=dev-util/intltool-0.50
-   sys-devel/gettext
-   x11-proto/randrproto
-   virtual/pkgconfig
-   test? ( sys-apps/dbus )
-"
-
-# docbook-sgml-utils and docbook-sgml-dtd-4.1 used for creating man pages
-# (files under ${S}/man).
-# docbook-xml-dtd-4.4 and -4.1.2 are used by the xml files under ${S}/docs.
-
-src_prepare() {
-   # Drop debugger CFLAGS from configure
-   # Touch configure.ac only if running eautoreconf, otherwise
-   # maintainer mode gets triggered -- even if the order is correct
-   sed -e 's:^CPPFLAGS="$CPPFLAGS -g"$::g' \
-   -i configure || die "debugger sed failed"
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable test tests)
-}
-
-src_test() {
-   virtx emake check
-}



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

2018-02-03 Thread Mart Raudsepp
commit: b9bc89bd959457de8a186424ee1e96f71cecc761
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:15:59 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:33:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9bc89bd

gnome-extra/gnome-logs: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-logs/Manifest |  1 -
 gnome-extra/gnome-logs/gnome-logs-3.22.1.ebuild | 52 -
 2 files changed, 53 deletions(-)

diff --git a/gnome-extra/gnome-logs/Manifest b/gnome-extra/gnome-logs/Manifest
index 68d74023889..b616e6c115d 100644
--- a/gnome-extra/gnome-logs/Manifest
+++ b/gnome-extra/gnome-logs/Manifest
@@ -1,2 +1 @@
-DIST gnome-logs-3.22.1.tar.xz 968664 BLAKE2B 
02376b0b4e47298f9921bdb2d306eb7a3678a98df16815c9b46135171edbfc69813e8d34bce18c33f1bb061c67d78119b7bc7b84f17779f93f1c9fe7cfbfa93f
 SHA512 
0836f326407bcfa66b57f10218ccb557356baaed53867c96f4a8fa12eea547fe4bc8a4f5aea894852c4de31d19c4e2374ecfe78bcfcceda93d2884cefdef90be
 DIST gnome-logs-3.24.2.tar.xz 1000552 BLAKE2B 
da237fbce0b1ced77c52ffab1965f6e1209df8fa1f224274b330bea106fed6449e37e0ad654b579ce1128fb6b554ffd521faa5362db9ef8f8f2a54a1685f
 SHA512 
6f7dabb0b0093b860198344373eb1feae244ed23c3a65494499c09a83c687ba68ff023ec5ce34846be51fd74293fdb4b575cf3a748a22fae183e89086eba1db9

diff --git a/gnome-extra/gnome-logs/gnome-logs-3.22.1.ebuild 
b/gnome-extra/gnome-logs/gnome-logs-3.22.1.ebuild
deleted file mode 100644
index 57a1a38ee30..000
--- a/gnome-extra/gnome-logs/gnome-logs-3.22.1.ebuild
+++ /dev/null
@@ -1,52 +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 gnome2 python-any-r1 virtualx
-
-DESCRIPTION="Log messages and event viewer"
-HOMEPAGE="https://wiki.gnome.org/Apps/Logs;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   >=dev-libs/glib-2.43.90:2
-   gnome-base/gsettings-desktop-schemas
-   sys-apps/systemd:=
-   >=x11-libs/gtk+-3.19.3:3
-"
-DEPEND="${RDEPEND}
-   ~app-text/docbook-xml-dtd-4.3
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   dev-libs/libxslt
-   >=dev-util/intltool-0.50
-   gnome-base/gnome-common
-   virtual/pkgconfig
-   test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-
-python_check_deps() {
-   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --enable-man \
-   $(use_enable test tests)
-}
-
-src_test() {
-   virtx emake check
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 293349bed099f7bc3894b1e46c47f117e0726818
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:04:57 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:32:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293349be

gnome-extra/gnome-clocks: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-clocks/Manifest  |  1 -
 .../gnome-clocks/gnome-clocks-3.22.1.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/gnome-extra/gnome-clocks/Manifest 
b/gnome-extra/gnome-clocks/Manifest
index 77e9f47a560..4c5e321fd98 100644
--- a/gnome-extra/gnome-clocks/Manifest
+++ b/gnome-extra/gnome-clocks/Manifest
@@ -1,2 +1 @@
-DIST gnome-clocks-3.22.1.tar.xz 954416 BLAKE2B 
52a59c0514cb05a9216997d1ebb985952be2c81b8105db02e5e3d11c1f6a6a13ee15ae86c35c97d985bde3763c8eed51fbcca1b8809c701db4e8102ca7e28d69
 SHA512 
76c4b9c493d6897a3d5bab4679f834bc515861bf6030d7fac2b59f5584b2a5278385dd4f5747adbe04df92c3af822ded669490d680daf3b9bc46ce09786f602f
 DIST gnome-clocks-3.24.0.tar.xz 954576 BLAKE2B 
848303243391bfbc5ae2fcd8bfb4f3320ccb8465098d95379aaecf856341f05171964eda1a0a8637e04b5330cee6343003ec25063157f6d8ba0abcc22aa3f6ef
 SHA512 
f29a61ac9634008fa918f9f08c6e24c93816c0077687bd2feff3ef2c62c0db475076de5dbc1e223027627e985c4e4362f0cdf1a47821356c0a9ef9c4cd672de1

diff --git a/gnome-extra/gnome-clocks/gnome-clocks-3.22.1.ebuild 
b/gnome-extra/gnome-clocks/gnome-clocks-3.22.1.ebuild
deleted file mode 100644
index ee81f0dec15..000
--- a/gnome-extra/gnome-clocks/gnome-clocks-3.22.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MIN_API_VERSION="0.24"
-
-inherit gnome2 vala
-
-DESCRIPTION="Clocks application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Clocks;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   >=app-misc/geoclue-2.3.1:2.0
-   >=dev-libs/glib-2.44:2
-   >=dev-libs/libgweather-3.13.91:2=
-   >=gnome-base/gnome-desktop-3.7.90:3=
-   >=media-libs/gsound-0.98
-   >=sci-geosciences/geocode-glib-0.99.4
-   >=x11-libs/gtk+-3.19.8:3
-"
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   vala_src_prepare
-   gnome2_src_prepare
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 111602123c2bed9eb62663ea5f707a821be83a66
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:13:14 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:33:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11160212

gnome-extra/gnome-documents: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-documents/Manifest   |  1 -
 .../gnome-documents/gnome-documents-3.22.5.ebuild  | 45 --
 2 files changed, 46 deletions(-)

diff --git a/gnome-extra/gnome-documents/Manifest 
b/gnome-extra/gnome-documents/Manifest
index eff302de072..4f95ae15df7 100644
--- a/gnome-extra/gnome-documents/Manifest
+++ b/gnome-extra/gnome-documents/Manifest
@@ -1,2 +1 @@
-DIST gnome-documents-3.22.5.tar.xz 2312164 BLAKE2B 
09ccc89de43b81a2a9f5d0b85e616089896149559a34507463ac698362ffc72ea135fd660215d29fbc6d9e09df9745b38aff4b3d5ae9d62692de05262bdf3b60
 SHA512 
b074c5f5a5d7a698f3e571005a523f48928eca4081df7cfba6c97a0178b59ef3071920e5622e6200c8f59125fee934baaa2f07b8c011f8a4c2338c8488d0c516
 DIST gnome-documents-3.24.3.tar.xz 2313680 BLAKE2B 
920e18b0ca43cfa95945268613f15f2f417de74c8992aefe414205d3463c0cdaac81fcabb9453ac93a76ae7b221da73379d86902b483fe2f3d12063ac27acdf7
 SHA512 
c5b59ba4a2eb83d7c61e6e50f6af2d0b310c7b9709ea7c8a02da707cc7e335589e4bef7b6f6618bbcca729fdaed531647f7f839aa3538830a226b837d0f0118a

diff --git a/gnome-extra/gnome-documents/gnome-documents-3.22.5.ebuild 
b/gnome-extra/gnome-documents/gnome-documents-3.22.5.ebuild
deleted file mode 100644
index 97bf5c01a4e..000
--- a/gnome-extra/gnome-documents/gnome-documents-3.22.5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A document manager application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Documents;
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 x86"
-
-# cairo-1.14 for cairo_surface_set_device_scale check and usage
-COMMON_DEPEND="
-   >=app-text/evince-3.13.3[introspection]
-   >=net-libs/webkit-gtk-2.6:4[introspection]
-   dev-libs/gjs
-   >=dev-libs/glib-2.39.3:2
-   >=dev-libs/gobject-introspection-1.31.6:=
-   >=x11-libs/gtk+-3.19.1:3[introspection]
-   >=net-libs/libsoup-2.41.3:2.4
-   gnome-base/gnome-desktop:3=[introspection]
-   >=app-misc/tracker-1:=[miner-fs]
-   >=x11-libs/cairo-1.14
-   >=dev-libs/libgdata-0.13.3:=[crypt,gnome-online-accounts,introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-   >=net-libs/gnome-online-accounts-3.2.0[introspection]
-   x11-libs/pango[introspection]
-   >=net-libs/libzapojit-0.0.2[introspection]
-   >=app-text/libgepub-0.4[introspection]
-"
-RDEPEND="${COMMON_DEPEND}
-   net-misc/gnome-online-miners
-   sys-apps/dbus
-   x11-themes/adwaita-icon-theme
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/libxslt
-   >=dev-util/intltool-0.50.1
-   dev-util/itstool
-   virtual/pkgconfig
-"
-# eautoreconf requires yelp-tools



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

2018-02-03 Thread Mart Raudsepp
commit: d2ac48b8d4e6b78cddf1dcfd583a15fd862a772b
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:08:42 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:33:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2ac48b8

gnome-extra/gnome-color-manager: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-color-manager/Manifest   |  1 -
 .../gnome-color-manager-3.22.2.ebuild  | 64 --
 2 files changed, 65 deletions(-)

diff --git a/gnome-extra/gnome-color-manager/Manifest 
b/gnome-extra/gnome-color-manager/Manifest
index 0c5f152bc9d..1d4960ae725 100644
--- a/gnome-extra/gnome-color-manager/Manifest
+++ b/gnome-extra/gnome-color-manager/Manifest
@@ -1,2 +1 @@
-DIST gnome-color-manager-3.22.2.tar.xz 2671864 BLAKE2B 
0560a234d66fd55f28d59b373e0f52a9b06610ff925e7cf8c959233883a039dfa61c0595bb97f1ad5e415d07a2baa24d8df5240ad5ca41dd5ad8a682639a8369
 SHA512 
dd50cff841fc8e70554c0c998494e363b709d1a8d4084dfc8daca6297d9491c1b797c4f3f106284e0f8ef133ac77704ad805b5519566c2f49e311f30a1e8397f
 DIST gnome-color-manager-3.24.0.tar.xz 2857120 BLAKE2B 
c73c3718f77517a41fc74c12347101c57b9939101b2c816cc6390185fb0b21f87d16ed30b17a94f7bd03e28abb4bd5f5d411c086d350659f6686cfffb7e88cf2
 SHA512 
e145caf4e885ea6e9c4ee5a5b4d800d70af338e26d3bfcda81e20c6144e36d0581638d07099302d30787d6d30e9d58f2b8373f6585ae3788df825d6d24f5b003

diff --git a/gnome-extra/gnome-color-manager/gnome-color-manager-3.22.2.ebuild 
b/gnome-extra/gnome-color-manager/gnome-color-manager-3.22.2.ebuild
deleted file mode 100644
index 2933fb386a9..000
--- a/gnome-extra/gnome-color-manager/gnome-color-manager-3.22.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="Color profile manager for the GNOME desktop"
-HOMEPAGE="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
-   >=dev-util/intltool-0.35
-   dev-util/itstool
-   virtual/pkgconfig
-"
-
-src_configure() {
-   # Always enable tests since they are check_PROGRAMS anyway
-   # appstream does not want to be relax by default !
-   gnome2_src_configure \
-   --disable-static \
-   --enable-tests \
-   $(use_enable packagekit) \
-   $(use_enable raw exiv)
-#  APPSTREAM_UTIL=$(type -P true)
-}
-
-src_test() {
-   virtx emake check
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-
-   if ! has_version media-gfx/argyllcms ; then
-   elog "If you want to do display or scanner calibration, you 
will need to"
-   elog "install media-gfx/argyllcms"
-   fi
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 4b52ca055e1e115ca5fc308506d5e20af52f2a26
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:25:44 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:34:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b52ca05

gnome-extra/gnome-user-docs: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-user-docs/Manifest   |  1 -
 .../gnome-user-docs/gnome-user-docs-3.22.0.ebuild  | 40 --
 2 files changed, 41 deletions(-)

diff --git a/gnome-extra/gnome-user-docs/Manifest 
b/gnome-extra/gnome-user-docs/Manifest
index 8068805ef5f..0587ca0a8ae 100644
--- a/gnome-extra/gnome-user-docs/Manifest
+++ b/gnome-extra/gnome-user-docs/Manifest
@@ -1,2 +1 @@
-DIST gnome-user-docs-3.22.0.tar.xz 14148700 BLAKE2B 
5a7d7b36b0854f937cc3389024eb5bf2f068d0d9874449d0589336aef6573fd3d21b1343025de5729483031b716482c485395c803bee352a966d59568e6a0d7c
 SHA512 
d81768b1c2bb5e32fa6d81358dc8fce24d1a6af4a01553c30879a73afb86bde8ece513f5bd08df9fd1bd4e8cc545ee49f2f072391eed13703d804f73c71c696e
 DIST gnome-user-docs-3.24.2.tar.xz 14167700 BLAKE2B 
deec09954a9c3bf915c86030d13df70efec81090c74744fb98192a1e9727cab2bd54ee608f1f3bddcf8707f6a3a6e1ddaeffdc5175e0d0f2ad4ab2e890036330
 SHA512 
7725ceb6d079d244f9f764c54b2d374588a808c8f1b2e70f655e1d3e3dc957cab3a8edcfe3d000c5d4520e9d9da031585a20ade978b66753ef3b2c912230a87d

diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-3.22.0.ebuild 
b/gnome-extra/gnome-user-docs/gnome-user-docs-3.22.0.ebuild
deleted file mode 100644
index 64d032ba516..000
--- a/gnome-extra/gnome-user-docs/gnome-user-docs-3.22.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="GNOME end user documentation"
-HOMEPAGE="https://git.gnome.org/browse/gnome-user-docs;
-
-LICENSE="CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="
-   test? ( dev-libs/libxml2 )
-"
-# eautoreconf requires:
-#  app-text/yelp-tools
-# rebuilding translations requires:
-#  app-text/yelp-tools
-#  dev-util/gettext
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"
-
-src_configure() {
-   # itstool is only needed for rebuilding translations
-   # xmllint is only needed for tests
-   gnome2_src_configure \
-   $(usex test "" XMLLINT=$(type -P true)) \
-   ITSTOOL=$(type -P true)
-}
-
-src_compile() {
-   # Do not compile; "make all" with unset LINGUAS rebuilds all 
translations,
-   # which can take > 2 hours on a Core i7.
-   return
-}



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

2018-02-03 Thread Mart Raudsepp
commit: b70c1e881e0c32438d9ad543693b7405840f51af
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:27:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:34:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70c1e88

gnome-extra/gnome-weather: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-weather/Manifest |  1 -
 .../gnome-weather/gnome-weather-3.20.2.ebuild  | 49 --
 2 files changed, 50 deletions(-)

diff --git a/gnome-extra/gnome-weather/Manifest 
b/gnome-extra/gnome-weather/Manifest
index cb762bd5324..a91afff3b26 100644
--- a/gnome-extra/gnome-weather/Manifest
+++ b/gnome-extra/gnome-weather/Manifest
@@ -1,2 +1 @@
-DIST gnome-weather-3.20.2.tar.xz 5360264 BLAKE2B 
3863f105ef2db4d367c9f431a7be447d59d32fd44621e89fe4c83682637da4aa00df7da85e9c28bcb58d20e3a9d3d614f569886ca50d3ed8ff647b42e7430714
 SHA512 
3c592726949251d4deae6412592975d6439dccf3415df1ac2bff75ee97ef9fb927167ceee0835ef4d1d3205038340c20d9e9b2261205412341baeb4098c9fdff
 DIST gnome-weather-3.24.0.tar.xz 5358924 BLAKE2B 
89091c0dd2e69109621450621a03231da9fc6032cfdc44386e632ab3e8e478fc9a02efff86417277fbdbd2c39d730efd76df1a787e14112dd0447b53715b5aff
 SHA512 
c286c97dc1cbb4991e56ed49e8c788c6a58f0f0dcd5534812ee3e06a0570fd1bb0b45f7e35bdc11443f62dc3a2cd262db4f3d2b1f238cfc24236de88de4a4bce

diff --git a/gnome-extra/gnome-weather/gnome-weather-3.20.2.ebuild 
b/gnome-extra/gnome-weather/gnome-weather-3.20.2.ebuild
deleted file mode 100644
index bcd6d19ffa3..000
--- a/gnome-extra/gnome-weather/gnome-weather-3.20.2.ebuild
+++ /dev/null
@@ -1,49 +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 gnome2 python-any-r1 virtualx
-
-DESCRIPTION="A weather application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/Weather;
-
-LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   >=app-misc/geoclue-2.3.1:2.0
-   >=dev-libs/gjs-1.43.3
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=dev-libs/libgweather-3.17.2:=
-   gnome-base/gsettings-desktop-schemas
-   >=x11-libs/gtk+-3.11.4:3
-"
-DEPEND="${RDEPEND}
-   dev-libs/appstream-glib
-   >=dev-util/intltool-0.26
-   virtual/pkgconfig
-   test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-
-python_check_deps() {
-   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   gnome2_src_configure $(use_enable test dogtail)
-}
-
-src_test() {
-   virtx emake check TESTS_ENVIRONMENT="dbus-run-session"
-}



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

2018-02-03 Thread Mart Raudsepp
commit: 3857d1d6f2ab51debe928eaeab9e0573cef9ef74
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:29:20 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:34:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3857d1d6

gnome-extra/zenity: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/zenity/Manifest |  1 -
 gnome-extra/zenity/zenity-3.22.0.ebuild | 45 -
 2 files changed, 46 deletions(-)

diff --git a/gnome-extra/zenity/Manifest b/gnome-extra/zenity/Manifest
index 4af5f125fcf..a067a01fceb 100644
--- a/gnome-extra/zenity/Manifest
+++ b/gnome-extra/zenity/Manifest
@@ -1,2 +1 @@
-DIST zenity-3.22.0.tar.xz 1082088 BLAKE2B 
ec9d7a82a5086c1eec6fbc278fce6de3fb02e56cab2cf2f75458fe978ef80b110d02872b32716421b69125f0bac3c8abf85ea8cadf68e033d404a0bdbced9702
 SHA512 
0131e854ffb8093e6c36787ffc831af8d1adbb663931b09b86a477c28c3b456ad2c9bb59cdc00a2d6505a1cf645df6fc9ebdd3c46c1a666c69d607e79b4364a3
 DIST zenity-3.24.0.tar.xz 1085124 BLAKE2B 
2be50461c8575b5322319e3b35a9c833ae87f2e35abfdb27bed61dbead1b31dc31d551c8973634a7a0f0abc178ee6c7a4bb24377632df7d7fcaf77780f7fd4d6
 SHA512 
b24291166221cc2dabeabfeab7ca00ca63ff21c12a4eb327cd35ac43f485b8d4a858dd717df1b35b8bd3fd89d0bb235609855c6d349b76879b0f77b4fedd4dd9

diff --git a/gnome-extra/zenity/zenity-3.22.0.ebuild 
b/gnome-extra/zenity/zenity-3.22.0.ebuild
deleted file mode 100644
index fc4fc7f301b..000
--- a/gnome-extra/zenity/zenity-3.22.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
-HOMEPAGE="https://wiki.gnome.org/Projects/Zenity;
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-IUSE="debug libnotify webkit"
-
-# TODO: X11 dependency is automagically enabled
-RDEPEND="
-   >=dev-libs/glib-2.8:2
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3:3[X]
-   x11-libs/libX11
-   x11-libs/pango
-   libnotify? ( >=x11-libs/libnotify-0.6.1:= )
-   webkit? ( >=net-libs/webkit-gtk-2.8.1:4 )
-"
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   gnome-base/gnome-common
-   >=sys-devel/gettext-0.19.4
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(usex debug --enable-debug=yes ' ') \
-   $(use_enable libnotify) \
-   $(use_enable webkit webkitgtk) \
-   PERL=$(type -P false)
-}
-
-src_install() {
-   gnome2_src_install
-
-   # Not really needed and prevent us from needing perl
-   rm "${ED}/usr/bin/gdialog" || die "rm gdialog failed!"
-}



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

2018-02-03 Thread Mart Raudsepp
commit: fe0a16cbe6d8f08126dd8b839b9200fd77019d60
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:02:00 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:32:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0a16cb

gnome-extra/gnome-calendar: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-calendar/Manifest|  1 -
 .../gnome-calendar/gnome-calendar-3.22.5.ebuild| 30 --
 2 files changed, 31 deletions(-)

diff --git a/gnome-extra/gnome-calendar/Manifest 
b/gnome-extra/gnome-calendar/Manifest
index 93971cd31a3..600e8d1f80b 100644
--- a/gnome-extra/gnome-calendar/Manifest
+++ b/gnome-extra/gnome-calendar/Manifest
@@ -1,2 +1 @@
-DIST gnome-calendar-3.22.5.tar.xz 2376792 BLAKE2B 
b36ba91a0c8202bf1419450656b8abd75913a83ecb7780ac73204e0e52dd938069c364fc106860d3ef7ae14bb3545ddab54db9889207d0568e0fb6bb055eeba7
 SHA512 
113a77c64fce8317f12d1704bf4076b48abb0f42e4d6e474a7912bc948295bf71e8b9ea00e50301464fa9726cdbfe453af92a24acd3c9ac76a6f40e92062e335
 DIST gnome-calendar-3.24.3.tar.xz 2425292 BLAKE2B 
cb859e229b040dd1ef34643e7aac5ddc1d0368d0bc6912effd73bd2c95ecab458294fef866f5718e108ef36f03bfc0dcb5a1140a571b3dc35128125ea8ff8e19
 SHA512 
979a369a5c5fc7d4621ff1ae69dfb1b53002cc014b2f1c480c0122da5bf4282c1928df9dcdb3528352e9589099184ab51f96d1a065e346be8e639aa5fc96ac67

diff --git a/gnome-extra/gnome-calendar/gnome-calendar-3.22.5.ebuild 
b/gnome-extra/gnome-calendar/gnome-calendar-3.22.5.ebuild
deleted file mode 100644
index c6ae37760e4..000
--- a/gnome-extra/gnome-calendar/gnome-calendar-3.22.5.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Manage your online calendars with simple and modern interface"
-HOMEPAGE="https://wiki.gnome.org/Apps/Calendar;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-# >=libical-1.0.1 for https://bugzilla.gnome.org/show_bug.cgi?id=751244
-RDEPEND="
-   >=dev-libs/glib-2.43.4:2
-   >=x11-libs/gtk+-3.21.6:3
-   >=gnome-extra/evolution-data-server-3.17.1:=
-   >=dev-libs/libical-1.0.1:0=
-   >=net-libs/gnome-online-accounts-3.2.0:=
-   >=gnome-base/gsettings-desktop-schemas-3.21.2
-"
-DEPEND="${RDEPEND}
-   dev-libs/appstream-glib
-   dev-util/gdbus-codegen
-   >=dev-util/intltool-0.40.6
-   sys-devel/gettext
-   virtual/pkgconfig
-"



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

2018-02-03 Thread Mart Raudsepp
commit: fe9d9190ec1653802a14382ca9c6a19950a97962
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:21:02 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:34:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe9d9190

gnome-extra/gnome-shell-extensions: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-shell-extensions/Manifest|  1 -
 .../gnome-shell-extensions-3.22.2.ebuild   | 76 --
 2 files changed, 77 deletions(-)

diff --git a/gnome-extra/gnome-shell-extensions/Manifest 
b/gnome-extra/gnome-shell-extensions/Manifest
index f5b42b6a201..ae8afda1c1c 100644
--- a/gnome-extra/gnome-shell-extensions/Manifest
+++ b/gnome-extra/gnome-shell-extensions/Manifest
@@ -1,2 +1 @@
-DIST gnome-shell-extensions-3.22.2.tar.xz 339444 BLAKE2B 
4d25481db952efb0433e8b55d2345b6a9fb8b6ee7fb0f84a53aec2e4ff0dfa560b0b8848095926ed707b5523a9dba6a14484035550e21dddaa657576dc181fdb
 SHA512 
7cd045f2df885f50f5e7e41b818aad01c65bd503d656793d64bc9e283fe715f588215a894ac856da0c4c2759c549a1ce2dcb91af64081f40c664c9d28edc2d1c
 DIST gnome-shell-extensions-3.24.3.tar.xz 346420 BLAKE2B 
3b6f6686656ca6f395bd69fea905c4f28264db81ac0f207bc2e0d6c82410328be2bc4c98faa659d9ac551cabb73e0576c4e28def9c14e5c7710a9785528909db
 SHA512 
7948a9cb6f5cb8d760bc42ea2865823ee60bd164b491d944edb0413e362f38ed90d39ead44ac57872a83c43c4050f5448936e739626b89a2b486a22f41d61e20

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.22.2.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.22.2.ebuild
deleted file mode 100644
index a7f2f222872..000
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.22.2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 readme.gentoo-r1
-
-DESCRIPTION="JavaScript extensions for GNOME Shell"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.26:2
-   >=gnome-base/libgtop-2.28.3[introspection]
-   >=app-eselect/eselect-gnome-shell-extensions-20111211
-"
-RDEPEND="${COMMON_DEPEND}
-   >=dev-libs/gjs-1.29
-   dev-libs/gobject-introspection:=
-   dev-libs/atk[introspection]
-   gnome-base/gnome-menus:3[introspection]
-   >=gnome-base/gnome-shell-3.14.2
-   media-libs/clutter:1.0[introspection]
-   net-libs/telepathy-glib[introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/pango[introspection]
-   x11-themes/adwaita-icon-theme
-   x11-wm/mutter[introspection]
-"
-DEPEND="${COMMON_DEPEND}
-   >=sys-devel/gettext-0.19.6
-   virtual/pkgconfig
-"
-# eautoreconf needs gnome-base/gnome-common
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="Installed extensions installed are initially disabled by default.
-To change the system default and enable some extensions, you can use
-# eselect gnome-shell-extensions
-
-Alternatively, to enable/disable extensions on a per-user basis,
-you can use the https://extensions.gnome.org/ web interface, the
-gnome-extra/gnome-tweak-tool GUI, or modify the org.gnome.shell
-enabled-extensions gsettings key from the command line or a script."
-
-src_configure() {
-   gnome2_src_configure --enable-extensions=all
-}
-
-src_install() {
-   gnome2_src_install
-
-   local example="exam...@gnome-shell-extensions.gcampax.github.com"
-   if use examples; then
-   mv "${ED}usr/share/gnome-shell/extensions/${example}" \
-   "${ED}usr/share/doc/${PF}/" || die
-   else
-   rm -r "${ED}usr/share/gnome-shell/extensions/${example}" || die
-   fi
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-
-   ebegin "Updating list of installed extensions"
-   eselect gnome-shell-extensions update
-   eend $?
-
-   readme.gentoo_print_elog
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-getting-started-docs/

2018-02-03 Thread Mart Raudsepp
commit: 947b7b88afe7bdc31fab633476ac2a1d37a00a50
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:14:28 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:33:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947b7b88

gnome-extra/gnome-getting-started-docs: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-getting-started-docs/Manifest   |  1 -
 .../gnome-getting-started-docs-3.22.0.ebuild  | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/gnome-extra/gnome-getting-started-docs/Manifest 
b/gnome-extra/gnome-getting-started-docs/Manifest
index 378d9fd6df7..ac8b535c4e2 100644
--- a/gnome-extra/gnome-getting-started-docs/Manifest
+++ b/gnome-extra/gnome-getting-started-docs/Manifest
@@ -1,2 +1 @@
-DIST gnome-getting-started-docs-3.22.0.tar.xz 119100024 BLAKE2B 
9d6daaa565b92b5b27d621c1e3450a576105297c221da33169a9de2d51823250267464855b31024ad84f05272a365347a6a10f5eb171b199331cac9dfa47d744
 SHA512 
8eeebe70054a5fe68bd19c81b0725d3f2084c92aa91c925653bb2e53d4cb66c592d78af1e5446bc8063e9f0bf19f684d8b22c01b8300886ff32dca228f45cb6f
 DIST gnome-getting-started-docs-3.24.1.tar.xz 119137908 BLAKE2B 
628dab2c9a938f3b265855443e794c1575586d0579692e1a21bae77dd497989cd061cff4dd97090f11719916f24742eedfc81bacb4fdf31536eca78cdd221d6f
 SHA512 
7d44ac4030c3459014f391d10699b48f9be789c196900e29a56574e98698ffe494d3344a7c99f04291c49093827385093877b9047549cc5ff4d352d39297387d

diff --git 
a/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.22.0.ebuild
 
b/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.22.0.ebuild
deleted file mode 100644
index 234c965d234..000
--- 
a/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.22.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Help a new user get started in GNOME"
-HOMEPAGE="https://help.gnome.org/;
-
-LICENSE="CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-RDEPEND="gnome-extra/gnome-user-docs"
-DEPEND="app-text/yelp-tools"
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"



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

2018-02-03 Thread Mart Raudsepp
commit: cc82134a92040a4fa458452bf75d383b6d19ae05
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:03:08 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:32:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc82134a

gnome-extra/gnome-characters: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-characters/Manifest  |  1 -
 .../gnome-characters-3.22.0.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/gnome-extra/gnome-characters/Manifest 
b/gnome-extra/gnome-characters/Manifest
index 23349ab1721..cd6ebaefc69 100644
--- a/gnome-extra/gnome-characters/Manifest
+++ b/gnome-extra/gnome-characters/Manifest
@@ -1,2 +1 @@
-DIST gnome-characters-3.22.0.tar.xz 1481416 BLAKE2B 
4a61951c427d5ca7f36a0d221ca9b39053998329d936e16e0cbf080fe3300450776280bd31be0ff4de2c18c638243d34c4a6813763ffb7f4bfabd618baa90748
 SHA512 
c04d79f9b31601e127ae6103b2f473e2e4733facebf504189a8d5721a78b430883a0f790b58537eb7772c5a4ce72013183d037909f30a237cd1482c31144905f
 DIST gnome-characters-3.24.0.tar.xz 1490304 BLAKE2B 
b7bea411ae623a29469fa82d8a9a220a718134776c0973431f4f16f6753bcedd34a8886f3cecc8af59b178f93c051310fa988aef198618b2c4d0be9001cb7ad8
 SHA512 
28531676e3ed89cea574f800a1f0e19106eb4ccb0edc62ea493bb6680fdbe3b1ed45c3cd865a637c059a89df63b980cd4a9d69d73049778c52725b1d38fdad9d

diff --git a/gnome-extra/gnome-characters/gnome-characters-3.22.0.ebuild 
b/gnome-extra/gnome-characters/gnome-characters-3.22.0.ebuild
deleted file mode 100644
index 2d624b5bdb3..000
--- a/gnome-extra/gnome-characters/gnome-characters-3.22.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_USE_DEPEND="vapigen"
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-any-r1 vala virtualx
-
-DESCRIPTION="Unicode character map viewer and library"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/CharacterMap;
-
-LICENSE="GPL-2 BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   >=dev-libs/gjs-1.43.3
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=dev-libs/libunistring-0.9.5
-   >=x11-libs/gtk+-3.20:3[introspection]
-   >=x11-libs/pango-1.36[introspection]
-"
-DEPEND="${RDEPEND}
-   dev-libs/appstream-glib
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-   test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-
-python_check_deps() {
-   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   gnome2_src_prepare
-   vala_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure $(use_enable test dogtail)
-}
-
-src_test() {
-   virtx emake check
-}



[gentoo-commits] repo/gentoo:master commit in: mail-client/geary/files/, mail-client/geary/

2018-02-03 Thread Mart Raudsepp
commit: 6b0f35bed6e73ab5000b2102a13e3aef1a4b9798
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:31:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:34:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b0f35be

mail-client/geary: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 mail-client/geary/Manifest |  1 -
 mail-client/geary/files/geary-0.5.3-vapigen.patch  | 29 
 .../geary/files/geary-0.6.0-desktopfile.patch  | 12 
 mail-client/geary/files/geary-0.7.2-cflags.patch   | 27 ---
 mail-client/geary/geary-0.11.3.ebuild  | 83 --
 5 files changed, 152 deletions(-)

diff --git a/mail-client/geary/Manifest b/mail-client/geary/Manifest
index d438ea5e588..aed6522e175 100644
--- a/mail-client/geary/Manifest
+++ b/mail-client/geary/Manifest
@@ -1,2 +1 @@
-DIST geary-0.11.3.tar.xz 964024 BLAKE2B 
daf30b11f045741b4f5ec00d245afdcc04763f25526f3c5d12b0408fec9b0ce96a5ef53f01b622b4aed4bb43e879903385a545430d1e0e1bca14a80bce159f8b
 SHA512 
dee389384b6bab25f939f0f40525670c27e3687cdfdfbc0c5632ccb2e9e189be3902aedb4fb37affb67c8b149e40ff78e41efbf8a754d76dcd405c8295be0d4b
 DIST geary-0.12.0.tar.xz 1064064 BLAKE2B 
c4021a784f7704494dfcf9013e4b108d9f921d553e47f55878de30c9878852ac2c023e679c33660cfe2fb190fac56dea4976eccb15bc1a512914442564a24e48
 SHA512 
caaf49065181f84234bbdb3dc20808f68cb7339e7ef3e992bd83789d3a474b5f59a210d54db2b4fe5f44539a2d52ad7f328087580748c74a513cca7be31c2e52

diff --git a/mail-client/geary/files/geary-0.5.3-vapigen.patch 
b/mail-client/geary/files/geary-0.5.3-vapigen.patch
deleted file mode 100644
index 18b3c8049b4..000
--- a/mail-client/geary/files/geary-0.5.3-vapigen.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From: Julian Ospald 
-Date: Sun Feb  2 00:17:18 UTC 2014
-Subject: gentoo specific
-
 geary-0.5.1.tar.xz/src/CMakeLists.txt
-+++ geary-0.5.1.tar.xz/src/CMakeLists.txt
-@@ -399,12 +399,7 @@
- include(ValaPrecompile)
- 
- # Vapigen
--find_program(VAPIGEN vapigen)
--if (VAPIGEN STREQUAL "VAPIGEN-NOTFOUND")
--message(FATAL_ERROR "vapigen must be installed to build Geary.")
--else ()
--message(STATUS "Found vapigen: " ${VAPIGEN})
--endif ()
-+set(VAPIGEN $ENV{VAPIGEN})
- 
- # Packages
- if (LIBMESSAGINGMENU_FOUND)
-@@ -615,7 +610,7 @@
- WORKING_DIRECTORY
- ${CMAKE_SOURCE_DIR}/bindings/metadata
- COMMAND
--vapigen --pkg=gio-2.0 --pkg=gtk+-3.0 --pkg=libsoup-2.4 
--metadatadir=. --metadatadir=${WEBKITGTK_METADATA_DIR} --library=webkitgtk-3.0 
--directory=${CMAKE_BINARY_DIR}/src ${WEBKITGTK_CUSTOM_VALA} `pkg-config 
--variable=girdir gobject-introspection-1.0`/WebKit-3.0.gir
-+  $ENV{VAPIGEN} --pkg=gio-2.0 --pkg=gtk+-3.0 --pkg=libsoup-2.4 
--metadatadir=. --metadatadir=${WEBKITGTK_METADATA_DIR} --library=webkitgtk-3.0 
--directory=${CMAKE_BINARY_DIR}/src ${WEBKITGTK_CUSTOM_VALA} `pkg-config 
--variable=girdir gobject-introspection-1.0`/WebKit-3.0.gir
- )
- 
- # Geary client app

diff --git a/mail-client/geary/files/geary-0.6.0-desktopfile.patch 
b/mail-client/geary/files/geary-0.6.0-desktopfile.patch
deleted file mode 100644
index 3ba892f0bb3..000
--- a/mail-client/geary/files/geary-0.6.0-desktopfile.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-From: Julian Ospald 
-Date: Sun Mar 23 22:56:46 UTC 2014
-Subject: fix desktop file
-
 a/desktop/geary.desktop.in
-+++ b/desktop/geary.desktop.in
-@@ -17,5 +17,3 @@
- [Desktop Action Compose]
- _Name=Compose Message
- Exec=geary mailto:
--OnlyShowIn=X-Messaging Menu;Unity;
--

diff --git a/mail-client/geary/files/geary-0.7.2-cflags.patch 
b/mail-client/geary/files/geary-0.7.2-cflags.patch
deleted file mode 100644
index 959ae4b1f34..000
--- a/mail-client/geary/files/geary-0.7.2-cflags.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-commit e41cf68206eb16be678eeaa1dc998d94d2f93d57
-Author: hasufell 
-Date:   Tue Aug 27 01:40:58 2013 +0200
-
-respect system CFLAGS
-
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 5202b99..949d494 100644
 a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -471,16 +471,8 @@ set(CFLAGS
- -DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\"
- -DLANGUAGE_SUPPORT_DIRECTORY=\"${LANGUAGE_SUPPORT_DIRECTORY}\"
- -DGCR_API_SUBJECT_TO_CHANGE
---g
- )
- 
--if (NOT DEBUG)
--set(CFLAGS
--${CFLAGS}
---O2
--)
--endif ()
--
- if (REF_TRACKING)
- message(STATUS "Reference tracking: ON")
- set(EXTRA_VALA_OPTIONS

diff --git a/mail-client/geary/geary-0.11.3.ebuild 
b/mail-client/geary/geary-0.11.3.ebuild
deleted file mode 100644
index 3a15736c959..000
--- a/mail-client/geary/geary-0.11.3.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-# Keep cmake-utils at the end
-inherit gnome2 vala cmake-utils
-

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

2018-02-03 Thread Mike Pagano
commit: 9f6fef7e25964ac33617291dd1f937f178240858
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Feb  3 22:21:59 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 22:22:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6fef7e

sys-kernel/gentoo-sources: Linux patch 4.14.17

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.14.17.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index dda07407001..37015cf7a70 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -49,6 +49,9 @@ DIST genpatches-4.14-20.extras.tar.xz 17492 BLAKE2B 
9540c0fbc4c6f824a235fe80a3ba
 DIST genpatches-4.14-21.base.tar.xz 501592 BLAKE2B 
84eba9f89a7155c63d51f0afd2e1bcf7793ef334969b56a34b6b567d9d6dc3cc1203079a91f4dc917b75423e574db090fd6c60e8f605ffb050240648a91e40a4
 SHA512 
559581390525efa0c1b4201d72258de0c67388f6b25d0acc8ddb79129379a1760d7221fc1ff7cc635c29b0fb796216e3e6930f897f6cf3752d94ffe542749a25
 DIST genpatches-4.14-21.experimental.tar.xz 5180 BLAKE2B 
cbcf820310d1484527b08a08cdc27f69feadbd88ed87ccecaea9e495e660849ab3b17e13fb194e734979eefd68bbd97103ff100f5e243875e6084031e9b588a0
 SHA512 
b6084c79795e5457088b5f167b7fb2ab9d900a84e2866fd7354ca018d00d78ac94e069e5bbd895af96eafb00cc33cef7f31acc87f03f13f339e6862432b92865
 DIST genpatches-4.14-21.extras.tar.xz 17488 BLAKE2B 
8c0e58b87b0b4294b7c6187b5393b99f43043a466e95b7d2da20db288a17329f5d7a1d9a45e1f86b277581957e7d4f46dc8105b4999d899046612a87bd0b90c0
 SHA512 
3f53d7d962194a4ece1e95c1ca6539b83682224ddc59ed7afa24253aa7d6f15b3c3360af3ecf23a9d37224d13f2bf91b4f28c0d5bb8634b828332b3dea64b1db
+DIST genpatches-4.14-22.base.tar.xz 545732 BLAKE2B 
ec8afe9b5f799932b0df3997ec4f83ea87bc2b58ac09c2e1d2898426336478f9199609d2b4db52c8d3ff61f6e95fca370c953472ad95bcdb18161cdd8789debb
 SHA512 
d201ab46d9195126b23531ac9fbed4f53b94a3e4d7e77ec52bb5251ac2a2dd75b2c3aef62deadc32f4eb6d2a11c439f66a441fd2a617e9e22a93777c55913239
+DIST genpatches-4.14-22.experimental.tar.xz 5184 BLAKE2B 
814356256c11ea5bb67706f47ed76d6fe6f8b4232b989ca042509ed2a7f3088f55bd113d3cac25342a66e4803f90864cca803c91661af106141b78ac9cf5fe18
 SHA512 
e840928a463a764d59013424045f64c1fdc8e5d18cf1d20c9ea15388d5f4c4b9ec6aa86e88c33add716366d6b18be175943c22b6bb1c88d3cdbaebb606a38b10
+DIST genpatches-4.14-22.extras.tar.xz 17492 BLAKE2B 
1242891d2ebe519d6c9d43eb6a0b2e9dd1c51ae76dc8aaf71f14dfbf3b9c52097cfc4ad59c5e2add1da4ded0a34a06e2d302a0366a8afb665f1536f899fa3f9d
 SHA512 
21830b23a1b16291beba81ac122a36e8bcf9268b548aa6e9258f18283e80f610ed249ccf320f27b0a45acd35e3bd8ba5ceb0420e360ae94635121f89d74903b6
 DIST genpatches-4.15-1.base.tar.xz 5908 BLAKE2B 
6627ff7c5bd6b799dae5e61b1638ccc538715cc253521fd07faa0c5ea7dc9aed5204c040742d37a9d172509577ae5442526d11cbe8714540ee8e1f1637d0fbbc
 SHA512 
c7b8cb613f4a2e6570808d179be6972511ea45c849c4415509e38e1d4688014cab15486628bb282178f306ff786e83718fb2171d1391057bb817ed67a0508caf
 DIST genpatches-4.15-1.experimental.tar.xz 5184 BLAKE2B 
814356256c11ea5bb67706f47ed76d6fe6f8b4232b989ca042509ed2a7f3088f55bd113d3cac25342a66e4803f90864cca803c91661af106141b78ac9cf5fe18
 SHA512 
e840928a463a764d59013424045f64c1fdc8e5d18cf1d20c9ea15388d5f4c4b9ec6aa86e88c33add716366d6b18be175943c22b6bb1c88d3cdbaebb606a38b10
 DIST genpatches-4.15-1.extras.tar.xz 17492 BLAKE2B 
1242891d2ebe519d6c9d43eb6a0b2e9dd1c51ae76dc8aaf71f14dfbf3b9c52097cfc4ad59c5e2add1da4ded0a34a06e2d302a0366a8afb665f1536f899fa3f9d
 SHA512 
21830b23a1b16291beba81ac122a36e8bcf9268b548aa6e9258f18283e80f610ed249ccf320f27b0a45acd35e3bd8ba5ceb0420e360ae94635121f89d74903b6

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.17.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.17.ebuild
new file mode 100644
index 000..ef3e32eda04
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.17.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="22"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2018-02-03 Thread Mike Pagano
commit: 15c67d76b7ba9a474e9a87361fb4f3835c54f14f
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Feb  3 22:19:14 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 22:19:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c67d76

sys-kernel/gentoo-sources: Linux patch 4.15.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.15.1.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index c1996fba5ee..dda07407001 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -52,6 +52,9 @@ DIST genpatches-4.14-21.extras.tar.xz 17488 BLAKE2B 
8c0e58b87b0b4294b7c6187b5393
 DIST genpatches-4.15-1.base.tar.xz 5908 BLAKE2B 
6627ff7c5bd6b799dae5e61b1638ccc538715cc253521fd07faa0c5ea7dc9aed5204c040742d37a9d172509577ae5442526d11cbe8714540ee8e1f1637d0fbbc
 SHA512 
c7b8cb613f4a2e6570808d179be6972511ea45c849c4415509e38e1d4688014cab15486628bb282178f306ff786e83718fb2171d1391057bb817ed67a0508caf
 DIST genpatches-4.15-1.experimental.tar.xz 5184 BLAKE2B 
814356256c11ea5bb67706f47ed76d6fe6f8b4232b989ca042509ed2a7f3088f55bd113d3cac25342a66e4803f90864cca803c91661af106141b78ac9cf5fe18
 SHA512 
e840928a463a764d59013424045f64c1fdc8e5d18cf1d20c9ea15388d5f4c4b9ec6aa86e88c33add716366d6b18be175943c22b6bb1c88d3cdbaebb606a38b10
 DIST genpatches-4.15-1.extras.tar.xz 17492 BLAKE2B 
1242891d2ebe519d6c9d43eb6a0b2e9dd1c51ae76dc8aaf71f14dfbf3b9c52097cfc4ad59c5e2add1da4ded0a34a06e2d302a0366a8afb665f1536f899fa3f9d
 SHA512 
21830b23a1b16291beba81ac122a36e8bcf9268b548aa6e9258f18283e80f610ed249ccf320f27b0a45acd35e3bd8ba5ceb0420e360ae94635121f89d74903b6
+DIST genpatches-4.15-2.base.tar.xz 22348 BLAKE2B 
a4d4e0b6a83e46a657ced903845dc7adcdb749e6657006c58d7070a0cb906066a1241ba7c33c9431aab4af12debc0e875822c5d327dc29853420cc5699cfae2e
 SHA512 
2d6d8a2cda9ee4c41068c03f1e90e5bec2c25debb2bfbda7d6acc83b49b4ecfe861fd0be68c133dac4c98f23d8c23fca816f817653cb283405148985f20c4e9e
+DIST genpatches-4.15-2.experimental.tar.xz 5184 BLAKE2B 
4967ea59aaf9587c5f36e1cb97e0ce454f7d23c0d9e02cacf4bffef14834ca591eb4b64606fdc267d2051cab21ac49cfab16082d1a0affa2e2e555bfda27a72c
 SHA512 
9fbf5806636b2676144dfce4d33c8ff1d97dba9a44703abe5cbc1741c3f54f082416f9628f308a186dfef1c82b42183a9a52970f96be06c1e0a60ae1a1a29257
+DIST genpatches-4.15-2.extras.tar.xz 17488 BLAKE2B 
7549c1059b8aa48dedf196fbf53be363735ee2d016ce03fc22c3c72082eb5c770d5af557c8602ad01e7b98f1eeaa4c0497a6eebf344596365811f402307b3f6d
 SHA512 
053490dac39816e14086781c4aa7a6c66544543a8851fd672b8a8cfcf49a03573e3820284de3a28c0345eec27a1c1687bc445443c5076ae3662686da3ed5e1d5
 DIST genpatches-4.4-107.base.tar.xz 1587988 BLAKE2B 
827d3ae42c0fc412c165568edaf1f8550bf828d7e2edb7c5abd3013a2b639dbeb68d2e3a9656e2995baee07c7619695918e654174528ce3eebc8a891715bc636
 SHA512 
1fffc6d7b2c186c87c8b343d4bf5fcf94086dae9f4e70b2965f5dc8c18ff4753d417074ec4ad7deca29ff597a6e5d0cfca4bf325609596678febea5ac2f5ea24
 DIST genpatches-4.4-107.experimental.tar.xz 87776 BLAKE2B 
b239fcc9ee1d0344a9fac8b6ae8e712bdf97df7547a2d3d1d6b39ea23f50d8836ae8fac3bfffcc401b3af52dd333b2b2b1e1626fb739da608d247be5fc67dbf3
 SHA512 
49e0cbc980cfafc7992d92e0bd2dd07d594ec39b9ba0bae27dd915eaffbd78c5af6d3d47847a98ee9a619447b3b220faf0c44484dc99088609ff8053f3c5d907
 DIST genpatches-4.4-107.extras.tar.xz 16468 BLAKE2B 
1ece602969ead12faab3e0e5d5703a75c737a18efe873d5bdda71ff134387f5760a76105262270543b4a0e882a9b5434905b3846bd68cc3af5bc1b0383122cd2
 SHA512 
0843f4cc2cb2b3219f7e1343d68062a9c86f08c51c67a801f82c7685c8c0eb92ea32841a8a6d4bb8da9fc9882eeb965bc66317d7c14e7a5ffbb58214f962dc35

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.15.1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.15.1.ebuild
new file mode 100644
index 000..0cdac282a79
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.15.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="2"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm/

2018-02-03 Thread José María Alonso
commit: 40dc85eed4657876ebef526b1e3b3bcba953f761
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat Feb  3 22:07:19 2018 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat Feb  3 22:07:19 2018 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=40dc85ee

x11-wm/stumpwm: Updates dependencies

 x11-wm/stumpwm/stumpwm-.ebuild | 20 +---
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/x11-wm/stumpwm/stumpwm-.ebuild 
b/x11-wm/stumpwm/stumpwm-.ebuild
index 9872001e..279c1f68 100644
--- a/x11-wm/stumpwm/stumpwm-.ebuild
+++ b/x11-wm/stumpwm/stumpwm-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,16 +14,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="contrib doc emacs clisp ecl +sbcl"
 
-DEPEND="dev-lisp/common-lisp-controller
-   virtual/commonlisp
-   dev-lisp/cl-ppcre
-   doc? ( virtual/texi2dvi )"
-
-RDEPEND="${DEPEND}
-   emacs? ( virtual/emacs app-emacs/slime )
-   !clisp? ( !sbcl? ( !amd64? ( dev-lisp/cmucl ) ) )
-   clisp? ( >=dev-lisp/clisp-2.38-r2[X,-new-clx] )
-   sbcl?  ( >=dev-lisp/sbcl-1.1.15 dev-lisp/clx )"
+RDEPEND="dev-lisp/alexandria
+   dev-lisp/cl-ppcre
+   dev-lisp/clx
+   >=dev-lisp/sbcl-1.3.0
+   emacs? ( virtual/emacs app-emacs/slime )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo
+   doc? ( virtual/texi2dvi )"
 
 CLPKGDIR="${CLSOURCEROOT}/${CLPACKAGE}"
 CONTRIBDIR="${CLPKGDIR}/contrib"



[gentoo-commits] proj/linux-patches: New tag: 4.14-22

2018-02-03 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 22:03:44 2018 +

New tag: 4.14-22




[gentoo-commits] repo/gentoo:master commit in: mail-client/evolution/

2018-02-03 Thread Mart Raudsepp
commit: c3e78eada97839bfc81b8f0a134b8b8b274c05ec
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 21:51:31 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 21:51:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3e78ead

mail-client/evolution: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 mail-client/evolution/Manifest|   2 -
 mail-client/evolution/evolution-3.22.6.ebuild | 138 ---
 mail-client/evolution/evolution-3.24.5.ebuild | 156 --
 3 files changed, 296 deletions(-)

diff --git a/mail-client/evolution/Manifest b/mail-client/evolution/Manifest
index 0e26ac09776..0a854b82c1c 100644
--- a/mail-client/evolution/Manifest
+++ b/mail-client/evolution/Manifest
@@ -1,4 +1,2 @@
 DIST evolution-3.22.4.tar.xz 12272488 BLAKE2B 
7740d1d6e734fb7212d2b36f0a64dca03360ab059f0ca716522312c490f2b071a8fc6b383c98b429a6cb22ea5afec0e7e6c05dcb63b3908053ee891aa4129cdb
 SHA512 
dd73a11d4d7903be6a99bf0d937f5a217a26f0dffb9dc0cea2ca81142d5783c42f889a8b913d565678e9f55b7f2f2a1d42f06c30e3cb004926c19f44dae3b70f
-DIST evolution-3.22.6.tar.xz 12288232 BLAKE2B 
d9412ee86621fd87bbfdb5799de64a148c766642e62b6781a7a9111819ea9b3cd1aa94d95f71df2e46fdb347aedc8b28488a7ca6f7940f08644b00cdfc9f190d
 SHA512 
c699adae640d05558b583b05eda5c5ad3de99aa1d1bbfa24af6110be41251f715ff4b16ff0efb96c8de7faa8c895d82460b504c2704974d4c9731f1bc3e7739f
-DIST evolution-3.24.5.tar.xz 12140736 BLAKE2B 
e144307693f6ae1824aafd3444b38e435414aa1e7900b3622b5f36098d1c8d073ff565896bea07ad9eca076482d98c3bcea70e7d08d37c5fdcd68226d8bc4588
 SHA512 
daba1ebd9407219b3abe959b27adb32eb0038a9c1653c360a19cf28f8849004a8cd4a652562d696045311c13d19030f93d3578e09d06fff01534ada28f883f2c
 DIST evolution-3.24.6.tar.xz 12153692 BLAKE2B 
ced20d9e08f6b9aac65be6f5ecd5beb861feec40dddc4411b1bdc6519e249de8db8b3319450808d7a31b80386f9830f351b7edacb3c6fcd28fe5fdfe343329f7
 SHA512 
da5c9062791996735e52575894763597cc957cb17bc0abe46a966f0e3e6706550ce534ae03b2c444d142547119f3a59aec6ee17e0302a002d8437da166ef7178

diff --git a/mail-client/evolution/evolution-3.22.6.ebuild 
b/mail-client/evolution/evolution-3.22.6.ebuild
deleted file mode 100644
index a4d426c6830..000
--- a/mail-client/evolution/evolution-3.22.6.ebuild
+++ /dev/null
@@ -1,138 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 flag-o-matic readme.gentoo-r1
-
-DESCRIPTION="Integrated mail, addressbook and calendaring functionality"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
-
-# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+".
-LICENSE="|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP"
-SLOT="2.0"
-
-IUSE="archive +bogofilter crypt geolocation highlight ldap spamassassin spell 
ssl +weather"
-
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 x86"
-
-# We need a graphical pinentry frontend to be able to ask for the GPG
-# password from inside evolution, bug 160302
-PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] 
app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] )"
-
-# glade-3 support is for maintainers only per configure.ac
-# pst is not mature enough and changes API/ABI frequently
-# dconf explicitely needed for backup plugin
-# gnome-desktop support is optional with --enable-gnome-desktop
-COMMON_DEPEND="
-   >=app-crypt/gcr-3.4:=[gtk]
-   >=app-text/enchant-1.1.7
-   >=dev-libs/glib-2.46:2[dbus]
-   >=dev-libs/libxml2-2.7.3:2
-   >=gnome-base/gnome-desktop-2.91.3:3=
-   >=gnome-base/gsettings-desktop-schemas-2.91.92
-   >=gnome-extra/evolution-data-server-${PV}:=[gtk,weather?]
-   >=media-libs/libcanberra-0.25[gtk3]
-   >=net-libs/libsoup-2.42:2.4
-   >=net-libs/webkit-gtk-2.13.90:4
-   >=x11-libs/cairo-1.9.15:=[glib]
-   >=x11-libs/gdk-pixbuf-2.24:2
-   >=x11-libs/gtk+-3.10:3
-   >=x11-libs/libnotify-0.7:=
-   >=x11-misc/shared-mime-info-0.22
-
-   >=app-text/iso-codes-0.49
-   dev-libs/atk
-   gnome-base/dconf
-   dev-libs/libical:=
-   x11-libs/libSM
-   x11-libs/libICE
-
-   archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] )
-   crypt? (
-   >=app-crypt/gnupg-1.4
-   ${PINENTRY_DEPEND}
-   x11-libs/libcryptui )
-   geolocation? (
-   >=media-libs/libchamplain-0.12:0.12[gtk]
-   >=media-libs/clutter-1.0.0:1.0
-   >=media-libs/clutter-gtk-0.90:1.0
-   >=sci-geosciences/geocode-glib-3.10.0
-   x11-libs/mx:1.0 )
-   ldap? ( >=net-nds/openldap-2:= )
-   spell? ( app-text/gtkspell:3 )
-   ssl? (
-   >=dev-libs/nspr-4.6.1:=
-   >=dev-libs/nss-3.11:= )
-   weather? ( >=dev-libs/libgweather-3.10:2= )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/yelp-tools
-   

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-data-server/

2018-02-03 Thread Mart Raudsepp
commit: 70925bff0b6db0d2ec0af074c444fa37bd28c713
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 21:56:49 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 21:56:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70925bff

gnome-extra/evolution-data-server: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/evolution-data-server/Manifest |   1 -
 .../evolution-data-server-3.24.6.ebuild| 147 -
 2 files changed, 148 deletions(-)

diff --git a/gnome-extra/evolution-data-server/Manifest 
b/gnome-extra/evolution-data-server/Manifest
index 45eaf7d0e19..96e25e1abbb 100644
--- a/gnome-extra/evolution-data-server/Manifest
+++ b/gnome-extra/evolution-data-server/Manifest
@@ -1,3 +1,2 @@
 DIST evolution-data-server-3.22.7.tar.xz 5564924 BLAKE2B 
8107a13ef46a4457e122c5d719c0d29ccbf5ec61424fb6b4810b1e165bb68cb8c1c87ec9ab34446458321c0c56ba5a5408f45ae9fc95bcee965c21caaad6a230
 SHA512 
53648c0b893982b3577008aeae57e213e084aa5ba4663ca109f200b268635fd1544408c1ace065e91e5eaf48a20f59609c8e895a1907501ea5e64119d1590d44
-DIST evolution-data-server-3.24.6.tar.xz 4252940 BLAKE2B 
42a0a39a8248628964cfd026e4b8bc3794e897f447aadb73e0e7870865314c47d6de11a1aa85d6e7fcb0a414a3552a74cb3012c8a6d4908b280ae7440e1154d7
 SHA512 
01eece83217e66ce7e08e333ceaf38bae226800dd8a015dda29583b0155b9f1fbef4f18d95a7127d08421cd27b3203d2b7cc6a3bc0b5adba1b06197c85be96e6
 DIST evolution-data-server-3.24.7.tar.xz 4253252 BLAKE2B 
ca435a4e6c3a003c5166bd06f0308766686cc9e02f1eb6a15a521c58805bafdfd39cbc7ee058339ba383329ab34a11ed2b0eeebd9b545219c4b3d8f51de8df60
 SHA512 
3e83cb0e87ec822ebf6c81963693e7c701d20266e0811bd261a78073c75724e2c24ac5d5561e997ed8567e9e519c175b3104fa6e2e28158854c8c3ec39a8e9df

diff --git 
a/gnome-extra/evolution-data-server/evolution-data-server-3.24.6.ebuild 
b/gnome-extra/evolution-data-server/evolution-data-server-3.24.6.ebuild
deleted file mode 100644
index 082f7b928c0..000
--- a/gnome-extra/evolution-data-server/evolution-data-server-3.24.6.ebuild
+++ /dev/null
@@ -1,147 +0,0 @@
-# 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} pypy )
-VALA_USE_DEPEND="vapigen"
-
-inherit cmake-utils db-use flag-o-matic gnome2 python-any-r1 systemd vala 
virtualx
-
-DESCRIPTION="Evolution groupware backend"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
-
-# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+".
-LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat"
-SLOT="0/60" # subslot = libcamel-1.2 soname version
-
-IUSE="api-doc-extras berkdb +gnome-online-accounts +gtk google +introspection 
ipv6 ldap kerberos vala +weather"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-solaris"
-
-# sys-libs/db is only required for migrating from <3.13 versions
-# gdata-0.17.7 soft required for new gdata_feed_get_next_page_token API to 
handle more than 100 google tasks
-# berkdb needed only for migrating old calendar data, bug #519512
-gdata_depend=">=dev-libs/libgdata-0.17.7:="
-RDEPEND="
-   >=app-crypt/gcr-3.4
-   >=app-crypt/libsecret-0.5[crypt]
-   >=dev-db/sqlite-3.7.17:=
-   >=dev-libs/glib-2.46:2
-   >=dev-libs/libical-0.43:=
-   >=dev-libs/libxml2-2
-   >=dev-libs/nspr-4.4:=
-   >=dev-libs/nss-3.9:=
-   >=net-libs/libsoup-2.42:2.4
-
-   dev-libs/icu:=
-   sys-libs/zlib:=
-   virtual/libiconv
-
-   berkdb? ( >=sys-libs/db-4:= )
-   gtk? (
-   >=app-crypt/gcr-3.4[gtk]
-   >=x11-libs/gtk+-3.10:3
-   )
-   google? (
-   >=dev-libs/json-glib-1.0.4
-   >=net-libs/webkit-gtk-2.11.91:4
-   ${gdata_depend}
-   )
-   gnome-online-accounts? (
-   >=net-libs/gnome-online-accounts-3.8:=
-   ${gdata_depend} )
-   introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
-   kerberos? ( virtual/krb5:= )
-   ldap? ( >=net-nds/openldap-2:= )
-   weather? ( >=dev-libs/libgweather-3.10:2= )
-"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   dev-util/gdbus-codegen
-   dev-util/gperf
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.35.5
-   >=sys-devel/gettext-0.18.3
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-# Some tests fail due to missings locales.
-# Also, dbus tests are flacky, bugs #397975 #501834
-# It looks like a nightmare to disable those for now.
-RESTRICT="test"
-
-pkg_setup() {
-   python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   use vala && vala_src_prepare
-   gnome2_src_prepare
-
-   # Make CMakeLists versioned vala enabled
-   sed -e "s;\(find_program(VALAC\) valac);\1 ${VALAC});" \
-   -e "s;\(find_program(VAPIGEN\) vapigen);\1 ${VAPIGEN});" \
- 

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

2018-02-03 Thread Mart Raudsepp
commit: 6e6028f34af5ae5c82432c90d661ab775b451ab2
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 21:57:57 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 21:57:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e6028f3

gnome-extra/gnome-boxes: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-boxes/Manifest  |   1 -
 gnome-extra/gnome-boxes/gnome-boxes-3.22.4.ebuild | 106 --
 2 files changed, 107 deletions(-)

diff --git a/gnome-extra/gnome-boxes/Manifest b/gnome-extra/gnome-boxes/Manifest
index 6b707fa82df..f73ae802767 100644
--- a/gnome-extra/gnome-boxes/Manifest
+++ b/gnome-extra/gnome-boxes/Manifest
@@ -1,2 +1 @@
-DIST gnome-boxes-3.22.4.tar.xz 1704964 BLAKE2B 
92409820ec7f0fd414d894c7721abeaf9a3d5cb44dee25dcbf54a880155cfc7b0f8605b54d8bcb1bc776b3399d498cf3ab183564da5b3dbc09053f25a98bd3f5
 SHA512 
98e923c67d116ad5411734415b96ced5cd5f9f2a03335c8b00835a2eae47ea46dfe72f0aa5819d6ac9310cb80b5c6504a9ef7c8e4d8ef4c35495aa8fa74ee848
 DIST gnome-boxes-3.24.0.tar.xz 1710652 BLAKE2B 
0b574fcb54c9a6ab2323f08caabd8aa3d201bcd0f83fcaf6b5dc15aef0da8fc6718128f28cfa0d50c02ad341d699c1cbadec89dbc50c1a4bea08865bd8e3f0d4
 SHA512 
979d5c0f2cef052e2713508fc2fd46d64a3a325edd38dd0aa99f2e9700efd3f84916847b35487f9d7eb5e5e1c5f3b4b712b649fecf1523821c3488fa6b250026

diff --git a/gnome-extra/gnome-boxes/gnome-boxes-3.22.4.ebuild 
b/gnome-extra/gnome-boxes/gnome-boxes-3.22.4.ebuild
deleted file mode 100644
index feba37477a4..000
--- a/gnome-extra/gnome-boxes/gnome-boxes-3.22.4.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_USE_DEPEND="vapigen"
-VALA_MIN_API_VERSION="0.28"
-
-inherit gnome2 linux-info readme.gentoo-r1 vala
-
-DESCRIPTION="Simple GNOME 3 application to access remote or virtual systems"
-HOMEPAGE="https://wiki.gnome.org/Apps/Boxes;
-
-LICENSE="LGPL-2"
-SLOT="0"
-
-# We force 'bindist' due to licenses from gnome-boxes-nonfree
-IUSE="" #bindist
-
-KEYWORDS="amd64" # qemu-kvm[spice] is 64bit-only
-
-# NOTE: sys-fs/* stuff is called via exec()
-# FIXME: ovirt is not available in tree
-# FIXME: use vala.eclass but only because of libgd not being able
-#to use its pre-generated files so do not copy all the
-#vala deps like live ebuild has.
-# FIXME: qemu probably needs to depend on spice[smartcard]
-#directly with USE=spice
-RDEPEND="
-   >=app-arch/libarchive-3:=
-   >=dev-libs/glib-2.38:2
-   >=dev-libs/gobject-introspection-0.9.6:=
-   >=dev-libs/libxml2-2.7.8:2
-   >=sys-libs/libosinfo-0.2.12
-   >=app-emulation/qemu-1.3.1[spice,smartcard,usbredir]
-   >=app-emulation/libvirt-0.9.3[libvirtd,qemu]
-   >=app-emulation/libvirt-glib-0.2.3
-   >=x11-libs/gtk+-3.19.4:3
-   >=net-libs/gtk-vnc-0.4.4[gtk3]
-   app-crypt/libsecret
-   app-emulation/spice[smartcard]
-   >=net-misc/spice-gtk-0.27[gtk3,smartcard,usbredir]
-   virtual/libusb:1
-
-   >=app-misc/tracker-0.16:0=[iso]
-
-   >=sys-apps/util-linux-2.20
-   >=net-libs/libsoup-2.38:2.4
-
-   sys-fs/mtools
-   >=virtual/libgudev-165:=
-"
-#  !bindist? ( gnome-extra/gnome-boxes-nonfree )
-
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   app-text/yelp-tools
-   >=dev-util/intltool-0.40
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="Before running gnome-boxes, you will need to load the KVM 
modules.
-If you have an Intel Processor, run:
-# modprobe kvm-intel
-
-If you have an AMD Processor, run:
-# modprobe kvm-amd"
-
-pkg_pretend() {
-   linux-info_get_any_version
-
-   if linux_config_exists; then
-   if ! { linux_chkconfig_present KVM_AMD || \
-   linux_chkconfig_present KVM_INTEL; }; then
-   ewarn "You need KVM support in your kernel to use GNOME 
Boxes!"
-   fi
-   fi
-}
-
-src_prepare() {
-   # Do not change CFLAGS, wondering about VALA ones but appears to be
-   # needed as noted in configure comments below
-   sed 's/CFLAGS="$CFLAGS -O0 -ggdb3"//' -i configure{.ac,} || die
-
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   # debug needed for splitdebug proper behavior (cardoe), bug #
-   gnome2_src_configure \
-   --enable-debug \
-   --disable-strict-cc \
-   --disable-ovirt
-}
-
-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: gnome-extra/gnome-calculator/

2018-02-03 Thread Mart Raudsepp
commit: 73f5ec9cdf6f1b052fe0311203ec323e2bf1a726
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 22:00:06 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 22:00:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f5ec9c

gnome-extra/gnome-calculator: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/gnome-calculator/Manifest  |  1 -
 .../gnome-calculator-3.22.3.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/gnome-extra/gnome-calculator/Manifest 
b/gnome-extra/gnome-calculator/Manifest
index f8df55cc74f..18a95e3e913 100644
--- a/gnome-extra/gnome-calculator/Manifest
+++ b/gnome-extra/gnome-calculator/Manifest
@@ -1,2 +1 @@
-DIST gnome-calculator-3.22.3.tar.xz 1324432 BLAKE2B 
da308ea5b781a55e50df459b914d2bf508577a9a0175ec93bd8e63d37607b261f9d3d72abcf838d7c555303cb0a30b9750712c1336a9f071793df7b53cd50101
 SHA512 
e11731a3b0d16067e98d7f5d6657c879dde22563c4ac7cf8e4323c6d959f7b4e95e1d28cb2c937b1bbc72256fa1e6e2cf3a1bdc77f72f38766605e482b63ce78
 DIST gnome-calculator-3.24.0.tar.xz 1358368 BLAKE2B 
81ad42598418b11f2436ebf482bbf93547460990cdb464efb3107e93010081f3d687bf99c80d35d9a6576b5d838218c7ea07e81256abfa358ce78031d80b346d
 SHA512 
55968f3a307748050089652394a3652b8e199be9abf87d43e732874526dc2f08c4521e302a69afd2c09705ffa67a890fc2217503dd31ef51959df9189364c22f

diff --git a/gnome-extra/gnome-calculator/gnome-calculator-3.22.3.ebuild 
b/gnome-extra/gnome-calculator/gnome-calculator-3.22.3.ebuild
deleted file mode 100644
index 08b9733fc62..000
--- a/gnome-extra/gnome-calculator/gnome-calculator-3.22.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A calculator application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Calculator;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.40:2
-   dev-libs/libxml2:2
-   dev-libs/mpfr:0
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/gtk+-3.11.6:3
-   >=x11-libs/gtksourceview-3.15.1:3.0
-"
-RDEPEND="${COMMON_DEPEND}
-   !

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

2018-02-03 Thread Mart Raudsepp
commit: 1007dae4428953318320755abd0422a47bb3c65f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 21:48:30 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 21:48:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1007dae4

gnome-extra/evolution-ews: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-extra/evolution-ews/Manifest |  2 -
 .../evolution-ews/evolution-ews-3.22.6.ebuild  | 38 ---
 .../evolution-ews/evolution-ews-3.24.5.ebuild  | 57 --
 3 files changed, 97 deletions(-)

diff --git a/gnome-extra/evolution-ews/Manifest 
b/gnome-extra/evolution-ews/Manifest
index cda9aee0b9f..96a148fa2a2 100644
--- a/gnome-extra/evolution-ews/Manifest
+++ b/gnome-extra/evolution-ews/Manifest
@@ -1,3 +1 @@
-DIST evolution-ews-3.22.6.tar.xz 715320 BLAKE2B 
abd68ffce9a2b723a72e26d5c0991060c377f930c3f34e2f9244dfb53c449bc92d8e0bca60b64993369fe00370fb60920e405355c3fbe63b846e279de785045c
 SHA512 
6b93faa67a6f546142b023086bf54ac34d6c7c4320ee136f58cc0ea5a018811af2080d5945c4dc68c89555a35a4194b2f92bd839b2142ae63690e94ed895b40e
-DIST evolution-ews-3.24.5.tar.xz 488116 BLAKE2B 
8144f1eae7440993c2bedd76e5cdfb3354b32bb1b1093bf24f23c12ca8a36e076950dc015f89966532d6c5ee491262a979cc9bff47cba5146c08989becd2fb95
 SHA512 
eaa5096c09686dade6f1efddea2b706a73c292b06b473b0f2ef1ba15eb5a3d685678416a0f1de40296beaa893d5dc91b944a440440dba489df67a944342f2f17
 DIST evolution-ews-3.24.6.tar.xz 488668 BLAKE2B 
3ec507b654042882158d2d8dfdbaae0372cc67d515501e45e327ef006cd8674f7b6e48de63f8930add9f29536d3428604f21666cfac98a764cb2eb0c20353ef3
 SHA512 
24bcaf9755b9d45d4848624b42f2b41bf1532aa836cdd26f8ab57b4dd5ac83d4375c340e0cac6f7f1b830c3ab998597893bce0fdd471ed7b0758a69367edfac1

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.22.6.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.22.6.ebuild
deleted file mode 100644
index 27b947f59e1..000
--- a/gnome-extra/evolution-ews/evolution-ews-3.22.6.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# 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="Evolution module for connecting to Microsoft Exchange Web 
Services"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   dev-db/sqlite:3=
-   >=dev-libs/glib-2.40:2
-   dev-libs/libical:0=
-   >=dev-libs/libmspack-0.4
-   >=dev-libs/libxml2-2
-   >=gnome-extra/evolution-data-server-${PV}:0=
-   >=mail-client/evolution-${PV}:2.0
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/gtk+-3:3
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.9
-   >=dev-util/intltool-0.35.5
-   virtual/pkgconfig
-   test? ( net-libs/uhttpmock )
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable test tests)
-}

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.24.5.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.24.5.ebuild
deleted file mode 100644
index 87e553e77c4..000
--- a/gnome-extra/evolution-ews/evolution-ews-3.24.5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit cmake-utils gnome2
-
-DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web 
Services"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   dev-db/sqlite:3=
-   >=dev-libs/glib-2.46:2
-   dev-libs/libical:0=
-   >=dev-libs/libmspack-0.4
-   >=dev-libs/libxml2-2
-   >=gnome-extra/evolution-data-server-${PV}:0=
-   >=mail-client/evolution-${PV}:2.0
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/gtk+-3.10:3
-"
-DEPEND="${RDEPEND}
-   dev-util/gdbus-codegen
-   >=dev-util/intltool-0.35.5
-   >=sys-devel/gettext-0.18.3
-   virtual/pkgconfig
-   test? ( net-libs/uhttpmock )
-"
-
-# Unittests fail to find libevolution-ews.so
-RESTRICT="test"
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_MSPACK=ON
-   -DENABLE_TESTS=$(usex test)
-   )
-   cmake-utils_src_configure
-}
-
-src_compile() {
-   cmake-utils_src_compile
-}
-
-src_test() {
-   cmake-utils_src_test
-}
-
-src_install() {
-   cmake-utils_src_install
-}



[gentoo-commits] proj/linux-patches: New tag: 4.15-2

2018-02-03 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 21:47:41 2018 +

New tag: 4.15-2




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

2018-02-03 Thread Mike Pagano
commit: 257f9c5d5274af2fdcbefb953d451bff7bdf7f3b
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Feb  3 21:23:13 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 21:23:13 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=257f9c5d

Linux patch 4.4.115

 _README  |4 +
 1114_linux-4.4.115.patch | 1942 ++
 2 files changed, 1946 insertions(+)

diff --git a/_README b/_README
index 918bb76..60d9f40 100644
--- a/_README
+++ b/_README
@@ -499,6 +499,10 @@ Patch:  1113_linux-4.4.114.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.114
 
+Patch:  1114_linux-4.4.115.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.115
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1114_linux-4.4.115.patch b/1114_linux-4.4.115.patch
new file mode 100644
index 000..998f062
--- /dev/null
+++ b/1114_linux-4.4.115.patch
@@ -0,0 +1,1942 @@
+diff --git a/Makefile b/Makefile
+index 153440b1bbb0..9c60120dd9fd 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 114
++SUBLEVEL = 115
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
+index 14cdc6dea493..83af36d9439f 100644
+--- a/arch/arm64/Kconfig
 b/arch/arm64/Kconfig
+@@ -54,6 +54,7 @@ config ARM64
+   select HAVE_ARCH_SECCOMP_FILTER
+   select HAVE_ARCH_TRACEHOOK
+   select HAVE_BPF_JIT
++  select HAVE_EBPF_JIT
+   select HAVE_C_RECORDMCOUNT
+   select HAVE_CC_STACKPROTECTOR
+   select HAVE_CMPXCHG_DOUBLE
+diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig
+index 5ad7b721b769..2ee95ece0498 100644
+--- a/arch/s390/Kconfig
 b/arch/s390/Kconfig
+@@ -123,6 +123,7 @@ config S390
+   select HAVE_ARCH_TRACEHOOK
+   select HAVE_ARCH_TRANSPARENT_HUGEPAGE
+   select HAVE_BPF_JIT if PACK_STACK && HAVE_MARCH_Z196_FEATURES
++  select HAVE_EBPF_JIT if PACK_STACK && HAVE_MARCH_Z196_FEATURES
+   select HAVE_CMPXCHG_DOUBLE
+   select HAVE_CMPXCHG_LOCAL
+   select HAVE_DEBUG_KMEMLEAK
+diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
+index 75d0053b495a..2db93042f2f3 100644
+--- a/arch/x86/Kconfig
 b/arch/x86/Kconfig
+@@ -88,6 +88,7 @@ config X86
+   select HAVE_ARCH_TRACEHOOK
+   select HAVE_ARCH_TRANSPARENT_HUGEPAGE
+   select HAVE_BPF_JIT if X86_64
++  select HAVE_EBPF_JITif X86_64
+   select HAVE_CC_STACKPROTECTOR
+   select HAVE_CMPXCHG_DOUBLE
+   select HAVE_CMPXCHG_LOCAL
+diff --git a/arch/x86/crypto/aesni-intel_glue.c 
b/arch/x86/crypto/aesni-intel_glue.c
+index 3633ad6145c5..c18806b5db2a 100644
+--- a/arch/x86/crypto/aesni-intel_glue.c
 b/arch/x86/crypto/aesni-intel_glue.c
+@@ -965,7 +965,7 @@ static int helper_rfc4106_encrypt(struct aead_request *req)
+ 
+   if (sg_is_last(req->src) &&
+   req->src->offset + req->src->length <= PAGE_SIZE &&
+-  sg_is_last(req->dst) &&
++  sg_is_last(req->dst) && req->dst->length &&
+   req->dst->offset + req->dst->length <= PAGE_SIZE) {
+   one_entry_in_sg = 1;
+   scatterwalk_start(_sg_walk, req->src);
+diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
+index 9d2abb2a41d2..74fda1a453bd 100644
+--- a/arch/x86/include/asm/kvm_host.h
 b/arch/x86/include/asm/kvm_host.h
+@@ -998,7 +998,8 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, 
unsigned long cr2,
+ static inline int emulate_instruction(struct kvm_vcpu *vcpu,
+   int emulation_type)
+ {
+-  return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
++  return x86_emulate_instruction(vcpu, 0,
++  emulation_type | EMULTYPE_NO_REEXECUTE, NULL, 0);
+ }
+ 
+ void kvm_enable_efer_bits(u64);
+diff --git a/arch/x86/kernel/cpu/perf_event_intel_bts.c 
b/arch/x86/kernel/cpu/perf_event_intel_bts.c
+index 2cad71d1b14c..5af11c46d0b9 100644
+--- a/arch/x86/kernel/cpu/perf_event_intel_bts.c
 b/arch/x86/kernel/cpu/perf_event_intel_bts.c
+@@ -22,6 +22,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ #include 
+@@ -67,6 +68,23 @@ static size_t buf_size(struct page *page)
+   return 1 << (PAGE_SHIFT + page_private(page));
+ }
+ 
++static void bts_buffer_free_aux(void *data)
++{
++#ifdef CONFIG_PAGE_TABLE_ISOLATION
++  struct bts_buffer *buf = data;
++  int nbuf;
++
++  for (nbuf = 0; nbuf < buf->nr_bufs; nbuf++) {
++  struct page *page = buf->buf[nbuf].page;
++  void *kaddr = page_address(page);
++  size_t page_size = buf_size(page);
++
++  kaiser_remove_mapping((unsigned long)kaddr, page_size);
++  }
++#endif
++  kfree(data);
++}
++
+ static void *
+ bts_buffer_setup_aux(int cpu, 

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

2018-02-03 Thread Mike Pagano
commit: e42ba89e229f13dcf6d2c76301b94f4b18b7ddbf
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Feb  3 21:22:15 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 21:22:15 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=e42ba89e

Linux patch 4.9.80

 _README |4 +
 1079_linux-4.9.80.patch | 2366 +++
 2 files changed, 2370 insertions(+)

diff --git a/_README b/_README
index d0865d5..0abed7c 100644
--- a/_README
+++ b/_README
@@ -359,6 +359,10 @@ Patch:  1078_linux-4.9.79.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.9.79
 
+Patch:  1079_linux-4.9.80.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.9.80
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1079_linux-4.9.80.patch b/1079_linux-4.9.80.patch
new file mode 100644
index 000..26370c4
--- /dev/null
+++ b/1079_linux-4.9.80.patch
@@ -0,0 +1,2366 @@
+diff --git a/Makefile b/Makefile
+index 4a7e6dff1c2e..9550b6939076 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 9
+-SUBLEVEL = 79
++SUBLEVEL = 80
+ EXTRAVERSION =
+ NAME = Roaring Lionus
+ 
+diff --git a/arch/arm/boot/dts/bcm-nsp.dtsi b/arch/arm/boot/dts/bcm-nsp.dtsi
+index 7c9e0fae9bb9..65e0db1d3bd7 100644
+--- a/arch/arm/boot/dts/bcm-nsp.dtsi
 b/arch/arm/boot/dts/bcm-nsp.dtsi
+@@ -85,7 +85,7 @@
+   timer@20200 {
+   compatible = "arm,cortex-a9-global-timer";
+   reg = <0x20200 0x100>;
+-  interrupts = ;
++  interrupts = ;
+   clocks = <_clk>;
+   };
+ 
+@@ -93,7 +93,7 @@
+   compatible = "arm,cortex-a9-twd-timer";
+   reg = <0x20600 0x20>;
+   interrupts = ;
++IRQ_TYPE_EDGE_RISING)>;
+   clocks = <_clk>;
+   };
+ 
+diff --git a/arch/x86/crypto/aesni-intel_glue.c 
b/arch/x86/crypto/aesni-intel_glue.c
+index aa8b0672f87a..d9ae404f08c9 100644
+--- a/arch/x86/crypto/aesni-intel_glue.c
 b/arch/x86/crypto/aesni-intel_glue.c
+@@ -906,7 +906,7 @@ static int helper_rfc4106_encrypt(struct aead_request *req)
+ 
+   if (sg_is_last(req->src) &&
+   req->src->offset + req->src->length <= PAGE_SIZE &&
+-  sg_is_last(req->dst) &&
+++ sg_is_last(req->dst) && req->dst->length &&
+   req->dst->offset + req->dst->length <= PAGE_SIZE) {
+   one_entry_in_sg = 1;
+   scatterwalk_start(_sg_walk, req->src);
+diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
+index cbd1d44da2d3..20cfeeb681c6 100644
+--- a/arch/x86/include/asm/kvm_host.h
 b/arch/x86/include/asm/kvm_host.h
+@@ -1113,7 +1113,8 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, 
unsigned long cr2,
+ static inline int emulate_instruction(struct kvm_vcpu *vcpu,
+   int emulation_type)
+ {
+-  return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
++  return x86_emulate_instruction(vcpu, 0,
++  emulation_type | EMULTYPE_NO_REEXECUTE, NULL, 0);
+ }
+ 
+ void kvm_enable_efer_bits(u64);
+diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
+index c8f8dd8ca0a1..6f5a3b076341 100644
+--- a/arch/x86/kvm/emulate.c
 b/arch/x86/kvm/emulate.c
+@@ -4990,6 +4990,8 @@ int x86_decode_insn(struct x86_emulate_ctxt *ctxt, void 
*insn, int insn_len)
+   bool op_prefix = false;
+   bool has_seg_override = false;
+   struct opcode opcode;
++  u16 dummy;
++  struct desc_struct desc;
+ 
+   ctxt->memop.type = OP_NONE;
+   ctxt->memopp = NULL;
+@@ -5008,6 +5010,11 @@ int x86_decode_insn(struct x86_emulate_ctxt *ctxt, void 
*insn, int insn_len)
+   switch (mode) {
+   case X86EMUL_MODE_REAL:
+   case X86EMUL_MODE_VM86:
++  def_op_bytes = def_ad_bytes = 2;
++  ctxt->ops->get_segment(ctxt, , , NULL, VCPU_SREG_CS);
++  if (desc.d)
++  def_op_bytes = def_ad_bytes = 4;
++  break;
+   case X86EMUL_MODE_PROT16:
+   def_op_bytes = def_ad_bytes = 2;
+   break;
+diff --git a/arch/x86/kvm/ioapic.c b/arch/x86/kvm/ioapic.c
+index 6e219e5c07d2..5f810bb80802 100644
+--- a/arch/x86/kvm/ioapic.c
 b/arch/x86/kvm/ioapic.c
+@@ -257,8 +257,7 @@ void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong 
*ioapic_handled_vectors)
+   index == RTC_GSI) {
+   if (kvm_apic_match_dest(vcpu, NULL, 0,
+e->fields.dest_id, e->fields.dest_mode) ||
+-  (e->fields.trig_mode == IOAPIC_EDGE_TRIG &&
+-   kvm_apic_pending_eoi(vcpu, 

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

2018-02-03 Thread Mike Pagano
commit: cd10231abdae4f2e8ddd323db3031b9d5778b320
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Feb  3 21:19:57 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Feb  3 21:19:57 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=cd10231a

Linux patch 4.15.1

 _README |4 +
 1000_linux-4.15.1.patch | 1808 +++
 2 files changed, 1812 insertions(+)

diff --git a/_README b/_README
index 01553d4..da07a38 100644
--- a/_README
+++ b/_README
@@ -43,6 +43,10 @@ EXPERIMENTAL
 Individual Patch Descriptions:
 --
 
+Patch:  1000_linux-4.15.1.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.15.1
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1000_linux-4.15.1.patch b/1000_linux-4.15.1.patch
new file mode 100644
index 000..7a10ddd
--- /dev/null
+++ b/1000_linux-4.15.1.patch
@@ -0,0 +1,1808 @@
+diff --git a/Makefile b/Makefile
+index c8b8e902d5a4..af101b556ba0 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 15
+-SUBLEVEL = 0
++SUBLEVEL = 1
+ EXTRAVERSION =
+ NAME = Fearless Coyote
+ 
+diff --git a/arch/x86/crypto/aesni-intel_asm.S 
b/arch/x86/crypto/aesni-intel_asm.S
+index 3d09e3aca18d..12e8484a8ee7 100644
+--- a/arch/x86/crypto/aesni-intel_asm.S
 b/arch/x86/crypto/aesni-intel_asm.S
+@@ -90,30 +90,6 @@ SHIFT_MASK: .octa 0x0f0e0d0c0b0a09080706050403020100
+ ALL_F:  .octa 0x
+ .octa 0x
+ 
+-.section .rodata
+-.align 16
+-.type aad_shift_arr, @object
+-.size aad_shift_arr, 272
+-aad_shift_arr:
+-.octa 0x
+-.octa 0xff0C
+-.octa 0x0D0C
+-.octa 0xff0E0D0C
+-.octa 0x0F0E0D0C
+-.octa 0xff0C0B0A0908
+-.octa 0x0D0C0B0A0908
+-.octa 0xff0E0D0C0B0A0908
+-.octa 0x0F0E0D0C0B0A0908
+-.octa 0xff0C0B0A090807060504
+-.octa 0x0D0C0B0A090807060504
+-.octa 0xff0E0D0C0B0A090807060504
+-.octa 0x0F0E0D0C0B0A090807060504
+-.octa 0xff0C0B0A09080706050403020100
+-.octa 0x0D0C0B0A09080706050403020100
+-.octa 0xff0E0D0C0B0A09080706050403020100
+-.octa 0x0F0E0D0C0B0A09080706050403020100
+-
+-
+ .text
+ 
+ 
+@@ -257,6 +233,37 @@ aad_shift_arr:
+   pxor  \TMP1, \GH# result is in TMP1
+ .endm
+ 
++# Reads DLEN bytes starting at DPTR and stores in XMMDst
++# where 0 < DLEN < 16
++# Clobbers %rax, DLEN and XMM1
++.macro READ_PARTIAL_BLOCK DPTR DLEN XMM1 XMMDst
++cmp $8, \DLEN
++jl _read_lt8_\@
++mov (\DPTR), %rax
++MOVQ_R64_XMM %rax, \XMMDst
++sub $8, \DLEN
++jz _done_read_partial_block_\@
++  xor %eax, %eax
++_read_next_byte_\@:
++shl $8, %rax
++mov 7(\DPTR, \DLEN, 1), %al
++dec \DLEN
++jnz _read_next_byte_\@
++MOVQ_R64_XMM %rax, \XMM1
++  pslldq $8, \XMM1
++por \XMM1, \XMMDst
++  jmp _done_read_partial_block_\@
++_read_lt8_\@:
++  xor %eax, %eax
++_read_next_byte_lt8_\@:
++shl $8, %rax
++mov -1(\DPTR, \DLEN, 1), %al
++dec \DLEN
++jnz _read_next_byte_lt8_\@
++MOVQ_R64_XMM %rax, \XMMDst
++_done_read_partial_block_\@:
++.endm
++
+ /*
+ * if a = number of total plaintext bytes
+ * b = floor(a/16)
+@@ -273,62 +280,30 @@ aad_shift_arr:
+ XMM2 XMM3 XMM4 XMMDst TMP6 TMP7 i i_seq operation
+ MOVADQ SHUF_MASK(%rip), %xmm14
+   movarg7, %r10   # %r10 = AAD
+-  movarg8, %r12   # %r12 = aadLen
+-  mov%r12, %r11
++  movarg8, %r11   # %r11 = aadLen
+   pxor   %xmm\i, %xmm\i
+   pxor   \XMM2, \XMM2
+ 
+   cmp$16, %r11
+-  jl _get_AAD_rest8\num_initial_blocks\operation
++  jl _get_AAD_rest\num_initial_blocks\operation
+ _get_AAD_blocks\num_initial_blocks\operation:
+   movdqu (%r10), %xmm\i
+   PSHUFB_XMM %xmm14, %xmm\i # byte-reflect the AAD data
+   pxor   %xmm\i, \XMM2
+   GHASH_MUL  \XMM2, \TMP3, \TMP1, \TMP2, \TMP4, \TMP5, \XMM1
+   add$16, %r10
+-  sub$16, %r12
+   sub$16, %r11
+   cmp$16, %r11
+   jge_get_AAD_blocks\num_initial_blocks\operation
+ 
+   movdqu \XMM2, %xmm\i
++
++  /* read the last <16B of AAD */

[gentoo-commits] repo/gentoo:master commit in: media-gfx/sane-backends/files/

2018-02-03 Thread Andreas Sturmlechner
commit: 4aa5be874bee1ba7d66ea60ded966d70d042faff
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Feb  3 19:40:48 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 21:11:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aa5be87

media-gfx/sane-backends: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/7039

 .../files/sane-backends-1.0.25-disable-usb-tests.patch | 14 --
 1 file changed, 14 deletions(-)

diff --git 
a/media-gfx/sane-backends/files/sane-backends-1.0.25-disable-usb-tests.patch 
b/media-gfx/sane-backends/files/sane-backends-1.0.25-disable-usb-tests.patch
deleted file mode 100644
index 217a4408e2f..000
--- a/media-gfx/sane-backends/files/sane-backends-1.0.25-disable-usb-tests.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-do not let the tests try reading/locking usb hardware.  we also disable
-this because the test will abort() if no usb support is found at all.
-
 a/testsuite/sanei/sanei_usb_test.c
-+++ b/testsuite/sanei/sanei_usb_test.c
-@@ -832,6 +832,8 @@ main (int argc, char **argv)
-   int detected, opened, i;
-   SANE_Int dn[MAX_DEVICES];
- 
-+  return 77;
-+
- #ifdef HAVE_LIBUSB
-   printf ("\n%s built with old libusb\n\n", argv[0]);
- #endif



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

2018-02-03 Thread Sergei Trofimovich
commit: 9e7f603989bcb17e86282ce69933095d6ed69bc5
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Feb  3 20:50:21 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Feb  3 21:06:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e7f6039

x11-libs/gdk-pixbuf: stable 2.36.11 for hppa, bug #644770

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"

 x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild 
b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild
index 89fa40f2ab2..c1db4416c3f 100644
--- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild
+++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://git.gnome.org/browse/gdk-pixbuf;
 
 LICENSE="LGPL-2+"
 SLOT="2"
-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"
+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"
 IUSE="X debug +introspection jpeg jpeg2k tiff test"
 
 COMMON_DEPEND="



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

2018-02-03 Thread Mart Raudsepp
commit: 713408b9d45dee77939a1cc4a17136acc2c24e68
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:36:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:55:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713408b9

gnome-base/nautilus: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/nautilus/Manifest   |   1 -
 gnome-base/nautilus/nautilus-3.22.3.ebuild | 111 -
 2 files changed, 112 deletions(-)

diff --git a/gnome-base/nautilus/Manifest b/gnome-base/nautilus/Manifest
index f561b512563..43fdc2856b5 100644
--- a/gnome-base/nautilus/Manifest
+++ b/gnome-base/nautilus/Manifest
@@ -1,3 +1,2 @@
 DIST nautilus-3.20.4.tar.xz 3453376 BLAKE2B 
47e09f45909f6abd735c976ea6ab0b90c918490193a931b186472d9be1d22f5c7314647ec14e36a88b9f8013f3784f7788b4d9ef136e139e1b1cb41b0167c378
 SHA512 
01bee5c70067c508ca918948afe0b400680eb68518ae69803e2971a215b0eaf54c9251566c6c44835a1c0b9b20248450539a47936c6aba5c9accc9ef3cbe8a8e
-DIST nautilus-3.22.3.tar.xz 5104800 BLAKE2B 
f8eaa735f9c7398de038e428acffef74c4dde2254fd9e7868823a93ef835817b907a4079b58f3e121959da730a8ca171709cc2716759ad1376aa9c5a98a2025e
 SHA512 
abad02d2b36230348cec04bcc2650cc352e232008c4e628096880a93b647a0da86b43b9df6cbd621334e7292e2d00f68010783858dbfa38061ab7eafd3c4c912
 DIST nautilus-3.24.2.1.tar.xz 5143440 BLAKE2B 
731046b6bdd0817b770cf3e2f0667187bfde613cf1a15611e6ec06e74bc3c2432ca66894119f224023fe46b01fd777d3dde2d2ac7bba0a9eb0fd71d38e1756ff
 SHA512 
f6868600bcdc82071b3a63f4e4a0f7decf0d72e021eb3d0c26e914413c858163ee4403c4f3ef7689556a0fc91394f30cff9a3db14da030b277b50972c7b80a07

diff --git a/gnome-base/nautilus/nautilus-3.22.3.ebuild 
b/gnome-base/nautilus/nautilus-3.22.3.ebuild
deleted file mode 100644
index c45db7515f0..000
--- a/gnome-base/nautilus/nautilus-3.22.3.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# 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="~alpha amd64 ~arm64 ~ia64 ~ppc ~ppc64 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.1
-   >=dev-libs/glib-2.49.1: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-0.16:= )
-   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? ( !

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

2018-02-03 Thread Mart Raudsepp
commit: c4eaab4165a3db91ac359c3b407f7da97c1d0b5b
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:46:20 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:53:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4eaab41

gnome-base/gdm: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gdm/Manifest|   2 -
 .../gdm/files/gdm-3.22.1-pam-module-dir.patch  |  52 -
 gnome-base/gdm/gdm-3.22.3-r1.ebuild| 218 -
 gnome-base/gdm/gdm-3.24.2.ebuild   | 213 
 4 files changed, 485 deletions(-)

diff --git a/gnome-base/gdm/Manifest b/gnome-base/gdm/Manifest
index b7093703d82..95025337e8f 100644
--- a/gnome-base/gdm/Manifest
+++ b/gnome-base/gdm/Manifest
@@ -1,4 +1,2 @@
-DIST gdm-3.22.3.tar.xz 1110740 BLAKE2B 
9b41a5e4a01acf14037622ee344613f80d6fc6ef352f8b655e9ec1ce939ca2d20de43f982aa54a24763695c612da5b3d9de8d0ce6080f487ccf1d644df95cbef
 SHA512 
b87acfca13c1d71ed1d7390625d1c36d58cfcde0ea969fa29cde5cabcb2fdf386e30e3b4d3ca057c2cdb99c202dca19d2a478b55083c468c7fb595e69881aebf
-DIST gdm-3.24.2.tar.xz 1113644 BLAKE2B 
597187008b8ef0ce05d0d3641550a0738a1eabc6d9f683b37bfd49bf71bcfa0b41f46951fe95bcbf18169c9a846df4ed63dda27a3c55dfabf8b5386f5023808a
 SHA512 
6e2649bce5520532a2976bac8a47629fc4c852d7127b913c29a9c43a7dba26d75472a083cbfff7b64bab56deb38ed13d8387d4d302d55f263c80120255a4a270
 DIST gdm-3.24.3.tar.xz 1113992 BLAKE2B 
79ae5ccf049bdb05cea4f0e8b2766caee0552efe8fe044da655037bfd603f1e4ab89a4eb0687f786bf44e9fd1c27e07bc498a769c8f88f0cc22b2dd1c9b1
 SHA512 
d8edffb582545f452ec071990fd7d07d6cb755458bc77a9e1b807816f8202f70fc8177e4bb345125075347942c6760c5a5460e3570dc32ee2570ecc15e5f3345
 DIST tango-gentoo-v1.1.tar.gz 29322 BLAKE2B 
83fa2bf37727e60851dd679054fe1b153ebfea58c9a9a40f891f7d68d3b047b02e8effa1d1b4e08d64500a2072ce7200f159c92a352da7124de27e1b05bb6027
 SHA512 
87d47ddab68361db6d99866c51705dcb3e198f8345a1096859acf2c6cca5099dd23c7fb30d124f52c4933ea38fd45fadffbbe6ecbdfa84f5b60938a4824f9045

diff --git a/gnome-base/gdm/files/gdm-3.22.1-pam-module-dir.patch 
b/gnome-base/gdm/files/gdm-3.22.1-pam-module-dir.patch
deleted file mode 100644
index 7dc4392e41c..000
--- a/gnome-base/gdm/files/gdm-3.22.1-pam-module-dir.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 4fc9023bb86689f1391651fa744d9e63ee1d7bbc Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?R=C3=A9mi=20Cardona?= 
-Date: Mon, 21 Nov 2016 08:18:32 +0100
-Subject: [PATCH] pam_gdm: allow setting pam module dir at configure time
-
-Code taken almost verbatim from gnome-keyring.

- configure.ac| 10 +-
- pam_gdm/Makefile.am |  2 +-
- 2 files changed, 10 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index dd98992..e0074dd 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -476,7 +476,7 @@ dnl 
---
- dnl - Check for PAM stuff
- dnl 
---
- 
--dnl PAM prefix
-+dnl PAM prefix (configuration files)
- withval=""
- AC_ARG_WITH(pam-prefix,
- AS_HELP_STRING([--with-pam-prefix=],
-@@ -492,6 +492,14 @@ else
- fi
- AC_SUBST(PAM_PREFIX)
- 
-+dnl PAM dir (dynamic modules)
-+AC_ARG_WITH([pam-dir],
-+[AC_HELP_STRING([--with-pam-dir=DIR],
-+ [directory to install pam modules in])],
-+ [], [with_pam_dir='${libdir}/security'])
-+PAM_DEST_DIR="$with_pam_dir"
-+AC_SUBST(PAM_DEST_DIR)
-+
- have_pam=no
- AC_CHECK_LIB(pam, pam_start, have_pam=yes)
- 
-diff --git a/pam_gdm/Makefile.am b/pam_gdm/Makefile.am
-index 61d672b..980b31c 100644
 a/pam_gdm/Makefile.am
-+++ b/pam_gdm/Makefile.am
-@@ -36,4 +36,4 @@ pam_gdm_LTLIBRARIES = \
-   pam_gdm.la \
-   $(END_OF_LIST)
- 
--pam_gdmdir = $(libdir)/security
-+pam_gdmdir = $(PAM_DEST_DIR)
--- 
-2.10.2
-

diff --git a/gnome-base/gdm/gdm-3.22.3-r1.ebuild 
b/gnome-base/gdm/gdm-3.22.3-r1.ebuild
deleted file mode 100644
index ea15676a90d..000
--- a/gnome-base/gdm/gdm-3.22.3-r1.ebuild
+++ /dev/null
@@ -1,218 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit autotools eutils gnome2 pam readme.gentoo-r1 systemd user versionator
-
-DESCRIPTION="GNOME Display Manager for managing graphical display servers and 
user logins"
-HOMEPAGE="https://wiki.gnome.org/Projects/GDM;
-
-SRC_URI="${SRC_URI}
-   branding? ( 
https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz
 )
-"
-
-LICENSE="
-   GPL-2+
-   branding? ( CC-BY-SA-4.0 )
-"
-
-SLOT="0"
-
-IUSE="accessibility audit branding fprint +introspection ipv6 plymouth selinux 
smartcard tcpd test wayland xinerama"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86"
-
-# NOTE: 

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

2018-02-03 Thread Mart Raudsepp
commit: fa59aad7cdc8fc25c7d86aed5055019cb8fabb70
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:54:06 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa59aad7

gnome-base/gnome-extra-apps: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../gnome-extra-apps-3.22.2.ebuild | 75 --
 .../gnome-extra-apps-3.24.0.ebuild | 75 --
 2 files changed, 150 deletions(-)

diff --git a/gnome-base/gnome-extra-apps/gnome-extra-apps-3.22.2.ebuild 
b/gnome-base/gnome-extra-apps/gnome-extra-apps-3.22.2.ebuild
deleted file mode 100644
index 1936ed66683..000
--- a/gnome-base/gnome-extra-apps/gnome-extra-apps-3.22.2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# 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-3.22.1
-   >=media-video/cheese-3.22.1
-   >=www-client/epiphany-3.22.2
-   >=app-arch/file-roller-3.22.1
-   >=gnome-extra/gnome-calculator-${PV}
-   >=gnome-extra/gnome-calendar-3.22.1
-   >=gnome-extra/gnome-characters-3.22.0
-   >=sys-apps/gnome-disk-utility-3.22.1
-   >=media-gfx/gnome-font-viewer-3.22.0
-   >=gnome-extra/gnome-power-manager-${PV}
-   >=media-gfx/gnome-screenshot-3.22.0
-   >=gnome-extra/gnome-system-monitor-${PV}
-   >=gnome-extra/gnome-weather-3.20.2
-   >=gnome-extra/gucharmap-9.0.2:2.90
-   >=gnome-extra/sushi-3.21.91
-   >=media-sound/sound-juicer-3.22.1
-   >=net-misc/vino-3.22.0
-
-   >=gnome-base/dconf-editor-3.22.1
-   >=app-dicts/gnome-dictionary-3.20.0
-   >=mail-client/evolution-${PV}
-   >=net-analyzer/gnome-nettool-3.8.1
-   >=gnome-extra/gnome-tweak-tool-3.22.0
-   >=gnome-extra/nautilus-sendto-3.8.4
-   >=net-misc/vinagre-3.22.0
-
-   games? (
-   >=games-puzzle/five-or-more-${PV}
-   >=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-3.22.1
-   >=games-arcade/gnome-robots-3.22.1
-   >=games-puzzle/gnome-sudoku-3.22.2
-   >=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-3.22.2
-   >=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.24 )
-   tracker? (
-   >=app-misc/tracker-1.10.1
-   >=gnome-extra/gnome-documents-3.22.0
-   >=media-gfx/gnome-photos-${PV}
-   >=media-sound/gnome-music-3.22.1 )
-"
-DEPEND=""
-S=${WORKDIR}

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
deleted file mode 100644
index e7fe28b82ab..000
--- a/gnome-base/gnome-extra-apps/gnome-extra-apps-3.24.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# 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}
-   

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

2018-02-03 Thread Mart Raudsepp
commit: 84e00ceb0272cbc8da051a00a00b9cf531b6a10e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:19:16 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:55:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e00ceb

gnome-base/gnome-shell: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../gnome-shell/files/3.22.3-CVE-2017-8288.patch   |  45 -
 .../gnome-shell/gnome-shell-3.22.3-r2.ebuild   | 196 -
 2 files changed, 241 deletions(-)

diff --git a/gnome-base/gnome-shell/files/3.22.3-CVE-2017-8288.patch 
b/gnome-base/gnome-shell/files/3.22.3-CVE-2017-8288.patch
deleted file mode 100644
index f9c74d62fdd..000
--- a/gnome-base/gnome-shell/files/3.22.3-CVE-2017-8288.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 560e976ee9c59d75907b5ef6ed2bc336719e37d3 Mon Sep 17 00:00:00 2001
-From: Emilio Pozuelo Monfort 
-Date: Tue, 25 Apr 2017 17:27:42 +0200
-Subject: [PATCH] extensionSystem: handle reloading broken extensions
-
-Some extensions out there may fail to reload. When that happens,
-we need to catch any exceptions so that we don't leave things in
-a broken state that could lead to leaving extensions enabled in
-the screen shield.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=781728

- js/ui/extensionSystem.js | 12 ++--
- 1 file changed, 10 insertions(+), 2 deletions(-)
-
-diff --git a/js/ui/extensionSystem.js b/js/ui/extensionSystem.js
-index ba33222..1feaa2f 100644
 a/js/ui/extensionSystem.js
-+++ b/js/ui/extensionSystem.js
-@@ -276,12 +276,20 @@ function _onVersionValidationChanged() {
- // temporarily disable them all
- enabledExtensions = [];
- for (let uuid in ExtensionUtils.extensions)
--reloadExtension(ExtensionUtils.extensions[uuid]);
-+try {
-+reloadExtension(ExtensionUtils.extensions[uuid]);
-+} catch(e) {
-+logExtensionError(uuid, e);
-+}
- enabledExtensions = getEnabledExtensions();
- 
- if (Main.sessionMode.allowExtensions) {
- enabledExtensions.forEach(function(uuid) {
--enableExtension(uuid);
-+try {
-+enableExtension(uuid);
-+} catch(e) {
-+logExtensionError(uuid, e);
-+}
- });
- }
- }
--- 
-2.10.1
-

diff --git a/gnome-base/gnome-shell/gnome-shell-3.22.3-r2.ebuild 
b/gnome-base/gnome-shell/gnome-shell-3.22.3-r2.ebuild
deleted file mode 100644
index 66d73e5efc0..000
--- a/gnome-base/gnome-shell/gnome-shell-3.22.3-r2.ebuild
+++ /dev/null
@@ -1,196 +0,0 @@
-# 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"
-PYTHON_COMPAT=( python{3_4,3_5} )
-
-inherit gnome2 multilib pax-utils python-r1 systemd
-
-DESCRIPTION="Provides core UI functions for the GNOME 3 desktop"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell;
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="+bluetooth +browser-extension +ibus +networkmanager nsplugin 
-openrc-force"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-KEYWORDS="amd64 ~ia64 x86"
-
-# libXfixes-5.0 needed for pointer barriers
-# FIXME:
-#  * gstreamer support is currently automagic
-COMMON_DEPEND="
-   >=app-accessibility/at-spi2-atk-2.5.3
-   >=dev-libs/atk-2[introspection]
-   >=app-crypt/gcr-3.7.5[introspection]
-   >=dev-libs/glib-2.45.3:2[dbus]
-   >=dev-libs/gjs-1.39
-   >=dev-libs/gobject-introspection-1.49.1:=
-   dev-libs/libical:=
-   >=x11-libs/gtk+-3.15.0:3[introspection]
-   >=dev-libs/libcroco-0.6.8:0.6
-   >=gnome-base/gnome-desktop-3.7.90:3=[introspection]
-   >=gnome-base/gsettings-desktop-schemas-3.21.3
-   >=gnome-extra/evolution-data-server-3.17.2:=
-   >=media-libs/gstreamer-0.11.92:1.0
-   >=net-im/telepathy-logger-0.2.4[introspection]
-   >=net-libs/telepathy-glib-0.19[introspection]
-   >=sys-auth/polkit-0.100[introspection]
-   >=x11-libs/libXfixes-5.0
-   x11-libs/libXtst
-   >=x11-wm/mutter-3.22.1[introspection]
-   >=x11-libs/startup-notification-0.11
-
-   ${PYTHON_DEPS}
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-
-   dev-libs/dbus-glib
-   dev-libs/libxml2:2
-   media-libs/libcanberra[gtk3]
-   media-libs/mesa
-   >=media-sound/pulseaudio-2
-   >=net-libs/libsoup-2.40:2.4[introspection]
-   x11-libs/libX11
-   x11-libs/gdk-pixbuf:2[introspection]
-
-   x11-apps/mesa-progs
-
-   bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] )
-   networkmanager? (
-   app-crypt/libsecret
-   >=gnome-extra/nm-applet-0.9.8
-   >=net-misc/networkmanager-0.9.8:=[introspection] )
-   nsplugin? ( >=dev-libs/json-glib-0.13.2 )
-"
-# Runtime-only deps are probably incomplete and approximate.
-# Introspection deps generated using:
-# 

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

2018-02-03 Thread Mart Raudsepp
commit: c2bd14abaec1afe45ffd5693b79671a5feacd1ae
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:32:35 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:55:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2bd14ab

gnome-base/gvfs: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gvfs/gvfs-1.32.1.ebuild | 131 -
 1 file changed, 131 deletions(-)

diff --git a/gnome-base/gvfs/gvfs-1.32.1.ebuild 
b/gnome-base/gvfs/gvfs-1.32.1.ebuild
deleted file mode 100644
index a105e360978..000
--- a/gnome-base/gvfs/gvfs-1.32.1.ebuild
+++ /dev/null
@@ -1,131 +0,0 @@
-# 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 || die
-
-   # Uncomment when eautoreconf stops being needed always
-   eautoreconf
-   fi
-
-   gnome2_src_prepare
-}
-
-src_configure() {
-   # --enable-documentation installs man pages
-   # --disable-obexftp, upstream bug #729945
-   gnome2_src_configure \
-   --disable-gdu \
-   --enable-documentation \
-   --enable-gcr \
-   --with-dbus-service-dir="${EPREFIX}"/usr/share/dbus-1/services \
-   --with-systemduserunitdir="$(systemd_get_userunitdir)" \
-   $(use_enable afp) \
-   $(use_enable archive) \
-   $(use_enable bluray) \
-   $(use_enable cdda) \
-   $(use_enable fuse) \
-   $(use_enable gnome-keyring keyring) \
-   $(use_enable gnome-online-accounts goa) \
-   $(use_enable google) \
-   $(use_enable gphoto2) \
-   $(use_enable gtk) \
-   $(use_enable http) \
-   $(use_enable ios afc) \
-   $(use_enable mtp libmtp) \
-   

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

2018-02-03 Thread Mart Raudsepp
commit: 909b80f68b2561632e761e2d96df7e06a4aa6ec8
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:55:49 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=909b80f6

gnome-base/gnome-core-apps: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../gnome-core-apps/gnome-core-apps-3.22.2.ebuild  | 55 --
 .../gnome-core-apps/gnome-core-apps-3.24.0.ebuild  | 55 --
 2 files changed, 110 deletions(-)

diff --git a/gnome-base/gnome-core-apps/gnome-core-apps-3.22.2.ebuild 
b/gnome-base/gnome-core-apps/gnome-core-apps-3.22.2.ebuild
deleted file mode 100644
index e286334dd13..000
--- a/gnome-base/gnome-core-apps/gnome-core-apps-3.22.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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 ~ppc ~ppc64 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-3.22.1[cups?]
-   >=gnome-base/gnome-control-center-3.22.1[cups?]
-
-   >=app-crypt/gcr-3.20.0
-   >=gnome-base/nautilus-3.22.1
-   >=gnome-base/gnome-keyring-3.20.0
-   >=gnome-extra/evolution-data-server-${PV}
-
-   >=app-crypt/seahorse-3.20.0
-   >=app-editors/gedit-3.22.0
-   >=app-text/evince-3.22.1
-   >=gnome-extra/gnome-contacts-3.22.1
-   >=media-gfx/eog-3.20.5
-   >=media-video/totem-3.22.0
-   >=x11-terms/gnome-terminal-3.22.1
-
-   >=gnome-extra/gnome-user-docs-3.22.0
-   >=gnome-extra/yelp-3.22.0
-
-   >=x11-themes/adwaita-icon-theme-3.22.0
-   >=x11-themes/gnome-themes-standard-${PV}
-
-   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}"

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
deleted file mode 100644
index cbe71dc7421..000
--- a/gnome-base/gnome-core-apps/gnome-core-apps-3.24.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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 ~ppc ~ppc64 ~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: gnome-base/gnome-core-libs/

2018-02-03 Thread Mart Raudsepp
commit: a79520c7f3f55646820b2b33b836b9725b12f7f1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:57:34 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a79520c7

gnome-base/gnome-core-libs: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../gnome-core-libs/gnome-core-libs-3.22.2.ebuild  | 42 --
 .../gnome-core-libs/gnome-core-libs-3.24.0.ebuild  | 42 --
 2 files changed, 84 deletions(-)

diff --git a/gnome-base/gnome-core-libs/gnome-core-libs-3.22.2.ebuild 
b/gnome-base/gnome-core-libs/gnome-core-libs-3.22.2.ebuild
deleted file mode 100644
index b3dc6e221e0..000
--- a/gnome-base/gnome-core-libs/gnome-core-libs-3.22.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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.50.2:2
-   >=x11-libs/gdk-pixbuf-2.36.0:2
-   >=x11-libs/pango-1.40.3
-   >=media-libs/clutter-1.26.0:1.0
-   >=x11-libs/gtk+-3.22.3:3[cups?]
-   >=dev-libs/atk-2.22.0
-   >=gnome-base/librsvg-2.40.16
-   >=gnome-base/gnome-desktop-3.22.2:3
-   >=x11-libs/startup-notification-0.12
-
-   >=gnome-base/gvfs-1.30.2
-   >=gnome-base/dconf-0.26.0
-
-   >=media-libs/gstreamer-1.8.3:1.0
-   >=media-libs/gst-plugins-base-1.8.3:1.0
-   >=media-libs/gst-plugins-good-1.8.3:1.0
-
-   python? ( >=dev-python/pygobject-3.22.0:3 )
-"
-DEPEND=""
-
-# >=x11-libs/libwnck-3.20.1:3 - not used by core packages anymore
-
-S="${WORKDIR}"

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
deleted file mode 100644
index af22bc2b50b..000
--- a/gnome-base/gnome-core-libs/gnome-core-libs-3.24.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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: gnome-base/gsettings-desktop-schemas/

2018-02-03 Thread Mart Raudsepp
commit: 2b782e4ef067f032187513195c1fbd45ea06e1fc
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:29:55 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:55:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b782e4e

gnome-base/gsettings-desktop-schemas: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gsettings-desktop-schemas/Manifest  |  1 -
 .../gsettings-desktop-schemas-3.24.0.ebuild| 28 --
 2 files changed, 29 deletions(-)

diff --git a/gnome-base/gsettings-desktop-schemas/Manifest 
b/gnome-base/gsettings-desktop-schemas/Manifest
index 8ea7e08736b..a6fbec51a3e 100644
--- a/gnome-base/gsettings-desktop-schemas/Manifest
+++ b/gnome-base/gsettings-desktop-schemas/Manifest
@@ -1,3 +1,2 @@
 DIST gsettings-desktop-schemas-3.22.0.tar.xz 598412 BLAKE2B 
0249dfbdc7d574824ad6c34cdbafc7859eba4d78494c80d42b9b5a739cfaa8bb6d43e13093148253dedd0ae2762261750f791d809ba8058a78098fc7f8dad510
 SHA512 
653198f78f8108222e84c0e94b6b914e03597234a627f1c205fc58a7bf54fdde073ff98cfdce1dccec7da1d8a7cbf648004cd392382d4ff617245cc3e581dfd1
-DIST gsettings-desktop-schemas-3.24.0.tar.xz 620780 BLAKE2B 
0d1585c394d3c08e20eea763c14a3453e37a9a3d7706d27fa1f41f9ecea926734783421a7e68a6333bc37905ce5c1caa025b21c872cc6985a8e64a6875d0c25c
 SHA512 
b19fb29da29a3fa114536c0ce94b160f9c589568b626e487b5eca008791e539de9a89a81c69e41f8070b0369e6cfc800fe8b70247ecbab1bc32f24db759037c1
 DIST gsettings-desktop-schemas-3.24.1.tar.xz 638780 BLAKE2B 
c1857636e18c69658458aa9dfd65a7c3983791000f16eba08f706c243a0b804ed20dfde58f9cbe879f41348dc8257ecab86d5111c89bc1aacca1d8b62f2c0332
 SHA512 
c3970d61cc1c29bf97a39c439b3e0ba5c5d5c0f811e17b8884f106f095b159dd0c43cb90e02561edcc26e15b2b887e960d38de1c0e7498413db0c63102f15833

diff --git 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.0.ebuild 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.0.ebuild
deleted file mode 100644
index a22fd1f8239..000
--- 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Collection of GSettings schemas for GNOME desktop"
-HOMEPAGE="https://git.gnome.org/browse/gsettings-desktop-schemas;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-IUSE="+introspection"
-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 
~sparc-solaris ~x86-solaris"
-
-RDEPEND="
-   >=dev-libs/glib-2.31:2
-   introspection? ( >=dev-libs/gobject-introspection-1.31.0:= )
-   !

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

2018-02-03 Thread Mart Raudsepp
commit: b6203794f184fcc24234ca5045115f48d55a5b5e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:02:13 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6203794

gnome-base/gnome-desktop: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome-desktop/Manifest  |  1 -
 .../gnome-desktop/gnome-desktop-3.22.2.ebuild  | 59 --
 2 files changed, 60 deletions(-)

diff --git a/gnome-base/gnome-desktop/Manifest 
b/gnome-base/gnome-desktop/Manifest
index b27fcbe8d7d..e96b392122b 100644
--- a/gnome-base/gnome-desktop/Manifest
+++ b/gnome-base/gnome-desktop/Manifest
@@ -1,3 +1,2 @@
 DIST gnome-desktop-2.32.1.tar.bz2 1633847 BLAKE2B 
9c69504b0f904fe04bdaa2e2fd3c6fbdd0cdd67033bae6e21377cce2deb68f05ed85bc735547c036923978ebdb8952c262676a01a33f8d7acffb0b964f97366a
 SHA512 
b8084d08366dab661a7ee369cd03ba62beddbdfa9a36b988b7d13d207b33d6916f7fa8691717fba7b6a70d8276779e35360b1dc385e6ec876f30ea7b8b373c28
-DIST gnome-desktop-3.22.2.tar.xz 1064496 BLAKE2B 
51c4420f7d6c37ee516f1d4c87828f7f3317b51d767b1c2956a4953142f1e8c9bc78497a8b1e0cff63544dd18246336d175e26e56a46fb430ade003df63706a3
 SHA512 
11ca2e8f6d8c104e11faee614d52039576a69a0e701cde296ec8ce0cdfdedf29a820771b1ee08dafa37f20612f06201875365c9976b48d8b82a137c7e5438046
 DIST gnome-desktop-3.24.2.tar.xz 1064808 BLAKE2B 
8574d26f2c2adedd7a287651fb34170e75d1744ad14e6caab8ede87af63b93197bcf4cde60dd9f6352dae8ae7bf8d598d0b24588d3a06cc2192c651b58577562
 SHA512 
691817fda97fc1c560c72213668eb4c2a8d03cc2433470a78149b3f785e95d9b4b681bceb733a67e1bfda649a6aed7ca4569b4891ee89f824a28d7a95f2782c2

diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.22.2.ebuild 
b/gnome-base/gnome-desktop/gnome-desktop-3.22.2.ebuild
deleted file mode 100644
index 2ef37f4cb33..000
--- a/gnome-base/gnome-desktop/gnome-desktop-3.22.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
-HOMEPAGE="https://git.gnome.org/browse/gnome-desktop;
-
-LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
-SLOT="3/12" # subslot = libgnome-desktop-3 soname version
-IUSE="debug +introspection udev"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
-
-# cairo[X] needed for gnome-bg
-COMMON_DEPEND="
-   app-text/iso-codes
-   >=dev-libs/glib-2.44.0:2[dbus]
-   >=x11-libs/gdk-pixbuf-2.33.0:2[introspection?]
-   >=x11-libs/gtk+-3.3.6:3[X,introspection?]
-   x11-libs/cairo:=[X]
-   x11-libs/libX11
-   x11-misc/xkeyboard-config
-   >=gnome-base/gsettings-desktop-schemas-3.5.91
-   introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
-   udev? (
-   sys-apps/hwids
-   virtual/libudev:= )
-"
-RDEPEND="${COMMON_DEPEND}
-   !

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

2018-02-03 Thread Mart Raudsepp
commit: b5d6d219588082ff0318ab0ea401df78de232ac5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:51:59 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:55:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d6d219

gnome-base/gnome-shell-3.22.3: remove further keywords as affected by 
CVE-2017-8288

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome-shell/gnome-shell-3.22.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnome-base/gnome-shell/gnome-shell-3.22.3.ebuild 
b/gnome-base/gnome-shell/gnome-shell-3.22.3.ebuild
index f4a7da3a745..9d87933477f 100644
--- a/gnome-base/gnome-shell/gnome-shell-3.22.3.ebuild
+++ b/gnome-base/gnome-shell/gnome-shell-3.22.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ SLOT="0"
 IUSE="+bluetooth +ibus +networkmanager nsplugin -openrc-force"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-KEYWORDS="~alpha ~arm ~ia64 ~ppc ~ppc64"
+KEYWORDS="~alpha ~arm"
 
 # libXfixes-5.0 needed for pointer barriers
 # FIXME:



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

2018-02-03 Thread Mart Raudsepp
commit: ad986d79fffea677dc9934544af8a085aa2cfcf1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:41:53 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:53:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad986d79

gnome-base/dconf-editor: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/dconf-editor/Manifest   |  1 -
 gnome-base/dconf-editor/dconf-editor-3.22.3.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/gnome-base/dconf-editor/Manifest b/gnome-base/dconf-editor/Manifest
index 3953eb4f5b4..09783c31bfe 100644
--- a/gnome-base/dconf-editor/Manifest
+++ b/gnome-base/dconf-editor/Manifest
@@ -1,2 +1 @@
-DIST dconf-editor-3.22.3.tar.xz 394760 BLAKE2B 
9270d75f64bb0426de2667f7f40d6ec862c3486cc25df7f5103fc3ca4ab6692aaa41b18434a77c7dcb26b0cff4d65f73a0ebb15b07aa48e7e3eb21924a8cf8c6
 SHA512 
0e1ddce6e970ea23329c6233ed87e6d4541b6f1e991e3159bda44c43b8092a4d983acbca18bbedb88304ac1afb541a15073a261dab9ffe94c94cfd06e3e412dc
 DIST dconf-editor-3.24.3.tar.xz 503520 BLAKE2B 
57b0b0de36e2bb5cef33e0171e77f506f16f240d5ab4ab79d7689b7541ce445bce4d87753f312cf9353b2aa44d5cb2f7c734050a5f57ba2b7eae9894fb74d0e3
 SHA512 
10c98df210cd465e21601342963a19cd5a255abfaa6e96c833070db52d13531288237a129471bf9424d7ea8fef4c2cd4954652850bbb57dd161ce9cf99265361

diff --git a/gnome-base/dconf-editor/dconf-editor-3.22.3.ebuild 
b/gnome-base/dconf-editor/dconf-editor-3.22.3.ebuild
deleted file mode 100644
index 66f2f23f154..000
--- a/gnome-base/dconf-editor/dconf-editor-3.22.3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2
-
-DESCRIPTION="Graphical tool for editing the dconf configuration database"
-HOMEPAGE="https://git.gnome.org/browse/dconf-editor;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~x86-fbsd ~arm-linux ~x86-linux"
-
-COMMON_DEPEND="
-   dev-libs/appstream-glib
-   >=dev-libs/glib-2.46.0:2
-   >=gnome-base/dconf-0.25.1
-   >=x11-libs/gtk+-3.22.0:3
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.50
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-RDEPEND="${COMMON_DEPEND}
-   !

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

2018-02-03 Thread Mart Raudsepp
commit: e37e07c96faead88e87c679fe78265903b1466ee
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:12:08 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:55:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e37e07c9

gnome-base/gnome-settings-daemon: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome-settings-daemon/Manifest  |   1 -
 .../files/3.22.2-udevrulesdir-configure.patch  |  48 ---
 .../gnome-settings-daemon-3.22.0-optional.patch| 111 ---
 .../gnome-settings-daemon-3.22.2-r1.ebuild | 149 -
 4 files changed, 309 deletions(-)

diff --git a/gnome-base/gnome-settings-daemon/Manifest 
b/gnome-base/gnome-settings-daemon/Manifest
index 58b5a2fa553..3d64a49cf41 100644
--- a/gnome-base/gnome-settings-daemon/Manifest
+++ b/gnome-base/gnome-settings-daemon/Manifest
@@ -1,2 +1 @@
-DIST gnome-settings-daemon-3.22.2.tar.xz 1657132 BLAKE2B 
4582793b2c13b4cecb1e93ff5053f94af16dc72436fbfe83a74b21b21c4bf8473409f52acae30e717176b01fd60165e43a69ae16787883ee862fe7fa3b9c448c
 SHA512 
7bbeb0b50d178bf951f5a8375703f3e2e88b7c5082ec7394df1f277dd08059e616118e003db23dcc175b92d803924b3927326d10a2101b7923dfb0e980d277e3
 DIST gnome-settings-daemon-3.24.3.tar.xz 1583044 BLAKE2B 
f075abe574663cb9e6092e9698efb12d598584fe004042b5ac63df7e30ba9dfdb28ac4d0fac4148fa8fd49ccb6991414dc9a3dc49400efbe2cf4752d6295d62c
 SHA512 
2450c3bb31746fe4883f194094cf79e94207e74d39c992107244d89f36c3ea373a33a2dca4a55af138f03fb4abd8733da4bacb215e2202bbc0976b566f8529a6

diff --git 
a/gnome-base/gnome-settings-daemon/files/3.22.2-udevrulesdir-configure.patch 
b/gnome-base/gnome-settings-daemon/files/3.22.2-udevrulesdir-configure.patch
deleted file mode 100644
index d0436ecdc6e..000
--- a/gnome-base/gnome-settings-daemon/files/3.22.2-udevrulesdir-configure.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 19394974869513ab4a98d72593dce18f08105983 Mon Sep 17 00:00:00 2001
-From: Mart Raudsepp 
-Date: Tue, 21 Mar 2017 01:30:52 +0200
-Subject: [PATCH] build: Get udevrulesdir from pkg-config
-
-Use the standard way to find the udev rules directory via pkg-config by 
default,
-and support specifying it, should it be necessary.
-This is the same logic as in colord.

- configure.ac   | 9 +
- plugins/rfkill/Makefile.am | 1 -
- 2 files changed, 9 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 8d4f5cb..5390404 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -135,6 +135,15 @@ fi
- AM_CONDITIONAL(HAVE_GUDEV, test x$have_gudev = xyes)
- 
- dnl 
---
-+dnl - Where to install udev rules
-+dnl 
---
-+AC_ARG_WITH([udevrulesdir],
-+AS_HELP_STRING([--with-udevrulesdir=DIR], [Directory for udev 
rules files]),
-+[],
-+[with_udevrulesdir=$($PKG_CONFIG --variable=udevdir 
udev)/rules.d])
-+AC_SUBST([udevrulesdir], [$with_udevrulesdir])
-+
-+dnl 
---
- dnl - ALSA integration (default enabled)
- dnl 
---
- ALSA_PKG=""
-diff --git a/plugins/rfkill/Makefile.am b/plugins/rfkill/Makefile.am
-index fed7adc..05f2c78 100644
 a/plugins/rfkill/Makefile.am
-+++ b/plugins/rfkill/Makefile.am
-@@ -59,7 +59,6 @@ plugin_in_files = rfkill.gnome-settings-plugin.in
- 
- plugin_DATA = 
$(plugin_in_files:.gnome-settings-plugin.in=.gnome-settings-plugin)
- 
--udevrulesdir = $(prefix)/lib/udev/rules.d
- udevrules_DATA = 61-gnome-settings-daemon-rfkill.rules
- 
- EXTRA_DIST = $(plugin_in_files) $(udevrules_DATA)
--- 
-2.10.1
-

diff --git 
a/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.22.0-optional.patch
 
b/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.22.0-optional.patch
deleted file mode 100644
index 9b5369bb346..000
--- 
a/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.22.0-optional.patch
+++ /dev/null
@@ -1,111 +0,0 @@
-From 2aa9a92b06418642339cf27a3df5051f63eb8ddb Mon Sep 17 00:00:00 2001
-From: Ole Reifschneider 
-Date: Sat, 11 Apr 2015 23:10:21 +0200
-Subject: [PATCH] Make colord and wacom support optional
-

- configure.ac| 41 ++---
- plugins/Makefile.am |  9 +++--
- 2 files changed, 37 insertions(+), 13 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 6d9408a..628af0e 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -245,7 +245,17 @@ dnl 
---
- dnl - color
- dnl 
---
- 
--PKG_CHECK_MODULES(COLOR, [colord >= 1.0.2 gnome-desktop-3.0 >= 

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

2018-02-03 Thread Mart Raudsepp
commit: a5ed677994d8e32814b2e5f50a035f54e75e0756
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:50:39 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ed6779

gnome-base/gnome-control-center: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome-control-center/Manifest   |   3 -
 .../gnome-control-center-3.22.2-r1.ebuild  | 164 
 .../gnome-control-center-3.24.2.ebuild | 166 -
 3 files changed, 333 deletions(-)

diff --git a/gnome-base/gnome-control-center/Manifest 
b/gnome-base/gnome-control-center/Manifest
index 671fac40e8e..d48c3d2524f 100644
--- a/gnome-base/gnome-control-center/Manifest
+++ b/gnome-base/gnome-control-center/Manifest
@@ -1,5 +1,2 @@
-DIST gnome-control-center-3.22.2-patchset.tar.xz 8204 BLAKE2B 
5e0c32a2bc48d620def362967ec064772060f9a7d313998c2e970485ff99daf61841532335cb6fa987cf9319a5142b6731173fe400e5081df73ea505e4688dda
 SHA512 
f20b4e53f82fcf31c635aa070e1af7f69a125eb4f67b1ac9e1e9f594da4649031d9e4cc6021a674abfee0046fe1af944f73ed68451db9fc7b168dcd6e765afe7
-DIST gnome-control-center-3.22.2.tar.xz 7277380 BLAKE2B 
0966189d3f1e791e11920261bfc37c6ae77af0a4f312263b6623850becd3ba1ad22e886d6a96cc3cdfccc492dc998c6891d583ce8d55f9a4e08daa5de829f55e
 SHA512 
a9ed72c47703fcbbd0d6f3301be7d5b3a8eff2f0c400bde19e14c5d013404fc5907765fb20af40022f7700547d06c02203a919b4db4c191f64f3ac20cb12626a
 DIST gnome-control-center-3.24.2-patchset.tar.xz 8496 BLAKE2B 
8bdbfcef3917ec12e82e7a5ea163f14954f9793b806c4a827620d1f693220527540f1b8a8ac0f121dae0bc8fc687f1974544b35cccd0b9e50474386c28d9ddbf
 SHA512 
967258cf003c013881a2555be7624bad227d898cff72fe2899243692f7a06730e5dc79a849728cce6f9a7234a74b2b8433d1689c2846e8389eb9813fe5df1da1
-DIST gnome-control-center-3.24.2.tar.xz 7269112 BLAKE2B 
41049a7176eb3de146d8ac8034cce9cdc7365eec11f6db9a1bd21964c5a30b73c22debcd48058ad72cf6ac24bf60e1956ec203502a3dadcceb83350461302387
 SHA512 
5041d4907cba0ea188663ad574ddaac6c341ec22b69f7a3d6332b8ae0a572fe33eb19eed758f3d593fe6224d793f2ecc3677584ebf0971f3ae145363a1769cc0
 DIST gnome-control-center-3.24.3.tar.xz 7302120 BLAKE2B 
026ad3bb34c2bfc2f7a6d398a3c47bc3f620a3f947a0cb43336b437b4926e7a360e287d6020dc0e82eda43955cfb38ffcd7ed94593adac119d7413f63bc437c8
 SHA512 
70b827f70fb95e8db0ee01e3ba80242dfdb0f90e31c391ca470c372cb6c8626f054e1e5b79e954935e9b567564129b80957091039e16e921e1c93b3d584c71cb

diff --git 
a/gnome-base/gnome-control-center/gnome-control-center-3.22.2-r1.ebuild 
b/gnome-base/gnome-control-center/gnome-control-center-3.22.2-r1.ebuild
deleted file mode 100644
index 0ac1e28bd66..000
--- a/gnome-base/gnome-control-center/gnome-control-center-3.22.2-r1.ebuild
+++ /dev/null
@@ -1,164 +0,0 @@
-# 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/;
-SRC_URI+=" https://dev.gentoo.org/~mgorny/dist/${P}-patchset.tar.xz;
-
-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)
-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.19.1[colord?,policykit]
-
-   >=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]
-   

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

2018-02-03 Thread Mart Raudsepp
commit: d0309b1a38018cd7e41b08e635cab3682e11af5d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:07:41 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0309b1a

gnome-base/gnome-session: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome-session/Manifest  |   2 -
 .../files/3.22.3-wayland-login-shell.patch |  43 --
 .../files/3.22.3-xorg-default-translations.patch   | 619 -
 .../gnome-session/gnome-session-3.22.3.ebuild  | 137 -
 .../gnome-session/gnome-session-3.24.1.ebuild  | 121 
 5 files changed, 922 deletions(-)

diff --git a/gnome-base/gnome-session/Manifest 
b/gnome-base/gnome-session/Manifest
index da9528e45a0..673d207a12a 100644
--- a/gnome-base/gnome-session/Manifest
+++ b/gnome-base/gnome-session/Manifest
@@ -1,4 +1,2 @@
-DIST gnome-session-3.22.3.tar.xz 777420 BLAKE2B 
34d438e1fefcd197f2c51ce9c2866a6d10848c28c2f2cab24ae9ca7b69a6b149aa698fa62c34415ee3c34e72f153b5f62028047604a332ebad73b8f05fbfae66
 SHA512 
2350ddc485f9e47df9d9351e413b847336506a694e34daa672111784f64d6d24d3e5e6fc25ad03dd13b318b139809ba2312a542801993db586937650b1422ccd
-DIST gnome-session-3.24.1.tar.xz 780632 BLAKE2B 
efd1c297d4af08e9bbf47e74aa28b4899b22d00248eb4d786afdd688f5c6117f4865561ca5cf4a47bb6fb003e1d9c365a585f7009f24992fe9752391607a3cfb
 SHA512 
507f9f1cddab37f1b66c72291e1885397f7e8b6bfb7c365f6f1ff827649a71380706fe0e3a8c6e74c3c159349a0eea0aabe3d5c7bbae5b29aeb2d49ae715affb
 DIST gnome-session-3.24.2-xorg-default-translations.patch.xz 3392 BLAKE2B 
afe0e04c6218377e91508fc67add8ec0894dc75d47c039c44a8c47635c0418986e0949f916d6269995c1c8853c3dfaab21a3db86c427d966029ed747d4106aa8
 SHA512 
0af7d4025647c6dd2c78243d91ec8a61fd171b78904ac28ce48c4f3f7cafb9fd28263410d31d08431e73417ff7910e9bdfc1ea4de0a3290cd5229a96bffc56dc
 DIST gnome-session-3.24.2.tar.xz 783288 BLAKE2B 
24b06404b9206a53f394db86a90f9c22c2774432bcb33f136eedd333e813139ded8b9445b4e597f3270ec0b2ef167ce3c2dca2c5b75d5fba977ebcfc4c1bb8ea
 SHA512 
52a609d60303e7d733567cc81698fe4a4042ac17d0260aadb334ab8ad2c355086f8f87c2bcac05f659c28f8f3290128f9ca8875806d199ee27ff84d972333e27

diff --git a/gnome-base/gnome-session/files/3.22.3-wayland-login-shell.patch 
b/gnome-base/gnome-session/files/3.22.3-wayland-login-shell.patch
deleted file mode 100644
index f82825f4822..000
--- a/gnome-base/gnome-session/files/3.22.3-wayland-login-shell.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 97229b322d30cf531e7b7cc7757f83ed80e831bc Mon Sep 17 00:00:00 2001
-From: Ray Strode 
-Date: Thu, 5 Jan 2017 10:02:58 -0500
-Subject: [PATCH 1/3] gnome-session: make sure wayland sessions get a login
- shell
-
-Users expect their shell profiles to get sourced at startup, which
-doesn't happen with wayland sessions.
-
-This commit brings back that feature, by making the gnome-session
-wrapper script run a login shell.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=736660

- gnome-session/gnome-session.in | 13 +
- 1 file changed, 13 insertions(+)
-
-diff --git a/gnome-session/gnome-session.in b/gnome-session/gnome-session.in
-index 530299d..04ea741 100644
 a/gnome-session/gnome-session.in
-+++ b/gnome-session/gnome-session.in
-@@ -1,5 +1,18 @@
- #!/bin/sh
- 
-+if [ "x$XDG_SESSION_TYPE" = "xwayland" ] &&
-+   [ "x$XDG_SESSION_CLASS" != "xgreeter" ] &&
-+   [  -n "$SHELL" ] &&
-+   grep -q "$SHELL" /etc/shells &&
-+   ! (echo "$SHELL" | grep -q "false") &&
-+   ! (echo "$SHELL" | grep -q "nologin"); then
-+  if [ "$1" != '-l' ]; then
-+exec bash -c "exec -l '$SHELL' -c '$0 -l $*'"
-+  else
-+shift
-+  fi
-+fi
-+
- SETTING=$(gsettings get org.gnome.system.locale region)
- REGION=${SETTING#\'}
- REGION=${REGION%\'}
--- 
-2.10.1
-

diff --git 
a/gnome-base/gnome-session/files/3.22.3-xorg-default-translations.patch 
b/gnome-base/gnome-session/files/3.22.3-xorg-default-translations.patch
deleted file mode 100644
index 8c259de9d15..000
--- a/gnome-base/gnome-session/files/3.22.3-xorg-default-translations.patch
+++ /dev/null
@@ -1,619 +0,0 @@
-From abc07aa67043d0013dfcf812101208296bbfa4ac Mon Sep 17 00:00:00 2001
-From: Mart Raudsepp 
-Date: Sat, 18 Mar 2017 11:42:40 +0200
-Subject: [PATCH 3/3] po: Forward port "GNOME on Wayland" translations
-

- po/POTFILES.in | 2 +-
- po/bg.po   | 4 
- po/cs.po   | 4 
- po/da.po   | 4 
- po/de.po   | 4 
- po/el.po   | 4 
- po/es.po   | 4 
- po/eu.po   | 4 
- po/fa.po   | 4 
- po/fi.po   | 4 
- po/fr.po   | 4 
- po/fur.po  | 4 
- po/gd.po   | 4 
- po/gl.po   | 4 
- po/gu.po   | 4 
- po/he.po   | 4 
- po/hr.po   | 4 
- po/hu.po   | 4 
- po/id.po   | 4 
- po/is.po   | 4 
- po/it.po   | 4 
- po/kk.po   | 4 
- po/ko.po   | 4 

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

2018-02-03 Thread Mart Raudsepp
commit: eb105810a7808a6de2a7e6d2ef587281e342747c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 19:48:36 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:53:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb105810

gnome-base/gnome: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome/gnome-3.22.2.ebuild | 51 
 gnome-base/gnome/gnome-3.24.0.ebuild | 51 
 2 files changed, 102 deletions(-)

diff --git a/gnome-base/gnome/gnome-3.22.2.ebuild 
b/gnome-base/gnome/gnome-3.22.2.ebuild
deleted file mode 100644
index 80e2e88c30f..000
--- a/gnome-base/gnome/gnome-3.22.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# 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 ~ppc ~ppc64 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-3.22.1
-   x11-themes/sound-theme-freedesktop
-
-   accessibility? (
-   >=app-accessibility/at-spi2-atk-2.22
-   >=app-accessibility/at-spi2-core-2.22
-   >=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."
-}

diff --git a/gnome-base/gnome/gnome-3.24.0.ebuild 
b/gnome-base/gnome/gnome-3.24.0.ebuild
deleted file mode 100644
index a02534c8d1a..000
--- a/gnome-base/gnome/gnome-3.24.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# 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 ~ppc ~ppc64 ~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: gnome-base/gnome-light/

2018-02-03 Thread Mart Raudsepp
commit: 961f5ee807183f55f7bc2213f058f72c406b660f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Feb  3 20:03:39 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Feb  3 20:54:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=961f5ee8

gnome-base/gnome-light: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gnome-light/gnome-light-3.22.2.ebuild | 59 
 gnome-base/gnome-light/gnome-light-3.24.0.ebuild | 59 
 2 files changed, 118 deletions(-)

diff --git a/gnome-base/gnome-light/gnome-light-3.22.2.ebuild 
b/gnome-base/gnome-light/gnome-light-3.22.2.ebuild
deleted file mode 100644
index f1799dbcd4b..000
--- a/gnome-base/gnome-light/gnome-light-3.22.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# 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 ~ppc ~ppc64 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-${PV}
-   >=x11-themes/gnome-backgrounds-${P_RELEASE}
-
-   >=x11-terms/gnome-terminal-${PV}
-"
-DEPEND=""
-PDEPEND=">=gnome-base/gvfs-1.30.2"
-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."
-}

diff --git a/gnome-base/gnome-light/gnome-light-3.24.0.ebuild 
b/gnome-base/gnome-light/gnome-light-3.24.0.ebuild
deleted file mode 100644
index 8c7d8593031..000
--- a/gnome-base/gnome-light/gnome-light-3.24.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# 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 ~ppc ~ppc64 ~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] proj/gnome:master commit in: gnome-base/gnome-shell/, gnome-base/gnome-shell/files/

2018-02-03 Thread Sobhan Mohammadpour
commit: 2666153bdd627858efa635a27bd7cf06f47f8b69
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Sat Feb  3 20:32:45 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Sat Feb  3 20:32:45 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=2666153b

gnome-base/gnome-shell: version bump to 3.26.1

Package-Manager: Portage-2.3.23, Repoman-2.3.6
Manifest-Sign-Key: 0x7DF238CF0AA182E1

 .../files/gnome-shell-3.22.0-defaults.patch|  26 +++
 gnome-base/gnome-shell/gnome-shell-3.26.1.ebuild   | 191 +
 gnome-base/gnome-shell/metadata.xml|   4 +
 3 files changed, 221 insertions(+)

diff --git a/gnome-base/gnome-shell/files/gnome-shell-3.22.0-defaults.patch 
b/gnome-base/gnome-shell/files/gnome-shell-3.22.0-defaults.patch
new file mode 100644
index ..b80dbc3a
--- /dev/null
+++ b/gnome-base/gnome-shell/files/gnome-shell-3.22.0-defaults.patch
@@ -0,0 +1,26 @@
+From 7a671f99b7ef2d5f38be67668aac762764b32a42 Mon Sep 17 00:00:00 2001
+From: Gilles Dartiguelongue 
+Date: Tue, 10 Dec 2013 23:33:51 +0100
+Subject: [PATCH 1/2] Alter list of default applications
+
+Signed-off-by: Gilles Dartiguelongue 
+---
+ data/org.gnome.shell.gschema.xml.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/data/org.gnome.shell.gschema.xml.in 
b/data/org.gnome.shell.gschema.xml.in
+index c1e6b21..368c654 100644
+--- a/data/org.gnome.shell.gschema.xml.in
 b/data/org.gnome.shell.gschema.xml.in
+@@ -31,7 +31,7 @@
+   
+ 
+ 
+-  [ 'epiphany.desktop', 'evolution.desktop', 
'rhythmbox.desktop', 'shotwell.desktop', 'org.gnome.Nautilus.desktop', 
'org.gnome.Software.desktop' ]
++  [ 'chromium-browser-chromium.desktop', 'firefox.desktop', 
'firefox-bin.desktop', 'evolution.desktop', 'rhythmbox.desktop', 
'shotwell.desktop', 'org.gnome.Nautilus.desktop', 'org.gnome.Software.desktop' 
]
+   List of desktop file IDs for favorite applications
+   
+ The applications corresponding to these identifiers
+-- 
+2.10.1
+

diff --git a/gnome-base/gnome-shell/gnome-shell-3.26.1.ebuild 
b/gnome-base/gnome-shell/gnome-shell-3.26.1.ebuild
new file mode 100644
index ..34c076ae
--- /dev/null
+++ b/gnome-base/gnome-shell/gnome-shell-3.26.1.ebuild
@@ -0,0 +1,191 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+GNOME2_EAUTORECONF="yes"
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit gnome-meson multilib pax-utils python-r1 systemd
+
+DESCRIPTION="Provides core UI functions for the GNOME 3 desktop"
+HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell;
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+IUSE="+bluetooth +browser-extension +ibus +networkmanager nsplugin 
-openrc-force"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
+
+# libXfixes-5.0 needed for pointer barriers
+# FIXME:
+#  * gstreamer support is currently automagic
+#  * gnome-bluetooth is automagic
+#  * BROWSER_PLUGIN_DIR is not set
+COMMON_DEPEND="
+   >=app-accessibility/at-spi2-atk-2.5.3
+   >=dev-libs/atk-2[introspection]
+   >=app-crypt/gcr-3.7.5[introspection]
+   >=dev-libs/glib-2.53:2[dbus]
+   >=dev-libs/gjs-1.47.0
+   >=dev-libs/gobject-introspection-1.49.1:=
+   dev-libs/libical:=
+   >=x11-libs/gtk+-3.15.0:3[introspection]
+   >=dev-libs/libcroco-0.6.8:0.6
+   >=gnome-base/gnome-desktop-3.7.90:3=[introspection]
+   >=gnome-base/gsettings-desktop-schemas-3.21.3
+   >=gnome-extra/evolution-data-server-3.17.2:=
+   >=media-libs/gstreamer-0.11.92:1.0
+   >=net-im/telepathy-logger-0.2.4[introspection]
+   >=net-libs/telepathy-glib-0.19[introspection]
+   >=sys-auth/polkit-0.100[introspection]
+   >=x11-libs/libXfixes-5.0
+   x11-libs/libXtst
+   >=x11-wm/mutter-3.26.0:0/0[introspection]
+   >=x11-libs/startup-notification-0.11
+
+   ${PYTHON_DEPS}
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+
+   dev-libs/dbus-glib
+   dev-libs/libxml2:2
+   media-libs/libcanberra[gtk3]
+   media-libs/mesa
+   >=media-sound/pulseaudio-2
+   >=net-libs/libsoup-2.40:2.4[introspection]
+   x11-libs/libX11
+   x11-libs/gdk-pixbuf:2[introspection]
+
+   x11-apps/mesa-progs
+
+   bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] )
+   networkmanager? (
+   >=app-crypt/libsecret-0.18
+   >=gnome-extra/nm-applet-0.9.8
+   >=net-misc/networkmanager-0.9.8:=[introspection] )
+   nsplugin? ( >=dev-libs/json-glib-0.13.2 )
+"
+# Runtime-only deps are probably incomplete and approximate.
+# Introspection deps generated using:
+#  grep -roe "imports.gi.*" gnome-shell-* | cut -f2 -d: | sort | uniq
+# Each block:
+# 1. Introspection stuff needed via imports.gi.*
+# 2. gnome-session is needed for gnome-session-quit
+# 3. 

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/

2018-02-03 Thread Amy Liffey
commit: 14ee5610276646c1ac9ec598f21b3268624c4586
Author: Amy Liffey  gentoo  org>
AuthorDate: Sat Feb  3 20:25:01 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sat Feb  3 20:26:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ee5610

dev-scheme/racket: version bump 6.11

Submitted-by: Ilya Mochalov  gmail.com>

Closes: https://bugs.gentoo.org/636776
Closes: https://github.com/gentoo/gentoo/pull/6709
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-scheme/racket/Manifest   |  2 +
 dev-scheme/racket/racket-6.11.ebuild | 88 
 2 files changed, 90 insertions(+)

diff --git a/dev-scheme/racket/Manifest b/dev-scheme/racket/Manifest
index fd509a94602..e2fc2ae105d 100644
--- a/dev-scheme/racket/Manifest
+++ b/dev-scheme/racket/Manifest
@@ -1,5 +1,7 @@
 DIST racket-5.3.6-src-unix.tgz 19278914 BLAKE2B 
4809523b58b0c7ec60d80a912c560550602c9016802d8bf5bf42aa64d54c9dd5165357cc5cdaf98d2c3cf6fe9f26054434da10c3f2804bbf4f51526d6fa69592
 SHA512 
08e8b599e800f41c9497b07e163ed43ae02ae9d9bcc3e20da31eb2f6aa20aa4b0071db51e93696ae1bd644ddfa1c3aea587a334db24ced4a3654dcf5da138e8f
+DIST racket-6.11-src-builtpkgs.tgz 122307703 BLAKE2B 
395b14c15b73dfda7b6e863a83530b5266ec2f132b3b8ee23ee60bea0083b42e1dd67c60cbdfca2cac93c343e3a4edf132677c707aed62d85c43ae27edb2de74
 SHA512 
2b9f6b478880a9ec176018f34a3015f5e84ceb11e61519d9ab9f7df8d4b8dc664fa9103ca787664ffcd86909410fbf6812838a59d899f3487dea278e39eb597b
 DIST racket-6.7-src-builtpkgs.tgz 116773863 BLAKE2B 
786552b296449cd105450450f7232ba5468aba0ed6d96aa6db058cc3eb655808f031259ee69d1ab8abb9a751151e28e923d4388860ed37d74a1f6a637f740f0f
 SHA512 
63fdc18e72fa152434d0fb83e926c28d2b2d16c93a0a2be0c14d445671c1bff5daf500e9917e41fa2f60454377de0cc10d226c321402abf4bad55a15ac74f127
 DIST racket-6.9-src-builtpkgs.tgz 118620147 BLAKE2B 
839eac29098a1255ce63886aadbd120fba75865c713b272ccbc2b7a7be361cb12ebcd4eabc94a243c5abab57d4b759c9ce2f613f2d02ef11e33b5931d00420ab
 SHA512 
14144c408521034b9c57925cd01ca25488cdcbcd3f8b943074f8ea434b84bdd76a73095ef920051a925929e3fcb4707bfd6b1585a7debaf23069f1a0db06298b
+DIST racket-minimal-6.11-src-builtpkgs.tgz 11208413 BLAKE2B 
17e979ab6e4c99f781994d48ca90e206618835e2ecfa875d0966efe2909a440c509fe9706cccb7f377675a0bb4d76971ed4dd73de2c088ae40660df50b6cf7cc
 SHA512 
f197a645e7da04c120f1cb61d98a1cd47824576467a2fa12753576b72f258d1229cc99243f91ed87cf37be63062c26844b44469987d7ac4bfeee853aa7cb6e66
 DIST racket-minimal-6.7-src-builtpkgs.tgz 11213736 BLAKE2B 
1661fe1818d0b2c0d2c058aead61e25c5df01201d3ccdb31fccca14e9c1f2f822c18bfad6be3c1b7446d692c252129b63340b37e0311848269a914197416eee9
 SHA512 
59c885b535ed8e91a3b2a524bbc38661a5c19848ded935cc9f068c3fd6c8da39fc0755ef8df3a69cce3d50b96ee30d91972d6a4f6d5414eefb80bdc1ede6a285
 DIST racket-minimal-6.9-src-builtpkgs.tgz 11065867 BLAKE2B 
3752ffb92a4ae290339599bb6ae83dd0db952eebdeb01c0d4bc9992cd903abf9970cab9e571c06a81644dc90479e3ce72b068e6c2f959d66abb90ced0d6cdfd7
 SHA512 
4d619e2b2efc852b24f925b51fe452316693ce850f71298fcb2a0009fe5770c15fbe88830f8a214cbfd4e0be57e6bd47ca963c0bd919bd5fc1f986f96d7a12f5

diff --git a/dev-scheme/racket/racket-6.11.ebuild 
b/dev-scheme/racket/racket-6.11.ebuild
new file mode 100644
index 000..5390fb50a0e
--- /dev/null
+++ b/dev-scheme/racket/racket-6.11.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit pax-utils
+
+DESCRIPTION="General purpose, multi-paradigm Lisp-Scheme programming language"
+HOMEPAGE="http://racket-lang.org/;
+SRC_URI="minimal? ( 
http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz
 ) !minimal? ( 
http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )"
+LICENSE="GPL-3+ LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc +futures +jit minimal +places +threads +X"
+REQUIRED_USE="futures? ( jit )"
+
+RDEPEND="dev-db/sqlite:3
+   media-libs/libpng:0
+   x11-libs/cairo[X?]
+   x11-libs/pango[X?]
+   virtual/libffi
+   virtual/jpeg:0
+   X? ( x11-libs/gtk+[X?] )"
+RDEPEND="${RDEPEND} !dev-tex/slatex"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P}/src"
+
+src_prepare() {
+   default
+   rm -r foreign/libffi || die 'failed to remove bundled libffi'
+}
+
+src_configure() {
+   # According to vapier, we should use the bundled libtool
+   # such that we don't preclude cross-compile. Thus don't use
+   # --enable-lt=/usr/bin/libtool
+   econf \
+   --enable-shared \
+   --enable-float \
+   --enable-libffi \
+   --enable-foreign \
+   --disable-libs \
+   --disable-strip \
+   $(use_enable X gracket) \
+   $(use_enable doc docs) \
+   $(use_enable jit) \
+   $(use_enable places) \
+   $(use_enable futures) \
+   $(use_enable threads pthread)
+}
+

[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-l10n/

2018-02-03 Thread Andreas Sturmlechner
commit: 574485268a801cd9ca1a57809d6a8a019cb76ac1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb  3 19:57:05 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb  3 19:57:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57448526

app-office/libreoffice-l10n: Revert drop 5.4.2.2

 app-office/libreoffice-l10n/Manifest   | 168 +
 .../libreoffice-l10n-5.4.2.2.ebuild|  88 +++
 2 files changed, 256 insertions(+)

diff --git a/app-office/libreoffice-l10n/Manifest 
b/app-office/libreoffice-l10n/Manifest
index ff98c4a6bf0..c13c71cbe63 100644
--- a/app-office/libreoffice-l10n/Manifest
+++ b/app-office/libreoffice-l10n/Manifest
@@ -1,3 +1,171 @@
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_am.tar.gz 7942649 BLAKE2B 
f9da44acf82da2de61613f98654b713e7e25fc3ba3160b99a1f55717b73a9b355a724340f8eb95e45920b0c67719d23172b4eed50f876e51ec892ff1cc582e99
 SHA512 
87551cea3db60ee86773f981ded8abebefbf9cc950fcf778171b7901d42c15c8663b70ef9559bcd99beca525ca19eae52b6be26436a62134d9f0303223c22ab4
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ast.tar.gz 7872466 BLAKE2B 
67c5c598cc02718ffd55f1bc40e59746d5c4b3e3cfd31b19d69a9d294156499eff10221de4c3519edd268fc63557690968d1a83f7af74b201bedfc27b502b570
 SHA512 
c460b96ff7d776101c135b9fbcf984c193144b16287da684b123c897edbd5e7537227aed7e0b1a5d11170efbb6a7fe3677048da5b2ab3494e99bafa9053e8ed5
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bg.tar.gz 8443504 BLAKE2B 
f0414b5e07b2b334c96204aed47b65538e8dc9bd603b35dbc4fcf2075901ed2acaf7a6b28b110330ef5a5c81e650d23238dbbb92048d3086af9c911db39104d0
 SHA512 
14b2835b61e732a6afd0914633397bac48cc0ff6654f8fad5501425b5d2b399d00acdcbbc19f42b71457cb55ef2164afca2087f6e3989cee02f7ca9818048e4d
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 9126865 BLAKE2B 
8ec0364f3f9211991461ba092b7f37b896390c1f3d8d443bdbba15a3043d408c51b3c49f006f59f6f62faff446b8c8d7e23326bf2056fe69a8ffc42069272dbb
 SHA512 
5b5119d37ecf351e447ab2df38e3bc536050c8a1a9fa92eac3dceaada0731716bbcdc6dc48ad325cb4938a612b80529f6e5b4f22a937154da8e78dcd85ea35d8
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bn.tar.gz 9126870 BLAKE2B 
e85f3a3890761ccabd78b4d01cfed13afcd419b24fb6ce75fda3026f95f300ac1ca4cbe2c4f5510aaa586ae70b2efa986559a6c3da6eaa1032b07f70df3497ea
 SHA512 
f6dedbfe029a406c88f462b55bd30df10a65514705c3f80c4e0cc792da1d67583354245d83f40726c0b8f7f14c5bd4f7eb827eb9abf3ebe1dfd57116b29c9951
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bo.tar.gz 8872890 BLAKE2B 
ce69d39d615a447430136f471f40496eb5f60924557d72d429f8125263fd95a7c19a49a2d9d223b4c05bb4a4f61d9f3b86906f595835e56fcefb85ac08dcdf7b
 SHA512 
12dc197b374dc994f0e3d1559826ce8d1366ced383203d5750ec754370d41a6723af9505cf960c60b232d6700c64233443b9326315e9aa6b9bd90fb5cd4365a0
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_bs.tar.gz 7174821 BLAKE2B 
5155bca50828ba2e7bd22ec0dea9177561381c02cb56af6a579ad47799c4166d20237001f7c26b6f84e9d7a6eb298c35cfc671eafb753966aaab16b71b0ff73e
 SHA512 
966ed4800135ceffb082c96d7f0777bfc2417b5557b88de5c0dc4c6901af700a707d6b24dac454d9aed35c74358930c53d49630fb53dde744534e329c179aaf2
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 8010395 
BLAKE2B 
8e4b12d73ab2683eeba7bb052e5d93bb614f035d49f89a0adf434f7965cb1428d53efec75ba8a7d055990bd799df25935680f0fa9537580bc3946851a724250f
 SHA512 
77357d44627eb8c47a9404a7b7ed07a04313ba85cef729ed170d1956f1547e366b0e12217961aae3bd5b172f0750ca6ca4522904cc4a929d1a21ba5b4533d419
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_ca.tar.gz 8046380 BLAKE2B 
0b864325dd62a18c912064648234fd85362e6274ee32f7cbf4884ec80aa85bf5124f02f9ba1e32538578c4eccef6d8611a025a131535c2bfb705d015e3f70801
 SHA512 
72e6cddc02c94b5513b9511f035a80268a721e23fa3ab06bb81d12cf49d21e0bd3fec0501e24c1c89410a697c3e93adce49906c69f3d49183e9793e8027a54ba
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_cs.tar.gz 7734641 BLAKE2B 
8b6dc27d46963ba2a298f94f43697ae89d0e4dcd938ed6fd4b1a67131f009b3870ab231aa0c4e9dd592d2979c9ce75591d00e622b9490ac3c1749b794f5f1322
 SHA512 
bc5e212e20384c7a1dd7816200db5226a5e48113697d1fb85d95997a10520eb1ffc7bb0201c51e781d1947be3ec016a6ba2066451cc5d3c4e707f63cec1efc8b
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_da.tar.gz 7678952 BLAKE2B 
7cde65621486f441a39cd0bac2784597a007dd5701b0fbc56c02adf50d2d09bbc67347deacbc7b7ee895ae1cd9dd181393e6e35112153a2c33a59c656ad61204
 SHA512 
7899bc4ed2f7071a3582190c134cec4ef716dfaf33e58eceb1995f5a68cfe3900d230b1f03a2eacc86992fb1e08401232ee4014824ddd9b8579988571242d7b0
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_de.tar.gz 8191345 BLAKE2B 
621eb522ab864dd3f8aea086ae79388341df2c84fceee9f0ff6c8f6df61dc8dfcea7220ef28a20d3847544da19453f9f621ef5445db7e5958e3f22f57c862529
 SHA512 
fcd8ee2dba06b288e8d3f361dee3c9cd5271d343498188d81407f03cf994520ef8b093adc26369022a60e3dfaac00fe1522da8d5a17356e1646715f4eee8c2be
+DIST LibreOffice_5.4.2.2_Linux_x86_rpm_helppack_dz.tar.gz 10257801 BLAKE2B 

  1   2   3   >