[gentoo-commits] repo/gentoo:master commit in: media-gfx/flameshot/files/, media-gfx/flameshot/

2020-05-28 Thread Maxim Koltsov
commit: c8519f723d963b46b3ff2137d9ac7d498af94a57
Author: Pavel Kalugin <38429428+pavel-the-best  users  noreply 
 github  com>
AuthorDate: Mon May 25 18:48:18 2020 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Thu May 28 18:36:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8519f72

media-gfx/flameshot: new package

Signed-off-by: Pavel Kalugin  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15968
Signed-off-by: Maxim Koltsov  gentoo.org>

 media-gfx/flameshot/Manifest   |  1 +
 ...meshot-0.6.0-unbundle-qtsingleapplication.patch | 47 +++
 media-gfx/flameshot/flameshot-0.6.0.ebuild | 53 ++
 media-gfx/flameshot/metadata.xml   | 12 +
 4 files changed, 113 insertions(+)

diff --git a/media-gfx/flameshot/Manifest b/media-gfx/flameshot/Manifest
new file mode 100644
index 000..bf5fa36
--- /dev/null
+++ b/media-gfx/flameshot/Manifest
@@ -0,0 +1 @@
+DIST flameshot-0.6.0.tar.gz 641561 BLAKE2B 
f9e87373d84c1a841f70cd9c13b504865a0ef23d0fb29848f2270171459afe9c6852e12c712ebdc7cf3cfc62214d7b7507b85cf21838d0ebed33bee1e39f4aad
 SHA512 
194127032ab0f62a6ba2698688e11b2d4e6f0e04a282144f5fbb6c232eeebc71371af2d55abbb6e98b8649dee036e6f0a6ef55710e4321a60fd5ac6e453ab975

diff --git 
a/media-gfx/flameshot/files/flameshot-0.6.0-unbundle-qtsingleapplication.patch 
b/media-gfx/flameshot/files/flameshot-0.6.0-unbundle-qtsingleapplication.patch
new file mode 100644
index 000..7973aa1d06c
--- /dev/null
+++ 
b/media-gfx/flameshot/files/flameshot-0.6.0-unbundle-qtsingleapplication.patch
@@ -0,0 +1,47 @@
+diff -ruN a/flameshot.pro b/flameshot.pro
+--- a/flameshot.pro2020-05-25 21:16:54.044214597 +0300
 b/flameshot.pro2020-05-25 21:25:03.808676488 +0300
+@@ -18,7 +18,7 @@
+ QT  += dbus
+ }
+ 
+-CONFIG += c++11 link_pkgconfig
++CONFIG += c++11 link_pkgconfig qtsingleapplication
+ 
+ #CONFIG += packaging   # Enables "make install" for packaging paths
+ 
+@@ -63,7 +63,6 @@
+ 
+ DEFINES += QT_DEPRECATED_WARNINGS
+ 
+-include(src/third-party/singleapplication/singleapplication.pri)
+ include(src/third-party/Qt-Color-Widgets//color_widgets.pri)
+ 
+ DEFINES += QAPPLICATION_CLASS=QApplication
+diff -ruN a/src/main.cpp b/src/main.cpp
+--- a/src/main.cpp 2020-05-25 21:16:54.055215952 +0300
 b/src/main.cpp 2020-05-25 21:25:35.095744395 +0300
+@@ -16,13 +16,13 @@
+ // along with Flameshot.  If not, see <http://www.gnu.org/licenses/>.
+ 
+ #include "src/core/controller.h"
+-#include "singleapplication.h"
+ #include "src/utils/filenamehandler.h"
+ #include "src/utils/confighandler.h"
+ #include "src/cli/commandlineparser.h"
+ #include "src/utils/systemnotification.h"
+ #include "src/utils/pathinfo.h"
+ #include "src/core/capturerequest.h"
++#include 
+ #include 
+ #include 
+ #include 
+@@ -44,7 +44,7 @@
+ 
+ // no arguments, just launch Flameshot
+ if (argc == 1) {
+-SingleApplication app(argc, argv);
++QtSingleApplication app(argc, argv);
+ 
+ QTranslator translator;
+ QStringList trPaths = PathInfo::translationsPaths();

diff --git a/media-gfx/flameshot/flameshot-0.6.0.ebuild 
b/media-gfx/flameshot/flameshot-0.6.0.ebuild
new file mode 100644
index 000..e3d9daac1c7
--- /dev/null
+++ b/media-gfx/flameshot/flameshot-0.6.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg-utils
+
+DESCRIPTION="Powerful yet simple to use screenshot software"
+HOMEPAGE="https://flameshot.js.org;
+SRC_URI="https://github.com/lupoDharkael/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="FreeArt GPL-3 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsingleapplication[qt5(+),X]
+   dev-qt/qtwidgets:5
+   dev-qt/qtsvg:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtdbus:5
+   sys-apps/dbus
+"
+RDEPEND="${DEPEND}"
+PATCHES=( "${FILESDIR}/${P}-unbundle-qtsingleapplication.patch" )
+
+src_prepare() {
+   rm -r src/third-party/singleapplication || die
+   default
+}
+
+src_configure() {
+   eqmake5 "CONFIG+=packaging"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}

diff --git a/media-gfx/flameshot/metadata.xml b/media-gfx/flameshot/metadata.xml
new file mode 100644
index 000..49f9e82790b
--- /dev/null
+++ b

[gentoo-commits] repo/gentoo:master commit in: net-wireless/reaver/files/, net-wireless/reaver/

2019-10-25 Thread Maxim Koltsov
commit: 6afa1cefef26e0b01ea459beddbfd25f17f5a034
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Fri Oct 25 20:43:09 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Fri Oct 25 21:13:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6afa1cef

net-wireless/reaver: bump to 1.6.5

Thanks to Oleh Kravchenko.

Closes: https://bugs.gentoo.org/696672
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Maxim Koltsov  gentoo.org>

 net-wireless/reaver/Manifest   |  1 +
 .../reaver/files/reaver-1.6.5-confdir.patch| 10 +++
 net-wireless/reaver/reaver-1.6.5.ebuild| 33 ++
 3 files changed, 44 insertions(+)

diff --git a/net-wireless/reaver/Manifest b/net-wireless/reaver/Manifest
index 413daae1a1a..1404ddcf15b 100644
--- a/net-wireless/reaver/Manifest
+++ b/net-wireless/reaver/Manifest
@@ -1 +1,2 @@
 DIST reaver-1.4.tar.gz 766603 BLAKE2B 
4a488364718a17ec29c1d8da4bc7032b65e4597b89c2949e7108d625276e60d0b424f3b87a3d6baa30d5909ac206d6f7793f5e4514c307cc54784386ce5ce422
 SHA512 
59f2d6f8aa6228988ce5d1c102d9a48b2a23e582ff3d9afe39d7c9717b7e4be059362fdd21a3e5f5d59948df1a7616acdaa6df20f139e9c5aa9bd673f764dfbc
+DIST reaver-1.6.5.tar.gz 479441 BLAKE2B 
21a1c54da559be4346b0c874947e982ea49ec6f20e612e3699d25524d49681a197a2a8cad0a31dd8dba919d065de48082572a471aa4f736397066edf7f7d8a43
 SHA512 
3e70d9fffefee3f6d60e72d7d7b1da91032e184c7d27f94b9f26e2260b7274d491f2e41f8056b386a211b9838d21afc6b65a8a826d310b51fc1065fa9e135dc0

diff --git a/net-wireless/reaver/files/reaver-1.6.5-confdir.patch 
b/net-wireless/reaver/files/reaver-1.6.5-confdir.patch
new file mode 100644
index 000..d5673d82452
--- /dev/null
+++ b/net-wireless/reaver/files/reaver-1.6.5-confdir.patch
@@ -0,0 +1,10 @@
+--- src/config.mak.in  2019-10-25 23:32:43.196353940 +0300
 src/config.mak.in  2019-10-25 23:32:33.935249226 +0300
+@@ -1,6 +1,6 @@
+ prefix=@prefix@
+ exec_prefix=@exec_prefix@
+-CONFDIR=@localstatedir@/lib/@target@
++CONFDIR=@localstatedir@/@target@
+ 
+ CC=@CC@
+ CFLAGS_USER=@CFLAGS@

diff --git a/net-wireless/reaver/reaver-1.6.5.ebuild 
b/net-wireless/reaver/reaver-1.6.5.ebuild
new file mode 100644
index 000..dd1c5685b54
--- /dev/null
+++ b/net-wireless/reaver/reaver-1.6.5.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="reaver-wps-fork-t6x"
+
+DESCRIPTION="Brute force attack against Wifi Protected Setup"
+HOMEPAGE="https://github.com/t6x/${MY_PN};
+SRC_URI="https://github.com/t6x/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+DEPEND="net-libs/libpcap"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${PV}/src"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-confdir.patch
+)
+
+src_install() {
+   # Upstream's Makefile does the same but in non-standard way.
+   dobin wash reaver
+
+   doman ../docs/reaver.1
+   dodoc ../docs/README ../docs/README.REAVER ../docs/README.WASH
+
+   keepdir /var/lib/reaver
+}



[gentoo-commits] repo/gentoo:master commit in: net-wireless/reaver/, net-wireless/reaver/files/

2019-10-25 Thread Maxim Koltsov
commit: 74380456a0bdb8018fdd0e5b914c16a02950ac4e
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Fri Oct 25 20:46:30 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Fri Oct 25 21:13:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74380456

net-wireless/reaver: drop old

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Maxim Koltsov  gentoo.org>

 net-wireless/reaver/Manifest   |  1 -
 net-wireless/reaver/files/reaver-1.4_cflags.patch  | 47 
 net-wireless/reaver/files/reaver-1.4_memset.patch  | 11 -
 .../reaver/files/reaver-1.4_parallel-make.patch| 50 --
 net-wireless/reaver/files/reaver-1.4_var_db.patch  | 11 -
 .../reaver/files/reaver-1.4_wps_registrar.patch| 11 -
 net-wireless/reaver/reaver-1.4-r3.ebuild   | 49 -
 7 files changed, 180 deletions(-)

diff --git a/net-wireless/reaver/Manifest b/net-wireless/reaver/Manifest
index 1404ddcf15b..f6277009986 100644
--- a/net-wireless/reaver/Manifest
+++ b/net-wireless/reaver/Manifest
@@ -1,2 +1 @@
-DIST reaver-1.4.tar.gz 766603 BLAKE2B 
4a488364718a17ec29c1d8da4bc7032b65e4597b89c2949e7108d625276e60d0b424f3b87a3d6baa30d5909ac206d6f7793f5e4514c307cc54784386ce5ce422
 SHA512 
59f2d6f8aa6228988ce5d1c102d9a48b2a23e582ff3d9afe39d7c9717b7e4be059362fdd21a3e5f5d59948df1a7616acdaa6df20f139e9c5aa9bd673f764dfbc
 DIST reaver-1.6.5.tar.gz 479441 BLAKE2B 
21a1c54da559be4346b0c874947e982ea49ec6f20e612e3699d25524d49681a197a2a8cad0a31dd8dba919d065de48082572a471aa4f736397066edf7f7d8a43
 SHA512 
3e70d9fffefee3f6d60e72d7d7b1da91032e184c7d27f94b9f26e2260b7274d491f2e41f8056b386a211b9838d21afc6b65a8a826d310b51fc1065fa9e135dc0

diff --git a/net-wireless/reaver/files/reaver-1.4_cflags.patch 
b/net-wireless/reaver/files/reaver-1.4_cflags.patch
deleted file mode 100644
index e4e1da718d6..000
--- a/net-wireless/reaver/files/reaver-1.4_cflags.patch
+++ /dev/null
@@ -1,47 +0,0 @@
 a/src/wps/Makefile
-+++ b/src/wps/Makefile
-@@ -1,34 +1,34 @@
--CC=gcc
-+CC?=gcc
- INC=-I../utils -I ../
- 
- all: wps_attr_build.o wps_attr_parse.o wps_attr_process.o wps.o wps_common.o 
wps_dev_attr.o wps_enrollee.o wps_registrar.o wps_ufd.o
- 
- wps_attr_build.o:
--  $(CC) $(INC) wps_attr_build.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_attr_build.c -c
- 
- wps_attr_parse.o:
--  $(CC) $(INC) wps_attr_parse.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_attr_parse.c -c
- 
- wps_attr_process.o:
--  $(CC) $(INC) wps_attr_process.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_attr_process.c -c
- 
- wps.o:
--  $(CC) $(INC) wps.c -c
-+  $(CC) $(CFLAGS) $(INC) wps.c -c
- 
- wps_common.o:
--  $(CC) $(INC) wps_common.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_common.c -c
- 
- wps_dev_attr.o:
--  $(CC) $(INC) wps_dev_attr.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_dev_attr.c -c
- 
- wps_enrollee.o:
--  $(CC) $(INC) wps_enrollee.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_enrollee.c -c
- 
- wps_registrar.o:
--  $(CC) $(INC) wps_registrar.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_registrar.c -c
- 
- wps_ufd.o:
--  $(CC) $(INC) wps_ufd.c -c
-+  $(CC) $(CFLAGS) $(INC) wps_ufd.c -c
- 
- clean:
-   rm -f *.o

diff --git a/net-wireless/reaver/files/reaver-1.4_memset.patch 
b/net-wireless/reaver/files/reaver-1.4_memset.patch
deleted file mode 100644
index 782910a3f0f..000
--- a/net-wireless/reaver/files/reaver-1.4_memset.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/src/crypto/md5-internal.c
-+++ b/src/crypto/md5-internal.c
-@@ -188,7 +188,7 @@
- MD5Transform(ctx->buf, (u32 *) ctx->in);
- byteReverse((unsigned char *) ctx->buf, 4);
- os_memcpy(digest, ctx->buf, 16);
--os_memset(ctx, 0, sizeof(ctx));   /* In case it's sensitive */
-+os_memset(ctx, 0, sizeof(*ctx));  /* In case it's sensitive */
- }
- 
- /* The four core functions - F1 is optimized somewhat */

diff --git a/net-wireless/reaver/files/reaver-1.4_parallel-make.patch 
b/net-wireless/reaver/files/reaver-1.4_parallel-make.patch
deleted file mode 100644
index f880cd7562b..000
--- a/net-wireless/reaver/files/reaver-1.4_parallel-make.patch
+++ /dev/null
@@ -1,50 +0,0 @@
 a/src/Makefile.in
-+++ b/src/Makefile.in
-@@ -16,22 +16,22 @@
-   $(CC) $(CFLAGS) $(INC) wpscrack.c *.o $(LDFLAGS) -o reaver
- 
- libwps.o:
--  (cd $(LIBWPS_DIR) && make)
-+  (cd $(LIBWPS_DIR) && $(MAKE))
- 
- wps: libutils libcrypto
--  (cd wps && make)
-+  (cd wps && $(MAKE))
- 
- libutils:
--  (cd utils && make)
-+  (cd utils && $(MAKE))
- 
- libcrypto: libtls
--  (cd crypto && make)
-+  (cd crypto && $(MAKE))
- 
- libtls:
--  (cd tls && make)
-+  (cd tls && $(MAKE))
- 
- libiw:
--  (cd lwe && make BUILD_STATIC=y libiw.a)
-+  (cd lwe && $(MAKE) BUILD_STATIC=y libiw.a)
- 
- init.o:
-   $(CC) $(

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

2019-10-22 Thread Maxim Koltsov
commit: 5f2e46d039297e9f87ced2545b19d8161e3ab89e
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Oct 21 20:56:25 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Oct 22 20:37:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f2e46d0

dev-python/pip: bump to 19.3.1

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pip/Manifest|   3 +
 .../pip/files/pip-19.3-disable-version-check.patch |  24 +
 dev-python/pip/pip-19.3.1.ebuild   | 119 +
 3 files changed, 146 insertions(+)

diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
index cf37dbb3c4e..f28dd709937 100644
--- a/dev-python/pip/Manifest
+++ b/dev-python/pip/Manifest
@@ -1,6 +1,9 @@
 DIST pip-10.0.1.tar.gz 1246072 BLAKE2B 
e08607be43e1d7b9c7bbc12dff73bc3170953f48f8f7439a0b27b9d540f23eb3bca7873211a5f1448b5cedd6e8e12983af6fa4666bba3ac4700059d170036733
 SHA512 
983cce8375ff0304263209c69be16e5be7a58af340b8c3ffddd64fcea130b2f8f8a98305ab31e9c3eed9a0d039c73777c88bde3bf2ea1e184fa3e0a2faa97fd4
 DIST pip-19.1.tar.gz 6320747 BLAKE2B 
9b69fcdef751d6938a7c67f44692afa7088f660ab1e0ae113d21d0f48b4e29f43e0f0bcc137cf16ac0324ea3b500bd2a84234823f8d82556d6727f68139aab4b
 SHA512 
0d2442c22c41133118353ba98f45260f0615a891725b2a069d8fbf26ec4033cc7297bb671944c3dcc1f68800b91e92e58fb407ca5a82e20ac4bb5c9e0cb6
 DIST pip-19.2.2.tar.gz 6381643 BLAKE2B 
3c7d3c070d9bc52557b67c8fc34274d8c769179e01758b63d69c5da48d94a5980ecba62f8b74135ee2f08b4686f8835dee5da5d30fc12af0044f7f0180b3f50b
 SHA512 
ca634925e21aba338aa65f80d258833c6622b4c1d85eaf827fa5439aed62d7c6d64fde91cfebc05bd83eb215b019b690379cf5c4ac85a2f32d6357e6bd95fd88
+DIST pip-19.3.1.tar.gz 6409819 BLAKE2B 
b3aacd0bee60400a1f30b4be57871002072e5cc7a86e76cca1848e977ebdc85b6e282fc521c19bf7a518d1aef3280133fcd65a431cb2a16e202dd7721c5b97ad
 SHA512 
39446c0ab6e4495d98f22923a2a76901b024d9047b60d92580b21d447a718e5285cfd66f8ad0c20befcfe1abc7f06be29b6a5644d1b30265d3b67399fe76e033
 DIST pip-9.0.1.tar.gz 1197370 BLAKE2B 
3618161690d5e0a38d141f9b51baea4aaa3fdc225664ef180bbeecf6e2df95e9ea4f97c63fe3a68f84f4fb5ebcc74e316827253c7e07b03565e58113bbaa918a
 SHA512 
ee59efb4b009ff6543b7afdea99b9cbbee1981ecc03af586acda76674024d3b66dab23049e68f3da9448734984619fc1eaba6e965c9dd3d731973376c8a42e25
 DIST setuptools-41.0.1-py2.py3-none-any.whl 575966 BLAKE2B 
332986453a35e4ec36ab2bdb80a8b0a70ffe4fec1bb874f481b0d8e31016a26d53070f90d0eea9030b8c48a1f9bc21a54d8a5a2b70096e1f8db84d42449903e4
 SHA512 
c84ddf1d1ea90216b2c475f3e4879f4e6792a859adf61db70d67f49a35f2cb4df6fd6d93049881e6d2a8d914768edfcd091475206bb5da3ac66c41c4b9147102
+DIST setuptools-41.4.0-py2.py3-none-any.whl 580302 BLAKE2B 
58dc2d48445406f7467bfb0934dc507e8a569e4759bfcc95287cfb21b5b1a7bcab061656a29a8b4976ee3ae12a3adca570035ae4a6d9df09ae7a799857775d36
 SHA512 
a27b38d596931dfef81d705d05689b7748ce0e02d21af4a37204fc74b0913fa7241b8135535eb7749f09af361cad90c475af98493fef11c4ad974780ee01243d
 DIST wheel-0.33.1-py2.py3-none-any.whl 21496 BLAKE2B 
41bb9ed91d43f94209a010c286d541da9d68b9e727ec8a339fe3c24fb806746b1de5b62c6cd26d2c2841be17406e1f99353b6d172f5258540faeba014945e9e8
 SHA512 
761ad8cb96557b146642871e1f8ce75849a9828193d992a19d072236b9f8452ab54907a3b82bc7441f75f036155ae21b7450120e0c4c19aa5100b58337945ac0
+DIST wheel-0.33.6-py2.py3-none-any.whl 21556 BLAKE2B 
6b6124c1e8e70592399a90c88b2a70efc5885bad81d2ff07a2e243eee008ba5cb0c927454036915a61e97489e29fe1abc4ba2e63d7eadf1a8985c8a8b7cdf4c4
 SHA512 
4663cd55ee9d3de138216bb06870606b546b19cb6a733f1beab211c0ba72e63d849c422d320ddc8aa8275ad04a30119a84c1351e589150cd18c2a34f9fdb224a

diff --git a/dev-python/pip/files/pip-19.3-disable-version-check.patch 
b/dev-python/pip/files/pip-19.3-disable-version-check.patch
new file mode 100644
index 000..e8fe868431d
--- /dev/null
+++ b/dev-python/pip/files/pip-19.3-disable-version-check.patch
@@ -0,0 +1,24 @@
+diff --git a/src/pip/_internal/cli/req_command.py 
b/src/pip/_internal/cli/req_command.py
+index 203e86a4..a2183f10 100644
+--- a/src/pip/_internal/cli/req_command.py
 b/src/pip/_internal/cli/req_command.py
+@@ -129,17 +129,8 @@ class IndexGroupCommand(Command, SessionCommandMixin):
+ # Make sure the index_group options are present.
+ assert hasattr(options, 'no_index')
+ 
+-if options.disable_pip_version_check or options.no_index:
+-return
+-
+-# Otherwise, check if we're using the latest version of pip available.
+-session = self._build_session(
+-options,
+-retries=0,
+-timeout=min(5, options.timeout)
+-)
+-with session:
+-pip_self_version_check(session, options)
++# Disabled on Gentoo
++return
+ 
+ 
+ class RequirementCommand(IndexGroupCommand):

diff --git a/dev-python/pip/pip-19.3.1.ebuild b/dev-python/pip/pip-19.3.1.ebuild
new file mode 100644
index 000..a188c772c1b
--- 

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

2019-10-22 Thread Maxim Koltsov
commit: ecefbd1b813fafcc718b8ec843d73b6c6ad8dd9f
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Oct 21 21:07:36 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Oct 22 20:37:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecefbd1b

dev-python/pip: drop old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pip/Manifest|  2 -
 .../files/pip-10.0.1-disable-system-install.patch  | 18 
 .../files/pip-10.0.1-disable-version-check.patch   | 19 -
 .../files/pip-6.0.2-disable-version-check.patch| 14 
 dev-python/pip/files/pip-8.0.0-unbundle.patch  | 43 --
 dev-python/pip/pip-10.0.1.ebuild   | 48 ---
 dev-python/pip/pip-19.2.2.ebuild   | 97 --
 7 files changed, 241 deletions(-)

diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
index f28dd709937..035862b6310 100644
--- a/dev-python/pip/Manifest
+++ b/dev-python/pip/Manifest
@@ -1,6 +1,4 @@
-DIST pip-10.0.1.tar.gz 1246072 BLAKE2B 
e08607be43e1d7b9c7bbc12dff73bc3170953f48f8f7439a0b27b9d540f23eb3bca7873211a5f1448b5cedd6e8e12983af6fa4666bba3ac4700059d170036733
 SHA512 
983cce8375ff0304263209c69be16e5be7a58af340b8c3ffddd64fcea130b2f8f8a98305ab31e9c3eed9a0d039c73777c88bde3bf2ea1e184fa3e0a2faa97fd4
 DIST pip-19.1.tar.gz 6320747 BLAKE2B 
9b69fcdef751d6938a7c67f44692afa7088f660ab1e0ae113d21d0f48b4e29f43e0f0bcc137cf16ac0324ea3b500bd2a84234823f8d82556d6727f68139aab4b
 SHA512 
0d2442c22c41133118353ba98f45260f0615a891725b2a069d8fbf26ec4033cc7297bb671944c3dcc1f68800b91e92e58fb407ca5a82e20ac4bb5c9e0cb6
-DIST pip-19.2.2.tar.gz 6381643 BLAKE2B 
3c7d3c070d9bc52557b67c8fc34274d8c769179e01758b63d69c5da48d94a5980ecba62f8b74135ee2f08b4686f8835dee5da5d30fc12af0044f7f0180b3f50b
 SHA512 
ca634925e21aba338aa65f80d258833c6622b4c1d85eaf827fa5439aed62d7c6d64fde91cfebc05bd83eb215b019b690379cf5c4ac85a2f32d6357e6bd95fd88
 DIST pip-19.3.1.tar.gz 6409819 BLAKE2B 
b3aacd0bee60400a1f30b4be57871002072e5cc7a86e76cca1848e977ebdc85b6e282fc521c19bf7a518d1aef3280133fcd65a431cb2a16e202dd7721c5b97ad
 SHA512 
39446c0ab6e4495d98f22923a2a76901b024d9047b60d92580b21d447a718e5285cfd66f8ad0c20befcfe1abc7f06be29b6a5644d1b30265d3b67399fe76e033
 DIST pip-9.0.1.tar.gz 1197370 BLAKE2B 
3618161690d5e0a38d141f9b51baea4aaa3fdc225664ef180bbeecf6e2df95e9ea4f97c63fe3a68f84f4fb5ebcc74e316827253c7e07b03565e58113bbaa918a
 SHA512 
ee59efb4b009ff6543b7afdea99b9cbbee1981ecc03af586acda76674024d3b66dab23049e68f3da9448734984619fc1eaba6e965c9dd3d731973376c8a42e25
 DIST setuptools-41.0.1-py2.py3-none-any.whl 575966 BLAKE2B 
332986453a35e4ec36ab2bdb80a8b0a70ffe4fec1bb874f481b0d8e31016a26d53070f90d0eea9030b8c48a1f9bc21a54d8a5a2b70096e1f8db84d42449903e4
 SHA512 
c84ddf1d1ea90216b2c475f3e4879f4e6792a859adf61db70d67f49a35f2cb4df6fd6d93049881e6d2a8d914768edfcd091475206bb5da3ac66c41c4b9147102

diff --git a/dev-python/pip/files/pip-10.0.1-disable-system-install.patch 
b/dev-python/pip/files/pip-10.0.1-disable-system-install.patch
deleted file mode 100644
index 776d395b7b9..000
--- a/dev-python/pip/files/pip-10.0.1-disable-system-install.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-install: Raise an error to avoid breaking python-exec
-
-Running pip without --target, --root, or --user will result in packages
-being installed systemwide. This has a tendency to break python-exec if
-setuptools gets installed or upgraded.
-
 pip-10.0.1/src/pip/_internal/commands/install.py
-+++ pip-10.0.1/src/pip/_internal/commands/install.py
-@@ -202,6 +202,9 @@
- if options.upgrade:
- upgrade_strategy = options.upgrade_strategy
- 
-+if not options.use_user_site and not options.target_dir and not 
options.root_path:
-+raise CommandError("(Gentoo) Please run pip with the --user 
option to avoid breaking python-exec")
-+
- if options.build_dir:
- options.build_dir = os.path.abspath(options.build_dir)
- 

diff --git a/dev-python/pip/files/pip-10.0.1-disable-version-check.patch 
b/dev-python/pip/files/pip-10.0.1-disable-version-check.patch
deleted file mode 100644
index ad146dc1507..000
--- a/dev-python/pip/files/pip-10.0.1-disable-version-check.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Don't check for new versions of pip.
-
 pip-10.0.1/src/pip/_internal/basecommand.py
-+++ pip-10.0.1/src/pip/_internal/basecommand.py
-@@ -255,14 +255,6 @@
- 
- return UNKNOWN_ERROR
- finally:
--# Check if we're using the latest version of pip available
--if (not options.disable_pip_version_check and not
--getattr(options, "no_index", False)):
--with self._build_session(
--options,
--retries=0,
--timeout=min(5, options.timeout)) as session:
--pip_version_check(session, o

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

2019-08-17 Thread Maxim Koltsov
commit: e55dc63a4c8ff3d8b5da4d2e0695b79ab805706d
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Aug 17 07:57:04 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Aug 17 07:57:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55dc63a

dev-util/sasm: remove 

Package-Manager: Portage-2.3.71, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-util/sasm/sasm-.ebuild | 43 --
 1 file changed, 43 deletions(-)

diff --git a/dev-util/sasm/sasm-.ebuild b/dev-util/sasm/sasm-.ebuild
deleted file mode 100644
index 61a911989dd..000
--- a/dev-util/sasm/sasm-.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/Dman95/SASM.git;
-   SRC_URI=""
-   inherit git-r3
-else
-   SRC_URI="https://github.com/Dman95/SASM/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/SASM-${PV}"
-fi
-
-DESCRIPTION="Simple crossplatform IDE for NASM assembly language"
-HOMEPAGE="https://dman95.github.io/SASM/;
-
-LICENSE="GPL-3"
-SLOT="0"
-[[ ${PV} ==  ]] || \
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-"
-REPEND="${DEPEND}
-   dev-lang/nasm
-   sys-devel/gdb
-"
-
-src_configure() {
-   eqmake5
-}
-
-src_install() {
-   emake install INSTALL_ROOT="${D}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/sasm/files/, dev-util/sasm/

2019-08-17 Thread Maxim Koltsov
commit: 77d22a4a52e994ce3f7b7fc3997ded806014
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Aug 17 07:56:47 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Aug 17 07:57:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d22a4a

dev-util/sasm: bump to 3.10.1

Closes: https://bugs.gentoo.org/690822
Package-Manager: Portage-2.3.71, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-util/sasm/Manifest |  1 +
 .../sasm-3.10.1-unbundle-qtsingleapplication.patch | 19 +++
 dev-util/sasm/sasm-3.10.1.ebuild   | 60 ++
 3 files changed, 80 insertions(+)

diff --git a/dev-util/sasm/Manifest b/dev-util/sasm/Manifest
index c5c88bc01dc..c40448f3c61 100644
--- a/dev-util/sasm/Manifest
+++ b/dev-util/sasm/Manifest
@@ -1 +1,2 @@
 DIST sasm-2.2.tar.gz 9117410 BLAKE2B 
f85d120469f11fd8cdb7ae9dcdc87464d8bc64db4f99cb2787c4f2adb6294288a7fd1dc071b53badb8153e8c8220a77964b102a234ad9ebc3b6a64d505c828dd
 SHA512 
42d4af775d37d47bcf63fb70b9142e387e33cef5589002ff3e3cee926b5fca7e1508d640d1d5a175d48fc9fd041eb1f03304cad5ddc3c22a09ff29198650b513
+DIST sasm-3.10.1.tar.gz 22349749 BLAKE2B 
e1337d9ab1f62b0ccab31f202f5964ab2b355ab597cf08e65dd69f7a35f72187a36767d1bbbf339e3bf8330dffcd924682e464d0e8cdc13255723b2c5ed75747
 SHA512 
2a1410c996e3dac1179a2c8a0140b2180ccc9e461e4695a588c6a5db787a13de5ca9124d467561905e1d445d08bd044bd99831203faa6a740614bc6680ae10d1

diff --git a/dev-util/sasm/files/sasm-3.10.1-unbundle-qtsingleapplication.patch 
b/dev-util/sasm/files/sasm-3.10.1-unbundle-qtsingleapplication.patch
new file mode 100644
index 000..70b7e56682d
--- /dev/null
+++ b/dev-util/sasm/files/sasm-3.10.1-unbundle-qtsingleapplication.patch
@@ -0,0 +1,19 @@
+--- a/SASM.pro 2018-10-08 22:09:33.0 +0300
 b/SASM.pro 2019-08-17 10:39:31.695020549 +0300
+@@ -18,6 +18,8 @@
+ BINDIR = $$PREFIX/bin
+ DATADIR = $$PREFIX/share
+ 
++CONFIG += qtsingleapplication
++
+ bsd {
+ binfile.files += sasm
+ binfile.files += BSD/bin/*
+@@ -47,7 +49,6 @@
+ INSTALLS += shortcutfiles
+ INSTALLS += docfiles
+ 
+-include(singleapplication/qtsingleapplication.pri)
+ 
+ SOURCES += main.cpp\
+ mainwindow.cpp \

diff --git a/dev-util/sasm/sasm-3.10.1.ebuild b/dev-util/sasm/sasm-3.10.1.ebuild
new file mode 100644
index 000..90ca72d5316
--- /dev/null
+++ b/dev-util/sasm/sasm-3.10.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit qmake-utils
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://github.com/Dman95/SASM.git;
+   SRC_URI=""
+   inherit git-r3
+else
+   SRC_URI="https://github.com/Dman95/SASM/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}/SASM-${PV}"
+fi
+
+DESCRIPTION="Simple crossplatform IDE for NASM assembly language"
+HOMEPAGE="http://dman95.github.io/SASM/;
+
+LICENSE="GPL-3"
+SLOT="0"
+[[ ${PV} ==  ]] || \
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+PATCHES=(
+   "${FILESDIR}"/${P}-unbundle-qtsingleapplication.patch
+)
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsingleapplication
+   dev-qt/qtwidgets:5
+"
+REPEND="${DEPEND}
+   dev-lang/nasm
+   sys-devel/gdb
+"
+
+# SASM repository contains precompiled binaries ¯\_(ツ)_/¯
+QA_PREBUILT="usr/bin/fasm usr/bin/listing"
+
+src_prepare() {
+   # To recompress it with gentoo tools
+   gunzip Linux/share/doc/sasm/changelog.gz || die
+   sed -e 's...@changelog.gz@changelog@g' \
+   -e '/docfiles.path/s@doc/sasm@doc/'${PF}'@g' \
+   -i SASM.pro || die
+
+   default
+}
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   emake install INSTALL_ROOT="${D}"
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/, net-misc/sstp-client/files/

2019-08-17 Thread Maxim Koltsov
commit: 3f64da99e8f58aaf7f89aa4830b80f6f0753b5d0
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Aug 17 07:28:42 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Aug 17 07:57:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f64da99

net-misc/sstp-client: remove old

Package-Manager: Portage-2.3.71, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 net-misc/sstp-client/Manifest  |  1 -
 .../files/sstp-client-1.0.11-fix-example.patch | 16 ---
 .../sstp-client-1.0.11-remove-network-test.patch   | 11 -
 net-misc/sstp-client/sstp-client-1.0.11.ebuild | 56 --
 4 files changed, 84 deletions(-)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index b52914daab1..d13f214b2a6 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1,3 +1,2 @@
 DIST sstp-client-1.0.10.tar.gz 3012713 BLAKE2B 
6b924c9fef4df26a9aa93dd5670cae4dbfe020f2c1bfc955f88f229414b5295864c25637bddf3b80d522dd514a4f3042522f9615fe660165b4417d6ea832e4bf
 SHA512 
8f3e4b1b4d795015230b3a1b8aabf7d5fddd89be511bd6a59c22e5414520a392ba430f66f30aa2b982f084955e0085b0ea66d5acf5fd00414dc37c2c52a78cb7
-DIST sstp-client-1.0.11.tar.gz 3035707 BLAKE2B 
f534060bc47599a372b95b25400e7cb09911eb0216b11faa5bdcf0241d7c5caabd7df6065e58dff2b6b1f6c4e416499f58f92900da024d0ad0684aa3cc4d9abd
 SHA512 
d22b03f1bc2d5215def6ce198d6e81b08a5cebc4db9de269bc2e66785845521f0606a96af5d9d257dcf78addafee8ad3d942de0075f47038fbfe0b5051002487
 DIST sstp-client-1.0.12.tar.gz 468683 BLAKE2B 
4bb97465ee29eb6dd816a69b45c53e58e9de2cd5d7b5c9e39ea4ebbb3c3de0c21b3d95317114ae8c93bc3be359300bd6a55fa0512540bf25405fb47f8fb4e736
 SHA512 
d29128e59977fa844b0f2b02580284bb4e909994e5616c4dfa150b7a9807d0f34219355abe8c315c60c5f2482e3255824ce7e05566dbea9a7f13a1739d46468f

diff --git a/net-misc/sstp-client/files/sstp-client-1.0.11-fix-example.patch 
b/net-misc/sstp-client/files/sstp-client-1.0.11-fix-example.patch
deleted file mode 100644
index f2b81174fc1..000
--- a/net-misc/sstp-client/files/sstp-client-1.0.11-fix-example.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/Makefile.am  2018-02-07 21:51:10.451717813 +0100
-+++ b/Makefile.am  2018-02-07 21:54:43.811708840 +0100
-@@ -7,11 +7,11 @@
-   include   \
-   src
- 
--docdir = $(datadir)/doc/@PACKAGE@
- pkgconfigdir   = $(libdir)/pkgconfig
- pkgconfig_DATA = sstp-client-1.0.pc
- 
--doc_DATA   = \
-+examplesdir = $(docdir)/examples
-+examples_DATA = \
-   sstp-test.example \
-   sstp-test-nopty.example
- 

diff --git 
a/net-misc/sstp-client/files/sstp-client-1.0.11-remove-network-test.patch 
b/net-misc/sstp-client/files/sstp-client-1.0.11-remove-network-test.patch
deleted file mode 100644
index d6868f3e26b..000
--- a/net-misc/sstp-client/files/sstp-client-1.0.11-remove-network-test.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/src/Makefile.am  2018-02-07 21:42:37.755739374 +0100
-+++ b/src/Makefile.am  2018-02-07 21:45:28.855732178 +0100
-@@ -23,7 +23,7 @@
- utest_fcs   \
- utest_route
- 
--TESTS= $(check_PROGRAMS)
-+TESTS= utest_task utest_cmac utest_chap utest_fcs
- 
- sstpc_SOURCES = \
- sstp-client.c   \

diff --git a/net-misc/sstp-client/sstp-client-1.0.11.ebuild 
b/net-misc/sstp-client/sstp-client-1.0.11.ebuild
deleted file mode 100644
index 07ce4377c76..000
--- a/net-misc/sstp-client/sstp-client-1.0.11.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools linux-info user
-
-DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol 
(SSTP)"
-HOMEPAGE="http://sstp-client.sourceforge.net/;
-SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="static"
-
-RDEPEND=">=dev-libs/libevent-2.0.10
-   dev-libs/openssl:0=
-   net-dialup/ppp:="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-CONFIG_CHECK="~NETFILTER_NETLINK"
-
-PATCHES=( "${FILESDIR}/${P}-remove-network-test.patch"
- "${FILESDIR}/${P}-fix-example.patch"
-)
-DOCS=( AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING )
-
-pkg_setup() {
-   enewgroup sstpc
-   enewuser sstpc -1 -1 -1 sstpc
-}
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local PPPD_VER="$(best_version net-dialup/ppp)"
-   PPPD_VER=${PPPD_VER#*/*-}   # reduce it to ${PV}-${PR}
-   PPPD_VER=${PPPD_VER%%[_-]*} # main version without 
beta/pre/patch/revision
-   econf \
-   --enable-ppp-plugin \
-   --enable-group=sstpc \
-   --enable-u

[gentoo-commits] repo/gentoo:master commit in: net-misc/sstp-client/files/, net-misc/sstp-client/

2019-08-17 Thread Maxim Koltsov
commit: 7d57e44f5ad77e12dc33648d9ace431d88699349
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Aug 17 07:28:10 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Aug 17 07:57:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d57e44f

net-misc/sstp-client: bump to 1.0.12

Package-Manager: Portage-2.3.71, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 net-misc/sstp-client/Manifest  |  1 +
 .../files/sstp-client-1.0.12-fix-example.patch | 16 +++
 .../sstp-client-1.0.12-remove-network-test.patch   | 11 +
 net-misc/sstp-client/sstp-client-1.0.12.ebuild | 56 ++
 4 files changed, 84 insertions(+)

diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest
index 13f6d60ca4c..b52914daab1 100644
--- a/net-misc/sstp-client/Manifest
+++ b/net-misc/sstp-client/Manifest
@@ -1,2 +1,3 @@
 DIST sstp-client-1.0.10.tar.gz 3012713 BLAKE2B 
6b924c9fef4df26a9aa93dd5670cae4dbfe020f2c1bfc955f88f229414b5295864c25637bddf3b80d522dd514a4f3042522f9615fe660165b4417d6ea832e4bf
 SHA512 
8f3e4b1b4d795015230b3a1b8aabf7d5fddd89be511bd6a59c22e5414520a392ba430f66f30aa2b982f084955e0085b0ea66d5acf5fd00414dc37c2c52a78cb7
 DIST sstp-client-1.0.11.tar.gz 3035707 BLAKE2B 
f534060bc47599a372b95b25400e7cb09911eb0216b11faa5bdcf0241d7c5caabd7df6065e58dff2b6b1f6c4e416499f58f92900da024d0ad0684aa3cc4d9abd
 SHA512 
d22b03f1bc2d5215def6ce198d6e81b08a5cebc4db9de269bc2e66785845521f0606a96af5d9d257dcf78addafee8ad3d942de0075f47038fbfe0b5051002487
+DIST sstp-client-1.0.12.tar.gz 468683 BLAKE2B 
4bb97465ee29eb6dd816a69b45c53e58e9de2cd5d7b5c9e39ea4ebbb3c3de0c21b3d95317114ae8c93bc3be359300bd6a55fa0512540bf25405fb47f8fb4e736
 SHA512 
d29128e59977fa844b0f2b02580284bb4e909994e5616c4dfa150b7a9807d0f34219355abe8c315c60c5f2482e3255824ce7e05566dbea9a7f13a1739d46468f

diff --git a/net-misc/sstp-client/files/sstp-client-1.0.12-fix-example.patch 
b/net-misc/sstp-client/files/sstp-client-1.0.12-fix-example.patch
new file mode 100644
index 000..f2b81174fc1
--- /dev/null
+++ b/net-misc/sstp-client/files/sstp-client-1.0.12-fix-example.patch
@@ -0,0 +1,16 @@
+--- a/Makefile.am  2018-02-07 21:51:10.451717813 +0100
 b/Makefile.am  2018-02-07 21:54:43.811708840 +0100
+@@ -7,11 +7,11 @@
+   include   \
+   src
+ 
+-docdir = $(datadir)/doc/@PACKAGE@
+ pkgconfigdir   = $(libdir)/pkgconfig
+ pkgconfig_DATA = sstp-client-1.0.pc
+ 
+-doc_DATA   = \
++examplesdir = $(docdir)/examples
++examples_DATA = \
+   sstp-test.example \
+   sstp-test-nopty.example
+ 

diff --git 
a/net-misc/sstp-client/files/sstp-client-1.0.12-remove-network-test.patch 
b/net-misc/sstp-client/files/sstp-client-1.0.12-remove-network-test.patch
new file mode 100644
index 000..d6868f3e26b
--- /dev/null
+++ b/net-misc/sstp-client/files/sstp-client-1.0.12-remove-network-test.patch
@@ -0,0 +1,11 @@
+--- a/src/Makefile.am  2018-02-07 21:42:37.755739374 +0100
 b/src/Makefile.am  2018-02-07 21:45:28.855732178 +0100
+@@ -23,7 +23,7 @@
+ utest_fcs   \
+ utest_route
+ 
+-TESTS= $(check_PROGRAMS)
++TESTS= utest_task utest_cmac utest_chap utest_fcs
+ 
+ sstpc_SOURCES = \
+ sstp-client.c   \

diff --git a/net-misc/sstp-client/sstp-client-1.0.12.ebuild 
b/net-misc/sstp-client/sstp-client-1.0.12.ebuild
new file mode 100644
index 000..767cbdd4709
--- /dev/null
+++ b/net-misc/sstp-client/sstp-client-1.0.12.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools linux-info user
+
+DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol 
(SSTP)"
+HOMEPAGE="http://sstp-client.sourceforge.net/;
+SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="static"
+
+RDEPEND=">=dev-libs/libevent-2.0.10
+   dev-libs/openssl:0=
+   net-dialup/ppp:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+CONFIG_CHECK="~NETFILTER_NETLINK"
+
+PATCHES=( "${FILESDIR}/${P}-remove-network-test.patch"
+ "${FILESDIR}/${P}-fix-example.patch"
+)
+DOCS=( AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING )
+
+pkg_setup() {
+   enewgroup sstpc
+   enewuser sstpc -1 -1 -1 sstpc
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local PPPD_VER="$(best_version net-dialup/ppp)"
+   PPPD_VER=${PPPD_VER#*/*-}   # reduce it to ${PV}-${PR}
+   PPPD_VER=${PPPD_VER%%[_-]*} # main version without 
beta/pre/patch/revision
+   econf \
+   --enable-ppp-plugin \
+   --enable-group=sstpc \
+   --enable-user=sstpc \
+   --with-pppd

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

2019-08-13 Thread Maxim Koltsov
commit: 07231c9da1550cf063ae005a5a3cb580a7e4f387
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Aug 13 20:29:19 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Aug 13 20:30:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07231c9d

dev-python/pip: bump to 19.2.2

Package-Manager: Portage-2.3.71, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pip/Manifest  |  1 +
 dev-python/pip/pip-19.2.2.ebuild | 97 
 2 files changed, 98 insertions(+)

diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
index 2b01c043541..cf37dbb3c4e 100644
--- a/dev-python/pip/Manifest
+++ b/dev-python/pip/Manifest
@@ -1,5 +1,6 @@
 DIST pip-10.0.1.tar.gz 1246072 BLAKE2B 
e08607be43e1d7b9c7bbc12dff73bc3170953f48f8f7439a0b27b9d540f23eb3bca7873211a5f1448b5cedd6e8e12983af6fa4666bba3ac4700059d170036733
 SHA512 
983cce8375ff0304263209c69be16e5be7a58af340b8c3ffddd64fcea130b2f8f8a98305ab31e9c3eed9a0d039c73777c88bde3bf2ea1e184fa3e0a2faa97fd4
 DIST pip-19.1.tar.gz 6320747 BLAKE2B 
9b69fcdef751d6938a7c67f44692afa7088f660ab1e0ae113d21d0f48b4e29f43e0f0bcc137cf16ac0324ea3b500bd2a84234823f8d82556d6727f68139aab4b
 SHA512 
0d2442c22c41133118353ba98f45260f0615a891725b2a069d8fbf26ec4033cc7297bb671944c3dcc1f68800b91e92e58fb407ca5a82e20ac4bb5c9e0cb6
+DIST pip-19.2.2.tar.gz 6381643 BLAKE2B 
3c7d3c070d9bc52557b67c8fc34274d8c769179e01758b63d69c5da48d94a5980ecba62f8b74135ee2f08b4686f8835dee5da5d30fc12af0044f7f0180b3f50b
 SHA512 
ca634925e21aba338aa65f80d258833c6622b4c1d85eaf827fa5439aed62d7c6d64fde91cfebc05bd83eb215b019b690379cf5c4ac85a2f32d6357e6bd95fd88
 DIST pip-9.0.1.tar.gz 1197370 BLAKE2B 
3618161690d5e0a38d141f9b51baea4aaa3fdc225664ef180bbeecf6e2df95e9ea4f97c63fe3a68f84f4fb5ebcc74e316827253c7e07b03565e58113bbaa918a
 SHA512 
ee59efb4b009ff6543b7afdea99b9cbbee1981ecc03af586acda76674024d3b66dab23049e68f3da9448734984619fc1eaba6e965c9dd3d731973376c8a42e25
 DIST setuptools-41.0.1-py2.py3-none-any.whl 575966 BLAKE2B 
332986453a35e4ec36ab2bdb80a8b0a70ffe4fec1bb874f481b0d8e31016a26d53070f90d0eea9030b8c48a1f9bc21a54d8a5a2b70096e1f8db84d42449903e4
 SHA512 
c84ddf1d1ea90216b2c475f3e4879f4e6792a859adf61db70d67f49a35f2cb4df6fd6d93049881e6d2a8d914768edfcd091475206bb5da3ac66c41c4b9147102
 DIST wheel-0.33.1-py2.py3-none-any.whl 21496 BLAKE2B 
41bb9ed91d43f94209a010c286d541da9d68b9e727ec8a339fe3c24fb806746b1de5b62c6cd26d2c2841be17406e1f99353b6d172f5258540faeba014945e9e8
 SHA512 
761ad8cb96557b146642871e1f8ce75849a9828193d992a19d072236b9f8452ab54907a3b82bc7441f75f036155ae21b7450120e0c4c19aa5100b58337945ac0

diff --git a/dev-python/pip/pip-19.2.2.ebuild b/dev-python/pip/pip-19.2.2.ebuild
new file mode 100644
index 000..1d2a8c7a372
--- /dev/null
+++ b/dev-python/pip/pip-19.2.2.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
+PYTHON_REQ_USE="ssl(+),threads(+)"
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+SETUPTOOLS_PV="41.0.1"
+WHEEL_PV="0.33.1"
+
+DESCRIPTION="Installs python packages -- replacement for easy_install"
+HOMEPAGE="https://pip.pypa.io/ https://pypi.org/project/pip/ 
https://github.com/pypa/pip/;
+SRC_URI="
+   https://github.com/pypa/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   test? (
+   
https://files.pythonhosted.org/packages/py2.py3/s/setuptools/setuptools-${SETUPTOOLS_PV}-py2.py3-none-any.whl
+   
https://files.pythonhosted.org/packages/py2.py3/w/wheel/wheel-${WHEEL_PV}-py2.py3-none-any.whl
+   )
+"
+# PyPI archive does not have tests, so we need to download from GitHub.
+# setuptools & wheel .whl files are required for testing, exact version is not 
very important.
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="test -vanilla"
+
+# disable-system-install patch breaks tests
+RESTRICT="!vanilla? ( test )"
+
+RDEPEND="
+   >=dev-python/setuptools-39.2.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pretend[${PYTHON_USEDEP}]
+"${COMPLETION}" || die
+   newbashcomp "${COMPLETION}" ${PN}
+
+   ${PYTHON} -c "${pipcmd}" completion --zsh > "${COMPLETION}" || die
+   insinto /usr/share/zsh/site-functions
+   newins "${COMPLETION}" _pip
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-router/files/, sys-cluster/kube-router/

2019-08-05 Thread Maxim Koltsov
commit: c01c2d2e17fabb61fdc0595996f08043aab2003e
Author: Konstantin Podshumok  gmail  com>
AuthorDate: Sun Jul 21 15:01:09 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Aug  5 19:25:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c01c2d2e

sys-cluster/kube-router new ebuild

Signed-off-by: Konstantin Podshumok  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12494
Signed-off-by: Maxim Koltsov  gentoo.org>

 sys-cluster/kube-router/Manifest   |  1 +
 sys-cluster/kube-router/files/kube-router.confd| 11 +
 sys-cluster/kube-router/files/kube-router.initd| 22 ++
 .../kube-router/files/kube-router.logrotated   |  7 
 sys-cluster/kube-router/kube-router-0.3.1.ebuild   | 48 ++
 sys-cluster/kube-router/metadata.xml   | 23 +++
 6 files changed, 112 insertions(+)

diff --git a/sys-cluster/kube-router/Manifest b/sys-cluster/kube-router/Manifest
new file mode 100644
index 000..16a8309e7f3
--- /dev/null
+++ b/sys-cluster/kube-router/Manifest
@@ -0,0 +1 @@
+DIST kube-router-0.3.1.tar.gz 8468463 BLAKE2B 
23ee608e6415b3627f5024c8778ae1f33c5db3c1c564d0eb1e0fcb45dd90ff4a148c39e7fd0a4888d6b4cf13b129c5249c2db868efa584f15e31c7ff539829d5
 SHA512 
185e3a58dc6112e33ed7dc5702795dd7be0a37b63c7c882a1c092060a57a755ea4ea5c2cc96c93210bee632a4a4c4b19f3506ceb44b96d4727cf62cb2f28818f

diff --git a/sys-cluster/kube-router/files/kube-router.confd 
b/sys-cluster/kube-router/files/kube-router.confd
new file mode 100644
index 000..4b4b600ade8
--- /dev/null
+++ b/sys-cluster/kube-router/files/kube-router.confd
@@ -0,0 +1,11 @@
+# K8S_APISERVER='https://127.0.0.1:6443'
+# KUBECONFIG=/etc/kubernetes/kube-router.kubeconfig
+
+# Leave empty to autodetect:
+# HOSTNAME=
+
+# RUN_PROXY=true
+# RUN_FIREWALL=true
+# RUN_ROUTER=false
+
+EXTRA_ARGS=''

diff --git a/sys-cluster/kube-router/files/kube-router.initd 
b/sys-cluster/kube-router/files/kube-router.initd
new file mode 100644
index 000..844b951bd83
--- /dev/null
+++ b/sys-cluster/kube-router/files/kube-router.initd
@@ -0,0 +1,22 @@
+#!/sbin/openrc-run
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+description="Kubernetes routing engine"
+supervisor=supervise-daemon
+command="/usr/bin/kube-router"
+error_log='/var/log/${RC_SVCNAME}/${RC_SVCNAME}.log'
+pidfile="${pidfile:-/run/${RC_SVCNAME}.pid}"
+
+command_args="--master=${K8S_APISERVER} --kubeconfig=${KUBECONFIG} \
+  --run-service-proxy=${RUN_PROXY:-false} \
+  --run-firewall=${RUN_FIREWALL:-false} \
+  --run-router=${RUN_ROUTER:-false} \
+  ${HOSTNAME:+--hostname-override=}${HOSTNAME} \
+  ${EXTRA_ARGS}"
+
+extra_commands="clear"
+
+clear() {
+"${command}" --cleanup-config
+}

diff --git a/sys-cluster/kube-router/files/kube-router.logrotated 
b/sys-cluster/kube-router/files/kube-router.logrotated
new file mode 100644
index 000..9b08d671520
--- /dev/null
+++ b/sys-cluster/kube-router/files/kube-router.logrotated
@@ -0,0 +1,7 @@
+/var/log/kube-router/*.log {
+   missingok
+   size 5M
+   rotate 3
+   compress
+   copytruncate
+}

diff --git a/sys-cluster/kube-router/kube-router-0.3.1.ebuild 
b/sys-cluster/kube-router/kube-router-0.3.1.ebuild
new file mode 100644
index 000..2d4a756b407
--- /dev/null
+++ b/sys-cluster/kube-router/kube-router-0.3.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+EGO_PN="github.com/cloudnativelabs/${PN}"
+
+inherit golang-build golang-vcs-snapshot
+
+KEYWORDS="~amd64"
+
+DESCRIPTION="A turnkey solution for Kubernetes networking"
+HOMEPAGE="https://kube-router.io;
+SRC_URI="https://github.com/cloudnativelabs/kube-router/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RDEPEND="
+   net-firewall/iptables[conntrack]
+   net-firewall/ipset
+   sys-cluster/ipvsadm
+"
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   GOPATH="${S}" go build -x -work -v \
+   -ldflags "-X 
'github.com/cloudnativelabs/kube-router/pkg/cmd.version=${PV}' "\
+"-X 'github.com/cloudnativelabs/kube-router/pkg/cmd.buildDate=$(date -u 
+%FT%T%z)'" \
+   -o kube-router cmd/kube-router/kube-router.go || die
+   popd || die
+}
+
+src_test() {
+   :
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin ${PN}
+   dodoc *.md docs/*.md docs/*/*
+   popd || die
+
+   newinitd "${FILESDIR}"/kube-router.initd kube-router
+   newconfd "${FILESDIR}"/kube-router.confd kube-router
+
+   insinto /etc/logrotate.d
+   newins &qu

[gentoo-commits] repo/gentoo:master commit in: sys-auth/fprintd/

2019-08-04 Thread Maxim Koltsov
commit: 5c9f50f0bbb2a4701beffb7ce50d4a48f67ac6e0
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Aug  4 19:35:15 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Aug  4 19:36:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9f50f0

sys-auth/fprintd: fix bug in systemd service

Closes: https://bugs.gentoo.org/688562
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 sys-auth/fprintd/fprintd-0.8.1-r1.ebuild | 69 
 1 file changed, 69 insertions(+)

diff --git a/sys-auth/fprintd/fprintd-0.8.1-r1.ebuild 
b/sys-auth/fprintd/fprintd-0.8.1-r1.ebuild
new file mode 100644
index 000..da760b51d70
--- /dev/null
+++ b/sys-auth/fprintd/fprintd-0.8.1-r1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools pam systemd
+
+DESCRIPTION="D-Bus service to access fingerprint readers"
+HOMEPAGE="https://cgit.freedesktop.org/libfprint/fprintd/;
+MY_PV="V_$(ver_rs 0- _)"
+SRC_URI="https://cgit.freedesktop.org/libfprint/${PN}/snapshot/${MY_PV}.tar.bz2
 -> ${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc pam static-libs"
+
+RDEPEND="
+   dev-libs/dbus-glib
+   dev-libs/glib:2
+   sys-auth/libfprint
+   sys-auth/polkit
+   pam? ( sys-libs/pam )
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   doc? ( dev-libs/libxml2 dev-libs/libxslt )
+"
+
+S=${WORKDIR}/${MY_PV}
+
+src_prepare() {
+   default
+
+   sed -i 's#@localstatedir@/lib/fprint#@localstatedir@/fprint#g' 
data/fprintd.service.in || die "sed failed"
+   eautoreconf
+}
+
+src_configure() {
+   econf --disable-silent-rules \
+   $(use_enable pam) \
+   $(use_enable static-libs static) \
+   $(use_enable doc gtk-doc-html) \
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+}
+
+src_install() {
+   emake DESTDIR="${D}" install \
+   pammoddir=$(getpam_mod_dir)
+
+   keepdir /var/lib/fprint
+
+   find "${D}" -name "*.la" -delete || die
+
+   dodoc AUTHORS NEWS README{,.transifex} TODO
+   newdoc pam/README README.pam_fprintd
+   if use doc ; then
+   insinto /usr/share/doc/${PF}/html
+   doins doc/{fprintd-docs,version}.xml
+   insinto /usr/share/doc/${PF}/html/dbus
+   doins doc/dbus/net.reactivated.Fprint.{Device,Manager}.ref.xml
+   fi
+}
+
+pkg_postinst() {
+   elog "Please take a look at README.pam_fprintd for integration docs."
+}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/fprintd/

2019-08-04 Thread Maxim Koltsov
commit: aae16b90add4ab4979ea7e2cfcccd46d15c57b06
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Aug  4 19:35:54 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Aug  4 19:36:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae16b90

sys-auth/fprintd: remove old

Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 sys-auth/fprintd/Manifest |  1 -
 sys-auth/fprintd/fprintd-0.5.0.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/sys-auth/fprintd/Manifest b/sys-auth/fprintd/Manifest
index dde3c4305a3..c0a22b06a9d 100644
--- a/sys-auth/fprintd/Manifest
+++ b/sys-auth/fprintd/Manifest
@@ -1,2 +1 @@
-DIST fprintd-0.5.0.tar.bz2 66981 BLAKE2B 
02ae16bbeaab9a44ef4341fd2076ef610adc92184601963ab3edc4bae41abfce0540d4ac0e0717b8542f0b0684af2616684856b0e71f3e58b1834d6a
 SHA512 
d77adb92e6913c8822e2c866ed632f5d1429c93e8e7c4c7d51d23385f6afb0c6048ff72c9cb885d7581e8d1e461f708af06ca6e6f98e177c98834289a76341de
 DIST fprintd-0.8.1.tar.bz2 75254 BLAKE2B 
bf59c47c3d0186677bfd180e472e13773afebd4c3438e0e8e8cce34156df1c64c142b73d541fa876b96d4881e6967745a8c29be310dd33a509cb1863c836634e
 SHA512 
438098fb677b742fdb279f3df85a1f2c800fce7498130c09b7408f21656ff256323b3bce4c22a2499e52c2ca7cddbc7f26033be7869939d23f9b5c436aa1f252

diff --git a/sys-auth/fprintd/fprintd-0.5.0.ebuild 
b/sys-auth/fprintd/fprintd-0.5.0.ebuild
deleted file mode 100644
index 5528049ba14..000
--- a/sys-auth/fprintd/fprintd-0.5.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools pam systemd versionator
-
-DESCRIPTION="D-Bus service to access fingerprint readers"
-HOMEPAGE="https://cgit.freedesktop.org/libfprint/fprintd/;
-MY_PV="V_$(replace_all_version_separators _)"
-SRC_URI="https://cgit.freedesktop.org/libfprint/${PN}/snapshot/${MY_PV}.tar.bz2
 -> ${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
-IUSE="doc pam static-libs"
-
-RDEPEND="dev-libs/dbus-glib
-   dev-libs/glib:2
-   sys-auth/libfprint
-   sys-auth/polkit
-   pam? ( sys-libs/pam )"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   doc? ( dev-libs/libxml2 dev-libs/libxslt )"
-
-S=${WORKDIR}/${MY_PV}
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   econf --disable-silent-rules \
-   $(use_enable pam) \
-   $(use_enable static-libs static) \
-   $(use_enable doc gtk-doc-html) \
-   $(systemd_with_unitdir)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install \
-   pammoddir=$(getpam_mod_dir)
-
-   keepdir /var/lib/fprint
-
-   find "${D}" -name "*.la" -delete || die
-
-   dodoc AUTHORS NEWS README{,.transifex} TODO
-   newdoc pam/README README.pam_fprintd
-   if use doc ; then
-   insinto /usr/share/doc/${PF}/html
-   doins doc/{fprintd-docs,version}.xml
-   insinto /usr/share/doc/${PF}/html/dbus
-   doins doc/dbus/net.reactivated.Fprint.{Device,Manager}.ref.xml
-   fi
-}
-
-pkg_postinst() {
-   elog "Please take a look at README.pam_fprintd for integration docs."
-}



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

2019-08-04 Thread Maxim Koltsov
commit: 4d8dce3ddb58d57b5ff967b7bed1256f17363280
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Aug  4 19:10:54 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Aug  4 19:12:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d8dce3d

net-misc/teamviewer: bump to 14.4.2669

Closes: https://bugs.gentoo.org/689662
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 net-misc/teamviewer/Manifest|   2 +
 net-misc/teamviewer/teamviewer-14.4.2669.ebuild | 136 
 2 files changed, 138 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 01e52e407fc..fdc9a4233b2 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -2,3 +2,5 @@ DIST teamviewer_14.2.2558_amd64.tar.xz 11986724 BLAKE2B 
1369d60fcc10b31e7065bf8e
 DIST teamviewer_14.2.2558_i386.tar.xz 12459844 BLAKE2B 
108474be22f2b5d64cadb6d228232553aef304d017976a6785a716324d157c3fa580f4b54486b642f4d14ee258198a6f5cb6076d1ddc5de593c22fc320fc124f
 SHA512 
f6c22ca12bddcec11a77ab67db7e8e5d83fc8ef41bdb5124afac23f1aa6ef908f4054bfce2d9cf1d20ddad9c39cbb5ecdd13d535c4f734f40271e23b824f7f01
 DIST teamviewer_14.2.8352_amd64.tar.xz 12000972 BLAKE2B 
29c0222f940eea66a7dbcf380090caf5fe0f44f7c6929fb0d9d8beed3ba7dc036ba905df73e6752460e513da02f67fa9de35daf0c700313be7b57a6f0b95a220
 SHA512 
12367fa1a7fae0189cffc19bd106418d1c221207ac8d35e8cb4391e491b1a93bd94363c7a1a47dddf966298631481a4ea923b132886abfffa0f4efcbf63985a4
 DIST teamviewer_14.2.8352_i386.tar.xz 12469004 BLAKE2B 
3aee7371b200ca1e599c7981b4ca725a9376b90bfb60ec66e7d93c658d5e69e77aab72d81f12d063c5b75a626c9fd7e8d9d1a9582b5fe19e86f769efb557bb0a
 SHA512 
e391b7f8d9168dcf29146f6466693baa81b5e7956cc515e2d0301ced9055bfc67dc16b2d011ea3824fcc548d0d625a1cab574fafdae5ac61c9a37982be29d03b
+DIST teamviewer_14.4.2669_amd64.tar.xz 12237660 BLAKE2B 
d3c1638645720748fed6f8e588e59211e54625548b0c0a45316f2c51bf7560d6853fdfd86fdb1468a33ef75e1454c24c0afa2eccbec5a7a7848071edaa6b27ee
 SHA512 
3a371538aaeb128156542b00a051e0db9ea20830a5dd666b7b2f5d239529d639407dbd520828b27d37f80d8fa06a9d09cfc1738357ac86df1e8f9fe7188dfd6a
+DIST teamviewer_14.4.2669_i386.tar.xz 12726704 BLAKE2B 
e8ab743646448488fc39ea9979e52a49c42e941cb173e89257dfcd3544dc2709a763d6c552c269c1559b3a7ccdf83265e30e06d06cebe8dcfca6dfe8a591791c
 SHA512 
bbd6d48d1c70941d468c793bdede3b0a1aebbc7fd433c55be327f56cfd53435ffaebdd845ee595820dcce41d94f8a3fe9de00d2908901c4501ff61e34ad9349c

diff --git a/net-misc/teamviewer/teamviewer-14.4.2669.ebuild 
b/net-misc/teamviewer/teamviewer-14.4.2669.ebuild
new file mode 100644
index 000..6650185440e
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-14.4.2669.ebuild
@@ -0,0 +1,136 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN=${PN}${PV/\.*}
+inherit desktop gnome2-utils systemd
+
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
+   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
+
+LICENSE="TeamViewer MIT"
+SLOT="${PV/\.*}"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/sed"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   sys-apps/dbus
+   !sys-auth/consolekit
+"
+
+# For consolekit incompatibility see 
https://forums.gentoo.org/viewtopic-p-8332956.html?sid=3cc21e5a27935e38975ee85bf03317ae#8332956
+
+RESTRICT="bindist mirror"
+
+# Silence QA messages
+QA_PREBUILT="opt/${MY_PN}/*"
+
+S="${WORKDIR}"/teamviewer
+
+src_prepare() {
+   default
+
+   # Switch operation mode from 'portable' to 'installed'
+   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
+
+   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
+   -i tv_bin/script/teamviewerd.service || die
+}
+
+src_install() {
+   local dst="/opt/${MY_PN}" # install destination
+
+   # Quirk:
+   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
+   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
+   # when changing the ABI of one of its dependencies. According to the
+   # TeamViewer devs, this binary is an unused remnant of previous Wine-
+   # based builds and will be removed in future releases anyway
+   rm tv_bin/script/libdepend
+
+   insinto ${dst}
+   doins -r tv_bin
+
+   # Set permissions for 

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

2019-08-04 Thread Maxim Koltsov
commit: ba62be5d243e7019a711362b0ebf7cf44bd8a30f
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Aug  4 19:01:55 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Aug  4 19:11:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba62be5d

net-misc/teamviewer: remove old

Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 net-misc/teamviewer/Manifest |   6 --
 net-misc/teamviewer/teamviewer-14.1.18533.ebuild | 129 ---
 net-misc/teamviewer/teamviewer-14.1.3399.ebuild  | 129 ---
 net-misc/teamviewer/teamviewer-14.1.9025.ebuild  | 129 ---
 4 files changed, 393 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index fe7f66376c1..01e52e407fc 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,9 +1,3 @@
-DIST teamviewer_14.1.18533_amd64.tar.xz 11364156 BLAKE2B 
2af6407209dccadc66c96f54673de2ef200e224ca585583c263049169f54dae9ad32b245f630007f231d63903198bc1494ffc2848c45b1e93b0c8eee2df26c17
 SHA512 
b71b5b52c73fda8de357b2aaab667fe9950fad150518fc18c864bdcee388aaa05f550e373bdf782880826f0598d3879aebc79a447ec9cefd0b89d994383645c5
-DIST teamviewer_14.1.18533_i386.tar.xz 11365948 BLAKE2B 
b57de67131f7ee28823973007ebe34802e9a6b544829452c15e9bdab4eaae5a151c395c75ae6540acdd745fc81a5afd8674af50f2943c822ef5ce339b80766f7
 SHA512 
f05c285859031bc45dd313e47b28662fb6873fcb01d0c5aab72dcc0ab0d728361d335e1dbeddc8f0eacb88f9d3f1edaff69a93b88149ca3de6367e86a938998c
-DIST teamviewer_14.1.3399_amd64.tar.xz 11311600 BLAKE2B 
082b23322b4a24add2f7a1235810a3fb3cfd6572ccfe2a54942bd93902d3adc170a175d32653375c406de7a54949fd0904dfae8b8cf98da58ef492ac63d0e576
 SHA512 
9417fca34d2b4b3e53d173ed31f85ca6d3f2488dceb7bf2321082631b425d7c3404549ff4bfe615e6f8f82354df5c43ab61e8cd4ec99ae9c42b28807ea0db365
-DIST teamviewer_14.1.3399_i386.tar.xz 11305576 BLAKE2B 
1a40cd6dd5e1554b44d210fb0ca78a3570185e046b12eba52d0e089cd317ab6c8828f774d6b786ab7232ad663785bd9fb2e9137eb0ea7364347ea5513ab5e6ef
 SHA512 
0fef5c5794ea06d9a729cd5be0b2e7c28add1fca9bbf9e77ca69fe569a08fc1efb6dc007040d8a8d3608061469dc2e2d364584130316d58e2d8195b2389deb0f
-DIST teamviewer_14.1.9025_amd64.tar.xz 11357456 BLAKE2B 
d3401b4465341533e0e3e7d57515566b1833689cb55d3d2b2b4ca95ed706ebd5609698b128033737dc1532e10fd15837241f11e327d3345ef266b90d2837075c
 SHA512 
2a6fcfd3bb74a9e0f97bd94cf92ba5c8500c17436887e186c6b65d1c02b984799a41003e0cb58af503ece6c9c4f8205c907ba179b491efd3b765ef34b1ec9f76
-DIST teamviewer_14.1.9025_i386.tar.xz 11357824 BLAKE2B 
6eb496549e39a1f66a5e14af3d69f8f11dda1549e4af51d354fa8cdfd027dec58240dc6ddacbaf0b1c0ccecf918873d9307f6d75a09abf180a1be5aff65f2613
 SHA512 
b5ff7e417ffa59725656611348dd717141fa010460f2d872ef555471f22af24d7dde02b0356eece69eb2a7e8fb0d94024646b74e9c8d5c00577eeda1e8c9a713
 DIST teamviewer_14.2.2558_amd64.tar.xz 11986724 BLAKE2B 
1369d60fcc10b31e7065bf8e8e238e7fc42cd57572c69ffb698b301ee2d421443663cd6d6e5f800cb0a046e3ac1ff97b82d103574cb46f2cf6beffad8d849261
 SHA512 
c64ca29d0a90c597c61993e90d6f66d85ffe3c9d8c59115abbde8814e2141c1e69092b8ce16aac413ed1bfa5eb2bd47cb9f0f737f14b22055a8a92c120e8a66e
 DIST teamviewer_14.2.2558_i386.tar.xz 12459844 BLAKE2B 
108474be22f2b5d64cadb6d228232553aef304d017976a6785a716324d157c3fa580f4b54486b642f4d14ee258198a6f5cb6076d1ddc5de593c22fc320fc124f
 SHA512 
f6c22ca12bddcec11a77ab67db7e8e5d83fc8ef41bdb5124afac23f1aa6ef908f4054bfce2d9cf1d20ddad9c39cbb5ecdd13d535c4f734f40271e23b824f7f01
 DIST teamviewer_14.2.8352_amd64.tar.xz 12000972 BLAKE2B 
29c0222f940eea66a7dbcf380090caf5fe0f44f7c6929fb0d9d8beed3ba7dc036ba905df73e6752460e513da02f67fa9de35daf0c700313be7b57a6f0b95a220
 SHA512 
12367fa1a7fae0189cffc19bd106418d1c221207ac8d35e8cb4391e491b1a93bd94363c7a1a47dddf966298631481a4ea923b132886abfffa0f4efcbf63985a4

diff --git a/net-misc/teamviewer/teamviewer-14.1.18533.ebuild 
b/net-misc/teamviewer/teamviewer-14.1.18533.ebuild
deleted file mode 100644
index 2887c5d7819..000
--- a/net-misc/teamviewer/teamviewer-14.1.18533.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN=${PN}${PV/\.*}
-inherit desktop gnome2-utils systemd
-
-DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
-HOMEPAGE="https://www.teamviewer.com;
-SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
-   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
-
-LICENSE="TeamViewer MIT"
-SLOT="${PV/\.*}"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-
-DEPEND="sys-apps/sed"
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/vicious/

2019-08-04 Thread Maxim Koltsov
commit: 8c4c249ee789dcb7e309b2de845d60edc18a5fe1
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Aug  4 18:56:36 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Aug  4 19:11:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c4c249e

x11-plugins/vicious: bump to 2.3.3

Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 x11-plugins/vicious/Manifest |  1 +
 x11-plugins/vicious/vicious-2.3.3.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/x11-plugins/vicious/Manifest b/x11-plugins/vicious/Manifest
index 039015d0685..e6d51bb8110 100644
--- a/x11-plugins/vicious/Manifest
+++ b/x11-plugins/vicious/Manifest
@@ -1 +1,2 @@
 DIST vicious-2.3.1.tar.gz 47484 BLAKE2B 
2ef6e51507faf7477800091c738e65184439caba9b79004b53f3a479f1370ca64046bc1664c6b746d8ab71370b36f29095406439e2a8fab7524e6bb190350fb7
 SHA512 
9e89d36d708a7ccdff206451dfb98db8455a16f9d2254167a446af91fadc2103a5274442f38ddf1eb919da23480b6790639cdbbde4a08bffc1cf9221622064c9
+DIST vicious-2.3.3.tar.gz 50564 BLAKE2B 
f472b9e1514c9f731734e6512496da6ebb516a190225035811333ca7a275509828b8b4078d72856b5a488eeaee612e3070406138f1abd9de61aaa0f01ca370b9
 SHA512 
2549fa168a8c8cebcb9ecf1eafbc7658213b6a5487839e8acbc2aaed18f0d0b8081550ee7beb93770ae7e600158e12b99b9e1c29af8a8807bb200cc1cdf75807

diff --git a/x11-plugins/vicious/vicious-2.3.3.ebuild 
b/x11-plugins/vicious/vicious-2.3.3.ebuild
new file mode 100644
index 000..4934c0636f0
--- /dev/null
+++ b/x11-plugins/vicious/vicious-2.3.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Modular widget library for x11-wm/awesome"
+HOMEPAGE="https://github.com/Mic92/vicious;
+SRC_URI="https://github.com/Mic92/vicious/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="contrib"
+
+DEPEND=""
+RDEPEND="x11-wm/awesome"
+
+src_install() {
+   insinto /usr/share/awesome/lib/vicious
+   doins -r widgets helpers.lua init.lua
+   dodoc Changes.md README.md TODO
+
+   if use contrib; then
+   insinto /usr/share/awesome/lib/vicious/contrib
+   doins contrib/*.lua
+   newdoc contrib/README.md README.contrib
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/vicious/

2019-08-04 Thread Maxim Koltsov
commit: 3f35c9c5fad3ce363e0279f1ba3748821014b256
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Aug  4 18:55:03 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Aug  4 19:11:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f35c9c5

x11-plugins/vicious: remove old

Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 x11-plugins/vicious/Manifest |  2 --
 x11-plugins/vicious/vicious-2.1.3.ebuild | 28 
 x11-plugins/vicious/vicious-2.2.0.ebuild | 28 
 3 files changed, 58 deletions(-)

diff --git a/x11-plugins/vicious/Manifest b/x11-plugins/vicious/Manifest
index 64868880bcb..039015d0685 100644
--- a/x11-plugins/vicious/Manifest
+++ b/x11-plugins/vicious/Manifest
@@ -1,3 +1 @@
-DIST vicious-2.1.3.tar.xz 39336 BLAKE2B 
279ad85a5f6f1a9fdea303f982673746e6604955cae1c3b37625c5d5f21fcae2d39da38dbcd3176397e25ad0e6d562225bd78760820647955534e0164fb322fe
 SHA512 
8b03fe4b770f0fcd52fad77a46145032a112cecbe27daa725054cb4c6307fb36727debb48243cd2d1becf2ad0fe3a27495e0f041424ee9e45c2b107e7f7f
-DIST vicious-2.2.0.tar.gz 45247 BLAKE2B 
c3c3f87e5983784edb8742b4aa0534c65ee9c0564cd8f5a81e714b580971c174b9fc86ec0bb33b6aaa31bbca25a6d522d9cbaf8e96d710b17419176e19f3b0b7
 SHA512 
717c57b14870bb72a35c90c5356a807e2431d50f28be6e50abdbf17d39fea33c5b16ee14746726d238a80f9fe30c0ad1a6a98d6c9730e42437495656fed8cfbe
 DIST vicious-2.3.1.tar.gz 47484 BLAKE2B 
2ef6e51507faf7477800091c738e65184439caba9b79004b53f3a479f1370ca64046bc1664c6b746d8ab71370b36f29095406439e2a8fab7524e6bb190350fb7
 SHA512 
9e89d36d708a7ccdff206451dfb98db8455a16f9d2254167a446af91fadc2103a5274442f38ddf1eb919da23480b6790639cdbbde4a08bffc1cf9221622064c9

diff --git a/x11-plugins/vicious/vicious-2.1.3.ebuild 
b/x11-plugins/vicious/vicious-2.1.3.ebuild
deleted file mode 100644
index 1436fc7b7b7..000
--- a/x11-plugins/vicious/vicious-2.1.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Modular widget library for x11-wm/awesome"
-HOMEPAGE="http://awesome.naquadah.org/wiki/Vicious;
-SRC_URI="http://git.sysphere.org/${PN}/snapshot/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="contrib"
-
-DEPEND=""
-RDEPEND="x11-wm/awesome"
-
-src_install() {
-   insinto /usr/share/awesome/lib/vicious
-   doins -r widgets helpers.lua init.lua
-   dodoc CHANGES README TODO
-
-   if use contrib; then
-   insinto /usr/share/awesome/lib/vicious/contrib
-   doins contrib/*.lua
-   newdoc contrib/README README.contrib
-   fi
-}

diff --git a/x11-plugins/vicious/vicious-2.2.0.ebuild 
b/x11-plugins/vicious/vicious-2.2.0.ebuild
deleted file mode 100644
index 601ea74cde5..000
--- a/x11-plugins/vicious/vicious-2.2.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
-
-DESCRIPTION="Modular widget library for x11-wm/awesome"
-HOMEPAGE="https://github.com/Mic92/vicious;
-SRC_URI="https://github.com/Mic92/vicious/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="contrib"
-
-DEPEND=""
-RDEPEND="x11-wm/awesome"
-
-src_install() {
-   insinto /usr/share/awesome/lib/vicious
-   doins -r widgets helpers.lua init.lua
-   dodoc Changes.md README.md TODO
-
-   if use contrib; then
-   insinto /usr/share/awesome/lib/vicious/contrib
-   doins contrib/*.lua
-   newdoc contrib/README.md README.contrib
-   fi
-}



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

2019-04-28 Thread Maxim Koltsov
commit: 34cf11b1d8d9a33d166ccab4db21c5aeef6adff9
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 28 08:12:01 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:12:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34cf11b1

dev-python/pytest-rerunfailures: PYTHON_COMPAT 3.7

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild 
b/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild
index 5778fcbd788..e98660958fc 100644
--- a/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild
+++ b/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
 
 inherit distutils-r1
 



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

2019-04-28 Thread Maxim Koltsov
commit: 00ac19acade08dad3e916dba315c57d92e9ce2df
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 28 08:10:23 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:10:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ac19ac

dev-python/pytest: PYTHON_COMPAT 3.7 for pytest-3

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

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

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index be294ac486b..05a7c58b090 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy{,3} )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
 
 inherit distutils-r1
 



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

2019-04-28 Thread Maxim Koltsov
commit: 64dad89900c7b185a01a2b64f14a57188fa4ed74
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Apr 27 19:27:04 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:01:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64dad899

dev-python/pip: bump to 19.1

- Bump EAPI to 7
- Fix completion file installation

Closes: https://bugs.gentoo.org/671286
Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pip/Manifest|  1 +
 .../files/pip-19.1-disable-system-install.patch| 17 +++
 .../pip/files/pip-19.1-disable-version-check.patch | 19 
 dev-python/pip/pip-19.1.ebuild | 53 ++
 4 files changed, 90 insertions(+)

diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
index ca3c8caf9d8..f816ec613bd 100644
--- a/dev-python/pip/Manifest
+++ b/dev-python/pip/Manifest
@@ -1,3 +1,4 @@
 DIST pip-10.0.1.tar.gz 1246072 BLAKE2B 
e08607be43e1d7b9c7bbc12dff73bc3170953f48f8f7439a0b27b9d540f23eb3bca7873211a5f1448b5cedd6e8e12983af6fa4666bba3ac4700059d170036733
 SHA512 
983cce8375ff0304263209c69be16e5be7a58af340b8c3ffddd64fcea130b2f8f8a98305ab31e9c3eed9a0d039c73777c88bde3bf2ea1e184fa3e0a2faa97fd4
+DIST pip-19.1.tar.gz 1334822 BLAKE2B 
afc2163c65a5ae181ffcf06f5fd8f321cff7c480d7cfac913b2f883c36840e79232f2a139f05659fc5bb583b8a35bdda583d22db152c8b8290c9e8c66e89dfaf
 SHA512 
b10f6a8e0cc71b4987657acb90e677217a485f3605cca3ac9fe946102a8b6e07346d69952469db264e9aa7753015695818f107e361beab8a9fd0fbd5410900df
 DIST pip-7.1.2.tar.gz 1049170 BLAKE2B 
1461abba4cb80a9a4e806675ca2d996dedeeb8fb38f05b618f98f400475405da018ea6e75663c21b7b7eb5091408d602a3127afeea9a4bd29f075e5eb8042ad0
 SHA512 
78082afe6b559bf87f91ae9b6d304cfbfce00206e09be42fdae9d449a55cd8d968df6873e834191d0b0e6baae29e72eb3eee42386ff7c5dc9c29b6c28b754449
 DIST pip-9.0.1.tar.gz 1197370 BLAKE2B 
3618161690d5e0a38d141f9b51baea4aaa3fdc225664ef180bbeecf6e2df95e9ea4f97c63fe3a68f84f4fb5ebcc74e316827253c7e07b03565e58113bbaa918a
 SHA512 
ee59efb4b009ff6543b7afdea99b9cbbee1981ecc03af586acda76674024d3b66dab23049e68f3da9448734984619fc1eaba6e965c9dd3d731973376c8a42e25

diff --git a/dev-python/pip/files/pip-19.1-disable-system-install.patch 
b/dev-python/pip/files/pip-19.1-disable-system-install.patch
new file mode 100644
index 000..bc88ef715a2
--- /dev/null
+++ b/dev-python/pip/files/pip-19.1-disable-system-install.patch
@@ -0,0 +1,17 @@
+install: Raise an error to avoid breaking python-exec
+
+Running pip without --target, --root, or --user will result in packages
+being installed systemwide. This has a tendency to break python-exec if
+setuptools gets installed or upgraded.
+
+--- pip-19.1/src/pip/_internal/commands/install.py
 pip-19.1/src/pip/_internal/commands/install.py
+@@ -246,6 +246,9 @@ class InstallCommand(RequirementCommand):
+ if options.upgrade:
+ upgrade_strategy = options.upgrade_strategy
+
++if not options.use_user_site and not options.target_dir and not 
options.root_path:
++raise CommandError("(Gentoo) Please run pip with the --user 
option to avoid breaking python-exec")
++
+ if options.build_dir:
+ options.build_dir = os.path.abspath(options.build_dir)

diff --git a/dev-python/pip/files/pip-19.1-disable-version-check.patch 
b/dev-python/pip/files/pip-19.1-disable-version-check.patch
new file mode 100644
index 000..a46a47f0fc6
--- /dev/null
+++ b/dev-python/pip/files/pip-19.1-disable-version-check.patch
@@ -0,0 +1,19 @@
+Don't check for new versions of pip.
+
+--- pip-19.1/src/pip/_internal/cli/base_command.py
 pip-19.1/src/pip/_internal/cli/base_command.py
+@@ -213,12 +213,8 @@ class Command(object):
+ 
+ return UNKNOWN_ERROR
+ finally:
+-allow_version_check = (
+-# Does this command have the index_group options?
+-hasattr(options, "no_index") and
+-# Is this command allowed to perform this check?
+-not (options.disable_pip_version_check or options.no_index)
+-)
++# Disabled on Gentoo
++allow_version_check = False
+ # Check if we're using the latest version of pip available
+ if allow_version_check:
+ session = self._build_session(

diff --git a/dev-python/pip/pip-19.1.ebuild b/dev-python/pip/pip-19.1.ebuild
new file mode 100644
index 000..f549d358e60
--- /dev/null
+++ b/dev-python/pip/pip-19.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
+PYTHON_REQ_USE="ssl(+),threads(+)"
+
+inherit eutils bash-completion-r1 distutils-r1
+
+DESCRIPTION="Installs python packages -- replacement for easy_install"
+HOMEPAGE="htt

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

2019-04-28 Thread Maxim Koltsov
commit: dda067b4a42581bce3257c0801721752393c36da
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 28 08:13:17 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:13:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda067b4

dev-python/pytest-timeout: PYTHON_COMPAT 3.7

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pytest-timeout/pytest-timeout-1.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pytest-timeout/pytest-timeout-1.2.1.ebuild 
b/dev-python/pytest-timeout/pytest-timeout-1.2.1.ebuild
index e7a02de3673..cd26fa3585d 100644
--- a/dev-python/pytest-timeout/pytest-timeout-1.2.1.ebuild
+++ b/dev-python/pytest-timeout/pytest-timeout-1.2.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
 
 inherit distutils-r1
 



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

2019-04-28 Thread Maxim Koltsov
commit: 4509ed54965c243d3adff1143f885aff8009920d
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 28 08:04:37 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:04:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4509ed54

dev-python/scripttest: PYTHON_COMPAT python3_7

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

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

diff --git a/dev-python/scripttest/scripttest-1.3.0.ebuild 
b/dev-python/scripttest/scripttest-1.3.0.ebuild
index c0969c79e49..d3f0b87aab1 100644
--- a/dev-python/scripttest/scripttest-1.3.0.ebuild
+++ b/dev-python/scripttest/scripttest-1.3.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy{,3} )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
 
 inherit distutils-r1
 



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

2019-04-28 Thread Maxim Koltsov
commit: d372a61dbfb7185fa84b53a027935e727a13d4de
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 28 08:15:00 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:15:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d372a61d

dev-python/pip: add tests for pip-19

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pip/Manifest|  4 ++-
 dev-python/pip/pip-19.1.ebuild | 60 --
 2 files changed, 55 insertions(+), 9 deletions(-)

diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
index ff87ff67b04..2b01c043541 100644
--- a/dev-python/pip/Manifest
+++ b/dev-python/pip/Manifest
@@ -1,3 +1,5 @@
 DIST pip-10.0.1.tar.gz 1246072 BLAKE2B 
e08607be43e1d7b9c7bbc12dff73bc3170953f48f8f7439a0b27b9d540f23eb3bca7873211a5f1448b5cedd6e8e12983af6fa4666bba3ac4700059d170036733
 SHA512 
983cce8375ff0304263209c69be16e5be7a58af340b8c3ffddd64fcea130b2f8f8a98305ab31e9c3eed9a0d039c73777c88bde3bf2ea1e184fa3e0a2faa97fd4
-DIST pip-19.1.tar.gz 1334822 BLAKE2B 
afc2163c65a5ae181ffcf06f5fd8f321cff7c480d7cfac913b2f883c36840e79232f2a139f05659fc5bb583b8a35bdda583d22db152c8b8290c9e8c66e89dfaf
 SHA512 
b10f6a8e0cc71b4987657acb90e677217a485f3605cca3ac9fe946102a8b6e07346d69952469db264e9aa7753015695818f107e361beab8a9fd0fbd5410900df
+DIST pip-19.1.tar.gz 6320747 BLAKE2B 
9b69fcdef751d6938a7c67f44692afa7088f660ab1e0ae113d21d0f48b4e29f43e0f0bcc137cf16ac0324ea3b500bd2a84234823f8d82556d6727f68139aab4b
 SHA512 
0d2442c22c41133118353ba98f45260f0615a891725b2a069d8fbf26ec4033cc7297bb671944c3dcc1f68800b91e92e58fb407ca5a82e20ac4bb5c9e0cb6
 DIST pip-9.0.1.tar.gz 1197370 BLAKE2B 
3618161690d5e0a38d141f9b51baea4aaa3fdc225664ef180bbeecf6e2df95e9ea4f97c63fe3a68f84f4fb5ebcc74e316827253c7e07b03565e58113bbaa918a
 SHA512 
ee59efb4b009ff6543b7afdea99b9cbbee1981ecc03af586acda76674024d3b66dab23049e68f3da9448734984619fc1eaba6e965c9dd3d731973376c8a42e25
+DIST setuptools-41.0.1-py2.py3-none-any.whl 575966 BLAKE2B 
332986453a35e4ec36ab2bdb80a8b0a70ffe4fec1bb874f481b0d8e31016a26d53070f90d0eea9030b8c48a1f9bc21a54d8a5a2b70096e1f8db84d42449903e4
 SHA512 
c84ddf1d1ea90216b2c475f3e4879f4e6792a859adf61db70d67f49a35f2cb4df6fd6d93049881e6d2a8d914768edfcd091475206bb5da3ac66c41c4b9147102
+DIST wheel-0.33.1-py2.py3-none-any.whl 21496 BLAKE2B 
41bb9ed91d43f94209a010c286d541da9d68b9e727ec8a339fe3c24fb806746b1de5b62c6cd26d2c2841be17406e1f99353b6d172f5258540faeba014945e9e8
 SHA512 
761ad8cb96557b146642871e1f8ce75849a9828193d992a19d072236b9f8452ab54907a3b82bc7441f75f036155ae21b7450120e0c4c19aa5100b58337945ac0

diff --git a/dev-python/pip/pip-19.1.ebuild b/dev-python/pip/pip-19.1.ebuild
index f549d358e60..643cf0978c1 100644
--- a/dev-python/pip/pip-19.1.ebuild
+++ b/dev-python/pip/pip-19.1.ebuild
@@ -6,22 +6,50 @@ EAPI=7
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
 PYTHON_REQ_USE="ssl(+),threads(+)"
 
-inherit eutils bash-completion-r1 distutils-r1
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+SETUPTOOLS_PV="41.0.1"
+WHEEL_PV="0.33.1"
 
 DESCRIPTION="Installs python packages -- replacement for easy_install"
 HOMEPAGE="https://pip.pypa.io/ https://pypi.org/project/pip/ 
https://github.com/pypa/pip/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="
+   https://github.com/pypa/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   test? (
+   
https://files.pythonhosted.org/packages/py2.py3/s/setuptools/setuptools-${SETUPTOOLS_PV}-py2.py3-none-any.whl
+   
https://files.pythonhosted.org/packages/py2.py3/w/wheel/wheel-${WHEEL_PV}-py2.py3-none-any.whl
+   )
+"
+# PyPI archive does not have tests, so we need to download from GitHub.
+# setuptools & wheel .whl files are required for testing, exact version is not 
very important.
 
 LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86"
 SLOT="0"
-IUSE="-vanilla"
+IUSE="test -vanilla"
 
-# required test data isn't bundled with the tarball
-RESTRICT="test"
+# disable-system-install patch breaks tests
+RESTRICT="!vanilla? ( test )"
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
+RDEPEND="
+   >=dev-python/setuptools-39.2.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${DEPEND}
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pretend[${PYTHON_USEDEP}]
+   

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

2019-04-28 Thread Maxim Koltsov
commit: 8560a2dc310ce480b27d83a89f2586fea7f02563
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Apr 27 19:29:41 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 28 08:01:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8560a2dc

dev-python/pip: remove old 7.1.2

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-python/pip/Manifest |  1 -
 dev-python/pip/pip-7.1.2.ebuild | 66 -
 2 files changed, 67 deletions(-)

diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
index f816ec613bd..ff87ff67b04 100644
--- a/dev-python/pip/Manifest
+++ b/dev-python/pip/Manifest
@@ -1,4 +1,3 @@
 DIST pip-10.0.1.tar.gz 1246072 BLAKE2B 
e08607be43e1d7b9c7bbc12dff73bc3170953f48f8f7439a0b27b9d540f23eb3bca7873211a5f1448b5cedd6e8e12983af6fa4666bba3ac4700059d170036733
 SHA512 
983cce8375ff0304263209c69be16e5be7a58af340b8c3ffddd64fcea130b2f8f8a98305ab31e9c3eed9a0d039c73777c88bde3bf2ea1e184fa3e0a2faa97fd4
 DIST pip-19.1.tar.gz 1334822 BLAKE2B 
afc2163c65a5ae181ffcf06f5fd8f321cff7c480d7cfac913b2f883c36840e79232f2a139f05659fc5bb583b8a35bdda583d22db152c8b8290c9e8c66e89dfaf
 SHA512 
b10f6a8e0cc71b4987657acb90e677217a485f3605cca3ac9fe946102a8b6e07346d69952469db264e9aa7753015695818f107e361beab8a9fd0fbd5410900df
-DIST pip-7.1.2.tar.gz 1049170 BLAKE2B 
1461abba4cb80a9a4e806675ca2d996dedeeb8fb38f05b618f98f400475405da018ea6e75663c21b7b7eb5091408d602a3127afeea9a4bd29f075e5eb8042ad0
 SHA512 
78082afe6b559bf87f91ae9b6d304cfbfce00206e09be42fdae9d449a55cd8d968df6873e834191d0b0e6baae29e72eb3eee42386ff7c5dc9c29b6c28b754449
 DIST pip-9.0.1.tar.gz 1197370 BLAKE2B 
3618161690d5e0a38d141f9b51baea4aaa3fdc225664ef180bbeecf6e2df95e9ea4f97c63fe3a68f84f4fb5ebcc74e316827253c7e07b03565e58113bbaa918a
 SHA512 
ee59efb4b009ff6543b7afdea99b9cbbee1981ecc03af586acda76674024d3b66dab23049e68f3da9448734984619fc1eaba6e965c9dd3d731973376c8a42e25

diff --git a/dev-python/pip/pip-7.1.2.ebuild b/dev-python/pip/pip-7.1.2.ebuild
deleted file mode 100644
index 00409bbbfcf..000
--- a/dev-python/pip/pip-7.1.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Installs python packages -- replacement for easy_install"
-HOMEPAGE="https://pip.pypa.io/ https://pypi.org/project/pip/ 
https://github.com/pypa/pip/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
-SLOT="0"
-
-# Check pip/_vendor/vendor.txt for this
-VENDOR_DEPEND="
-   >=dev-python/distlib-0.2.1[${PYTHON_USEDEP}]
-   >=dev-python/html5lib-0.99[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9[${PYTHON_USEDEP}]
-   >=dev-python/colorama-0.3.3[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.7.0[${PYTHON_USEDEP}]
-   >=dev-python/CacheControl-0.11.5[${PYTHON_USEDEP}]
-   >=dev-python/lockfile-0.10.2[${PYTHON_USEDEP}]
-   >=dev-python/progress-1.2[${PYTHON_USEDEP}]
-   >=dev-python/packaging-15.3[${PYTHON_USEDEP}]
-   >=dev-python/retrying-1.3.3[${PYTHON_USEDEP}]
-   virtual/python-ipaddress[${PYTHON_USEDEP}]
-"
-RDEPEND="${VENDOR_DEPEND}
-   >=dev-python/setuptools-18.2[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-# required test data isn't bundled with the tarball
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-6.0.2-disable-version-check.patch
-   "${FILESDIR}"/${P}-unbundle.patch
-   )
-
-python_prepare_all() {
-   mv pip/_vendor/__init__.py "${T}" || die
-   rm -r pip/_vendor/* || die
-   mv "${T}"/__init__.py pip/_vendor/__init__.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_install_all() {
-   local DOCS=( AUTHORS.txt docs/*.rst )
-   distutils-r1_python_install_all
-
-   COMPLETION="${T}"/completion.tmp
-
-   "${PYTHON}" -m pip completion --bash > "${COMPLETION}" || die
-   newbashcomp "${COMPLETION}" ${PN}
-
-   "${PYTHON}" -m pip completion --zsh > "${COMPLETION}" || die
-   insinto /usr/share/zsh/site-functions
-   newins "${COMPLETION}" _pip
-}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/fprintd/

2019-01-08 Thread Maxim Koltsov
commit: 6d25b18a2ef836889d900f385bdf4d289e26a4ab
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Jan  8 14:07:16 2019 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Jan  8 14:07:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d25b18a

sys-auth/fprintd: bump, eapi7, clean old

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Maxim Koltsov  gentoo.org>

 sys-auth/fprintd/Manifest|  2 +-
 .../{fprintd-0.5.1.ebuild => fprintd-0.8.1.ebuild}   | 20 
 sys-auth/fprintd/metadata.xml|  8 +++-
 3 files changed, 20 insertions(+), 10 deletions(-)

diff --git a/sys-auth/fprintd/Manifest b/sys-auth/fprintd/Manifest
index 3d7993c6d10..e19994507a9 100644
--- a/sys-auth/fprintd/Manifest
+++ b/sys-auth/fprintd/Manifest
@@ -1,3 +1,3 @@
 DIST fprintd-0.5.0.tar.bz2 66981 BLAKE2B 
02ae16bbeaab9a44ef4341fd2076ef610adc92184601963ab3edc4bae41abfce0540d4ac0e0717b8542f0b0684af2616684856b0e71f3e58b1834d6a
 SHA512 
d77adb92e6913c8822e2c866ed632f5d1429c93e8e7c4c7d51d23385f6afb0c6048ff72c9cb885d7581e8d1e461f708af06ca6e6f98e177c98834289a76341de
-DIST fprintd-0.5.1.tar.bz2 67286 BLAKE2B 
fa6e1aa55021d44bff14cc48029eefda2ed18a3935aed1393e9de7b13ac3f5818883faa3d09ce055badb2fd2a977facafbd7eb7226413a6fad3677ea86c68eb8
 SHA512 
3c57f4723157b0ea628ded83ec1034818059811d984f21a2ad9262ec03343adcb50ff8f7982fd0b35564bfd9c5bd55ebcee2416353d5f0b5817b376faa43d05d
 DIST fprintd-0.6.0.tar.bz2 67589 BLAKE2B 
e1828d183ee2b34c6637ab148ec3d8c562c06b370a5102bcdd72481e19ce1c12d03bf374404e5f508dd755ea12a3aaa3509431a4584f44b667285d00a5872406
 SHA512 
65e0af9e46b2f4e836c54cd1df2deba33d12228c4997fc5bb44b03ccd38c01fc01a48451faba821a8490ff7715721d8697e1e97a93bab5041b4938b5247c39ba
+DIST fprintd-0.8.1.tar.bz2 75254 BLAKE2B 
bf59c47c3d0186677bfd180e472e13773afebd4c3438e0e8e8cce34156df1c64c142b73d541fa876b96d4881e6967745a8c29be310dd33a509cb1863c836634e
 SHA512 
438098fb677b742fdb279f3df85a1f2c800fce7498130c09b7408f21656ff256323b3bce4c22a2499e52c2ca7cddbc7f26033be7869939d23f9b5c436aa1f252

diff --git a/sys-auth/fprintd/fprintd-0.5.1.ebuild 
b/sys-auth/fprintd/fprintd-0.8.1.ebuild
similarity index 82%
rename from sys-auth/fprintd/fprintd-0.5.1.ebuild
rename to sys-auth/fprintd/fprintd-0.8.1.ebuild
index 1834d4f332b..99784d1ab4e 100644
--- a/sys-auth/fprintd/fprintd-0.5.1.ebuild
+++ b/sys-auth/fprintd/fprintd-0.8.1.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit autotools pam systemd versionator
+inherit autotools pam systemd
 
 DESCRIPTION="D-Bus service to access fingerprint readers"
 HOMEPAGE="https://cgit.freedesktop.org/libfprint/fprintd/;
-MY_PV="V_$(replace_all_version_separators _)"
+MY_PV="V_$(ver_rs 0- _)"
 
SRC_URI="https://cgit.freedesktop.org/libfprint/${PN}/snapshot/${MY_PV}.tar.bz2 
-> ${P}.tar.bz2"
 
 LICENSE="GPL-2"
@@ -15,20 +15,24 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc pam static-libs"
 
-RDEPEND="dev-libs/dbus-glib
+RDEPEND="
+   dev-libs/dbus-glib
dev-libs/glib:2
sys-auth/libfprint
sys-auth/polkit
-   pam? ( sys-libs/pam )"
+   pam? ( sys-libs/pam )
+"
 DEPEND="${RDEPEND}
dev-util/gtk-doc
dev-util/gtk-doc-am
dev-util/intltool
-   doc? ( dev-libs/libxml2 dev-libs/libxslt )"
+   doc? ( dev-libs/libxml2 dev-libs/libxslt )
+"
 
 S=${WORKDIR}/${MY_PV}
 
 src_prepare() {
+   default
eautoreconf
 }
 
@@ -37,7 +41,7 @@ src_configure() {
$(use_enable pam) \
$(use_enable static-libs static) \
$(use_enable doc gtk-doc-html) \
-   $(systemd_with_unitdir)
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
 }
 
 src_install() {

diff --git a/sys-auth/fprintd/metadata.xml b/sys-auth/fprintd/metadata.xml
index 6f49eba8f49..19586c3df84 100644
--- a/sys-auth/fprintd/metadata.xml
+++ b/sys-auth/fprintd/metadata.xml
@@ -1,5 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+
+   maksbo...@gentoo.org
+   Maxim Koltsov
+
+
+   
https://gitlab.freedesktop.org/libfprint/fprintd/issues
+
 



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

2019-01-02 Thread Maxim Koltsov
commit: 89df135b62ba273ffbaa8c91391aa27f366b27fa
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Sep 25 08:56:40 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Jan  2 15:48:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89df135b

x11-apps/copyq: bump to 3.7.2

- add missing qtx11extras dependency
- update icon cache

Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Maxim Koltsov  gentoo.org>

 x11-apps/copyq/Manifest   |  2 +-
 x11-apps/copyq/{copyq-3.5.0.ebuild => copyq-3.7.2.ebuild} | 15 +--
 2 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/x11-apps/copyq/Manifest b/x11-apps/copyq/Manifest
index bcf3fb2265b..a9dfd0e3a5a 100644
--- a/x11-apps/copyq/Manifest
+++ b/x11-apps/copyq/Manifest
@@ -1,2 +1,2 @@
-DIST CopyQ-3.5.0.tar.gz 3004460 BLAKE2B 
30b2d732e87dd5ffea4d07adec14a377feddf2b7e89caf235e0a6bde5781419ec186bf40c687f14d658603ed3aebe43e5010a062560748a8dc00311f0f52a821
 SHA512 
9e662c8f80a59d58fbc8c51990682bfe61582ebdeba240e49996aab618b0a118422b0f2023952ef8cdf8e00f50ec4d7c67bd874abacf564226fb096dcc6d944d
+DIST CopyQ-3.7.2.tar.gz 2882944 BLAKE2B 
3fd90b719b931ad9d92cca97f3ad284dc454ea5644907fa61b51b70eef5c42f41d52323346c0d24611c99cd2004a052825726d5cefe64f2cc9ead22d1f94
 SHA512 
dff6530375ea674502b754866c0011f3436796fc0535dc9cd317640b8cab4620e821b440df62d229a3d1dba371a7ae0c4a03e5d3366dd845218ab1516196d730
 DIST copyq-2.8.1.tar.gz 1573991 BLAKE2B 
464c7fb462638ae717ee70dffcf5fb6eaf628dd4640c9db9d757769ac07479424fc953d81c92ed0e11015802432a9e556171994e8e2da7d0ce11868dcdf57cb6
 SHA512 
77602d39b0cb5fd0c8bd8d6c1ba5079e95ad72dc846c3e273556ffe029732e65bfd0951954de856c894bd7b6ebae816dfe7048040d77f7f3cd07faa922260b57

diff --git a/x11-apps/copyq/copyq-3.5.0.ebuild 
b/x11-apps/copyq/copyq-3.7.2.ebuild
similarity index 74%
rename from x11-apps/copyq/copyq-3.5.0.ebuild
rename to x11-apps/copyq/copyq-3.7.2.ebuild
index 1607b43b019..0c5b8ccd84f 100644
--- a/x11-apps/copyq/copyq-3.5.0.ebuild
+++ b/x11-apps/copyq/copyq-3.7.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils gnome2-utils
 
 MY_P=CopyQ-${PV}
 
@@ -25,6 +25,7 @@ RDEPEND="
dev-qt/qtscript:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
x11-libs/libX11
x11-libs/libXfixes
x11-libs/libXtst
@@ -37,11 +38,21 @@ DEPEND="${RDEPEND}
 S=${WORKDIR}/$MY_P
 
 src_configure() {
+   # CMakeLists.txt concatenates INSTALL_PREFIX with INSTALL_MANDIR 
leading to /usr/usr
local mycmakeargs=(
-DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins"
-DWITH_QT5=ON
-DWITH_TESTS=$(usex test)
-DWITH_WEBKIT=$(usex webkit)
+   -DCMAKE_INSTALL_MANDIR="share/man"
)
cmake-utils_src_configure
 }
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/flann/, sci-libs/flann/files/

2018-07-01 Thread Maxim Koltsov
commit: 9140856244cc5799ca2c9d3196ec3d381414a2ab
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Jul  1 10:10:55 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Jul  1 10:10:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91408562

sci-libs/flann: fix build with >cmake-3.10

Took patch from Buildroot project, see
https://github.com/buildroot/buildroot/commit/0c469478f64d0ddaf72c0622a1830d855306d51c

Closes: https://bugs.gentoo.org/652594
Closes: https://bugs.gentoo.org/657470
Package-Manager: Portage-2.3.41, Repoman-2.3.9

 sci-libs/flann/files/flann-1.9.1-cmake-3.11.patch  | 80 ++
 .../{flann-.ebuild => flann-1.9.1-r1.ebuild}   | 10 ++-
 sci-libs/flann/flann-.ebuild   |  4 ++
 3 files changed, 91 insertions(+), 3 deletions(-)

diff --git a/sci-libs/flann/files/flann-1.9.1-cmake-3.11.patch 
b/sci-libs/flann/files/flann-1.9.1-cmake-3.11.patch
new file mode 100644
index 000..b37bedcf6d5
--- /dev/null
+++ b/sci-libs/flann/files/flann-1.9.1-cmake-3.11.patch
@@ -0,0 +1,80 @@
+From fa5ec96a94646492a3f908e12905b3e48a8e800b Mon Sep 17 00:00:00 2001
+From: Romain Naour 
+Date: Wed, 18 Apr 2018 20:24:13 +0200
+Subject: [PATCH] src/cpp: fix cmake >= 3.11 build
+
+CMake < 3.11 doesn't support add_library() without any source file
+(i.e add_library(foo SHARED)). But flann CMake use a trick that use
+an empty string "" as source list (i.e add_library(foo SHARED "")).
+This look like a bug in CMake < 3.11.
+
+With CMake >= 3.11, the new behaviour of add_library() break the
+existing flann CMake code.
+
+From CMake Changelog [1]:
+"add_library() and add_executable() commands can now be called without
+ any sources and will not complain as long as sources are added later
+ via the target_sources() command."
+
+Note: flann CMake code doesn't use target_sources() since no source file
+are provided intentionally since the flann shared library is created by
+linking with the flann_cpp_s static library with this line:
+
+target_link_libraries(flann_cpp -Wl,-whole-archive flann_cpp_s 
-Wl,-no-whole-archive)
+
+If you try to use "add_library(flann_cpp SHARED ${CPP_SOURCES})" (as it should
+be normally done), the link fail due to already defined symbol.
+
+They are building the shared version using the static library "to speedup the
+build time" [3]
+
+This issue is already reported upstream [2] with a proposed solution.
+
+Upstream status: Pending
+
+Fixes:
+http://autobuild.buildroot.net/results/b2f/b2febfaf8c44ce477b3e4a5b9b976fd25e8d7454
+
+[1] https://cmake.org/cmake/help/v3.11/release/3.11.html
+[2] https://github.com/mariusmuja/flann/issues/369
+[3] 
https://github.com/mariusmuja/flann/commit/0fd62b43be2fbb0b8d791ee36290791224dc030c
+
+Signed-off-by: Romain Naour 
+---
+ src/cpp/CMakeLists.txt | 4 ++--
+ src/cpp/empty.cpp  | 1 +
+ 2 files changed, 3 insertions(+), 2 deletions(-)
+ create mode 100644 src/cpp/empty.cpp
+
+diff --git a/src/cpp/CMakeLists.txt b/src/cpp/CMakeLists.txt
+index b44a735..a816863 100644
+--- a/src/cpp/CMakeLists.txt
 b/src/cpp/CMakeLists.txt
+@@ -29,7 +29,7 @@ if (BUILD_CUDA_LIB)
+ endif()
+ 
+ if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_COMPILER_IS_GNUCC)
+-add_library(flann_cpp SHARED "")
++add_library(flann_cpp SHARED "empty.cpp")
+ set_target_properties(flann_cpp PROPERTIES LINKER_LANGUAGE CXX)
+ target_link_libraries(flann_cpp -Wl,-whole-archive flann_cpp_s 
-Wl,-no-whole-archive)
+ 
+@@ -85,7 +85,7 @@ if (BUILD_C_BINDINGS)
+ set_property(TARGET flann_s PROPERTY COMPILE_DEFINITIONS FLANN_STATIC)
+ 
+ if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_COMPILER_IS_GNUCC)
+-add_library(flann SHARED "")
++add_library(flann SHARED "empty.cpp")
+ set_target_properties(flann PROPERTIES LINKER_LANGUAGE CXX)
+ target_link_libraries(flann -Wl,-whole-archive flann_s 
-Wl,-no-whole-archive)
+ else()
+diff --git a/src/cpp/empty.cpp b/src/cpp/empty.cpp
+new file mode 100644
+index 000..40a8c17
+--- /dev/null
 b/src/cpp/empty.cpp
+@@ -0,0 +1 @@
++/* empty */
+-- 
+2.14.3
+

diff --git a/sci-libs/flann/flann-.ebuild 
b/sci-libs/flann/flann-1.9.1-r1.ebuild
similarity index 88%
copy from sci-libs/flann/flann-.ebuild
copy to sci-libs/flann/flann-1.9.1-r1.ebuild
index 06d78eb963d..fcb4ef999df 100644
--- a/sci-libs/flann/flann-.ebuild
+++ b/sci-libs/flann/flann-1.9.1-r1.ebuild
@@ -3,15 +3,15 @@
 
 EAPI=6
 
-inherit cmake-utils cuda flag-o-matic git-r3 toolchain-funcs
+inherit cmake-utils cuda flag-o-matic toolchain-funcs
 
 DESCRIPTION="Fast approximate nearest neighbor searches in high dimensional 
spaces"
 HOMEPAGE="http://www.cs.ubc.ca/research/flann/;
-EGIT_REPO_URI="https://github.com/mariusmuja/flann.git;
+SRC_URI="https://github.com/mariusmuja/${PN}/a

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

2018-06-25 Thread Maxim Koltsov
commit: 80822fe69ec458e3bdaa6bdff972834e6407cdea
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Jun 25 16:38:14 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Jun 25 16:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80822fe6

net-misc/teamviewer: bump, use desktop.eclass

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/teamviewer/Manifest|   2 +
 net-misc/teamviewer/teamviewer-13.1.8286.ebuild | 129 
 2 files changed, 131 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index c3885d2a130..a0ccf65a65d 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -3,3 +3,5 @@ DIST teamviewer_13.0.9865_amd64.tar.xz 11562916 BLAKE2B 
93d3a31f43c530e96202c1ce
 DIST teamviewer_13.0.9865_i386.tar.xz 11540784 BLAKE2B 
b8fa47ec7572ed1b7eceb29f48af286ad565165498ea6f82c22f3d55181bcd70c1f380e719998a4c351ec3106216d7bde2461c23b9f84608152ae72c2f16d44c
 SHA512 
24b70e1d728f09fc4dec4e669409b8f979011842f022b75d718459f732668689c53470e3bd4b9f21bd1a9919feda2e452de0daeb242cbef4ae49ad2483213ec2
 DIST teamviewer_13.1.3026_amd64.tar.xz 11500188 BLAKE2B 
98dab12224ea65cdb7c45f01a835cb50fd052e044cb2908a27e0324d5647c1bcc38565eca0c1e70e86fd96a9f70ddd4b6250f13cde1fd3c381be9af8ecb1805c
 SHA512 
30914b761833dd2720458eb3a3076f59e521bdf4fd50489e1cb7c0c80a05ef73c2fd5a9a59a33644e73b96d8db1616665a130e2781c39f35f6c5bfb64c7c7b9a
 DIST teamviewer_13.1.3026_i386.tar.xz 11343300 BLAKE2B 
c0170acf9c67f34755800a0200016dacb6f93f3f3805932fbf467dc19bb0213fce74363a0bc703af1c62b4c1bafda2257bd0cc2c52aad4dd1f22ae5a9fb2d486
 SHA512 
f7dac040de4a0ac3489ee5e911c3c278723cee2372bd42a4a929d3cb268f735eb73514a8d72cc49c82277869533289e3195936218be6db323e732c9c380e
+DIST teamviewer_13.1.8286_amd64.tar.xz 11574812 BLAKE2B 
9941a3c1894e4b1a285ac61bdeffb47629c7972d19a573016c357275b3fc5ede51838f35acb2debe36ccd96c20cab6478868b78c831ab7137cb1196440e62297
 SHA512 
76b10c1df368f4c639ff60a69dc541f791b82b73a19accce4c60fdfcff2922a4a674e08da73df570587e840088b466f4791f8da0691582451259965044a18ccb
+DIST teamviewer_13.1.8286_i386.tar.xz 11422756 BLAKE2B 
0bc408cbbf44bdeb84ce8c1d1274e8253ec261571670bce46130a325729eb801f101afae768a38cc43719abe625ebc89b12f3eacba507c9193e1049366b1c2c0
 SHA512 
1fdbdacfdd2f7884af246326e63f6bcfaf8efc95ec326f566216a173509a21891e4c66d85ef1290648a890135ae3fe23f185da36346d68c016da923b7c9c644a

diff --git a/net-misc/teamviewer/teamviewer-13.1.8286.ebuild 
b/net-misc/teamviewer/teamviewer-13.1.8286.ebuild
new file mode 100644
index 000..a897021c7c9
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-13.1.8286.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN=${PN}${PV/\.*}
+inherit desktop gnome2-utils systemd
+
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
+   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
+
+LICENSE="TeamViewer MIT"
+SLOT="${PV/\.*}"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/sed"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   sys-apps/dbus
+"
+
+RESTRICT="bindist mirror"
+
+# Silence QA messages
+QA_PREBUILT="opt/${MY_PN}/*"
+
+S="${WORKDIR}"/teamviewer
+
+src_prepare() {
+   default
+
+   # Switch operation mode from 'portable' to 'installed'
+   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
+
+   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
+   -i tv_bin/script/teamviewerd.service || die
+}
+
+src_install() {
+   local dst="/opt/${MY_PN}" # install destination
+
+   # Quirk:
+   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
+   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
+   # when changing the ABI of one of its dependencies. According to the
+   # TeamViewer devs, this binary is an unused remnant of previous Wine-
+   # based builds and will be removed in future releases anyway
+   rm tv_bin/script/libdepend
+
+   insinto ${dst}
+   doins -r tv_bin
+
+   # Set permissions for executables and libraries
+   for exe in $(find tv_bin -type f -executable -or -name '*.so'); do
+   fperms 755 ${dst}/${exe}
+   done
+
+   # No slotting here, binary expects this service path
+   newinitd "${FILESDIR

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

2018-06-25 Thread Maxim Koltsov
commit: 933459522de24ea4a4e0631358eac23b6a3fd44d
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Jun 25 16:38:38 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Jun 25 16:39:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93345952

net-misc/teamviewer: remove old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/teamviewer/Manifest|   2 -
 net-misc/teamviewer/teamviewer-13.0.9865.ebuild | 129 
 2 files changed, 131 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index a0ccf65a65d..2dc6af9be0c 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,6 +1,4 @@
 DIST teamviewer-9.0.32150.deb 22898922 BLAKE2B 
799aa6f48b69247a2695ca745e85d02ffa73df1375203dfc9da339673e6c18d861c4146ddbdc509bdc1114d5a2a7e5fdd4acf3c6e5da61fbba5aaa02fa4e3cfd
 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
-DIST teamviewer_13.0.9865_amd64.tar.xz 11562916 BLAKE2B 
93d3a31f43c530e96202c1ce9fba7bcb24553068662d8d61869ddd38b447ae859bae8fc9a9228985c6c858fcf9714e523a0649ca8dd487dd3dbe6e4ba4fc
 SHA512 
08983ed34a6fe227bd7be5b03fb74c2b64c16a973034db2645d71e641c1855a9186fbddf6bbdae2db5e1258df0de8e252d49b4f1b0bb6aad8d357aced7a01984
-DIST teamviewer_13.0.9865_i386.tar.xz 11540784 BLAKE2B 
b8fa47ec7572ed1b7eceb29f48af286ad565165498ea6f82c22f3d55181bcd70c1f380e719998a4c351ec3106216d7bde2461c23b9f84608152ae72c2f16d44c
 SHA512 
24b70e1d728f09fc4dec4e669409b8f979011842f022b75d718459f732668689c53470e3bd4b9f21bd1a9919feda2e452de0daeb242cbef4ae49ad2483213ec2
 DIST teamviewer_13.1.3026_amd64.tar.xz 11500188 BLAKE2B 
98dab12224ea65cdb7c45f01a835cb50fd052e044cb2908a27e0324d5647c1bcc38565eca0c1e70e86fd96a9f70ddd4b6250f13cde1fd3c381be9af8ecb1805c
 SHA512 
30914b761833dd2720458eb3a3076f59e521bdf4fd50489e1cb7c0c80a05ef73c2fd5a9a59a33644e73b96d8db1616665a130e2781c39f35f6c5bfb64c7c7b9a
 DIST teamviewer_13.1.3026_i386.tar.xz 11343300 BLAKE2B 
c0170acf9c67f34755800a0200016dacb6f93f3f3805932fbf467dc19bb0213fce74363a0bc703af1c62b4c1bafda2257bd0cc2c52aad4dd1f22ae5a9fb2d486
 SHA512 
f7dac040de4a0ac3489ee5e911c3c278723cee2372bd42a4a929d3cb268f735eb73514a8d72cc49c82277869533289e3195936218be6db323e732c9c380e
 DIST teamviewer_13.1.8286_amd64.tar.xz 11574812 BLAKE2B 
9941a3c1894e4b1a285ac61bdeffb47629c7972d19a573016c357275b3fc5ede51838f35acb2debe36ccd96c20cab6478868b78c831ab7137cb1196440e62297
 SHA512 
76b10c1df368f4c639ff60a69dc541f791b82b73a19accce4c60fdfcff2922a4a674e08da73df570587e840088b466f4791f8da0691582451259965044a18ccb

diff --git a/net-misc/teamviewer/teamviewer-13.0.9865.ebuild 
b/net-misc/teamviewer/teamviewer-13.0.9865.ebuild
deleted file mode 100644
index 6c3cc7311e7..000
--- a/net-misc/teamviewer/teamviewer-13.0.9865.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN=${PN}${PV/\.*}
-inherit eutils gnome2-utils systemd
-
-DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
-HOMEPAGE="https://www.teamviewer.com;
-SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
-   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
-
-LICENSE="TeamViewer MIT"
-SLOT="${PV/\.*}"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-
-DEPEND="sys-apps/sed"
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtquickcontrols:5
-   dev-qt/qtwebkit:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   sys-apps/dbus
-"
-
-RESTRICT="bindist mirror"
-
-# Silence QA messages
-QA_PREBUILT="opt/${MY_PN}/*"
-
-S="${WORKDIR}"/teamviewer
-
-src_prepare() {
-   default
-
-   # Switch operation mode from 'portable' to 'installed'
-   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
-
-   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
-   -i tv_bin/script/teamviewerd.service || die
-}
-
-src_install() {
-   local dst="/opt/${MY_PN}" # install destination
-
-   # Quirk:
-   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
-   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
-   # when changing the ABI of one of its dependencies. According to the
-   # TeamViewer devs, this binary is an unused remnant of previous Wine-
-   # based builds and will be removed in future releases anyway
-   rm tv_bin/script/libdepend
-
-   insinto ${dst}
-   doins -r tv_bin
-
-   # Set permissions for executables and libraries
-

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

2018-06-12 Thread Maxim Koltsov
commit: 4b77702ccc87959b43990a8b50253b80b1a2ea53
Author: Mike Lothian  fireburn  co  uk>
AuthorDate: Mon Jun 11 16:06:08 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Jun 12 13:17:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b77702c

dev-db/lmdb: Make ebuild multilib

 .../{lmdb-0.9.21.ebuild => lmdb-0.9.21-r1.ebuild}  | 32 --
 1 file changed, 17 insertions(+), 15 deletions(-)

diff --git a/dev-db/lmdb/lmdb-0.9.21.ebuild b/dev-db/lmdb/lmdb-0.9.21-r1.ebuild
similarity index 64%
rename from dev-db/lmdb/lmdb-0.9.21.ebuild
rename to dev-db/lmdb/lmdb-0.9.21-r1.ebuild
index c8ac76bcd7c..4a0589b13fe 100644
--- a/dev-db/lmdb/lmdb-0.9.21.ebuild
+++ b/dev-db/lmdb/lmdb-0.9.21-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit toolchain-funcs flag-o-matic multilib
+inherit toolchain-funcs flag-o-matic multilib-minimal
 
 DESCRIPTION="An ultra-fast, ultra-compact key-value embedded data store"
 HOMEPAGE="http://symas.com/mdb/;
@@ -20,21 +20,23 @@ RDEPEND="!=net-nds/openldap-2.4.40"
 S="${WORKDIR}/${PN}-LMDB_${PV}/libraries/liblmdb"
 
 src_prepare() {
-   local soname="-Wl,-soname,liblmdb$(get_libname 0)"
-   [[ ${CHOST} == *-darwin* ]] && \
-   soname="-dynamiclib -install_name 
${EPREFIX}/usr/$(get_libdir)/liblmdb$(get_libname 0)"
-   sed -i -e "s!^CC.*!CC = $(tc-getCC)!" \
-   -e "s!^CFLAGS.*!CFLAGS = ${CFLAGS}!" \
-   -e "s!^AR.*!AR = $(tc-getAR)!" \
-   -e "s!^SOEXT.*!SOEXT = $(get_libname)!" \
-   -e "/^prefix/s!/usr/local!${EPREFIX}/usr!" \
-   -e "/^libdir/s!lib\$!$(get_libdir)!" \
-   -e "s!shared!shared ${soname}!" \
-   "${S}/Makefile" || die
eapply_user
+   multilib_copy_sources
 }
 
-src_configure() {
+multilib_src_configure() {
+local soname="-Wl,-soname,liblmdb$(get_libname 0)"
+[[ ${CHOST} == *-darwin* ]] && \
+soname="-dynamiclib -install_name 
${EPREFIX}/usr/$(get_libdir)/liblmdb$(get_libname 0)"
+sed -i -e "s!^CC.*!CC = $(tc-getCC)!" \
+-e "s!^CFLAGS.*!CFLAGS = ${CFLAGS}!" \
+-e "s!^AR.*!AR = $(tc-getAR)!" \
+-e "s!^SOEXT.*!SOEXT = $(get_libname)!" \
+-e "/^prefix/s!/usr/local!${EPREFIX}/usr!" \
+-e "/^libdir/s!lib\$!$(get_libdir)!" \
+-e "s!shared!shared ${soname}!" \
+"Makefile" || die
+
if [[ ${CHOST} == *-solaris* ]] ; then
# ensure sigwait has a second sig argument
append-cppflags -D_POSIX_PTHREAD_SEMANTICS
@@ -43,11 +45,11 @@ src_configure() {
fi
 }
 
-src_compile() {
+multilib_src_compile() {
emake LDLIBS+=" -pthread"
 }
 
-src_install() {
+multilib_src_install() {
emake DESTDIR="${D}" install
 
mv "${ED}"usr/$(get_libdir)/liblmdb$(get_libname) \



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

2018-06-12 Thread Maxim Koltsov
commit: 680496de13bc3c93cb45a5556829816379db9102
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Jun 12 13:20:36 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Jun 12 13:20:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=680496de

Merge branch 'FireBurn:ldb-lmdb'

Closes: https://bugs.gentoo.org/657828
Closes: https://github.com/gentoo/gentoo/pull/8802

 .../{lmdb-0.9.21.ebuild => lmdb-0.9.21-r1.ebuild}  | 32 --
 .../ldb/{ldb-1.4.0.ebuild => ldb-1.4.0-r1.ebuild}  |  4 ++-
 sys-libs/ldb/metadata.xml  | 14 +++---
 3 files changed, 30 insertions(+), 20 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: sys-libs/ldb/

2018-06-12 Thread Maxim Koltsov
commit: 015637d110b3f8faa568dd3177847f3c4e18fbd5
Author: Mike Lothian  fireburn  co  uk>
AuthorDate: Mon Jun 11 16:06:40 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Jun 12 13:20:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015637d1

sys-libs/ldb: Add use flag for new lmdb backend

Bug: https://bugs.gentoo.org/657828

 sys-libs/ldb/{ldb-1.4.0.ebuild => ldb-1.4.0-r1.ebuild} |  4 +++-
 sys-libs/ldb/metadata.xml  | 14 ++
 2 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/sys-libs/ldb/ldb-1.4.0.ebuild b/sys-libs/ldb/ldb-1.4.0-r1.ebuild
similarity index 95%
rename from sys-libs/ldb/ldb-1.4.0.ebuild
rename to sys-libs/ldb/ldb-1.4.0-r1.ebuild
index 2d0e99ba9c8..a42012a7453 100644
--- a/sys-libs/ldb/ldb-1.4.0.ebuild
+++ b/sys-libs/ldb/ldb-1.4.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap +lmdb +python"
 
 RDEPEND="
!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )
@@ -24,6 +24,7 @@ RDEPEND="
>=sys-libs/tdb-1.3.15[python?,${MULTILIB_USEDEP}]
>=sys-libs/tevent-0.9.36[python(+)?,${MULTILIB_USEDEP}]
ldap? ( net-nds/openldap )
+   lmdb? ( >=dev-db/lmdb-0.9.16[${MULTILIB_USEDEP}] )
python? ( ${PYTHON_DEPS} )
 "
 
@@ -57,6 +58,7 @@ src_prepare() {
 multilib_src_configure() {
local myconf=(
$(usex ldap '' --disable-ldap)
+   $(usex lmdb '' --without-ldb-lmdb)
--disable-rpath
--disable-rpath-install --bundled-libraries=NONE
--with-modulesdir="${EPREFIX}"/usr/$(get_libdir)/samba

diff --git a/sys-libs/ldb/metadata.xml b/sys-libs/ldb/metadata.xml
index 62c9222b8dd..db4a710716a 100644
--- a/sys-libs/ldb/metadata.xml
+++ b/sys-libs/ldb/metadata.xml
@@ -1,8 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   sa...@gentoo.org
-   Samba
-
+   
+   sa...@gentoo.org
+   Samba
+   
+   
+   Builds documentation
+   Enable LDAP support
+   Enable LMDB backend
+   Enable Python support
+   
 



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

2018-06-12 Thread Maxim Koltsov
commit: 221dd3a795c9ebe207cc49b88ab7a99d9f0a554b
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Jun 12 13:09:17 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Jun 12 13:09:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221dd3a7

net-misc/networkmanager-fortisslvpn: add missing gdbus-codegen DEPEND

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild   | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild
index 83207b80082..0aadb4db8bb 100644
--- 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild
+++ 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild
@@ -28,6 +28,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
+   dev-util/gdbus-codegen
sys-devel/gettext
>=dev-util/intltool-0.35
virtual/pkgconfig



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

2018-05-07 Thread Maxim Koltsov
commit: e9141feb4ef900749fc1f2f3cefd34ef830e7c6a
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon May  7 08:53:02 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon May  7 08:55:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9141feb

Revert "net-misc/networkmanager-fortisslvpn: remove old"

This reverts commit c58e9b6c50835746a1294d413265ccb0cc62a825.

 net-misc/networkmanager-fortisslvpn/Manifest   |  1 +
 .../networkmanager-fortisslvpn-1.2.6.ebuild| 49 ++
 2 files changed, 50 insertions(+)

diff --git a/net-misc/networkmanager-fortisslvpn/Manifest 
b/net-misc/networkmanager-fortisslvpn/Manifest
index 0ff05687afe..961011f8814 100644
--- a/net-misc/networkmanager-fortisslvpn/Manifest
+++ b/net-misc/networkmanager-fortisslvpn/Manifest
@@ -1,2 +1,3 @@
 DIST NetworkManager-fortisslvpn-1.2.2.tar.xz 294576 BLAKE2B 
2cf672ad8b523cbfa42da5cda9ec3b56cd257f0993e4177aa9f0b285714e46241068df011cb2dca94b89a3950b4ac551040210c12717f59bd8753cb07fb77a38
 SHA512 
db9660107e3ce9dec436ad0aeaba922b1a883a016ad19bb1946b310f2b97168451c72803f5f6fceec68ca766fd30720dc8b6d5fcdcd8f52543bc707341c30737
+DIST NetworkManager-fortisslvpn-1.2.6.tar.xz 324048 BLAKE2B 
1e3aeab2df0b91b09fba1678861215f164251dc1f51c12c0cdbb4c53c939849d75c5f70552e608a11a0c9c7890a15d5dd4b218c7c440c92bfa8df157ff20babf
 SHA512 
5f1bd180a810ca778bfc4d58522e827281a941f6a9b63bcbcadf42f94edadbe556db6693d77a55f42422fa657b37fc64df9480f4ae691151fa65688247bce69d
 DIST NetworkManager-fortisslvpn-1.2.8.tar.xz 325100 BLAKE2B 
9449bbec99ee50c2c0b9cc1a74d8714e71995c17d2c1fa206134b71a1ea448be8fd86711ce0743f38e86ccd330eb7bc7e4cb57c2093001ac1b301b00e5c8f25e
 SHA512 
5a602b872b1efbd8d9ed2f32d05ec8560f0a923dfdf58e7a775010ee2182790b8cbe7c2a6c8d1198eba47c66fddecf178e1c454d1ac74c10a63c75c603eeafc8

diff --git 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
new file mode 100644
index 000..94074c6b078
--- /dev/null
+++ 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME_ORG_MODULE="NetworkManager-${PN##*-}"
+GNOME2_LA_PUNT="yes"
+GNOME2_EAUTORECONF="yes"
+
+inherit gnome2
+
+DESCRIPTION="NetworkManager Fortinet SSLVPN compatible plugin"
+HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="gtk"
+
+RDEPEND="
+   >=net-misc/networkmanager-1.2:=
+   >=dev-libs/glib-2.32:2
+   net-dialup/ppp:=
+   >=net-vpn/openfortivpn-1.2.0
+   gtk? (
+   >=app-crypt/libsecret-0.18
+   >=gnome-extra/nm-applet-1.2.0
+   >=x11-libs/gtk+-3.4:3
+   )
+"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+   >=dev-util/intltool-0.35
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   # Upstream patch e5d476076e068f58ef4fa938f09945159fce36a6
+   "${FILESDIR}"/${P}-location-fix.diff
+   # Upstream patch 4195187fbe5be348222c9a8472f7c9cf0e51d346
+   "${FILESDIR}"/${P}-nm-utils-dependency-fix.diff
+)
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   --with-dist-version=Gentoo \
+   --localstatedir=/var \
+   $(use_with gtk gnome)
+}



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

2018-05-07 Thread Maxim Koltsov
commit: 7ab0ed63a73cec9b2838b50e5a5050be58765f44
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon May  7 08:54:56 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon May  7 08:55:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ab0ed63

net-misc/networkmanager-fortisslvpn: remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-misc/networkmanager-fortisslvpn/Manifest   |  1 -
 .../networkmanager-fortisslvpn-1.2.2.ebuild| 51 --
 2 files changed, 52 deletions(-)

diff --git a/net-misc/networkmanager-fortisslvpn/Manifest 
b/net-misc/networkmanager-fortisslvpn/Manifest
index 961011f8814..27c862cd0d8 100644
--- a/net-misc/networkmanager-fortisslvpn/Manifest
+++ b/net-misc/networkmanager-fortisslvpn/Manifest
@@ -1,3 +1,2 @@
-DIST NetworkManager-fortisslvpn-1.2.2.tar.xz 294576 BLAKE2B 
2cf672ad8b523cbfa42da5cda9ec3b56cd257f0993e4177aa9f0b285714e46241068df011cb2dca94b89a3950b4ac551040210c12717f59bd8753cb07fb77a38
 SHA512 
db9660107e3ce9dec436ad0aeaba922b1a883a016ad19bb1946b310f2b97168451c72803f5f6fceec68ca766fd30720dc8b6d5fcdcd8f52543bc707341c30737
 DIST NetworkManager-fortisslvpn-1.2.6.tar.xz 324048 BLAKE2B 
1e3aeab2df0b91b09fba1678861215f164251dc1f51c12c0cdbb4c53c939849d75c5f70552e608a11a0c9c7890a15d5dd4b218c7c440c92bfa8df157ff20babf
 SHA512 
5f1bd180a810ca778bfc4d58522e827281a941f6a9b63bcbcadf42f94edadbe556db6693d77a55f42422fa657b37fc64df9480f4ae691151fa65688247bce69d
 DIST NetworkManager-fortisslvpn-1.2.8.tar.xz 325100 BLAKE2B 
9449bbec99ee50c2c0b9cc1a74d8714e71995c17d2c1fa206134b71a1ea448be8fd86711ce0743f38e86ccd330eb7bc7e4cb57c2093001ac1b301b00e5c8f25e
 SHA512 
5a602b872b1efbd8d9ed2f32d05ec8560f0a923dfdf58e7a775010ee2182790b8cbe7c2a6c8d1198eba47c66fddecf178e1c454d1ac74c10a63c75c603eeafc8

diff --git 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.2.ebuild 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.2.ebuild
deleted file mode 100644
index 8cae2a63466..000
--- 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME_ORG_MODULE="NetworkManager-${PN##*-}"
-
-inherit gnome2 autotools
-
-DESCRIPTION="NetworkManager Fortinet SSLVPN compatible plugin"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="gtk"
-
-RDEPEND="
-   >=net-misc/networkmanager-1.1:=
-   >=dev-libs/glib-2.32:2
-   net-dialup/ppp:=
-   >=net-vpn/openfortivpn-1.2.0
-   gtk? (
-   >=app-crypt/libsecret-0.18
-   >=gnome-extra/nm-applet-1.2.0
-   >=x11-libs/gtk+-3.4:3
-   )
-"
-DEPEND="${RDEPEND}
-   sys-devel/gettext
-   >=dev-util/intltool-0.35
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # Upstream patch 377ba9ca7fb33f3fb2ba5258a5af666869947597
-   eapply "${FILESDIR}/${P}-location-fix.diff"
-
-   eapply_user
-
-   eautoreconf
-
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --with-dist-version=Gentoo \
-   --localstatedir=/var \
-   $(use_with gtk gnome)
-}



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

2018-05-07 Thread Maxim Koltsov
commit: 150a15985f446d433cc1d5b6ba66e915e532bbb5
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon May  7 08:42:34 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon May  7 08:43:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150a1598

net-misc/networkmanager-fortisslvpn: bump to 1.2.8

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-misc/networkmanager-fortisslvpn/Manifest   |  1 +
 .../networkmanager-fortisslvpn-1.2.8.ebuild| 42 ++
 2 files changed, 43 insertions(+)

diff --git a/net-misc/networkmanager-fortisslvpn/Manifest 
b/net-misc/networkmanager-fortisslvpn/Manifest
index d6d34973834..961011f8814 100644
--- a/net-misc/networkmanager-fortisslvpn/Manifest
+++ b/net-misc/networkmanager-fortisslvpn/Manifest
@@ -1,2 +1,3 @@
 DIST NetworkManager-fortisslvpn-1.2.2.tar.xz 294576 BLAKE2B 
2cf672ad8b523cbfa42da5cda9ec3b56cd257f0993e4177aa9f0b285714e46241068df011cb2dca94b89a3950b4ac551040210c12717f59bd8753cb07fb77a38
 SHA512 
db9660107e3ce9dec436ad0aeaba922b1a883a016ad19bb1946b310f2b97168451c72803f5f6fceec68ca766fd30720dc8b6d5fcdcd8f52543bc707341c30737
 DIST NetworkManager-fortisslvpn-1.2.6.tar.xz 324048 BLAKE2B 
1e3aeab2df0b91b09fba1678861215f164251dc1f51c12c0cdbb4c53c939849d75c5f70552e608a11a0c9c7890a15d5dd4b218c7c440c92bfa8df157ff20babf
 SHA512 
5f1bd180a810ca778bfc4d58522e827281a941f6a9b63bcbcadf42f94edadbe556db6693d77a55f42422fa657b37fc64df9480f4ae691151fa65688247bce69d
+DIST NetworkManager-fortisslvpn-1.2.8.tar.xz 325100 BLAKE2B 
9449bbec99ee50c2c0b9cc1a74d8714e71995c17d2c1fa206134b71a1ea448be8fd86711ce0743f38e86ccd330eb7bc7e4cb57c2093001ac1b301b00e5c8f25e
 SHA512 
5a602b872b1efbd8d9ed2f32d05ec8560f0a923dfdf58e7a775010ee2182790b8cbe7c2a6c8d1198eba47c66fddecf178e1c454d1ac74c10a63c75c603eeafc8

diff --git 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild
new file mode 100644
index 000..83207b80082
--- /dev/null
+++ 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.8.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME_ORG_MODULE="NetworkManager-${PN##*-}"
+GNOME2_LA_PUNT="yes"
+GNOME2_EAUTORECONF="yes"
+
+inherit gnome2
+
+DESCRIPTION="NetworkManager Fortinet SSLVPN compatible plugin"
+HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="gtk"
+
+RDEPEND="
+   >=net-misc/networkmanager-1.2:=
+   >=dev-libs/glib-2.32:2
+   net-dialup/ppp:=
+   >=net-vpn/openfortivpn-1.2.0
+   gtk? (
+   >=app-crypt/libsecret-0.18
+   >=gnome-extra/nm-applet-1.2.0
+   >=x11-libs/gtk+-3.4:3
+   )
+"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+   >=dev-util/intltool-0.35
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   --with-dist-version=Gentoo \
+   --localstatedir=/var \
+   $(use_with gtk gnome)
+}



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

2018-05-07 Thread Maxim Koltsov
commit: c58e9b6c50835746a1294d413265ccb0cc62a825
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon May  7 08:43:01 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon May  7 08:43:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58e9b6c

net-misc/networkmanager-fortisslvpn: remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-misc/networkmanager-fortisslvpn/Manifest   |  1 -
 .../networkmanager-fortisslvpn-1.2.6.ebuild| 49 --
 2 files changed, 50 deletions(-)

diff --git a/net-misc/networkmanager-fortisslvpn/Manifest 
b/net-misc/networkmanager-fortisslvpn/Manifest
index 961011f8814..0ff05687afe 100644
--- a/net-misc/networkmanager-fortisslvpn/Manifest
+++ b/net-misc/networkmanager-fortisslvpn/Manifest
@@ -1,3 +1,2 @@
 DIST NetworkManager-fortisslvpn-1.2.2.tar.xz 294576 BLAKE2B 
2cf672ad8b523cbfa42da5cda9ec3b56cd257f0993e4177aa9f0b285714e46241068df011cb2dca94b89a3950b4ac551040210c12717f59bd8753cb07fb77a38
 SHA512 
db9660107e3ce9dec436ad0aeaba922b1a883a016ad19bb1946b310f2b97168451c72803f5f6fceec68ca766fd30720dc8b6d5fcdcd8f52543bc707341c30737
-DIST NetworkManager-fortisslvpn-1.2.6.tar.xz 324048 BLAKE2B 
1e3aeab2df0b91b09fba1678861215f164251dc1f51c12c0cdbb4c53c939849d75c5f70552e608a11a0c9c7890a15d5dd4b218c7c440c92bfa8df157ff20babf
 SHA512 
5f1bd180a810ca778bfc4d58522e827281a941f6a9b63bcbcadf42f94edadbe556db6693d77a55f42422fa657b37fc64df9480f4ae691151fa65688247bce69d
 DIST NetworkManager-fortisslvpn-1.2.8.tar.xz 325100 BLAKE2B 
9449bbec99ee50c2c0b9cc1a74d8714e71995c17d2c1fa206134b71a1ea448be8fd86711ce0743f38e86ccd330eb7bc7e4cb57c2093001ac1b301b00e5c8f25e
 SHA512 
5a602b872b1efbd8d9ed2f32d05ec8560f0a923dfdf58e7a775010ee2182790b8cbe7c2a6c8d1198eba47c66fddecf178e1c454d1ac74c10a63c75c603eeafc8

diff --git 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild 
b/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
deleted file mode 100644
index 94074c6b078..000
--- 
a/net-misc/networkmanager-fortisslvpn/networkmanager-fortisslvpn-1.2.6.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME_ORG_MODULE="NetworkManager-${PN##*-}"
-GNOME2_LA_PUNT="yes"
-GNOME2_EAUTORECONF="yes"
-
-inherit gnome2
-
-DESCRIPTION="NetworkManager Fortinet SSLVPN compatible plugin"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="gtk"
-
-RDEPEND="
-   >=net-misc/networkmanager-1.2:=
-   >=dev-libs/glib-2.32:2
-   net-dialup/ppp:=
-   >=net-vpn/openfortivpn-1.2.0
-   gtk? (
-   >=app-crypt/libsecret-0.18
-   >=gnome-extra/nm-applet-1.2.0
-   >=x11-libs/gtk+-3.4:3
-   )
-"
-DEPEND="${RDEPEND}
-   sys-devel/gettext
-   >=dev-util/intltool-0.35
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # Upstream patch e5d476076e068f58ef4fa938f09945159fce36a6
-   "${FILESDIR}"/${P}-location-fix.diff
-   # Upstream patch 4195187fbe5be348222c9a8472f7c9cf0e51d346
-   "${FILESDIR}"/${P}-nm-utils-dependency-fix.diff
-)
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --with-dist-version=Gentoo \
-   --localstatedir=/var \
-   $(use_with gtk gnome)
-}



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

2018-05-05 Thread Maxim Koltsov
commit: 9866a6bdae70a5d1397dc190f79c2aca00e1ec41
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat May  5 17:46:14 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat May  5 17:46:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9866a6bd

media-video/subliminal: support Python 3.6

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-video/subliminal/subliminal-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/subliminal/subliminal-.ebuild 
b/media-video/subliminal/subliminal-.ebuild
index b79e7028e0d..31429196ed4 100644
--- a/media-video/subliminal/subliminal-.ebuild
+++ b/media-video/subliminal/subliminal-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# 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} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 PYTHON_REQ_USE='xml(+)'
 
 inherit distutils-r1 git-r3



[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/files/

2018-04-28 Thread Maxim Koltsov
commit: e1cab3f6338b0f166c12c58404c77bd092ed6fd1
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Apr 28 07:50:24 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Apr 28 11:28:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1cab3f6

x11-wm/awesome: remove unused patch

Closes: #8183

 .../awesome-3.5.6-fix-multi-instances-focus.patch  | 29 --
 1 file changed, 29 deletions(-)

diff --git a/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch 
b/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch
deleted file mode 100644
index da306d1fe49..000
--- a/x11-wm/awesome/files/awesome-3.5.6-fix-multi-instances-focus.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 1c27a69131428e9e733374c2a3676ca4ecee45d2
-Author: Kimball Thurston <kdt...@gmail.com>
-Date:   Tue Dec 22 21:46:17 2015 -0800
-
-Fix focus handling with multiple awesome instances
-
-When there are multiple X11 screens (i.e. :0.0 and :0.1) for zaphod mode
-style X setups, this triggers a refresh of focus when the instance
-running on a particular root receives the mouse
-
-Fixes https://github.com/awesomeWM/awesome/issues/599.
-
-diff --git a/event.c b/event.c
-index db70e2c..80d6bd6 100644
 a/event.c
-+++ b/event.c
-@@ -554,6 +554,12 @@ event_handle_enternotify(xcb_enter_notify_event_t *ev)
- }
- lua_pop(globalconf.L, 1);
- }
-+else if (ev->event == globalconf.screen->root) {
-+/* When there are multiple X screens with awesome running separate
-+ * instances, reset focus.
-+ */
-+globalconf.focus.need_update = true;
-+}
- }
-
- /** The focus in event handler.



[gentoo-commits] repo/gentoo:master commit in: net-misc/connman/files/, net-misc/connman/

2018-04-22 Thread Maxim Koltsov
commit: a093754f351397ff2794e337fd823fecd8b64144
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 22 18:19:16 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 22 18:21:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a093754f

net-misc/connman: fix compilation

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

 net-misc/connman/connman-1.35-r1.ebuild  |  1 +
 .../files/connman-1.35-include-ifbridge-before-netinet.patch | 12 
 2 files changed, 13 insertions(+)

diff --git a/net-misc/connman/connman-1.35-r1.ebuild 
b/net-misc/connman/connman-1.35-r1.ebuild
index 6805bf58a4d..67a8c779709 100644
--- a/net-misc/connman/connman-1.35-r1.ebuild
+++ b/net-misc/connman/connman-1.35-r1.ebuild
@@ -40,6 +40,7 @@ DEPEND="${RDEPEND}
 PATCHES=(
"${FILESDIR}/${PN}-1.33-polkit-configure-check-fix.patch"
"${FILESDIR}/${PN}-1.33-resolv-conf-overwrite.patch"
+   "${FILESDIR}/${PN}-1.35-include-ifbridge-before-netinet.patch"
 )
 
 src_prepare() {

diff --git 
a/net-misc/connman/files/connman-1.35-include-ifbridge-before-netinet.patch 
b/net-misc/connman/files/connman-1.35-include-ifbridge-before-netinet.patch
new file mode 100644
index 000..53f3c194db6
--- /dev/null
+++ b/net-misc/connman/files/connman-1.35-include-ifbridge-before-netinet.patch
@@ -0,0 +1,12 @@
+--- connman-1.35/src/tethering.c
 connman-1.35/src/tethering.c
+@@ -35,8 +35,8 @@ 
+ #include 
+ #include 
+ #include 
+-#include 
+ #include 
++#include 
+ 
+ #include "connman.h"
+ 



[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-04-21 Thread Maxim Koltsov
commit: d52e3190f8d7c834c1aa6f8e8793b3839adfcf6a
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Apr 21 17:22:29 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Apr 21 17:22:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52e3190

x11-wm/awesome: update  ebuild

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/awesome-.ebuild | 41 --
 1 file changed, 31 insertions(+), 10 deletions(-)

diff --git a/x11-wm/awesome/awesome-.ebuild 
b/x11-wm/awesome/awesome-.ebuild
index d26ba4a2ba9..ec01a3cc9a5 100644
--- a/x11-wm/awesome/awesome-.ebuild
+++ b/x11-wm/awesome/awesome-.ebuild
@@ -11,16 +11,17 @@ EGIT_REPO_URI="https://github.com/awesomeWM/${PN}.git;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="dbus doc elibc_FreeBSD gnome luajit"
+IUSE="dbus doc elibc_FreeBSD gnome luajit test"
 
 RDEPEND="
>=dev-lang/lua-5.1:0
+   luajit? ( dev-lang/luajit:2 )
dev-libs/glib:2
>=dev-libs/libxdg-basedir-1
-   >=dev-lua/lgi-0.7
+   >=dev-lua/lgi-0.8
x11-libs/cairo[xcb]
x11-libs/gdk-pixbuf:2
-   >=x11-libs/libxcb-1.6
+   >=x11-libs/libxcb-1.6[xkb]
>=x11-libs/pango-1.19.3[introspection]
>=x11-libs/startup-notification-0.10_p20110426
>=x11-libs/xcb-util-0.3.8
@@ -32,7 +33,8 @@ RDEPEND="
x11-libs/libxkbcommon[X]
>=x11-libs/libX11-1.3.99.901
dbus? ( >=sys-apps/dbus-1 )
-   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
+   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )
+"
 
 # graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
 DEPEND="${RDEPEND}
@@ -44,9 +46,16 @@ DEPEND="${RDEPEND}
>=x11-proto/xcb-proto-1.5
>=x11-proto/xproto-7.0.15
doc? ( dev-lua/ldoc )
-   luajit? ( dev-lang/luajit:2 )"
+   test? (
+   app-shells/zsh
+   x11-base/xorg-server[xvfb]
+   dev-lua/busted
+   dev-lua/luacheck
+   )
+"
 
-DOCS=( docs/{00-authors,01-readme,02-contributing}.md )
+# Skip installation of README.md by einstalldocs, which leads to broken symlink
+DOCS=()
 PATCHES=(
"${FILESDIR}/${PN}-4.0-convert-path.patch"  # bug #408025
"${FILESDIR}/${PN}-xsession.patch"  # bug #408025
@@ -54,20 +63,29 @@ PATCHES=(
 )
 
 src_configure() {
+   # Compression of manpages is handled by portage
local mycmakeargs=(
-DSYSCONFDIR="${EPREFIX}"/etc
+   -DCOMPRESS_MANPAGES=OFF
-DWITH_DBUS=$(usex dbus)
-   -DWITH_GENERATE_DOC=$(usex doc $(usex doc) n)
+   -DGENERATE_DOC=$(usex doc)
+   -DAWESOME_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
)
-   if [ $(usex luajit) = "yes" ]; then
-   mycmakeargs+=('-DLUA_INCLUDE_DIR=/usr/include/luajit-2.0')
-   mycmakeargs+=('-DLUA_LIBRARY=/usr/lib/libluajit-5.1.so')
+   if use luajit; then
+   
mycmakeargs+=("-DLUA_INCLUDE_DIR=${EPREFIX}/usr/include/luajit-2.0")
+   
mycmakeargs+=("-DLUA_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libluajit-5.1.so")
fi
cmake-utils_src_configure
 }
 
+src_test() {
+   # awesome's test suite starts Xvfb by itself, no need for virtualx 
eclass
+   HEADLESS=1 cmake-utils_src_make check -j1
+}
+
 src_install() {
cmake-utils_src_install
+   rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
 
pax-mark m "${ED%/}"/usr/bin/awesome
 
@@ -87,6 +105,9 @@ src_install() {
insinto /usr/share/xsessions
doins "${FILESDIR}"/${PN}-gnome-xsession.desktop
fi
+
+   # This directory contains SVG images which we don't want to compress
+   use doc && touch "${ED}"/usr/share/doc/${PF}/doc/images.ecompress.skip
 }
 
 pkg_postinst() {



[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-04-21 Thread Maxim Koltsov
commit: 294503d23981d8381422af4a30e7bd856ba296cd
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Apr 21 17:14:23 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Apr 21 17:14:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=294503d2

x11-wm/awesome: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/Manifest|   1 -
 x11-wm/awesome/awesome-3.5.6-r2.ebuild | 136 -
 x11-wm/awesome/awesome-4.2-r1.ebuild   | 120 -
 3 files changed, 257 deletions(-)

diff --git a/x11-wm/awesome/Manifest b/x11-wm/awesome/Manifest
index 39df01fc758..2854b9d5c07 100644
--- a/x11-wm/awesome/Manifest
+++ b/x11-wm/awesome/Manifest
@@ -1,3 +1,2 @@
-DIST awesome-3.5.6.tar.xz 720112 BLAKE2B 
38836f4a90181335ffa282af57bf738635f3935b81b3bea5ec4e7c4b5142eb5031a642fd6252999557deb73cf7ed6d725d1900c157f894fd40c8b250c5895aaf
 SHA512 
8d89bf46956276a8bcf106bb255c051e8382b08617e17691134a8f3e5db3ec9f7773581c02ce62d23e72499f7b1e60fe4322c211e41219b5bffd1897a96f6cf6
 DIST awesome-3.5.9.tar.xz 723084 BLAKE2B 
96f4c5df98147399f28d1b1455ac53800f969599486c2f79b73ba36cfa237270cd5972d4e10e0a4f774a54dfa92948bba5d2e0438687d36739e12c3f5ecc
 SHA512 
6a4c679b293e8cd85d1f7e13f6dea704cbb267e42b9260496a54b657a66d6148aae51521d802d61baaeb23df0d4a8ad0b28d9dc922ea5da2a347b4251cce5e25
 DIST awesome-4.2.tar.xz 987024 BLAKE2B 
b2aaa993bafa83121d165d21083dfcac825e373be9547490f8b93b8e8b0f90470395a0238affaf9990f719b8bd2f36a255f6468b6422406787a3c96946c4e831
 SHA512 
134dd3625c86243861b3d0701cc8bfd8c00986d7027f0832016c3f5e59e6b9a1ef2f677bb0d1d66ece63449533e4b13d8d7388e96e6f9014212030a79f163e09

diff --git a/x11-wm/awesome/awesome-3.5.6-r2.ebuild 
b/x11-wm/awesome/awesome-3.5.6-r2.ebuild
deleted file mode 100644
index cd7b7ca16ca..000
--- a/x11-wm/awesome/awesome-3.5.6-r2.ebuild
+++ /dev/null
@@ -1,136 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit cmake-utils eutils
-
-DESCRIPTION="A dynamic floating and tiling window manager"
-HOMEPAGE="http://awesome.naquadah.org/;
-SRC_URI="http://awesome.naquadah.org/download/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86 ~x86-fbsd"
-IUSE="dbus doc elibc_FreeBSD gnome"
-
-COMMON_DEPEND="
-   >=dev-lang/lua-5.1:0
-   dev-libs/glib:2
-   >=dev-libs/libxdg-basedir-1
-   >=dev-lua/lgi-0.7
-   x11-libs/cairo[xcb]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/libxcb-1.6
-   >=x11-libs/pango-1.19.3[introspection]
-   >=x11-libs/startup-notification-0.10_p20110426
-   >=x11-libs/xcb-util-0.3.8
-   x11-libs/xcb-util-cursor
-   x11-libs/libXcursor
-   >=x11-libs/libX11-1.3.99.901
-   dbus? ( >=sys-apps/dbus-1 )
-   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
-
-# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
-DEPEND="${COMMON_DEPEND}
-   >=app-text/asciidoc-8.4.5
-   app-text/xmlto
-   dev-util/gperf
-   virtual/pkgconfig
-   media-gfx/imagemagick[png]
-   >=x11-proto/xcb-proto-1.5
-   >=x11-proto/xproto-7.0.15
-   doc? (
-   app-doc/doxygen
-   media-gfx/graphviz
-   )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DOCS="AUTHORS BUGS PATCHES README STYLE"
-
-src_prepare() {
-   # bug #408025
-   epatch "${FILESDIR}/${PN}-3.5_rc1-convert-path.patch"
-   epatch "${FILESDIR}/${PN}-xsession.patch"
-
-   # bug #507604
-   epatch "${FILESDIR}/${PN}-3.5.5-util.lua-xdg-icons-fix.patch"
-   # bug #509658
-   epatch "${FILESDIR}/${PN}-3.5.5-cflag-cleanup.patch"
-
-   # bug #571544
-   epatch "${FILESDIR}/${P}-fix-multi-instances-focus.patch"
-
-   epatch_user
-}
-
-src_configure() {
-   mycmakeargs=(
-   -DSYSCONFDIR="${EPREFIX}"/etc
-   $(cmake-utils_use_with dbus DBUS)
-   $(cmake-utils_use doc GENERATE_DOC)
-   )
-
-   cmake-utils_src_configure
-}
-
-src_compile() {
-   local myargs="all"
-
-   if use doc ; then
-   myargs="${myargs} doc"
-   fi
-   cmake-utils_src_make ${myargs}
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   if use doc ; then
-   (
-   cd "${CMAKE_BUILD_DIR}"/doc
-   mv html doxygen
-   dohtml -r doxygen || die
-   )
-   fi
-   rm -rf "${ED}"/usr/share/doc/${PN} || die "Cleanup of dupe docs failed"
-
-   exeinto /etc/X11/Sessions
-   newexe "${FILESDIR}"/${PN}-session ${PN} || die
-

[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-04-21 Thread Maxim Koltsov
commit: bb778647735647a9bff2c9d7c8c4f6408a06675e
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sat Apr 21 17:16:33 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Apr 21 17:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb778647

x11-wm/awesome: enable full test suite

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/awesome-4.2-r2.ebuild | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/x11-wm/awesome/awesome-4.2-r2.ebuild 
b/x11-wm/awesome/awesome-4.2-r2.ebuild
index 0a12509b3fc..68a8485c85c 100644
--- a/x11-wm/awesome/awesome-4.2-r2.ebuild
+++ b/x11-wm/awesome/awesome-4.2-r2.ebuild
@@ -50,13 +50,10 @@ DEPEND="${RDEPEND}
test? (
app-shells/zsh
x11-base/xorg-server[xvfb]
+   dev-lua/busted
+   dev-lua/luacheck
)
 "
-# Uncomment when these are keyworded on ppc/ppc64 (automagic deps)
-#  dev-lua/busted
-#  dev-lua/luacheck
-#  )
-#"
 
 # Skip installation of README.md by einstalldocs, which leads to broken symlink
 DOCS=()



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

2018-04-19 Thread Maxim Koltsov
commit: c12da605856d183324eff634f7bff079dcf08c0e
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Thu Apr 19 13:23:17 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Thu Apr 19 13:23:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c12da605

Switch PyPI mirror to new domain (pypi.org)

Bug: https://bugs.gentoo.org/653540

 profiles/thirdpartymirrors | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/thirdpartymirrors b/profiles/thirdpartymirrors
index 55c8cd93e96..c8c0df37a1a 100644
--- a/profiles/thirdpartymirrors
+++ b/profiles/thirdpartymirrors
@@ -27,7 +27,7 @@ openbsd   https://mirrors.evowise.com/pub/OpenBSD/
 opensslftp://ftp.openssl.org ftp://ftp.linux.hr/pub/openssl/ 
http://artfiles.org/openssl.org/ ftp://ftp.pca.dfn.de/pub/tools/net/openssl/ 
ftp://guest.kuria.katowice.pl/pub/openssl/ ftp://ftp.fi.muni.cz/pub/openssl/ 
http://openssl.skazkaforyou.com/
 opera  ftp://ftp.opera.com/pub/opera 
ftp://ftp.tu-cottbus.de/pub/net/opera ftp://ftp.task.gda.pl/pub/opera 
ftp://ftp.ntua.gr/pub/www/Opera ftp://ftp.rediris.es/mirror/opera 
ftp://ftp.heanet.ie/pub/opera
 postgresql https://ftp.postgresql.org/pub/
-pypi   https://pypi.python.org/packages/source 
https://files.pythonhosted.org/packages/source
+pypi   https://pypi.org/packages/source 
https://files.pythonhosted.org/packages/source
 qmail  http://www.qmail.org/ http://qmail.geto.net/ 
http://qmail-mirror.jms1.net/ http://qmail.pandakc.com/ 
http://qmail.mirrors.auchnet.org/ http://qmail.glasswings.com.au/ 
http://qmail.ii.net/ http://infobase.ibase.com.hk/qmail/ 
http://qmail.morva.net/ http://qmail.teraren.com/ 
http://qmail.mirror.cdnetworks.com/ http://qmail.yongbok.net/ 
http://qmail.mirror.choon.net/ http://qmail.cbox.biz/ http://qmail.cbox.biz/ 
http://qmail.mirrors.ovh.net/ftp.qmail.org/ http://qmail.rasjonell.net/ 
http://qmail.europnews.de/ http://qmail.kendzorra.org/ 
http://qmail.mirror.gsnw.org/ http://mirrors.ntua.gr/qmail/ 
http://qmail.cti.gr/ http://qmail.dnsbeans.com/ http://qmail.hypergrid.it/ 
http://qmail.omnis.ch/ http://qmail.linorg.usp.br/ http://qmail.cavsystems.net/ 
http://qmail.mivzakim.net/ http://qmail.mirror.rise.ph/
 quakeunity http://www.mirrorservice.org/sites/quakeunity.com
 rubygems   https://rubygems.org/gems



[gentoo-commits] repo/gentoo:master commit in: sys-auth/fingerprint-gui/

2018-03-26 Thread Maxim Koltsov
commit: 929b5678dcf404a2fb3bf175ee69c4b1222098db
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 26 21:20:02 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 26 21:20:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929b5678

sys-auth/fingerprint-gui: bump to 1.09 with Qt5

This is forked release sanctioned by upstream.

Bug: https://bugs.gentoo.org/638826
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-auth/fingerprint-gui/Manifest  |   1 +
 .../fingerprint-gui/fingerprint-gui-1.09.ebuild| 114 +
 2 files changed, 115 insertions(+)

diff --git a/sys-auth/fingerprint-gui/Manifest 
b/sys-auth/fingerprint-gui/Manifest
index c0379a9e586..263764a7c3b 100644
--- a/sys-auth/fingerprint-gui/Manifest
+++ b/sys-auth/fingerprint-gui/Manifest
@@ -1 +1,2 @@
 DIST fingerprint-gui-1.07.tar.gz 7042051 BLAKE2B 
c9b371e6344fd2a838a4c99a2962362a8aece8c3bce995926ff935453cf2d0d6b6b5f189e359638eb717bdba167b67d4ac336d7035646c7e68b62d5140e15c1d
 SHA512 
b63bc86cbff29587a7fe164dd9344178006079f2520265ecd3d96e57bf584694246e17db780051dcacfe39dc6bd4da437b16e33d2f7cb6b474ae61dfbced6a3b
+DIST fingerprint-gui-1.09.tar.gz 7037943 BLAKE2B 
b35b8a1c5f53752709da44903961527c01db20773298e4636d8c316946cd7d23022c9407081c55ba5f6ec55d9ed53b7f8ef858c44a623873834fa1cbd6aa941f
 SHA512 
c4fb22368d82d72586f80009b5adb9db0a8e8777c3d1c1f23cf58a21f718a3e3d05bbc90fff295be969cf7f744f037fb886e975e626cf6d599f8f6b5f8323724

diff --git a/sys-auth/fingerprint-gui/fingerprint-gui-1.09.ebuild 
b/sys-auth/fingerprint-gui/fingerprint-gui-1.09.ebuild
new file mode 100644
index 000..2d7b9377d7c
--- /dev/null
+++ b/sys-auth/fingerprint-gui/fingerprint-gui-1.09.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit qmake-utils readme.gentoo-r1 udev user gnome2-utils
+
+DESCRIPTION="Use Fingerprint Devices with Linux"
+HOMEPAGE="http://www.ullrich-online.cc/fingerprint/ 
https://github.com/maksbotan/fingerprint-gui;
+SRC_URI="https://github.com/maksbotan/fingerprint-gui/archive/v${PV}-qt5.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+upekbsapi"
+
+DEPEND="
+   app-crypt/qca[qt5(+)]
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   dev-qt/qtx11extras:5
+   sys-auth/libfprint
+   sys-auth/polkit-qt[qt5(+)]
+   sys-libs/pam
+   x11-libs/libX11
+   x11-proto/xproto
+   x11-libs/libfakekey
+   dev-libs/libusb
+   !sys-auth/thinkfinger
+"
+RDEPEND="${DEPEND}"
+
+QA_SONAME="/usr/lib/libbsapi.so.* /usr/lib64/libbsapi.so.*"
+QA_PRESTRIPPED="/usr/lib/libbsapi.so.* /usr/lib64/libbsapi.so.*"
+QA_FLAGS_IGNORED="/usr/lib/libbsapi.so.* /usr/lib64/libbsapi.so.*"
+
+S="${WORKDIR}/${P}-qt5"
+
+HTML_DOCS=( doc/Hacking.html doc/Step-by-step-manual.html )
+
+src_prepare() {
+   eapply_user
+
+   sed -e '/Icon=/s:=.*:=Fingerprint:' \
+   -i bin/${PN}/${PN}.desktop || die
+   sed -e "s:/etc/udev/rules.d:\"$(get_udevdir)\"/rules.d:g" \
+   -i bin/${PN%-gui}-helper/${PN%-gui}-helper.pro || die
+   sed -e 's:GROUP="plugdev":GROUP="fingerprint":' \
+   -i bin/fingerprint-helper/92-fingerprint-gui-uinput.rules \
+   -i upek/91-fingerprint-gui-upek.rules || die
+   sed -e '/DOCDIR\s\+=/s:'${PN}':'${PF}/html':' \
+   -i bin/fingerprint-gui/fingerprint-gui.pro || die
+   sed -e '/#define DOCDIR/s:'${PN}':'${PF}/html':' \
+   -i include/Globals.h || die
+}
+
+src_configure() {
+   eqmake5 \
+   PREFIX="${EROOT}"usr \
+   LIB="$(get_libdir)" \
+   LIBEXEC=libexec \
+   LIBPOLKIT_QT=LIBPOLKIT_QT_1_1
+}
+
+src_install() {
+   export INSTALL_ROOT="${D}" #submakes need it as well, re-install fails 
otherwise.
+   emake -j1 install
+   if use upekbsapi ; then
+   use amd64 && dolib.so upek/lib64/libbsapi.so*
+   use x86 && dolib.so upek/lib/libbsapi.so*
+   udev_dorules upek/91-fingerprint-gui-upek.rules
+   insinto /etc
+   doins upek/upek.cfg
+   #dodir /var/upek_data
+   #fowners root:plugdev /var/upek_data
+   #fperms 0775 /var/upek_data
+   fi
+   doicon src/res/Fingerprint.png
+
+   einstalldocs
+
+   keepdir /var/lib/fingerprint-gui
+
+   readme.gentoo_create_doc
+}
+
+pkg_preinst() {
+   enewgroup fingerprint
+
+   gnome2_icon_cache_update
+}
+
+pkg_postinst() {
+   einfo "Fixing permisisons of fingerprints..."
+   find "${EROOT}"/var/lib/fingerprint

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

2018-03-26 Thread Maxim Koltsov
commit: 8abee16e1ebb1e19328dcd0c5105b9bc4320da45
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 26 20:03:36 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 26 20:03:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8abee16e

net-misc/teamviewer: drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/teamviewer/Manifest   |   2 -
 net-misc/teamviewer/teamviewer-13.0.5693-r2.ebuild | 129 -
 2 files changed, 131 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 4c903bce11f..78534e2c083 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,5 +1,3 @@
 DIST teamviewer-9.0.32150.deb 22898922 BLAKE2B 
799aa6f48b69247a2695ca745e85d02ffa73df1375203dfc9da339673e6c18d861c4146ddbdc509bdc1114d5a2a7e5fdd4acf3c6e5da61fbba5aaa02fa4e3cfd
 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
-DIST teamviewer_13.0.5693_amd64.tar.xz 9694952 BLAKE2B 
650814c3c63897e1024836528c6eaa4cc81064ffa16bece7f8d2fe633457e2795e2cef847175a88dbb389ba61d2597a02292e6bf610da25c92f97152560ea355
 SHA512 
75886b6d00991968ae0b0d3c55b4c07c6f1b1b24488b2d5ae866e35c26ee6e673e500c87845ba6850ffdc80e4612feff0fc5bbe9e39f2d0a94582e1800471dcc
-DIST teamviewer_13.0.5693_i386.tar.xz 9583892 BLAKE2B 
8e477978825431a01b37b61c28b903b36cd81365c7ec5df4ca8d4aec1ce8d24b49af60ed6c99c863acd26405254ae78c4ae4dfef1f8b7a5fb882e281c3c4f125
 SHA512 
be5e8e00755a38f2c70ceba88d9fb87c2cc8e9e284c86e22f95dddf919a37ee1f24ef1e02f042a339eaf863dbf255c873e3edcb038c04202b4ab0460e50b2503
 DIST teamviewer_13.0.9865_amd64.tar.xz 11562916 BLAKE2B 
93d3a31f43c530e96202c1ce9fba7bcb24553068662d8d61869ddd38b447ae859bae8fc9a9228985c6c858fcf9714e523a0649ca8dd487dd3dbe6e4ba4fc
 SHA512 
08983ed34a6fe227bd7be5b03fb74c2b64c16a973034db2645d71e641c1855a9186fbddf6bbdae2db5e1258df0de8e252d49b4f1b0bb6aad8d357aced7a01984
 DIST teamviewer_13.0.9865_i386.tar.xz 11540784 BLAKE2B 
b8fa47ec7572ed1b7eceb29f48af286ad565165498ea6f82c22f3d55181bcd70c1f380e719998a4c351ec3106216d7bde2461c23b9f84608152ae72c2f16d44c
 SHA512 
24b70e1d728f09fc4dec4e669409b8f979011842f022b75d718459f732668689c53470e3bd4b9f21bd1a9919feda2e452de0daeb242cbef4ae49ad2483213ec2

diff --git a/net-misc/teamviewer/teamviewer-13.0.5693-r2.ebuild 
b/net-misc/teamviewer/teamviewer-13.0.5693-r2.ebuild
deleted file mode 100644
index c8eeedebcf6..000
--- a/net-misc/teamviewer/teamviewer-13.0.5693-r2.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN=${PN}${PV/\.*}
-inherit eutils gnome2-utils systemd
-
-DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
-HOMEPAGE="https://www.teamviewer.com;
-SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
-   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
-
-LICENSE="TeamViewer MIT"
-SLOT="${PV/\.*}"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-
-DEPEND="sys-apps/sed"
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtquickcontrols:5
-   dev-qt/qtwebkit:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   sys-apps/dbus
-"
-
-RESTRICT="bindist mirror"
-
-# Silence QA messages
-QA_PREBUILT="opt/${MY_PN}/*"
-
-S="${WORKDIR}"/teamviewer
-
-src_prepare() {
-   default
-
-   # Switch operation mode from 'portable' to 'installed'
-   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
-
-   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
-   -i tv_bin/script/teamviewerd.service || die
-}
-
-src_install() {
-   local dst="/opt/${MY_PN}" # install destination
-
-   # Quirk:
-   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
-   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
-   # when changing the ABI of one of its dependencies. According to the
-   # TeamViewer devs, this binary is an unused remnant of previous Wine-
-   # based builds and will be removed in future releases anyway
-   rm tv_bin/script/libdepend
-
-   insinto ${dst}
-   doins -r tv_bin
-
-   # Set permissions for executables and libraries
-   for exe in $(find tv_bin -type f -executable -or -name '*.so'); do
-   fperms 755 ${dst}/${exe}
-   done
-
-   # No slotting here, binary expects this service path
-   newinitd "${FILESDIR}"/teamviewerd13.init teamviewerd
-   systemd_dounit tv_bin/

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

2018-03-26 Thread Maxim Koltsov
commit: 207918284e4228bde971caf76b5cdfa4dd7479b7
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 26 20:08:42 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 26 20:08:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20791828

net-misc/teamviewer: Bump to 13.1.3026

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/teamviewer/Manifest|   2 +
 net-misc/teamviewer/teamviewer-13.1.3026.ebuild | 129 
 2 files changed, 131 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 78534e2c083..c3885d2a130 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,3 +1,5 @@
 DIST teamviewer-9.0.32150.deb 22898922 BLAKE2B 
799aa6f48b69247a2695ca745e85d02ffa73df1375203dfc9da339673e6c18d861c4146ddbdc509bdc1114d5a2a7e5fdd4acf3c6e5da61fbba5aaa02fa4e3cfd
 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 DIST teamviewer_13.0.9865_amd64.tar.xz 11562916 BLAKE2B 
93d3a31f43c530e96202c1ce9fba7bcb24553068662d8d61869ddd38b447ae859bae8fc9a9228985c6c858fcf9714e523a0649ca8dd487dd3dbe6e4ba4fc
 SHA512 
08983ed34a6fe227bd7be5b03fb74c2b64c16a973034db2645d71e641c1855a9186fbddf6bbdae2db5e1258df0de8e252d49b4f1b0bb6aad8d357aced7a01984
 DIST teamviewer_13.0.9865_i386.tar.xz 11540784 BLAKE2B 
b8fa47ec7572ed1b7eceb29f48af286ad565165498ea6f82c22f3d55181bcd70c1f380e719998a4c351ec3106216d7bde2461c23b9f84608152ae72c2f16d44c
 SHA512 
24b70e1d728f09fc4dec4e669409b8f979011842f022b75d718459f732668689c53470e3bd4b9f21bd1a9919feda2e452de0daeb242cbef4ae49ad2483213ec2
+DIST teamviewer_13.1.3026_amd64.tar.xz 11500188 BLAKE2B 
98dab12224ea65cdb7c45f01a835cb50fd052e044cb2908a27e0324d5647c1bcc38565eca0c1e70e86fd96a9f70ddd4b6250f13cde1fd3c381be9af8ecb1805c
 SHA512 
30914b761833dd2720458eb3a3076f59e521bdf4fd50489e1cb7c0c80a05ef73c2fd5a9a59a33644e73b96d8db1616665a130e2781c39f35f6c5bfb64c7c7b9a
+DIST teamviewer_13.1.3026_i386.tar.xz 11343300 BLAKE2B 
c0170acf9c67f34755800a0200016dacb6f93f3f3805932fbf467dc19bb0213fce74363a0bc703af1c62b4c1bafda2257bd0cc2c52aad4dd1f22ae5a9fb2d486
 SHA512 
f7dac040de4a0ac3489ee5e911c3c278723cee2372bd42a4a929d3cb268f735eb73514a8d72cc49c82277869533289e3195936218be6db323e732c9c380e

diff --git a/net-misc/teamviewer/teamviewer-13.1.3026.ebuild 
b/net-misc/teamviewer/teamviewer-13.1.3026.ebuild
new file mode 100644
index 000..6c3cc7311e7
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-13.1.3026.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN=${PN}${PV/\.*}
+inherit eutils gnome2-utils systemd
+
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
+   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
+
+LICENSE="TeamViewer MIT"
+SLOT="${PV/\.*}"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/sed"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   sys-apps/dbus
+"
+
+RESTRICT="bindist mirror"
+
+# Silence QA messages
+QA_PREBUILT="opt/${MY_PN}/*"
+
+S="${WORKDIR}"/teamviewer
+
+src_prepare() {
+   default
+
+   # Switch operation mode from 'portable' to 'installed'
+   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
+
+   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
+   -i tv_bin/script/teamviewerd.service || die
+}
+
+src_install() {
+   local dst="/opt/${MY_PN}" # install destination
+
+   # Quirk:
+   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
+   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
+   # when changing the ABI of one of its dependencies. According to the
+   # TeamViewer devs, this binary is an unused remnant of previous Wine-
+   # based builds and will be removed in future releases anyway
+   rm tv_bin/script/libdepend
+
+   insinto ${dst}
+   doins -r tv_bin
+
+   # Set permissions for executables and libraries
+   for exe in $(find tv_bin -type f -executable -or -name '*.so'); do
+   fperms 755 ${dst}/${exe}
+   done
+
+   # No slotting here, binary expects this service path
+   newinitd "${FILESDIR}"/teamviewerd13.init teamviewerd
+   systemd_dounit tv_bin/

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

2018-03-26 Thread Maxim Koltsov
commit: 85db31f0291b8a329e26a9535e8e4733eab3de85
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 26 10:09:11 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 26 10:09:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85db31f0

dev-python/socketpool: fix EXAMPLES in EAPI 6

Also don't install unneeded files in /usr/socketpool

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

 dev-python/socketpool/socketpool-0.5.3.ebuild | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-python/socketpool/socketpool-0.5.3.ebuild 
b/dev-python/socketpool/socketpool-0.5.3.ebuild
index 60c307504a9..e73308b6f45 100644
--- a/dev-python/socketpool/socketpool-0.5.3.ebuild
+++ b/dev-python/socketpool/socketpool-0.5.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
@@ -26,6 +26,12 @@ python_test() {
 }
 
 python_install_all() {
-   use examples && local EXAMPLES=( examples/. )
+   if use examples; then
+   insinto /usr/share/doc/${PF}
+   doins -r examples
+   fi
distutils-r1_python_install_all
+
+   # package installs unneeded LICENSE files here
+   rm -rf "${ED}"/usr/socketpool || die
 }



[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-03-25 Thread Maxim Koltsov
commit: 0a5197761857d97984d472ac3df6f81a9d3d450d
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Mar 25 22:02:54 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Mar 25 22:04:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a519776

x11-wm/awesome: several improvements in 4.x branch

- Add luajit to RDEPEND and DEPEND
- Fix documentation installation paths (bug 628024)
- Add xvfb-based test suite
- Re-add dropeed x86-fbsd keyword

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

 x11-wm/awesome/awesome-4.2-r2.ebuild | 144 +++
 1 file changed, 144 insertions(+)

diff --git a/x11-wm/awesome/awesome-4.2-r2.ebuild 
b/x11-wm/awesome/awesome-4.2-r2.ebuild
new file mode 100644
index 000..0a12509b3fc
--- /dev/null
+++ b/x11-wm/awesome/awesome-4.2-r2.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eutils pax-utils versionator
+
+DESCRIPTION="A dynamic floating and tiling window manager"
+HOMEPAGE="https://awesomewm.org/;
+SRC_URI="https://github.com/awesomeWM/awesome-releases/raw/master/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="dbus doc elibc_FreeBSD gnome luajit test"
+
+RDEPEND="
+   >=dev-lang/lua-5.1:0
+   luajit? ( dev-lang/luajit:2 )
+   dev-libs/glib:2
+   >=dev-libs/libxdg-basedir-1
+   >=dev-lua/lgi-0.8
+   x11-libs/cairo[xcb]
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/libxcb-1.6[xkb]
+   >=x11-libs/pango-1.19.3[introspection]
+   >=x11-libs/startup-notification-0.10_p20110426
+   >=x11-libs/xcb-util-0.3.8
+   x11-libs/xcb-util-cursor
+   >=x11-libs/xcb-util-keysyms-0.3.4
+   >=x11-libs/xcb-util-wm-0.3.8
+   >=x11-libs/xcb-util-xrm-1.0
+   x11-libs/libXcursor
+   x11-libs/libxkbcommon[X]
+   >=x11-libs/libX11-1.3.99.901
+   dbus? ( >=sys-apps/dbus-1 )
+   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )
+"
+
+# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
+DEPEND="${RDEPEND}
+   >=app-text/asciidoc-8.4.5
+   app-text/xmlto
+   dev-util/gperf
+   virtual/pkgconfig
+   media-gfx/imagemagick[png]
+   >=x11-proto/xcb-proto-1.5
+   >=x11-proto/xproto-7.0.15
+   doc? ( dev-lua/ldoc )
+   test? (
+   app-shells/zsh
+   x11-base/xorg-server[xvfb]
+   )
+"
+# Uncomment when these are keyworded on ppc/ppc64 (automagic deps)
+#  dev-lua/busted
+#  dev-lua/luacheck
+#  )
+#"
+
+# Skip installation of README.md by einstalldocs, which leads to broken symlink
+DOCS=()
+PATCHES=(
+   "${FILESDIR}/${PN}-4.0-convert-path.patch"  # bug #408025
+   "${FILESDIR}/${PN}-xsession.patch"  # bug #408025
+   "${FILESDIR}/${PN}-4.0-cflag-cleanup.patch" # bug #509658
+)
+
+src_configure() {
+   # Compression of manpages is handled by portage
+   local mycmakeargs=(
+   -DSYSCONFDIR="${EPREFIX}"/etc
+   -DCOMPRESS_MANPAGES=OFF
+   -DWITH_DBUS=$(usex dbus)
+   -DGENERATE_DOC=$(usex doc)
+   -DAWESOME_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
+   )
+   if use luajit; then
+   
mycmakeargs+=("-DLUA_INCLUDE_DIR=${EPREFIX}/usr/include/luajit-2.0")
+   
mycmakeargs+=("-DLUA_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libluajit-5.1.so")
+   fi
+   cmake-utils_src_configure
+}
+
+src_test() {
+   # awesome's test suite starts Xvfb by itself, no need for virtualx 
eclass
+   HEADLESS=1 cmake-utils_src_make check -j1
+}
+
+src_install() {
+   cmake-utils_src_install
+   rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
+
+   pax-mark m "${ED%/}"/usr/bin/awesome
+
+   exeinto /etc/X11/Sessions
+   newexe "${FILESDIR}"/${PN}-session ${PN}
+
+   # GNOME-based awesome
+   if use gnome; then
+   # GNOME session
+   insinto /usr/share/gnome-session/sessions
+   newins "${FILESDIR}"/${PN}-gnome-3.session ${PN}-gnome.session
+
+   # Application launcher
+   domenu "${FILESDIR}"/${PN}-gnome.desktop
+
+   # X Session
+   insinto /usr/share/xsessions
+   doins "${FILESDIR}"/${PN}-gnome-xsession.desktop
+   fi
+
+   # This directory contains SVG images which we don't want to compress
+   use doc && touch "${ED}"/usr/share/doc/${PF}/doc/images.ecompress

[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-03-25 Thread Maxim Koltsov
commit: debc42e5fed69bfa257ee6be167198adde5b4eec
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Mar 25 18:59:50 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Mar 25 22:04:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=debc42e5

x11-wm/awesome: drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/awesome-4.2.ebuild | 112 --
 1 file changed, 112 deletions(-)

diff --git a/x11-wm/awesome/awesome-4.2.ebuild 
b/x11-wm/awesome/awesome-4.2.ebuild
deleted file mode 100644
index a579c0907b8..000
--- a/x11-wm/awesome/awesome-4.2.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils pax-utils
-
-DESCRIPTION="A dynamic floating and tiling window manager"
-HOMEPAGE="https://awesomewm.org/;
-SRC_URI="https://github.com/awesomeWM/awesome-releases/raw/master/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="dbus doc elibc_FreeBSD gnome luajit"
-
-RDEPEND="
-   >=dev-lang/lua-5.1:0
-   dev-libs/glib:2
-   >=dev-libs/libxdg-basedir-1
-   >=dev-lua/lgi-0.8
-   x11-libs/cairo[xcb]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/libxcb-1.6
-   >=x11-libs/pango-1.19.3[introspection]
-   >=x11-libs/startup-notification-0.10_p20110426
-   >=x11-libs/xcb-util-0.3.8
-   x11-libs/xcb-util-cursor
-   >=x11-libs/xcb-util-keysyms-0.3.4
-   >=x11-libs/xcb-util-wm-0.3.8
-   >=x11-libs/xcb-util-xrm-1.0
-   x11-libs/libXcursor
-   x11-libs/libxkbcommon[X]
-   >=x11-libs/libX11-1.3.99.901
-   dbus? ( >=sys-apps/dbus-1 )
-   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
-
-# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
-DEPEND="${RDEPEND}
-   >=app-text/asciidoc-8.4.5
-   app-text/xmlto
-   dev-util/gperf
-   virtual/pkgconfig
-   media-gfx/imagemagick[png]
-   >=x11-proto/xcb-proto-1.5
-   >=x11-proto/xproto-7.0.15
-   doc? ( dev-lua/ldoc )
-   luajit? ( dev-lang/luajit:2 )"
-
-DOCS=( docs/{00-authors,01-readme,02-contributing}.md )
-PATCHES=(
-   "${FILESDIR}/${PN}-4.0-convert-path.patch"  # bug #408025
-   "${FILESDIR}/${PN}-xsession.patch"  # bug #408025
-   "${FILESDIR}/${PN}-4.0-cflag-cleanup.patch" # bug #509658
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DSYSCONFDIR="${EPREFIX}"/etc
-   -DWITH_DBUS=$(usex dbus)
-   -DWITH_GENERATE_DOC=$(usex doc $(usex doc) n)
-   )
-   if use luajit; then
-   
mycmakeargs+=("-DLUA_INCLUDE_DIR=${EPREFIX}/usr/include/luajit-2.0")
-   
mycmakeargs+=("-DLUA_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libluajit-5.1.so")
-   fi
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   pax-mark m "${ED%/}"/usr/bin/awesome
-
-   exeinto /etc/X11/Sessions
-   newexe "${FILESDIR}"/${PN}-session ${PN}
-
-   # GNOME-based awesome
-   if use gnome; then
-   # GNOME session
-   insinto /usr/share/gnome-session/sessions
-   newins "${FILESDIR}"/${PN}-gnome-3.session ${PN}-gnome.session
-
-   # Application launcher
-   domenu "${FILESDIR}"/${PN}-gnome.desktop
-
-   # X Session
-   insinto /usr/share/xsessions
-   doins "${FILESDIR}"/${PN}-gnome-xsession.desktop
-   fi
-}
-
-pkg_postinst() {
-   # bug #447308
-   if use gnome; then
-   elog "You have enabled the gnome USE flag."
-   elog "Please note that quitting awesome won't kill your gnome 
session."
-   elog "To really quit the session, you should bind your quit key"
-   elog "to the following command:"
-   elog "  gnome-session-quit --logout"
-   elog "For more info visit"
-   elog "  https://bugs.gentoo.org/show_bug.cgi?id=447308;
-   fi
-
-   # bug #440724
-   elog "If you are having issues with Java application windows being"
-   elog "completely blank, try installing"
-   elog "  x11-misc/wmname"
-   elog "and setting the WM name to LG3D."
-   elog "For more info visit"
-   elog "  https://bugs.gentoo.org/show_bug.cgi?id=440724;
-}



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

2018-03-15 Thread Maxim Koltsov
commit: 08de62c8ccf3fc4339812e5a09059cd831e643b9
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Thu Mar 15 21:06:40 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Thu Mar 15 21:06:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08de62c8

dev-scheme/chicken: enable test phase

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../chicken/{chicken-4.13.0.ebuild => chicken-4.13.0-r1.ebuild}  | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-scheme/chicken/chicken-4.13.0.ebuild 
b/dev-scheme/chicken/chicken-4.13.0-r1.ebuild
similarity index 93%
rename from dev-scheme/chicken/chicken-4.13.0.ebuild
rename to dev-scheme/chicken/chicken-4.13.0-r1.ebuild
index 5a9f20b3cdc..6009657a0a8 100644
--- a/dev-scheme/chicken/chicken-4.13.0.ebuild
+++ b/dev-scheme/chicken/chicken-4.13.0-r1.ebuild
@@ -18,10 +18,6 @@ IUSE="doc"
 DEPEND=""
 RDEPEND=""
 
-# chicken's testsuite is not runnable before install
-# upstream has been notified of the issue
-RESTRICT="test"
-
 src_prepare() {
default
 
@@ -48,6 +44,11 @@ src_compile() {
HOSTSYSTEM="${CBUILD}"
 }
 
+src_test() {
+   cd tests
+   ./runtests.sh || die
+}
+
 src_install() {
# still can't run make in parallel for the install target
emake -j1 PLATFORM=linux PREFIX=/usr DESTDIR="${D}" 
HOSTSYSTEM="${CBUILD}" \



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

2018-03-15 Thread Maxim Koltsov
commit: 3fc960fbfc8ad6817e74586d29aed8537ed6b7c4
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Thu Mar 15 20:36:24 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Thu Mar 15 20:38:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fc960fb

dev-scheme/chicken: bump to 4.13.0

Improvements
- Use EAPI 6
- Don't pollute global scope
- Remove runtime-dep-only USE emacs
- Improve DESCRIPTION
- Generate 'modules.db' in postinst

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

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-scheme/chicken/Manifest  |  1 +
 dev-scheme/chicken/chicken-4.13.0.ebuild | 68 
 2 files changed, 69 insertions(+)

diff --git a/dev-scheme/chicken/Manifest b/dev-scheme/chicken/Manifest
index b6b60a2434a..fe253ca0bdf 100644
--- a/dev-scheme/chicken/Manifest
+++ b/dev-scheme/chicken/Manifest
@@ -1 +1,2 @@
 DIST chicken-4.10.0.tar.gz 4020442 BLAKE2B 
55502d71bc737f6d580d11e10f35e86d83d6fde383ea564c2367d8b66c21e7ba597cc1633ced51aa10f6b25e5f0ade401af41f8169347055e7e3ed4c7ed830d4
 SHA512 
ff3405652e232ba7b06a8d4fc092772259f0917b1cdd119c0cf38f27ba95fca99d2c053c0f08317014fd7085e8cf89f68b56f22cb82c2988914b972ce59e3e29
+DIST chicken-4.13.0.tar.gz 4244358 BLAKE2B 
c40a28346fb6cd144e33605235ed022d48103edd1db1ae35e109e266989caaa0bf8fabf75e8b9cb740ac8bf4e3fba74218763573485127acacd001b8767cd088
 SHA512 
02c2035b4f81da6f4af2d246361ce8debdc9d9c663c3f43b7afb9abbf1ff591a2bb8fa144511b4d747a373dea4dcd9c10cac48466bf97032db76f3830c08709d

diff --git a/dev-scheme/chicken/chicken-4.13.0.ebuild 
b/dev-scheme/chicken/chicken-4.13.0.ebuild
new file mode 100644
index 000..5a9f20b3cdc
--- /dev/null
+++ b/dev-scheme/chicken/chicken-4.13.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit versionator
+
+MY_PV=$(get_version_component_range 1-3)
+DESCRIPTION="Scheme interpreter and native Scheme to C compiler"
+HOMEPAGE="http://www.call-cc.org/;
+SRC_URI="http://code.call-cc.org/releases/${MY_PV}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
+IUSE="doc"
+
+DEPEND=""
+RDEPEND=""
+
+# chicken's testsuite is not runnable before install
+# upstream has been notified of the issue
+RESTRICT="test"
+
+src_prepare() {
+   default
+
+   #Because chicken's Upstream is in the habit of using variables that
+   #portage also uses :( eg. $ARCH and $A
+   sed "s,A\(\s?=\|)\),chicken&," \
+   -i Makefile.cross-linux-mingw defaults.make rules.make || die
+   sed "s,ARCH,zARCH," \
+   -i Makefile.* defaults.make rules.make || die
+   sed -e "s,\$(PREFIX)/lib,\$(PREFIX)/$(get_libdir)," \
+   -e "s,\$(DATADIR)/doc,\$(SHAREDIR)/doc/${PF}," \
+   -i defaults.make || die
+
+   if ! use doc; then
+   rm -rf manual || die
+   # Without this Makefile tries to re-bootstrap the compiler
+   touch build-version.c
+   fi
+}
+
+src_compile() {
+   emake -j1 PLATFORM=linux PREFIX=/usr 
C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" \
+   LINKER_OPTIONS="${LDFLAGS}" \
+   HOSTSYSTEM="${CBUILD}"
+}
+
+src_install() {
+   # still can't run make in parallel for the install target
+   emake -j1 PLATFORM=linux PREFIX=/usr DESTDIR="${D}" 
HOSTSYSTEM="${CBUILD}" \
+   LINKER_OPTIONS="${LDFLAGS}" install
+
+   rm "${D}"/usr/share/doc/${PF}/LICENSE || die
+
+   # README is installed by Makefile
+   dodoc NEWS
+
+   # Let portage track this file (created later)
+   touch "${D}"/usr/$(get_libdir)/chicken/8/modules.db || die
+}
+
+pkg_postinst() {
+   # Create modules.db file in ${ROOT}
+   chicken-install -update-db || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-03-14 Thread Maxim Koltsov
commit: 68aefb9ca8c13eed00b671f88ee18d9b83bdf519
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 21:16:22 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 21:32:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68aefb9c

x11-wm/awesome: add warning message for upgrade from awesome-3.5

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/awesome-4.2-r1.ebuild | 120 +++
 1 file changed, 120 insertions(+)

diff --git a/x11-wm/awesome/awesome-4.2-r1.ebuild 
b/x11-wm/awesome/awesome-4.2-r1.ebuild
new file mode 100644
index 000..9e84ef199bf
--- /dev/null
+++ b/x11-wm/awesome/awesome-4.2-r1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eutils pax-utils versionator
+
+DESCRIPTION="A dynamic floating and tiling window manager"
+HOMEPAGE="https://awesomewm.org/;
+SRC_URI="https://github.com/awesomeWM/awesome-releases/raw/master/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="dbus doc elibc_FreeBSD gnome luajit"
+
+RDEPEND="
+   >=dev-lang/lua-5.1:0
+   dev-libs/glib:2
+   >=dev-libs/libxdg-basedir-1
+   >=dev-lua/lgi-0.8
+   x11-libs/cairo[xcb]
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/libxcb-1.6
+   >=x11-libs/pango-1.19.3[introspection]
+   >=x11-libs/startup-notification-0.10_p20110426
+   >=x11-libs/xcb-util-0.3.8
+   x11-libs/xcb-util-cursor
+   >=x11-libs/xcb-util-keysyms-0.3.4
+   >=x11-libs/xcb-util-wm-0.3.8
+   >=x11-libs/xcb-util-xrm-1.0
+   x11-libs/libXcursor
+   x11-libs/libxkbcommon[X]
+   >=x11-libs/libX11-1.3.99.901
+   dbus? ( >=sys-apps/dbus-1 )
+   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
+
+# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
+DEPEND="${RDEPEND}
+   >=app-text/asciidoc-8.4.5
+   app-text/xmlto
+   dev-util/gperf
+   virtual/pkgconfig
+   media-gfx/imagemagick[png]
+   >=x11-proto/xcb-proto-1.5
+   >=x11-proto/xproto-7.0.15
+   doc? ( dev-lua/ldoc )
+   luajit? ( dev-lang/luajit:2 )"
+
+DOCS=( docs/{00-authors,01-readme,02-contributing}.md )
+PATCHES=(
+   "${FILESDIR}/${PN}-4.0-convert-path.patch"  # bug #408025
+   "${FILESDIR}/${PN}-xsession.patch"  # bug #408025
+   "${FILESDIR}/${PN}-4.0-cflag-cleanup.patch" # bug #509658
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DSYSCONFDIR="${EPREFIX}"/etc
+   -DWITH_DBUS=$(usex dbus)
+   -DWITH_GENERATE_DOC=$(usex doc $(usex doc) n)
+   )
+   if use luajit; then
+   
mycmakeargs+=("-DLUA_INCLUDE_DIR=${EPREFIX}/usr/include/luajit-2.0")
+   
mycmakeargs+=("-DLUA_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libluajit-5.1.so")
+   fi
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   pax-mark m "${ED%/}"/usr/bin/awesome
+
+   exeinto /etc/X11/Sessions
+   newexe "${FILESDIR}"/${PN}-session ${PN}
+
+   # GNOME-based awesome
+   if use gnome; then
+   # GNOME session
+   insinto /usr/share/gnome-session/sessions
+   newins "${FILESDIR}"/${PN}-gnome-3.session ${PN}-gnome.session
+
+   # Application launcher
+   domenu "${FILESDIR}"/${PN}-gnome.desktop
+
+   # X Session
+   insinto /usr/share/xsessions
+   doins "${FILESDIR}"/${PN}-gnome-xsession.desktop
+   fi
+}
+
+pkg_postinst() {
+   # bug #447308
+   if use gnome; then
+   elog "You have enabled the gnome USE flag."
+   elog "Please note that quitting awesome won't kill your gnome 
session."
+   elog "To really quit the session, you should bind your quit key"
+   elog "to the following command:"
+   elog "  gnome-session-quit --logout"
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=447308;
+   fi
+
+   # bug #440724
+   elog "If you are having issues with Java application windows being"
+   elog "completely blank, try installing"
+   elog "  x11-misc/wmname"
+   elog "and setting the WM name to LG3D."
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=440724;
+
+   for v in ${REPLACING_VERSIONS}; do
+   if [ "$(get_major_version ${v})" = "3" ]; then
+   elog "Awesome-4 introduced breaking changes. For 
release notes and porting guide see"
+   elog 
"https://awesomewm.org/apidoc/documentation/89-NEWS.md.html#v4 and"
+   elog 
"https://awesomewm.org/apidoc/documentation/17-porting-tips.md.html#v4;
+   fi
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-03-14 Thread Maxim Koltsov
commit: 6e9ff1b67f0507de9e484c11d750aa828c7e8a59
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 21:19:00 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 21:32:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9ff1b6

x11-wm/awesome: drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/Manifest|   4 -
 x11-wm/awesome/awesome-3.5.7.ebuild| 137 -
 x11-wm/awesome/awesome-3.5.8.ebuild| 137 -
 x11-wm/awesome/awesome-3.5.9-r1.ebuild | 137 -
 x11-wm/awesome/awesome-4.0-r1.ebuild   | 112 ---
 x11-wm/awesome/awesome-4.0.ebuild  | 107 -
 x11-wm/awesome/awesome-4.1.ebuild  | 112 ---
 7 files changed, 746 deletions(-)

diff --git a/x11-wm/awesome/Manifest b/x11-wm/awesome/Manifest
index 34bd0cbc33a..39df01fc758 100644
--- a/x11-wm/awesome/Manifest
+++ b/x11-wm/awesome/Manifest
@@ -1,7 +1,3 @@
 DIST awesome-3.5.6.tar.xz 720112 BLAKE2B 
38836f4a90181335ffa282af57bf738635f3935b81b3bea5ec4e7c4b5142eb5031a642fd6252999557deb73cf7ed6d725d1900c157f894fd40c8b250c5895aaf
 SHA512 
8d89bf46956276a8bcf106bb255c051e8382b08617e17691134a8f3e5db3ec9f7773581c02ce62d23e72499f7b1e60fe4322c211e41219b5bffd1897a96f6cf6
-DIST awesome-3.5.7.tar.xz 722864 BLAKE2B 
f39ba45a9f23a68de770dc0327a5e324ba703cc10cec5bcef39b855bc67e16ffbc0caf9247e97c2b47b375332e570b405c246a7b02ed2938be76bcf07f2342a7
 SHA512 
0b57efa6ba55e28fee56bec96dbf3c47249b2d70b21e1a7760d4367a0ba42d9936c1c6b78afa4aa3050a60cf34189551ea53b208ec8ec9f6563a905463550515
-DIST awesome-3.5.8.tar.xz 723000 BLAKE2B 
76faf07e8084f233654141bbd05c723b67da621e30f3c5e92d846ddd3c0dbbda94923cb672f3b4532b52dde8b24028ce23b194531cf98b78079961eeec8fb730
 SHA512 
be5604821e256e36067750c341ca6f8669e159527b93654c8fc41bcd161da6d87fa0e3c5fccc51821586d163535ac78363d12d99ed81b6fb14e26da59136d5ef
 DIST awesome-3.5.9.tar.xz 723084 BLAKE2B 
96f4c5df98147399f28d1b1455ac53800f969599486c2f79b73ba36cfa237270cd5972d4e10e0a4f774a54dfa92948bba5d2e0438687d36739e12c3f5ecc
 SHA512 
6a4c679b293e8cd85d1f7e13f6dea704cbb267e42b9260496a54b657a66d6148aae51521d802d61baaeb23df0d4a8ad0b28d9dc922ea5da2a347b4251cce5e25
-DIST awesome-4.0.tar.xz 930664 BLAKE2B 
b30f410272b1d1224a1a145523f71ac6779c9592b572f798ff924bc26e62bd55ee5a0d45bc9d0ea8faa8362333b8eea51fccf954a49c71ee3090a4ebbf7e4de7
 SHA512 
80bdfe5f9166f5e9b0266cd630b48607d17605330d0f172666dbfa3f239ef04aeafafebe8949c3bf1c31a7bd372b60252d56c815048a24e015858585c3d0432b
-DIST awesome-4.1.tar.xz 960768 BLAKE2B 
e3d77fdbfca7ddb041069fa6a9bf1406b4bfbe96b09b26b6ecf7a7ea081e4f6d7d7766b2f06a7e3cd4c59bb7e16450bdde5bfb9d9c0b6a3760500b25fe44b733
 SHA512 
e0c1ed5fc8f0455258ec2566e430b24e52b78d1ae54357f5de1bf08f2e44682e9b2c5548905a90cc4526d98d2b6700e087b679abc9e620d3751ea420df9434f6
 DIST awesome-4.2.tar.xz 987024 BLAKE2B 
b2aaa993bafa83121d165d21083dfcac825e373be9547490f8b93b8e8b0f90470395a0238affaf9990f719b8bd2f36a255f6468b6422406787a3c96946c4e831
 SHA512 
134dd3625c86243861b3d0701cc8bfd8c00986d7027f0832016c3f5e59e6b9a1ef2f677bb0d1d66ece63449533e4b13d8d7388e96e6f9014212030a79f163e09

diff --git a/x11-wm/awesome/awesome-3.5.7.ebuild 
b/x11-wm/awesome/awesome-3.5.7.ebuild
deleted file mode 100644
index 839456e65e9..000
--- a/x11-wm/awesome/awesome-3.5.7.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit cmake-utils eutils
-
-DESCRIPTION="A dynamic floating and tiling window manager"
-HOMEPAGE="http://awesome.naquadah.org/;
-SRC_URI="http://awesome.naquadah.org/download/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
-IUSE="dbus doc elibc_FreeBSD gnome"
-
-COMMON_DEPEND="
-   >=dev-lang/lua-5.1:0
-   dev-libs/glib:2
-   >=dev-libs/libxdg-basedir-1
-   >=dev-lua/lgi-0.7
-   x11-libs/cairo[xcb]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/libxcb-1.6
-   >=x11-libs/pango-1.19.3[introspection]
-   >=x11-libs/startup-notification-0.10_p20110426
-   >=x11-libs/xcb-util-0.3.8
-   x11-libs/xcb-util-cursor
-   x11-libs/libXcursor
-   >=x11-libs/libX11-1.3.99.901
-   dbus? ( >=sys-apps/dbus-1 )
-   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
-
-# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
-DEPEND="${COMMON_DEPEND}
-   >=app-text/asciidoc-8.4.5
-   app-text/xmlto
-   dev-util/gperf
-   virtual/pkgconfig
-   media-gfx/imagemagick[png]
-   >=x11-proto/xcb-proto-1.5
-   >=x11-proto/xproto-7.0.15
-   doc? (
-   app-doc/doxygen
-   media-gfx/grap

[gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/

2018-03-14 Thread Maxim Koltsov
commit: 4151c03ce462ccc599fcd3e492ea497cb5ec48c5
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 21:06:16 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 21:32:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4151c03c

x11-wm/awesome: use PATCHES

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

 x11-wm/awesome/awesome-3.5.9-r2.ebuild | 127 +
 1 file changed, 127 insertions(+)

diff --git a/x11-wm/awesome/awesome-3.5.9-r2.ebuild 
b/x11-wm/awesome/awesome-3.5.9-r2.ebuild
new file mode 100644
index 000..4d6a201ca16
--- /dev/null
+++ b/x11-wm/awesome/awesome-3.5.9-r2.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+inherit cmake-utils eutils
+
+DESCRIPTION="A dynamic floating and tiling window manager"
+HOMEPAGE="http://awesome.naquadah.org/;
+SRC_URI="http://awesome.naquadah.org/download/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="dbus doc elibc_FreeBSD gnome"
+
+COMMON_DEPEND="
+   >=dev-lang/lua-5.1:0
+   dev-libs/glib:2
+   >=dev-libs/libxdg-basedir-1
+   >=dev-lua/lgi-0.7
+   x11-libs/cairo[xcb]
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/libxcb-1.6
+   >=x11-libs/pango-1.19.3[introspection]
+   >=x11-libs/startup-notification-0.10_p20110426
+   >=x11-libs/xcb-util-0.3.8
+   x11-libs/xcb-util-cursor
+   x11-libs/libXcursor
+   >=x11-libs/libX11-1.3.99.901
+   dbus? ( >=sys-apps/dbus-1 )
+   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
+
+# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
+DEPEND="${COMMON_DEPEND}
+   >=app-text/asciidoc-8.4.5
+   app-text/xmlto
+   dev-util/gperf
+   virtual/pkgconfig
+   media-gfx/imagemagick[png]
+   >=x11-proto/xcb-proto-1.5
+   >=x11-proto/xproto-7.0.15
+   doc? (
+   app-doc/doxygen
+   media-gfx/graphviz
+   )"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DOCS="AUTHORS BUGS PATCHES README STYLE"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-3.5_rc1-convert-path.patch"
+   "${FILESDIR}/${PN}-xsession.patch"
+   "${FILESDIR}/${PN}-3.5.5-util.lua-xdg-icons-fix.patch"
+   "${FILESDIR}/${PN}-3.5.5-cflag-cleanup.patch"
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DSYSCONFDIR="${EPREFIX}"/etc
+   $(cmake-utils_use_with dbus DBUS)
+   $(cmake-utils_use doc GENERATE_DOC)
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   local myargs="all"
+
+   if use doc ; then
+   myargs="${myargs} doc"
+   fi
+   cmake-utils_src_make ${myargs}
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use doc ; then
+   (
+   cd "${CMAKE_BUILD_DIR}"/doc
+   mv html doxygen
+   dohtml -r doxygen || die
+   )
+   fi
+   rm -rf "${ED}"/usr/share/doc/${PN} || die "Cleanup of dupe docs failed"
+
+   exeinto /etc/X11/Sessions
+   newexe "${FILESDIR}"/${PN}-session ${PN} || die
+
+   # GNOME-based awesome
+   if use gnome ; then
+   # GNOME session
+   insinto /usr/share/gnome-session/sessions
+   newins "${FILESDIR}/${PN}-gnome-3.session" 
"${PN}-gnome.session" || die
+   # Application launcher
+   domenu "${FILESDIR}/${PN}-gnome.desktop" || die
+   # X Session
+   insinto /usr/share/xsessions/
+   doins "${FILESDIR}/${PN}-gnome-xsession.desktop" || die
+   fi
+}
+
+pkg_postinst() {
+   # bug #447308
+   if use gnome; then
+   elog
+   elog "You have enabled the gnome USE flag."
+   elog "Please note that quitting awesome won't kill your gnome 
session."
+   elog "To really quit the session, you should bind your quit key"
+   elog "to the following command:"
+   elog "  gnome-session-quit --logout"
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=447308;
+   fi
+
+   # bug #440724
+   elog
+   elog "If you are having issues with Java application windows being"
+   elog "completely blank, try installing"
+   elog "  x11-misc/wmname"
+   elog "and setting the WM name to LG3D."
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=440724;
+   elog
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/hardened/linux/amd64/no-multilib/

2018-03-14 Thread Maxim Koltsov
commit: 0efde9a7df1d4c35da549d651f46f03ff42d0542
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 20:21:45 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 20:23:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0efde9a7

profiles: unmask teamviewer-13 on no-multilib

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

 profiles/hardened/linux/amd64/no-multilib/package.mask | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/profiles/hardened/linux/amd64/no-multilib/package.mask 
b/profiles/hardened/linux/amd64/no-multilib/package.mask
index 085e71a6fff..cd820bb9b97 100644
--- a/profiles/hardened/linux/amd64/no-multilib/package.mask
+++ b/profiles/hardened/linux/amd64/no-multilib/package.mask
@@ -1,8 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# >=teamviewer-13 is amd64 native application without wine
+

[gentoo-commits] dev/maksbotan:master commit in: dev-libs/re2/

2018-03-10 Thread Maxim Koltsov
commit: 4515e37e92cb80e3e62bcb036d393fcb8f6e0a01
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Mar 11 07:58:06 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Mar 11 07:58:06 2018 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=4515e37e

dev-libs/re2: remove in favor of in-tree ebuild

Signed-off-by: Maxim Koltsov  gentoo.org>

 dev-libs/re2/Manifest|  1 -
 dev-libs/re2/metadata.xml|  8 ---
 dev-libs/re2/re2-20120329.ebuild | 47 
 3 files changed, 56 deletions(-)

diff --git a/dev-libs/re2/Manifest b/dev-libs/re2/Manifest
deleted file mode 100644
index 587689e..000
--- a/dev-libs/re2/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST re2-20120329.tar.bz2 340201 SHA256 
9a8f70dfcd3f7b9fbeb37d0e084b115e444fd318b76cd7eb4b437c87a456675c

diff --git a/dev-libs/re2/metadata.xml b/dev-libs/re2/metadata.xml
deleted file mode 100644
index d0f..000
--- a/dev-libs/re2/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-   maksbo...@gentoo.org
-   Maxim Koltsov
-
-

diff --git a/dev-libs/re2/re2-20120329.ebuild b/dev-libs/re2/re2-20120329.ebuild
deleted file mode 100644
index a99617a..000
--- a/dev-libs/re2/re2-20120329.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-inherit multilib toolchain-funcs
-
-DESCRIPTION="An efficient, principled regular expression library"
-HOMEPAGE="http://code.google.com/p/re2/;
-SRC_URI="http://dev.gentoo.org/~maksbotan/${P}.tar.bz2;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_compile() {
-   emake \
-   CXX="$(tc-getCXX)" \
-   AR="$(tc-getAR)" \
-   NM="$(tc-getNM)" \
-   CXXFLAGS="${CXXFLAGS} -pthread" \
-   LDFLAGS="${LDFLAGS} -pthread"
-}
-
-src_install() {
-   emake \
-   prefix="${EPREFIX}"/usr \
-   libdir="${EPREFIX}"/usr/$(get_libdir) \
-   DESTDIR="${D}" \
-   install
-}
-
-src_test() {
-   emake \
-   CXX="$(tc-getCXX)" \
-   AR="$(tc-getAR)" \
-   NM="$(tc-getNM)" \
-   CXXFLAGS="${CXXFLAGS} -pthread" \
-   LDFLAGS="${LDFLAGS} -pthread" \
-   test
-   dodoc README AUTHORS
-}



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

2018-03-08 Thread Maxim Koltsov
commit: e994f443cc4ffb1c5f07e029517fd22c30697d9d
Author: reagentoo  gmail  com>
AuthorDate: Thu Mar  8 20:25:39 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Thu Mar  8 20:49:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e994f443

media-video/shotcut: version bump to 18.03

Also RDEPEND edits.

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

 media-video/shotcut/Manifest   | 2 +-
 media-video/shotcut/{shotcut-18.01.ebuild => shotcut-18.03.ebuild} | 5 -
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/media-video/shotcut/Manifest b/media-video/shotcut/Manifest
index 740971e5142..baaff716419 100644
--- a/media-video/shotcut/Manifest
+++ b/media-video/shotcut/Manifest
@@ -1 +1 @@
-DIST shotcut-18.01.tar.gz 4027948 BLAKE2B 
cbc82eac35b3d378bd0da6857f80fddf758e17d82d5be25224716769d51afc9a37ecd5395f0599fc421d6190d6a426ad2f9ab222fb3871f9e5e07b11465d38a4
 SHA512 
d36843eeb6f2906f3b9f546b24e691754984897bda74618ebebd85bb7e32f97d951d55bc6dcf6f2b0f1c1ab39ee1180de5b44e7022ee2fe9b687e3cb4b9bada3
+DIST shotcut-18.03.tar.gz 4089848 BLAKE2B 
811556867fb6e3160ec0daaeda2eb063f32bf527fc40a72302638fcb9445b87fbebdcf93929746d5c18f784263ead857b3b23428dc8cab0f06b5f95cac36d793
 SHA512 
37ec83f7c1f770e849213a2adb90ee86061e1eb17e5435dfa81068de77be8cc5791ad03c14da100b9b960b15d6ec0d01fc9d579fcbf749050385c2231e13f4a0

diff --git a/media-video/shotcut/shotcut-18.01.ebuild 
b/media-video/shotcut/shotcut-18.03.ebuild
similarity index 89%
rename from media-video/shotcut/shotcut-18.01.ebuild
rename to media-video/shotcut/shotcut-18.03.ebuild
index 3367892ca51..52af890d5db 100644
--- a/media-video/shotcut/shotcut-18.01.ebuild
+++ b/media-video/shotcut/shotcut-18.03.ebuild
@@ -17,10 +17,13 @@ IUSE=""
 RDEPEND="
dev-qt/qtcore:5
dev-qt/qtdeclarative:5
+   dev-qt/qtgraphicaleffects:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5
dev-qt/qtopengl:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtquickcontrols:5[widgets]
dev-qt/qtsql:5
dev-qt/qtwebkit:5
dev-qt/qtwebsockets:5
@@ -29,7 +32,7 @@ RDEPEND="
media-libs/ladspa-sdk
media-libs/libsdl:0
media-libs/libvpx
-   media-libs/mlt[ffmpeg,frei0r,qt5,sdl,xml]
+   >=media-libs/mlt-6.6.0[ffmpeg,frei0r,qt5,sdl2,xml]
media-libs/x264
media-plugins/frei0r-plugins
media-sound/lame



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xpyb/, x11-libs/xpyb/files/

2018-03-07 Thread Maxim Koltsov
commit: 3c25eb2147f4ea84a1bd9e608b6d61e6ca9f4e87
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Thu Mar  8 07:22:02 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Thu Mar  8 07:22:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c25eb21

x11-libs/xpyb: patch for xcb-proto-1.13

Bug: https://bugs.gentoo.org/649876
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/xpyb/files/xpyb-1.3.1-xcbproto-1.13.patch | 13 ++
 x11-libs/xpyb/xpyb-1.3.1-r4.ebuild | 50 ++
 2 files changed, 63 insertions(+)

diff --git a/x11-libs/xpyb/files/xpyb-1.3.1-xcbproto-1.13.patch 
b/x11-libs/xpyb/files/xpyb-1.3.1-xcbproto-1.13.patch
new file mode 100644
index 000..9cb901c9727
--- /dev/null
+++ b/x11-libs/xpyb/files/xpyb-1.3.1-xcbproto-1.13.patch
@@ -0,0 +1,13 @@
+diff -ur xpyb-1.3.1/src/py_client.py xpyb-1.3.1/src/py_client.py
+--- xpyb-1.3.1/src/py_client.py2012-03-24 01:24:40.0 +0400
 xpyb-1.3.1/src/py_client.py2018-03-08 10:13:48.342758718 +0300
+@@ -585,7 +585,8 @@
+   'union'   : py_union,
+   'request' : py_request,
+   'event'   : py_event,
+-  'error'   : py_error
++  'error'   : py_error,
++  'eventstruct' : lambda *a, **k: None
+   }
+ 
+ # Boilerplate below this point

diff --git a/x11-libs/xpyb/xpyb-1.3.1-r4.ebuild 
b/x11-libs/xpyb/xpyb-1.3.1-r4.ebuild
new file mode 100644
index 000..1e7d210bc6a
--- /dev/null
+++ b/x11-libs/xpyb/xpyb-1.3.1-r4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+AUTOTOOLS_AUTORECONF=1
+
+inherit flag-o-matic xorg-2 python-r1
+
+#EGIT_REPO_URI="https://anongit.freedesktop.org/git/xcb/xpyb.git;
+SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2;
+DESCRIPTION="XCB-based Python bindings for the X Window System"
+HOMEPAGE="https://xcb.freedesktop.org/;
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="selinux"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND=">=x11-libs/libxcb-1.7
+   >=x11-proto/xcb-proto-1.7.1[${PYTHON_USEDEP}]
+   ${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-python.patch
+   "${FILESDIR}"/${PN}-1.3.1-xcbproto-1.9.patch
+   "${FILESDIR}"/${PN}-1.3.1-xcbproto-1.13.patch
+)
+DOCS=( NEWS README )
+
+pkg_setup() {
+   xorg-2_pkg_setup
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable selinux)
+   )
+}
+
+src_configure() {
+   append-cflags -fno-strict-aliasing
+   python_foreach_impl xorg-2_src_configure
+}
+
+src_compile() {
+   python_foreach_impl xorg-2_src_compile
+}
+
+src_install() {
+   python_foreach_impl xorg-2_src_install
+}



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

2018-03-07 Thread Maxim Koltsov
commit: 01952fcaa17bf708d571dca0bd4f6e1883311b05
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar  7 13:19:46 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar  7 13:24:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01952fca

net-misc/teamviewer: Bump version to 13.0.9865

Bug: https://bugs.gentoo.org/648528
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/teamviewer/Manifest  | 4 ++--
 .../{teamviewer-13.0.6634.ebuild => teamviewer-13.0.9865.ebuild}  | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 7390d3fb3a9..4c903bce11f 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,5 +1,5 @@
 DIST teamviewer-9.0.32150.deb 22898922 BLAKE2B 
799aa6f48b69247a2695ca745e85d02ffa73df1375203dfc9da339673e6c18d861c4146ddbdc509bdc1114d5a2a7e5fdd4acf3c6e5da61fbba5aaa02fa4e3cfd
 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 DIST teamviewer_13.0.5693_amd64.tar.xz 9694952 BLAKE2B 
650814c3c63897e1024836528c6eaa4cc81064ffa16bece7f8d2fe633457e2795e2cef847175a88dbb389ba61d2597a02292e6bf610da25c92f97152560ea355
 SHA512 
75886b6d00991968ae0b0d3c55b4c07c6f1b1b24488b2d5ae866e35c26ee6e673e500c87845ba6850ffdc80e4612feff0fc5bbe9e39f2d0a94582e1800471dcc
 DIST teamviewer_13.0.5693_i386.tar.xz 9583892 BLAKE2B 
8e477978825431a01b37b61c28b903b36cd81365c7ec5df4ca8d4aec1ce8d24b49af60ed6c99c863acd26405254ae78c4ae4dfef1f8b7a5fb882e281c3c4f125
 SHA512 
be5e8e00755a38f2c70ceba88d9fb87c2cc8e9e284c86e22f95dddf919a37ee1f24ef1e02f042a339eaf863dbf255c873e3edcb038c04202b4ab0460e50b2503
-DIST teamviewer_13.0.6634_amd64.tar.xz 9316708 BLAKE2B 
c48aed992de6b23728de155c09dca96258d1a124df34f904bad8ae1fc85777ce9b1606a75ae1d40e32f5e2f8b313f54013205d1711302d2fef8c55a4d0e450d8
 SHA512 
5f4f662ffc0499d3cbd8b6310999b34e14a324152dd9e75352879d8cf0e53058c035c9bad987af046aa6715d3b579ab3887f339e68db8ca71e11348b1703d78c
-DIST teamviewer_13.0.6634_i386.tar.xz 9258092 BLAKE2B 
85a5e169486956cb226ea5cf2a2497ae4de88d3d94a961a819dce0a179fb0cf7959719b784def98d7c7e39151307bc0ec17a21d9d7f7e291c52715a9fbb815d8
 SHA512 
796ff9c9a39f769b9034875f5dc513a4034c2d10ea832b1a411ab4d576d5f5152a24cd4513a55871d8f59b50f85c9301bbd7ea27c1aeb84d97b22c076b2768f7
+DIST teamviewer_13.0.9865_amd64.tar.xz 11562916 BLAKE2B 
93d3a31f43c530e96202c1ce9fba7bcb24553068662d8d61869ddd38b447ae859bae8fc9a9228985c6c858fcf9714e523a0649ca8dd487dd3dbe6e4ba4fc
 SHA512 
08983ed34a6fe227bd7be5b03fb74c2b64c16a973034db2645d71e641c1855a9186fbddf6bbdae2db5e1258df0de8e252d49b4f1b0bb6aad8d357aced7a01984
+DIST teamviewer_13.0.9865_i386.tar.xz 11540784 BLAKE2B 
b8fa47ec7572ed1b7eceb29f48af286ad565165498ea6f82c22f3d55181bcd70c1f380e719998a4c351ec3106216d7bde2461c23b9f84608152ae72c2f16d44c
 SHA512 
24b70e1d728f09fc4dec4e669409b8f979011842f022b75d718459f732668689c53470e3bd4b9f21bd1a9919feda2e452de0daeb242cbef4ae49ad2483213ec2

diff --git a/net-misc/teamviewer/teamviewer-13.0.6634.ebuild 
b/net-misc/teamviewer/teamviewer-13.0.9865.ebuild
similarity index 100%
rename from net-misc/teamviewer/teamviewer-13.0.6634.ebuild
rename to net-misc/teamviewer/teamviewer-13.0.9865.ebuild



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

2018-03-07 Thread Maxim Koltsov
commit: a0f330c94b06a615f4184e6a887b62a71c3680e2
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar  7 13:21:46 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar  7 13:24:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f330c9

net-misc/teamviewer: Add myself to maintainers

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/teamviewer/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-misc/teamviewer/metadata.xml b/net-misc/teamviewer/metadata.xml
index f14d6ccaf35..3dc24ed922f 100644
--- a/net-misc/teamviewer/metadata.xml
+++ b/net-misc/teamviewer/metadata.xml
@@ -5,6 +5,10 @@
wschl...@gentoo.org
Wolfram Schlich

+   
+   maksbo...@gentoo.org
+   Maxim Koltsov
+   

Use virtual/wine instead of 
bundled wine.




[gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/no-multilib/

2018-03-07 Thread Maxim Koltsov
commit: 5d72daba5436f415e41bcbbf77cb420e0253b2bc
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar  7 13:23:40 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar  7 13:24:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d72daba

arch/amd64/no-multilib: mask  (07 Jan 2018)
 # Requires 32-bit libraries.
-net-misc/teamviewer
+ (03 Jan 2018)
 # Requires 32-bit multilib compatibility



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

2018-01-18 Thread Maxim Koltsov
commit: 02df5ee7ce3b816747598171bca108868e143815
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Thu Jan 18 19:08:00 2018 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Thu Jan 18 19:09:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02df5ee7

net-misc/teamviewer: bump version to 13.0.6634

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-misc/teamviewer/Manifest|   2 +
 net-misc/teamviewer/teamviewer-13.0.6634.ebuild | 129 
 2 files changed, 131 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index b427b9618be..7390d3fb3a9 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,3 +1,5 @@
 DIST teamviewer-9.0.32150.deb 22898922 BLAKE2B 
799aa6f48b69247a2695ca745e85d02ffa73df1375203dfc9da339673e6c18d861c4146ddbdc509bdc1114d5a2a7e5fdd4acf3c6e5da61fbba5aaa02fa4e3cfd
 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 DIST teamviewer_13.0.5693_amd64.tar.xz 9694952 BLAKE2B 
650814c3c63897e1024836528c6eaa4cc81064ffa16bece7f8d2fe633457e2795e2cef847175a88dbb389ba61d2597a02292e6bf610da25c92f97152560ea355
 SHA512 
75886b6d00991968ae0b0d3c55b4c07c6f1b1b24488b2d5ae866e35c26ee6e673e500c87845ba6850ffdc80e4612feff0fc5bbe9e39f2d0a94582e1800471dcc
 DIST teamviewer_13.0.5693_i386.tar.xz 9583892 BLAKE2B 
8e477978825431a01b37b61c28b903b36cd81365c7ec5df4ca8d4aec1ce8d24b49af60ed6c99c863acd26405254ae78c4ae4dfef1f8b7a5fb882e281c3c4f125
 SHA512 
be5e8e00755a38f2c70ceba88d9fb87c2cc8e9e284c86e22f95dddf919a37ee1f24ef1e02f042a339eaf863dbf255c873e3edcb038c04202b4ab0460e50b2503
+DIST teamviewer_13.0.6634_amd64.tar.xz 9316708 BLAKE2B 
c48aed992de6b23728de155c09dca96258d1a124df34f904bad8ae1fc85777ce9b1606a75ae1d40e32f5e2f8b313f54013205d1711302d2fef8c55a4d0e450d8
 SHA512 
5f4f662ffc0499d3cbd8b6310999b34e14a324152dd9e75352879d8cf0e53058c035c9bad987af046aa6715d3b579ab3887f339e68db8ca71e11348b1703d78c
+DIST teamviewer_13.0.6634_i386.tar.xz 9258092 BLAKE2B 
85a5e169486956cb226ea5cf2a2497ae4de88d3d94a961a819dce0a179fb0cf7959719b784def98d7c7e39151307bc0ec17a21d9d7f7e291c52715a9fbb815d8
 SHA512 
796ff9c9a39f769b9034875f5dc513a4034c2d10ea832b1a411ab4d576d5f5152a24cd4513a55871d8f59b50f85c9301bbd7ea27c1aeb84d97b22c076b2768f7

diff --git a/net-misc/teamviewer/teamviewer-13.0.6634.ebuild 
b/net-misc/teamviewer/teamviewer-13.0.6634.ebuild
new file mode 100644
index 000..6c3cc7311e7
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-13.0.6634.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN=${PN}${PV/\.*}
+inherit eutils gnome2-utils systemd
+
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
+   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
+
+LICENSE="TeamViewer MIT"
+SLOT="${PV/\.*}"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/sed"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   sys-apps/dbus
+"
+
+RESTRICT="bindist mirror"
+
+# Silence QA messages
+QA_PREBUILT="opt/${MY_PN}/*"
+
+S="${WORKDIR}"/teamviewer
+
+src_prepare() {
+   default
+
+   # Switch operation mode from 'portable' to 'installed'
+   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
+
+   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
+   -i tv_bin/script/teamviewerd.service || die
+}
+
+src_install() {
+   local dst="/opt/${MY_PN}" # install destination
+
+   # Quirk:
+   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
+   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
+   # when changing the ABI of one of its dependencies. According to the
+   # TeamViewer devs, this binary is an unused remnant of previous Wine-
+   # based builds and will be removed in future releases anyway
+   rm tv_bin/script/libdepend
+
+   insinto ${dst}
+   doins -r tv_bin
+
+   # Set permissions for executables and libraries
+   for exe in $(find tv_bin -type f -executable -or -name '*.so'); do
+   fperms 755 ${dst}/${exe}
+   done
+
+   # No slotting here, binary expects this service path
+   newinitd "${FILESDIR}"/teamviewerd13.init teamviewerd
+   systemd_dounit tv_bin/

[gentoo-commits] dev/maksbotan:master commit in: net-im/telegram-desktop/

2017-04-30 Thread Maxim Koltsov
commit: 3eeeac4132e9cfc2e429abf7a8c06cab16b38699
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Apr 30 20:53:25 2017 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 30 20:53:25 2017 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=3eeeac41

net-im/telegram-desktop: add telegram ebuild

 net-im/telegram-desktop/metadata.xml   |  8 +++
 .../telegram-desktop/telegram-desktop-.ebuild  | 82 ++
 2 files changed, 90 insertions(+)

diff --git a/net-im/telegram-desktop/metadata.xml 
b/net-im/telegram-desktop/metadata.xml
new file mode 100644
index 000..d0f
--- /dev/null
+++ b/net-im/telegram-desktop/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   maksbo...@gentoo.org
+       Maxim Koltsov
+
+

diff --git a/net-im/telegram-desktop/telegram-desktop-.ebuild 
b/net-im/telegram-desktop/telegram-desktop-.ebuild
new file mode 100644
index 000..3ba35d9
--- /dev/null
+++ b/net-im/telegram-desktop/telegram-desktop-.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/maksbotan/tdesktop;
+EGIT_BRANCH="systembuild"
+
+inherit cmake-utils git-r3
+
+DESCRIPTION="Telegram desktop client (unofficial system build)"
+HOMEPAGE="https://desktop.telegram.org;
+SRC_URI=""
+
+LICENSE="GPL-3-with-openssl-exception"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+COMMON_DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[xcb,jpeg,png,gtk]
+   dev-qt/qtwidgets[xcb,png]
+   dev-qt/qtnetwork
+   dev-qt/qtimageformats
+   virtual/ffmpeg
+   media-libs/opus
+   x11-libs/libdrm
+   x11-libs/libva[X,drm]
+   sys-libs/zlib[minizip]
+   x11-libs/gtk+:3
+   dev-libs/libappindicator:3
+   media-libs/openal
+   dev-libs/openssl:0
+   x11-libs/libX11
+"
+
+DEPEND="
+   virtual/pkgconfig
+   ${COMMON_DEPEND}
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+"
+
+CMAKE_USE_DIR="${S}/Telegram"
+
+BREAKPAD_REPO_URI="https://chromium.googlesource.com/breakpad/breakpad;
+BREAKPAD_LSS_REPO_URI="https://chromium.googlesource.com/linux-syscall-support;
+
+BREAKPAD_SOURCE_ROOT="${WORKDIR}/breakpad"
+BREAKPAD_IMAGE="${WORKDIR}/breakpad_image"
+
+src_unpack() {
+   git-r3_src_unpack
+
+   git-r3_fetch ${BREAKPAD_REPO_URI} refs/heads/master
+   git-r3_fetch ${BREAKPAD_LSS_REPO_URI} refs/heads/master
+
+   git-r3_checkout ${BREAKPAD_REPO_URI} "${BREAKPAD_SOURCE_ROOT}"
+   git-r3_checkout ${BREAKPAD_LSS_REPO_URI} 
"${BREAKPAD_SOURCE_ROOT}"/src/third_party/lss
+}
+
+src_prepare() {
+   einfo "Building Breakpad static library"
+   pushd "${BREAKPAD_SOURCE_ROOT}" > /dev/null
+   econf --prefix="${BREAKPAD_IMAGE}"
+   emake
+   emake install
+   popd > /dev/null
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBREAKPAD_INCLUDE_DIR="${BREAKPAD_IMAGE}/include/breakpad"
+   -DBREAKPAD_LIBRARY_DIR="${BREAKPAD_IMAGE}/lib"
+   )
+
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/wgetpaste/

2016-12-18 Thread Maxim Koltsov
commit: 8af5f47d02439a17b9d1453bc9ca83b093a9e4c1
Author: Nicholas Vinson  gmail  com>
AuthorDate: Sat Dec 17 17:09:16 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sat Dec 17 17:14:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af5f47d

app-text/wgetpaste: Add wget SSL support

Many of the paste bins wgetpaste supports require SSL.  This includes
the current default paste bin.  Without wget SSL support, these paste
bins are not accessible.  This change allows wgetpaste to depend on
ssl-enabled wget.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/wgetpaste/wgetpaste-2.28-r1.ebuild | 28 
 1 file changed, 28 insertions(+)

diff --git a/app-text/wgetpaste/wgetpaste-2.28-r1.ebuild 
b/app-text/wgetpaste/wgetpaste-2.28-r1.ebuild
new file mode 100644
index ..6c3eff1
--- /dev/null
+++ b/app-text/wgetpaste/wgetpaste-2.28-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+DESCRIPTION="Command-line interface to various pastebins"
+HOMEPAGE="http://wgetpaste.zlin.dk/;
+SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+IUSE="+ssl"
+
+DEPEND=""
+RDEPEND="net-misc/wget[ssl?]"
+
+src_prepare() {
+   sed -i -e "s:/etc:\"${EPREFIX}\"/etc:g" wgetpaste || die
+   default
+}
+
+src_install() {
+   dobin ${PN}
+   insinto /usr/share/zsh/site-functions
+   doins _wgetpaste
+}



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

2016-12-18 Thread Maxim Koltsov
commit: d6f0a17a7b358f26f8070ddaf6c0839076384254
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Dec 18 15:31:55 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Dec 18 15:31:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f0a17a

app-text/wgetpaste: merge "Add SSL support"

Pull-Request: https://github.com/gentoo/gentoo/pull/3143

 .../{wgetpaste-2.28.ebuild => wgetpaste-2.28-r1.ebuild}  | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: app-text/wgetpaste/

2016-08-17 Thread Maxim Koltsov
commit: 4f920120cb39f327b98b9956d830cbb45fcb7416
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Aug 17 17:57:53 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Aug 17 18:02:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f920120

app-text/wgetpaste: add Nicholas Vinson as proxy maintainer

 app-text/wgetpaste/metadata.xml | 8 
 1 file changed, 8 insertions(+)

diff --git a/app-text/wgetpaste/metadata.xml b/app-text/wgetpaste/metadata.xml
index ceeed15..c928a89 100644
--- a/app-text/wgetpaste/metadata.xml
+++ b/app-text/wgetpaste/metadata.xml
@@ -2,7 +2,15 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

+   nvinson...@gmail.com
+   Nicholas Vinson
+   
+   
maksbo...@gentoo.org
        Maxim Koltsov

+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-text/wgetpaste/

2016-08-17 Thread Maxim Koltsov
commit: b24a9317a5a26bc67f5895c6934bf8f297021d47
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Aug 17 17:53:39 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Aug 17 18:02:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b24a9317

app-text/wgetpaste: bump to 2.28

Gentoo-Bug: 589196

 app-text/wgetpaste/Manifest | 2 +-
 app-text/wgetpaste/{wgetpaste-2.27.ebuild => wgetpaste-2.28.ebuild} | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/app-text/wgetpaste/Manifest b/app-text/wgetpaste/Manifest
index ae180c0..cf65c00 100644
--- a/app-text/wgetpaste/Manifest
+++ b/app-text/wgetpaste/Manifest
@@ -1,2 +1,2 @@
 DIST wgetpaste-2.25.tar.bz2 11107 SHA256 
6a7e078e6607f4fe819fc52857a601630ec0f7d2ee855d3b1cd7e75a904c40f4 SHA512 
c3cd56f32311c77ce5ac970f0cd6b2e8285cac3caaf61669237ac707ed3b9aab285fbe9dee6260ea13b8df41a22acfaa3b8439298560ab68c3a568d60557d82e
 WHIRLPOOL 
ad64e1d45cb49dd70a2b33e49e81f255b304def9e4b8d8c29ac4b4161fb7cc290574686a0488a731cd36f339fde0f78da90ad439f1b771b8d5bd2f2df9cd67c3
-DIST wgetpaste-2.27.tar.bz2 10869 SHA256 
d55b789803ddc5dceee2649f35eca53e4ee276fda948ba7b5d4bd3961a92edb8 SHA512 
d4cb39f6b8bd01e31a109621ac21a49ddc7a0c63bca649412a9ca2e6364aa2ba0046ea25af7ce80981c275f9c6ba9f3cdb32af7ed9d45094a62ef278f0e41b7b
 WHIRLPOOL 
831093933fa155616080f6c7641b16f8e7f68f5b44fd4c9d1198a31c25397879733e1bb1329fd5a7b2733e1e00cc8646652b24911891b1034b6c3ad34ee3dafe
+DIST wgetpaste-2.28.tar.bz2 12448 SHA256 
538d38bab491544bdf6f05f7a38f83d4c3dfee77de7759cb6b9be1ebfdd609c2 SHA512 
b3b9ee4bfbc52da6762b06c2640385eeedab7910ad1bc4e92ff9304371ec2442e2d30b69ebc0f1407a00a9c8afde398e00dc3d3c048452d730517227a68e6b97
 WHIRLPOOL 
31564962f633fd9d63aa77569646777932a563a3d6593ef6f4a83d639b437b85904f8b7386de961952e8328fcc1c9255c25528c55f4d04d1393e074b595586b2

diff --git a/app-text/wgetpaste/wgetpaste-2.27.ebuild 
b/app-text/wgetpaste/wgetpaste-2.28.ebuild
similarity index 97%
rename from app-text/wgetpaste/wgetpaste-2.27.ebuild
rename to app-text/wgetpaste/wgetpaste-2.28.ebuild
index 1bbd0da..60fd242 100644
--- a/app-text/wgetpaste/wgetpaste-2.27.ebuild
+++ b/app-text/wgetpaste/wgetpaste-2.28.ebuild
@@ -4,8 +4,6 @@
 
 EAPI="5"
 
-inherit eutils
-
 DESCRIPTION="Command-line interface to various pastebins"
 HOMEPAGE="http://wgetpaste.zlin.dk/;
 SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2;



[gentoo-commits] repo/gentoo:master commit in: app-text/zathura/

2016-07-31 Thread Maxim Koltsov
commit: 7286c55fa7dc6197ed999f8d40e4338711c867a1
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Jul 31 16:57:31 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Jul 31 16:58:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7286c55f

app-text/zathura: bump to 0.3.6

Gentoo-Bug: 589962

Package-Manager: portage-2.3.0

 app-text/zathura/Manifest |  1 +
 app-text/zathura/zathura-0.3.6.ebuild | 72 +++
 2 files changed, 73 insertions(+)

diff --git a/app-text/zathura/Manifest b/app-text/zathura/Manifest
index 643d3b8..a1585f1 100644
--- a/app-text/zathura/Manifest
+++ b/app-text/zathura/Manifest
@@ -1,3 +1,4 @@
 DIST zathura-0.2.9.tar.gz 196690 SHA256 
2c071d403ec9348b839567b2897850bf29d9c24c85982b5509a1a429a72ee09f SHA512 
be72a5845ed0e4f09d54c608fc8373757d0d8dbf6f3d9be1a4ee671be22cec31e8eda2e8591c007e80df30059938b3480f5e7f035a115bd58e8dd05972296503
 WHIRLPOOL 
4c436fc9a78ea797d1e094baa04755c5cd8e3470371ad15296eab0b346c8a4ea5018c10240d5f9f1647995f2e645665aad3c867a67d1281fb3b843375af448ee
 DIST zathura-0.3.3.tar.gz 203604 SHA256 
3347decfc8d4b918a6bca1d44657c3b97d4afcea3c8c1f162c57198b13e8dce7 SHA512 
0bfcb2c9ca6e7cf44db1c04fdcc5e1e2122b5bd060c10b711a331f885371a523881a46376c770b60cf199530fd9c7814248e8a6da556da8cd464a3a85dbad8e3
 WHIRLPOOL 
c7d94f9db579336f6c2f41b1789e5ffba882b0c00c57e935146297c445cb1ec2894dc7d3dfc0b02ce695e5b5849d3820f91dea8149f206e036c3aae3402b8a4c
 DIST zathura-0.3.5.tar.gz 168808 SHA256 
2a71b5d49fa70c01535869f4642bc379bf4c182a97b01e2d09b81800426e330c SHA512 
a28b10f58b88f8e162e693d164bd1bbe5a6580b49fcedb0825d0b981f74b91783d650dc13f230be41bee0d11c406f10b2b823e87306e8de5e5e09d70878a8610
 WHIRLPOOL 
5b912837368ce9958dc38e33b2a3972bb04cd80eba289889359905e908a59ee095c7c57a1fe6fcad8977f4095516557a605e6794ffaf840cd7a5c4c89afc376b
+DIST zathura-0.3.6.tar.gz 169560 SHA256 
086a8be25d538fc6539fbee8f01ecf16d25819dfaad50cd2dbd84e30152ccb3b SHA512 
6eb8a8ac4589aa03ddfbe652c7700b354c0156a615493c3efdd730c4c5d72e295ad666f406541b664c17eae65c4079697fd4c4d0b9b1f04b8743a7518b123723
 WHIRLPOOL 
566f2bf5933c0c4dff27b2bac3ef7359135d56e4b0569fbfdf16ea74d57264f9701f200d436bbf50e2cb88c8554cd11484403c76dab435847db1e4a10e4e338c

diff --git a/app-text/zathura/zathura-0.3.6.ebuild 
b/app-text/zathura/zathura-0.3.6.ebuild
new file mode 100644
index 000..94e403b
--- /dev/null
+++ b/app-text/zathura/zathura-0.3.6.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils fdo-mime multilib toolchain-funcs virtualx
+[[ ${PV} == * ]] && inherit git-2
+
+DESCRIPTION="A highly customizable and functional document viewer"
+HOMEPAGE="http://pwmt.org/projects/zathura/;
+if ! [[ ${PV} == * ]]; then
+SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz;
+fi
+EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git;
+EGIT_BRANCH="develop"
+
+LICENSE="ZLIB"
+SLOT="0"
+if ! [[ ${PV} == * ]]; then
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+else
+KEYWORDS=""
+fi
+IUSE="+magic sqlite synctex test"
+
+RDEPEND=">=dev-libs/girara-0.2.5:3=
+   >=dev-libs/glib-2.32:2=
+   x11-libs/cairo:=
+   >=x11-libs/gtk+-3.6:3
+   magic? ( sys-apps/file:= )
+   sqlite? ( dev-db/sqlite:3= )
+   synctex? ( >=app-text/texlive-core-2015 )"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+   virtual/pkgconfig
+   test? ( dev-libs/check )"
+
+pkg_setup() {
+   myzathuraconf=(
+   WITH_MAGIC=$(usex magic 1 0)
+   WITH_SQLITE=$(usex sqlite 1 0)
+   WITH_SYNCTEX=$(usex synctex 1 0)
+   PREFIX="${EPREFIX}"/usr
+   LIBDIR='${PREFIX}'/$(get_libdir)
+   CC="$(tc-getCC)"
+   SFLAGS=''
+   VERBOSE=1
+   DESTDIR="${D}"
+   )
+}
+
+src_compile() {
+   emake "${myzathuraconf[@]}"
+}
+
+src_test() {
+   Xemake "${myzathuraconf[@]}" test
+}
+
+src_install() {
+   emake "${myzathuraconf[@]}" install
+   dodoc AUTHORS
+}
+
+pkg_postinst() {
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   fdo-mime_desktop_database_update
+}



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

2016-07-31 Thread Maxim Koltsov
commit: e308862e3832fde54e8388f2d3105cc43601e1aa
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Jul 31 16:53:21 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Jul 31 16:58:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e308862e

dev-libs/girara: bump to 0.2.6

 dev-libs/girara/Manifest|  1 +
 dev-libs/girara/girara-0.2.6.ebuild | 65 +
 2 files changed, 66 insertions(+)

diff --git a/dev-libs/girara/Manifest b/dev-libs/girara/Manifest
index dfcd5d7..86ae585 100644
--- a/dev-libs/girara/Manifest
+++ b/dev-libs/girara/Manifest
@@ -2,3 +2,4 @@ DIST girara-0.2.2.tar.gz 72553 SHA256 
6382dfdf1cc7ddfedf3d1ece5a7f07590c49b49321
 DIST girara-0.2.3.tar.gz 74107 SHA256 
b07fcce509a27c5917a997eb08cc5c8da20e9013f59ae89367ff048f2eae0ede SHA512 
143a56e394838e255db1e6b95969023d74aa768b88f8b487c6f0f6d92753e0fdb43bfdca8423e161aeb7eae3abcd5777d45540ec5ec615fe72fb667418206c33
 WHIRLPOOL 
1d714a860aa5d4d2095c37450767544650996d0c06dba64a6cc221dea8352e293cb47de49ac5474e5abb71dc74f1621315e2561fd5d67088c85d138d0e7e1e2e
 DIST girara-0.2.4.tar.gz 74660 SHA256 
2ee04e4c0e700d455ebaf92f804355f948754e7d3751d409db6595419e6ece5e SHA512 
9e22c6beb1d85a84db7b014da12fe425dced36e5ef9cd5828303d438642e09943fc9ae150b925f8b8ea5bd4e8bf8803ee964ce400e67b3ea314a4dec0a4643b4
 WHIRLPOOL 
8a5323805656b8066c01798527d12de25cead2d3d670f6423e0615ca5bdca5ca829816e404a425c8a3c359afa50f339a88dddb243a63b939a2e383f61ab33c0d
 DIST girara-0.2.5.tar.gz 75215 SHA256 
5cf4f2d044385b189ed8e9efcae8532db1f2d63a240a1e226f3491c996aba892 SHA512 
62f497d0bcab0765946d141b5c9bd79459e526e385da32f69311e810c9142e570de41521b98df8e08b44e0e34326db370f5b5ed4cb02bbdc2124febe6c2cce45
 WHIRLPOOL 
2b1555969784c996fff495f73e9d2514c66d426c478a4e51e48ecb51402a4c9fba0e66865d2f924108731507cac402f988eec781b32ccca3215b11c589e01f2e
+DIST girara-0.2.6.tar.gz 75841 SHA256 
eba69b3522b4d149e06d133de52877913275873c505993fad08b6d7884ec9a0f SHA512 
a55702fc85594c6b8ee2cf3cdcde659b2b85559d1d5d2eff9ff05247b9762d0ee4ccc8e5e2fbb12ad174fb85bca7941a413c866aafa419765ed88cc1c4efa901
 WHIRLPOOL 
6b452e74ed76f47425514b723abf85515f5fa2f9704f4b86d3529e72c2903150324c521bdd8044a3695240034e247bb9eb00d061660bb91a81d35e1974176b75

diff --git a/dev-libs/girara/girara-0.2.6.ebuild 
b/dev-libs/girara/girara-0.2.6.ebuild
new file mode 100644
index 000..9ace98c
--- /dev/null
+++ b/dev-libs/girara/girara-0.2.6.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib toolchain-funcs
+[[ ${PV} == * ]] && inherit git-2
+
+DESCRIPTION="A library that implements a user interface that focuses on 
simplicity and minimalism"
+HOMEPAGE="http://pwmt.org/projects/girara/;
+if ! [[ ${PV} == * ]]; then
+SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz;
+fi
+EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git;
+EGIT_BRANCH="develop"
+
+LICENSE="ZLIB"
+SLOT="3"
+if ! [[ ${PV} == * ]]; then
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+else
+KEYWORDS=""
+fi
+IUSE="libnotify static-libs"
+
+RDEPEND=">=dev-libs/glib-2.28
+   >=x11-libs/gtk+-3.4:3
+   dev-libs/json-c
+   !<${CATEGORY}/${PN}-0.1.6
+   libnotify? ( >=x11-libs/libnotify-0.7 )"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+pkg_setup() {
+   mygiraraconf=(
+   WITH_LIBNOTIFY=$(usex libnotify 1 0)
+   PREFIX="${EPREFIX}"/usr
+   LIBDIR='${PREFIX}'/$(get_libdir)
+   CC="$(tc-getCC)"
+   SFLAGS=''
+   VERBOSE=1
+   DESTDIR="${D}"
+   )
+}
+
+src_prepare() {
+   # Remove 'static' and 'install-static' targets
+   if ! use static-libs; then
+   sed -i \
+   -e '/^${PROJECT}:/s:static::' \
+   -e '/^install:/s:install-static::' \
+   Makefile || die
+   fi
+}
+
+src_compile() {
+   emake "${mygiraraconf[@]}"
+}
+
+src_install() {
+   emake "${mygiraraconf[@]}" install
+   dodoc AUTHORS
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/wgetpaste/

2016-07-04 Thread Maxim Koltsov
commit: 16db6ad40235beb049e1ab128cc203ea4c621748
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Jul  4 11:37:49 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Jul  4 11:42:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16db6ad4

app-text/wgetpaste: bump to 2.27, clean old

Gentoo-Bug: 577242

Package-Manager: portage-2.3.0

 app-text/wgetpaste/Manifest|  2 +-
 app-text/wgetpaste/metadata.xml|  3 --
 app-text/wgetpaste/wgetpaste-2.22.ebuild   | 34 --
 ...tpaste-2.25-r2.ebuild => wgetpaste-2.27.ebuild} |  7 ++---
 4 files changed, 3 insertions(+), 43 deletions(-)

diff --git a/app-text/wgetpaste/Manifest b/app-text/wgetpaste/Manifest
index 05ef13a..ae180c0 100644
--- a/app-text/wgetpaste/Manifest
+++ b/app-text/wgetpaste/Manifest
@@ -1,2 +1,2 @@
-DIST wgetpaste-2.22.tar.bz2 10842 SHA256 
a903d4b93e487046226ad77037a28cb5f6cf2465bf212e5edf568c4135f6fe05 SHA512 
4a9fd56b1d4924a863d10af38721469ac0116cb05b5e5e79f5ecf149ba2af69acf79a30bc66450b9363b2fa7116b20222073dc8d7bc1e7dbab79981e6ce80396
 WHIRLPOOL 
c25fc58c0e0a01b0960ebb07e270c7c8136d1589f16eae9c1e94c614260b479abdbf5255d60d9ebe477c5acd201f0e598f69a3501cd127fb7f42e9a80b443d77
 DIST wgetpaste-2.25.tar.bz2 11107 SHA256 
6a7e078e6607f4fe819fc52857a601630ec0f7d2ee855d3b1cd7e75a904c40f4 SHA512 
c3cd56f32311c77ce5ac970f0cd6b2e8285cac3caaf61669237ac707ed3b9aab285fbe9dee6260ea13b8df41a22acfaa3b8439298560ab68c3a568d60557d82e
 WHIRLPOOL 
ad64e1d45cb49dd70a2b33e49e81f255b304def9e4b8d8c29ac4b4161fb7cc290574686a0488a731cd36f339fde0f78da90ad439f1b771b8d5bd2f2df9cd67c3
+DIST wgetpaste-2.27.tar.bz2 10869 SHA256 
d55b789803ddc5dceee2649f35eca53e4ee276fda948ba7b5d4bd3961a92edb8 SHA512 
d4cb39f6b8bd01e31a109621ac21a49ddc7a0c63bca649412a9ca2e6364aa2ba0046ea25af7ce80981c275f9c6ba9f3cdb32af7ed9d45094a62ef278f0e41b7b
 WHIRLPOOL 
831093933fa155616080f6c7641b16f8e7f68f5b44fd4c9d1198a31c25397879733e1bb1329fd5a7b2733e1e00cc8646652b24911891b1034b6c3ad34ee3dafe

diff --git a/app-text/wgetpaste/metadata.xml b/app-text/wgetpaste/metadata.xml
index fd9309a..73f9122 100644
--- a/app-text/wgetpaste/metadata.xml
+++ b/app-text/wgetpaste/metadata.xml
@@ -9,7 +9,4 @@
maksbo...@gentoo.org
        Maxim Koltsov

-   
-   Set one of lodgeit-like (ex 
http://paste.pocoo.org) services as default
-   
 

diff --git a/app-text/wgetpaste/wgetpaste-2.22.ebuild 
b/app-text/wgetpaste/wgetpaste-2.22.ebuild
deleted file mode 100644
index b6d9bba..000
--- a/app-text/wgetpaste/wgetpaste-2.22.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-DESCRIPTION="Command-line interface to various pastebins"
-HOMEPAGE="http://wgetpaste.zlin.dk/;
-SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="zsh-completion +lodgeit-default"
-
-DEPEND=""
-RDEPEND="net-misc/wget
-   zsh-completion? ( app-shells/zsh )"
-
-src_prepare() {
-   sed -i -e "s:/etc:\"${EPREFIX}\"/etc:g" wgetpaste || die
-}
-
-src_install() {
-   dobin ${PN}
-   insinto /etc/wgetpaste.d
-   newins "${FILESDIR}"/wgetpaste-config-services services.conf
-   use lodgeit-default && \
-   newins "${FILESDIR}"/wgetpaste-config-default-lodgeit 
gentoo-default.conf
-   if use zsh-completion ; then
-   insinto /usr/share/zsh/site-functions
-   doins _wgetpaste
-   fi
-}

diff --git a/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild 
b/app-text/wgetpaste/wgetpaste-2.27.ebuild
similarity index 54%
rename from app-text/wgetpaste/wgetpaste-2.25-r2.ebuild
rename to app-text/wgetpaste/wgetpaste-2.27.ebuild
index d4896c8..1bbd0da 100644
--- a/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild
+++ b/app-text/wgetpaste/wgetpaste-2.27.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-fr

[gentoo-commits] repo/gentoo:master commit in: games-action/cs2d/

2016-07-04 Thread Maxim Koltsov
commit: 557fb192f12ef89a5ade2ef4b657f7a3ea0243bc
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Jul  4 11:19:17 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Jul  4 11:22:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=557fb192

games-action/cs2d: bump to 1002

 games-action/cs2d/Manifest   | 4 ++--
 games-action/cs2d/{cs2d-0123.ebuild => cs2d-1002.ebuild} | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/games-action/cs2d/Manifest b/games-action/cs2d/Manifest
index fa4f0b7..a21fda3 100644
--- a/games-action/cs2d/Manifest
+++ b/games-action/cs2d/Manifest
@@ -1,5 +1,5 @@
 DIST cs2d.png 479 SHA256 
4114a718e4e1c9b6686571d41f2e66598940e112f129b2c858b2d75ba4f0e607 SHA512 
e8894771deedb8e5018d0be986a53920e8f37fe10485df499e4c271d14014701cf345858ba7904ab6db4178f2cb2244684620a6c5ceacba26f62a29c3bd0463b
 WHIRLPOOL 
fb831b0ac2ba015f759bd83bee10289031eb62f8ec0cdd3e550fd3b42db1223ff1450d40eb339f85f997bafb1befb65885918674fa38662400dcc155aec0b285
-DIST cs2d_0123_linux.zip 866041 SHA256 
8bf7642999718af788991eb5aa0a1924bf7f4090f6b035434e237b4e0ac99d32 SHA512 
93979b83bcee95cacc933f05cf8aecf223b52d4cbea006d3c9a9c5f4cb1f72ab7dc07e102ce4915ad84fd208db5a5e7ebfeec89ee342ca806ccbc5a22692d0fc
 WHIRLPOOL 
ad9f6d09ac609acf3fdd2f9137970e02a3aca1cdbf5a5f79d7dc9dcebb06f544dd68fa0a9aac48eebe5f18db55b3b5799a422c4390757d8bddc23560c062c343
-DIST cs2d_0123_win.zip 8107120 SHA256 
da3e771bb1219a2037ca00101072ffd20fc89227710dcd9e2f7939b787a1dac5 SHA512 
847961422a3451af67024b5c0044291adee7f0edb0832c288e7fa7f9333000de2d0be9c4f12112e199e32b4c1f4b8e61788ed7e0eb6ae2b49d6acbd9ab82726b
 WHIRLPOOL 
340eff3c3436d143b3e01e6c8081c8b995d076cbd10dfce8cd13e4077b29f6741f0b6ec89c5bd9c4fbbd07d642ab3875628a52f6a12cbd902a7858fb86c6f51d
 DIST cs2d_0127_linux.zip 878017 SHA256 
69b28886aff60cc128e0ad9845e9d120beb9250cb1c99fc18c65f8de82f115c7 SHA512 
738be401192a795e76404cf3a97986fcfba2dc082dcec5c546a1c133a50b0a651b2d1f94885f77d830c90b0c37612e615e47fbf51a6f677a56034be62a8c5a6a
 WHIRLPOOL 
b5b4d467643587fcfcb03857f654967cf2bd5c4524a1b6a093350a6b580b14673e58be21cd1b381a9c6140c0181b92a0817f96cc6e330a0a0765f9a3deb445c1
 DIST cs2d_0127_win.zip 8229767 SHA256 
e143b48d8ec425a8d0fac65998386a49db6ad32e9c09804605bb8399cf422d9c SHA512 
cbc3c7c8246907d8c8d8143679e1319048df09398b4f25cc50ecae0473d8bc186752418727297da0f79b4b323d272a9e1b97a0b0249243bb9098abc23897
 WHIRLPOOL 
ea014b6f5e29a15b324210dabf1ed5a124b06b32371d88b192f815abfc9ede4771b9c5862f7299b18611fed41191a06b4f0e8d205bd026458fb61425706f34f3
+DIST cs2d_1002_linux.zip 1035579 SHA256 
cf0667a01ed1663bfeef161c4764edfd14bef20a0ceea86b1c6c7c6016e0a0d5 SHA512 
f385a6558f40a01324884a8b765f0fcb8dddcfb59bf983be110234a16cf937ba8c0089dce269fd1cec6b51a380810c5e1676e14a95112364b59cbb07e290a8bc
 WHIRLPOOL 
a6ab5950238f6dad4852c2112b4a3729db03e7ad6130e0f5c31fda840326097f814eba03e750003f90860fdc4bc03f06708b6f27ef049131851a035e5f0304d4
+DIST cs2d_1002_win.zip 11039631 SHA256 
ef2a496202ea997eaa7bf33bfaad0500e251bf43056dc85b05272936229a303d SHA512 
b387cd7172fa35c6e66d7457cd4ca457d5bab795944fa9b53a0879301d72d6e5f2c76b760c119df32ae4e69f158e6c593bf921a83e54e25f79cb4e3d2650965c
 WHIRLPOOL 
5d605474ded452f277cc6f01b48f4313a852ae65dfc394cadc0190c905d57b919f1078f4b64773d3c62786ee3558abd26a30f70415c523e0ae6fe140f585904b

diff --git a/games-action/cs2d/cs2d-0123.ebuild 
b/games-action/cs2d/cs2d-1002.ebuild
similarity index 95%
rename from games-action/cs2d/cs2d-0123.ebuild
rename to games-action/cs2d/cs2d-1002.ebuild
index 28b3cc3..e105712 100644
--- a/games-action/cs2d/cs2d-0123.ebuild
+++ b/games-action/cs2d/cs2d-1002.ebuild
@@ -34,8 +34,7 @@ RDEPEND="
>=x11-libs/libXxf86vm-1.1.3[abi_x86_32(-)]
)"
 
-QA_PRESTRIPPED="opt/cs2d/CounterStrike2D"
-QA_EXECSTACK="opt/cs2d/CounterStrike2D"
+QA_PREBUILT="opt/cs2d/CounterStrike2D"
 
 S=${WORKDIR}
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/aqemu/

2016-07-04 Thread Maxim Koltsov
commit: f6e77ae538245f18114e365e4554151a295fda87
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Jul  4 11:00:48 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Jul  4 11:00:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6e77ae5

app-emulation/aqemu: bumped to 0.9.2

Gentoo-Bug: 584450

Package-Manager: portage-2.3.0

 app-emulation/aqemu/Manifest   |  1 +
 app-emulation/aqemu/aqemu-0.9.2.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/app-emulation/aqemu/Manifest b/app-emulation/aqemu/Manifest
index 0251138..09013e2 100644
--- a/app-emulation/aqemu/Manifest
+++ b/app-emulation/aqemu/Manifest
@@ -1 +1,2 @@
 DIST aqemu-0.8.2.tar.bz2 1025129 SHA256 
03c4a95328f78238021168ca4887f9735641f10eb4eb1eff58b08c15b748bf03 SHA512 
45f27f82ca307ffc50ea26a57631b47236fd04915274bb00a0720e65859e183d56c3243e0e31d71e5280d0941a9c80c1457b09d393e5c4d4deeb1fea4159459d
 WHIRLPOOL 
c5a058883df1424d5d1b2b028fca7fd6aae8b72281060a305a428e63ad5bfb1d062c56c18878b6a279a79953a88c760553a701b5c3346113836eb56ab4a30aa2
+DIST v0.9.2.tar.gz 1373465 SHA256 
e3d54de00ebdce3754f97f7e0e7cce8cebb588e8ce6bc249401cc909281b08de SHA512 
9d4808172ee1be82509956560e4d3f9ee349fedd920342146083cc9bc79ef51fc95937c64f20ffb13e2849c577f95f59b5b65271d6e29e2d2e1ec2d1562006ba
 WHIRLPOOL 
ddefe4c3265b10940c3d65a5f6182ecfce627bcc45486d7a2b8701a6152b8a144242ea55018437f71773f7b8bb70b763095b5db6f933fdacd7b16b1f22112b87

diff --git a/app-emulation/aqemu/aqemu-0.9.2.ebuild 
b/app-emulation/aqemu/aqemu-0.9.2.ebuild
new file mode 100644
index 000..c33ccb6
--- /dev/null
+++ b/app-emulation/aqemu/aqemu-0.9.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+DESCRIPTION="Graphical interface for QEMU and KVM emulators, using Qt5"
+HOMEPAGE="http://sourceforge.net/projects/aqemu;
+SRC_URI="https://github.com/tobimensch/${PN}/archive/v${PV}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="vnc"
+
+DEPEND="${RDEPEND}"
+RDEPEND="app-emulation/qemu
+   vnc? ( net-libs/libvncserver )
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtnetwork:5
+   dev-qt/qttest:5
+   dev-qt/qtprintsupport:5"
+
+DOCS="AUTHORS CHANGELOG README TODO"
+
+src_configure() {
+   local mycmakeargs=(
+   "-DMAN_PAGE_COMPRESSOR="
+   "-DWITHOUT_EMBEDDED_DISPLAY=$(usex vnc "OFF" "ON")"
+   )
+
+   cmake-utils_src_configure
+}



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

2016-07-04 Thread Maxim Koltsov
commit: 051a0f030251fef9b87e5f0fecdb23d8745d62c5
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Jul  4 10:24:42 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Jul  4 10:24:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051a0f03

media-sound/split2flac: bump to 122

 media-sound/split2flac/Manifest | 2 +-
 media-sound/split2flac/{split2flac-115.ebuild => split2flac-122.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/split2flac/Manifest b/media-sound/split2flac/Manifest
index 764f60e..bdd5ad2 100644
--- a/media-sound/split2flac/Manifest
+++ b/media-sound/split2flac/Manifest
@@ -1 +1 @@
-DIST split2flac-115.tar.gz 9409 SHA256 
7f52f1e34fc1cf62720f16d59e2e56302c2466b811fe9819a5ebd9272ed71747 SHA512 
c8d362383e84be995af343be7fff7b5bf6b6f1cef5c8ba930c371bdd35e398bed373dcdaaad2ba40c74719311fb91378a4359ca9e2e8e1f6dbc6486f7448bcf2
 WHIRLPOOL 
17528b108f5adb02110cbe7d6aecf4a1b3123d5fd0c7b72fa47747c94a90cce8556e9b191d25178f2702f3b472537bfb7697df874c4f0c95d01ce8cb0cc5aafa
+DIST split2flac-122.tar.gz 9468 SHA256 
96dd53c92935ae6cb1650bf92f989658d7909b691bbec12b639736f79f5b639c SHA512 
3be5d8f5a55107a6230108bb49b422303504a1b16ebf458759122b27effb492353f92f95c00bcfa52b45fad24a4e08fa638df9922288bc2844e3a971d3734ed8
 WHIRLPOOL 
14c5252ba8c2fd56b580090797afdaae74a504c797775d309cce69c50ecf3af3a73f5d6ad8a82e2bd15ff87b18687c6a49f0c84b33bec7654d55303e50919f24

diff --git a/media-sound/split2flac/split2flac-115.ebuild 
b/media-sound/split2flac/split2flac-122.ebuild
similarity index 100%
rename from media-sound/split2flac/split2flac-115.ebuild
rename to media-sound/split2flac/split2flac-122.ebuild



[gentoo-commits] dev/maksbotan:master commit in: /

2016-04-18 Thread Maxim Koltsov
commit: f0a6dc467e3b3031aaa4bb21da8705f5982e8415
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Apr 18 20:35:54 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Apr 18 20:35:54 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=f0a6dc46

Merge git hub pull request branch 10

 app-admin/keepasshttp/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[gentoo-commits] dev/maksbotan:master commit in: app-admin/keepasshttp/

2016-04-18 Thread Maxim Koltsov
commit: 1ddff8a78247187b93be1752ec7d3b274fc5979c
Author: Pastafarianist  gmail  com>
AuthorDate: Sun Apr 17 17:46:58 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Apr 17 17:46:58 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=1ddff8a7

app-admin/keepasshttp: updated manifest

 app-admin/keepasshttp/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/keepasshttp/Manifest b/app-admin/keepasshttp/Manifest
index 4d4ef1d..c5be38c 100644
--- a/app-admin/keepasshttp/Manifest
+++ b/app-admin/keepasshttp/Manifest
@@ -1 +1 @@
-DIST KeePassHttp.plgx 405207 SHA256 
28ce9acd781d3f3e38e3b3b49ca7f4900ec6740f7effcbdccda5d334872c17b5 SHA512 
2038de06bbf80cd172e1d4ca16c7469034a692459e7a73b760709c832c4c54e8eab0ee931267e2b5f5e65188cd25b7b8b8ca669ee6c8939a5e981571898751c1
 WHIRLPOOL 
7da17c77a9ef435f83068e561d1775a8fb3fec214ce23c816df5bafc8736b5bad96e9efa86cf225f3fc1e5389785cf37d7537ed825d1da0b1fd1ecba2095e01e
+DIST KeePassHttp.plgx 160499 SHA256 
430948219b0bc282fbf0760da7b66f72b13eee4db57de457e563342d253bd8ae SHA512 
1bb208a76908f0b78b13bee59eb02312e27642bd027c44e5eede9e6b69f7d22e8cd4a590cc68f8b4337142bb94f3a395e45e3947d347ea3f8c31ac405b912770
 WHIRLPOOL 
4df6b14c1be2ba2c07426c02bf472cd7039dfaf567922e5d91c6f24df8cd9b26d88da9fedf1c18d6f5e4f1d9746954d289e0a75a4ff88bf265916fc8ff9b54cf



[gentoo-commits] dev/maksbotan:master commit in: /

2016-03-15 Thread Maxim Koltsov
commit: 0bd2e26362fd77b48e9463516c8497422a586e1b
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Mar 15 21:45:03 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Mar 15 21:45:03 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=0bd2e263

Merge GitHub pull request 9

See https://github.com/maksbotan/maksbotan_overlay/pull/9

 net-misc/yandex-music-download/Manifest | 2 --
 1 file changed, 2 deletions(-)



[gentoo-commits] dev/maksbotan:master commit in: net-misc/yandex-music-download/

2016-03-15 Thread Maxim Koltsov
commit: ad5710a337104a60b66bfb67271b1561cb5f93e6
Author: Pastafarianist  gmail  com>
AuthorDate: Tue Mar 15 12:29:06 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Mar 15 12:29:06 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=ad5710a3

Removed unneeded manifest

 net-misc/yandex-music-download/Manifest | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net-misc/yandex-music-download/Manifest 
b/net-misc/yandex-music-download/Manifest
deleted file mode 100644
index fa23b2c..000
--- a/net-misc/yandex-music-download/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD yandex-music-download-.ebuild 655 SHA256 
71fcea1f251e9e03e278ea8e7e31acc54e499bd31fba3fbdde6662055c42a295 SHA512 
6c80b86583b10a19883aca481fa9ceb4dc832277442d8955eadbcfcec6bf638c4d2c94196777dd12d6a17dc5a1fcc8744496ef002c4e7c5c2d01ed2f05f73a74
 WHIRLPOOL 
906e973f4fb9a2bea9b602d56e74047bb274aaf65316541925bccb7241fa984ac5359dc60501bcb4b56d1247095a6895e3fede789deed68c6a7b64d71691712a
-MISC metadata.xml 335 SHA256 
7c0c86f3efee95e0c2f8e8151ffe1d70a5cb657c80e5137780e9ad54c8db4061 SHA512 
916c2cdc1dc371d63becc0676fcf5d0a54b99987b5b2b567dbf4ee369aa4f78ba6bbb56837636a5ab9d2d0e8dadd991a12d4087430e1a82549dd6a12da7c0fde
 WHIRLPOOL 
159b6bb0985de9d001340f1fdefc608532af447979497390442bd111d32837c1e0ad1a45a31c154de3a900473a73e91ed7c403a726b118493c5f93a38eff7fb0



[gentoo-commits] dev/maksbotan:master commit in: /

2016-03-15 Thread Maxim Koltsov
commit: aa006043d9f5ab03d872500ed60544b6f869d984
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Mar 15 11:24:42 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Mar 15 11:24:42 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=aa006043

Merge GitHub pull request 8

See https://github.com/maksbotan/maksbotan_overlay/pull/8

 net-misc/yandex-music-download/Manifest|  2 ++
 .../yandex-music-download}/metadata.xml|  0
 .../yandex-music-download-.ebuild  | 32 ++
 3 files changed, 34 insertions(+)



[gentoo-commits] dev/maksbotan:master commit in: net-misc/yandex-music-download/

2016-03-15 Thread Maxim Koltsov
commit: 96bdd0b03b79ec8cd55f7d1c8589dba33abe7bd7
Author: Pastafarianist  gmail  com>
AuthorDate: Tue Mar 15 00:25:50 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Mar 15 00:25:50 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=96bdd0b0

net-misc/yandex-music-download: added to the repo

 net-misc/yandex-music-download/Manifest|  2 ++
 net-misc/yandex-music-download/metadata.xml| 12 
 .../yandex-music-download-.ebuild  | 32 ++
 3 files changed, 46 insertions(+)

diff --git a/net-misc/yandex-music-download/Manifest 
b/net-misc/yandex-music-download/Manifest
new file mode 100644
index 000..fa23b2c
--- /dev/null
+++ b/net-misc/yandex-music-download/Manifest
@@ -0,0 +1,2 @@
+EBUILD yandex-music-download-.ebuild 655 SHA256 
71fcea1f251e9e03e278ea8e7e31acc54e499bd31fba3fbdde6662055c42a295 SHA512 
6c80b86583b10a19883aca481fa9ceb4dc832277442d8955eadbcfcec6bf638c4d2c94196777dd12d6a17dc5a1fcc8744496ef002c4e7c5c2d01ed2f05f73a74
 WHIRLPOOL 
906e973f4fb9a2bea9b602d56e74047bb274aaf65316541925bccb7241fa984ac5359dc60501bcb4b56d1247095a6895e3fede789deed68c6a7b64d71691712a
+MISC metadata.xml 335 SHA256 
7c0c86f3efee95e0c2f8e8151ffe1d70a5cb657c80e5137780e9ad54c8db4061 SHA512 
916c2cdc1dc371d63becc0676fcf5d0a54b99987b5b2b567dbf4ee369aa4f78ba6bbb56837636a5ab9d2d0e8dadd991a12d4087430e1a82549dd6a12da7c0fde
 WHIRLPOOL 
159b6bb0985de9d001340f1fdefc608532af447979497390442bd111d32837c1e0ad1a45a31c154de3a900473a73e91ed7c403a726b118493c5f93a38eff7fb0

diff --git a/net-misc/yandex-music-download/metadata.xml 
b/net-misc/yandex-music-download/metadata.xml
new file mode 100644
index 000..df09800
--- /dev/null
+++ b/net-misc/yandex-music-download/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   maksbo...@gentoo.org
+       Maxim Koltsov
+
+
+   mr.pastafarian...@gmail.com
+   Dmitry Nikulin
+
+

diff --git a/net-misc/yandex-music-download/yandex-music-download-.ebuild 
b/net-misc/yandex-music-download/yandex-music-download-.ebuild
new file mode 100644
index 000..04b3594
--- /dev/null
+++ b/net-misc/yandex-music-download/yandex-music-download-.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+EGIT_REPO_URI="git://github.com/kaimi-ru/yandex-music-download.git"
+
+inherit git-r3
+
+DESCRIPTION="Yandex Music downloader"
+HOMEPAGE="https://github.com/kaimi-ru/yandex-music-download;
+SRC_URI=""
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+RDEPEND="dev-lang/perl
+   dev-perl/Mozilla-CA
+   dev-perl/MP3-Tag
+   dev-perl/Getopt-Long-Descriptive"
+
+src_prepare() {
+   sed -i 's/\r//g' src/ya.pl || die "sed failed"
+   sed -i '1 i\#\!\/usr\/bin\/env perl' src/ya.pl || die "sed failed"
+}
+
+src_install() {
+   dobin src/ya.pl || die "dobin failed"
+}



[gentoo-commits] dev/maksbotan:master commit in: metadata/

2016-03-14 Thread Maxim Koltsov
commit: 30d5057c828296a76a17a19f8594703f55e0fa21
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 14 12:17:32 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 14 12:17:32 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=30d5057c

Enable thin manifests

 metadata/layout.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index d43e61c..ca9fee1 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -1 +1,2 @@
 masters = gentoo
+thin-manifests = true



[gentoo-commits] dev/maksbotan:master commit in: dev-python/msgpack-rpc-python/, app-admin/keepasshttp/, x11-misc/gxkb/, ...

2016-03-14 Thread Maxim Koltsov
commit: 92afacd50e2a30d0272c678caa676300c0c43032
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 14 12:19:39 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 14 12:19:39 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=92afacd5

Regenerate all manifests as thin ones

 app-admin/keeagent/Manifest  |  2 --
 app-admin/keepass-favicon/Manifest   |  2 --
 app-admin/keepasshttp/Manifest   |  2 --
 app-admin/pronouncepwgen/Manifest|  2 --
 app-benchmarks/valley/Manifest   | 17 -
 app-i18n/poedit/Manifest | 15 ---
 app-misc/selfspy/Manifest|  2 --
 app-misc/sunflower/Manifest  |  5 +
 app-misc/ttysnoop/Manifest   |  7 +--
 app-text/bash_gist/Manifest  | 16 
 app-text/gisty/Manifest  | 19 +--
 app-text/pdf2htmlEX/Manifest | 17 -
 app-text/plastex/Manifest| 16 
 app-text/pygist/Manifest | 19 +--
 dev-cpp/luceneplusplus/Manifest  | 20 
 dev-libs/caffe/Manifest  | 16 
 dev-libs/nvidia-cuda-cudnn/Manifest  |  2 --
 dev-libs/re2/Manifest| 18 +-
 dev-libs/zimlib/Manifest | 17 -
 dev-python/llvmpy/Manifest   | 18 --
 dev-python/msgpack-rpc-python/Manifest   |  1 -
 dev-python/pybox2d/Manifest  |  2 --
 dev-python/pyre2/Manifest| 18 +-
 dev-python/pywbem/Manifest   | 16 
 dev-python/sleekxmpp/Manifest| 18 +-
 dev-python/spyne/Manifest|  3 ---
 dev-ruby/charlock_holmes/Manifest| 19 +--
 dev-util/nvidia-cuda-toolkit/Manifest|  3 ---
 dev-util/qbs/Manifest| 16 
 dev-util/zimwriterfs/Manifest| 16 
 net-libs/gtk-vnc/Manifest| 21 +
 net-misc/minidlna/Manifest   | 18 --
 net-wireless/cpyrit-cuda/Manifest| 18 +-
 net-wireless/cpyrit-opencl/Manifest  | 18 +-
 net-wireless/pyrit/Manifest  | 18 +-
 sys-boot/plymouth-preview/Manifest   | 18 +-
 sys-boot/plymouth-theme-preview/Manifest | 16 
 sys-kernel/rt3573sta/Manifest| 16 
 sys-kernel/rtl8192cu-fixes/Manifest  | 16 
 www-apps/gitlabhq/Manifest   | 19 +--
 x11-misc/gxkb/Manifest   | 16 
 x11-misc/unagi/Manifest  | 19 +--
 42 files changed, 15 insertions(+), 542 deletions(-)

diff --git a/app-admin/keeagent/Manifest b/app-admin/keeagent/Manifest
index a9e6202..51bda23 100644
--- a/app-admin/keeagent/Manifest
+++ b/app-admin/keeagent/Manifest
@@ -1,3 +1 @@
 DIST KeeAgent_v0.6.3.zip 901437 SHA256 
a7de2623c57119cf77619a9c5694abd79b72ba05dac3506d4dedeb2647d53fd4 SHA512 
22fa181f6b09276a3b85cd8b5cdbc01d5ed014303357c6c26521e6ee6c239bfeafbeeca5f1ee068cca3771c2ae54e201c61ddb3e89c2fbf29185fb34e642fadc
 WHIRLPOOL 
5a801af2a9d0074d3afc81ca111c7f16f12adedde8288ad634224a622e21fbbacecdaaead36fbfbfc2179390031b3b6c8c3ba642a73857beecc855f1aa346ca1
-EBUILD keeagent-0.6.3.ebuild 672 SHA256 
c5c76a0b2cd28755fc3c834ffded36a8f2e2f4fe36c38a96f6d767e2bca1fdda SHA512 
050e9df50b1fdd88a8ff0d6af828ee821601c223b65c5d8a2e04ebacb86798b28184afeff7071135af04abd969d0687dff0e3e7a321554e98eeda1b3931b005b
 WHIRLPOOL 
9fd35ab45f9c4b8426ab478f6e440ee58d398992a499d3bf5ff0aa9127d83c90d60fc79630c621353c6a27fc47f1cb13d1968ad12af41fe4e6ec02d9a532a3df
-MISC metadata.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be

diff --git a/app-admin/keepass-favicon/Manifest 
b/app-admin/keepass-favicon/Manifest
index 120b7c8..971bbb1 100644
--- a/app-admin/keepass-favicon/Manifest
+++ b/app-admin/keepass-favicon/Manifest
@@ -1,3 +1 @@
 DIST KeePassFaviconDownloader.plgx 58823 SHA256 
4d735e514e6c19d00947fc289fc2ee1288bd31541861c504837d089b6258723c SHA512 
9d1f01e5736d2d66c8c4616c59409b7b5f09b192309686299ae270e9db55a2c853c8ff273fe4f9c87510d9a20f3c06a869b3a0ce454695505beb75bac167f6bc
 WHIRLPOOL 
f457efbab2cdc606610f1b1a9033528e470336e934db0411accacb019c2fbbf789d158a540e8a5afd3f873f7acc8c2ba698eb2d8b9c4e50b802cb1b63df6c8fb
-EBUILD keepass-favicon-1.9.0.ebuild 772 

[gentoo-commits] dev/maksbotan:master commit in: /

2016-03-14 Thread Maxim Koltsov
commit: b695b57e34fc6a28b813f60c7977dbb692949fd4
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Mar 14 12:15:27 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 14 12:15:27 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=b695b57e

Merge GitHub pull request 7

See https://github.com/maksbotan/maksbotan_overlay/pull/7/

 app-admin/keepasshttp/Manifest |  2 +-
 app-misc/selfspy/Manifest  |  2 ++
 .../selfspy}/metadata.xml  |  2 +-
 app-misc/selfspy/selfspy-.ebuild   | 31 ++
 4 files changed, 35 insertions(+), 2 deletions(-)



[gentoo-commits] dev/maksbotan:master commit in: app-misc/selfspy/

2016-03-14 Thread Maxim Koltsov
commit: 5da3ec7adad6b2a733fde81c53971e8e226c36bf
Author: Pastafarianist  gmail  com>
AuthorDate: Mon Mar 14 12:14:07 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Mar 14 12:14:07 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=5da3ec7a

app-misc/selfspy: added to the repo

 app-misc/selfspy/Manifest|  2 ++
 app-misc/selfspy/metadata.xml| 12 
 app-misc/selfspy/selfspy-.ebuild | 31 +++
 3 files changed, 45 insertions(+)

diff --git a/app-misc/selfspy/Manifest b/app-misc/selfspy/Manifest
new file mode 100644
index 000..1d7654f
--- /dev/null
+++ b/app-misc/selfspy/Manifest
@@ -0,0 +1,2 @@
+EBUILD selfspy-.ebuild 700 SHA256 
e1cde3037b5c1380ed4983e630e4ef984ebac892b37f3291edbe7af1433cbfe0 SHA512 
e6bc2f736a748d6cbbc5918f376ba2d3723744d44489a00cda37afd5171e7f543acfec2b666829e6f28fff44be99b50a5f01a3f3648e8b966569226f4882d1f5
 WHIRLPOOL 
24062070e51b8ceb6619482b4919405e3ddac1dc73d83cc7cc779a4e01d02de4a3293a8d0992152de13dd51e1171861a8c764d965b9cd0ac62b4f9508ce16fa8
+MISC metadata.xml 335 SHA256 
7c0c86f3efee95e0c2f8e8151ffe1d70a5cb657c80e5137780e9ad54c8db4061 SHA512 
916c2cdc1dc371d63becc0676fcf5d0a54b99987b5b2b567dbf4ee369aa4f78ba6bbb56837636a5ab9d2d0e8dadd991a12d4087430e1a82549dd6a12da7c0fde
 WHIRLPOOL 
159b6bb0985de9d001340f1fdefc608532af447979497390442bd111d32837c1e0ad1a45a31c154de3a900473a73e91ed7c403a726b118493c5f93a38eff7fb0

diff --git a/app-misc/selfspy/metadata.xml b/app-misc/selfspy/metadata.xml
new file mode 100644
index 000..df09800
--- /dev/null
+++ b/app-misc/selfspy/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   maksbo...@gentoo.org
+       Maxim Koltsov
+
+
+   mr.pastafarian...@gmail.com
+   Dmitry Nikulin
+
+

diff --git a/app-misc/selfspy/selfspy-.ebuild 
b/app-misc/selfspy/selfspy-.ebuild
new file mode 100644
index 000..b3831a0
--- /dev/null
+++ b/app-misc/selfspy/selfspy-.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="git://github.com/gurgeh/selfspy.git"
+
+PYTHON_REQ_USE="tk"
+inherit distutils-r1 git-2
+
+DESCRIPTION="X11 personal keylogger daemon with statistical analysis"
+HOMEPAGE="https://github.com/gurgeh/selfspy;
+SRC_URI=""
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+DEPEND="
+   dev-python/python-daemon[${PYTHON_USEDEP}]
+   dev-python/lockfile[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   dev-python/python-xlib[${PYTHON_USEDEP}]
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] dev/maksbotan:master commit in: app-admin/keepasshttp/

2016-03-14 Thread Maxim Koltsov
commit: be25e62a31e268a16f501dd81a424552d2512443
Author: Pastafarianist  gmail  com>
AuthorDate: Sun Feb  7 11:31:57 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Feb  7 11:31:57 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=be25e62a

app-admin/keepasshttp: updated hash

 app-admin/keepasshttp/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/keepasshttp/Manifest b/app-admin/keepasshttp/Manifest
index f0a9582..6a9383b 100644
--- a/app-admin/keepasshttp/Manifest
+++ b/app-admin/keepasshttp/Manifest
@@ -1,3 +1,3 @@
-DIST KeePassHttp.plgx 157117 SHA256 
4803ea799962ec3e294691922d6255e63c5a96df36941f99ef633775829e7289 SHA512 
1fe71c0363e2cbbb1f8d0f668be326876088f128d5945a81124fd419e7ddba87a8eb762aa80c91944d0dcaa072d2cf6012d186380817456d8e307878e768ad0c
 WHIRLPOOL 
85240cf538d45d40435e994614e2be46e92c928240fd46dd2739cf9fc069cdfb196daf32e91d34dfd00f1d207d5a074007ef0c8cd29fa4d2a560060928424d40
+DIST KeePassHttp.plgx 405207 SHA256 
28ce9acd781d3f3e38e3b3b49ca7f4900ec6740f7effcbdccda5d334872c17b5 SHA512 
2038de06bbf80cd172e1d4ca16c7469034a692459e7a73b760709c832c4c54e8eab0ee931267e2b5f5e65188cd25b7b8b8ca669ee6c8939a5e981571898751c1
 WHIRLPOOL 
7da17c77a9ef435f83068e561d1775a8fb3fec214ce23c816df5bafc8736b5bad96e9efa86cf225f3fc1e5389785cf37d7537ed825d1da0b1fd1ecba2095e01e
 EBUILD keepasshttp-.ebuild 771 SHA256 
924f97fc8d6d8347037c37bddb7751f1e26aee8835a1462a5eb99bd8429a2fd8 SHA512 
480f6121848126c1955c72d55d1d5773d79ab51da4949f6d996786267e2f43c8203b0f7512c6484d6d8982c5837a9db18d20dd4d3db33dbfb35c8b2a699aed1d
 WHIRLPOOL 
fc26cac6e281f8ed31a32c86ce734396b7fd5ecfff2e05e4b1950ea6a3636c3ceee675371be28b2abe065af3a53b100bd452108c267ff6ac93e431966a397f94
 MISC metadata.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be



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

2016-02-28 Thread Maxim Koltsov
commit: 72874d73168051d2eb46d8cc0710fd2c476f051a
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Feb 28 14:30:21 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Feb 28 14:30:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72874d73

dev-python/tagpy: add PYTHON_USEDEP to dev-libs/boost dependency

Package-Manager: portage-2.2.27

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

diff --git a/dev-python/tagpy/tagpy-2013.1.ebuild 
b/dev-python/tagpy/tagpy-2013.1.ebuild
index 445c668..3518f85 100644
--- a/dev-python/tagpy/tagpy-2013.1.ebuild
+++ b/dev-python/tagpy/tagpy-2013.1.ebuild
@@ -16,7 +16,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples"
 
-RDEPEND=">=dev-libs/boost-1.49.0[python]
+RDEPEND=">=dev-libs/boost-1.49.0[python${PYTHON_TARGETS}]
>=media-libs/taglib-1.7.2"
 DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-02-15 Thread Maxim Koltsov
commit: 1af8f478cdb632eeea921debbc6eff61807f2dbc
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Mon Feb 15 08:55:11 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Feb 15 08:55:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af8f478

sys-kernel/openvz-sources: Bump to 2.6.32.113.11. Thanks to slepnoga.

Package-Manager: portage-2.2.27

 sys-kernel/openvz-sources/Manifest |  1 +
 .../openvz-sources-2.6.32.113.11.ebuild| 49 ++
 2 files changed, 50 insertions(+)

diff --git a/sys-kernel/openvz-sources/Manifest 
b/sys-kernel/openvz-sources/Manifest
index ebca98b..81e5db0 100644
--- a/sys-kernel/openvz-sources/Manifest
+++ b/sys-kernel/openvz-sources/Manifest
@@ -3,3 +3,4 @@ DIST patch-042stab108.5-combined.gz 52741774 SHA256 
9909c8565b17fdd5f0f6694ea1e5
 DIST patch-042stab108.8-combined.gz 52745522 SHA256 
3a08fe55caf39a012e00f434bbcc2fa590728186eeac4843d2937d1cd983c6a0 SHA512 
dc2b8e11084d3f11fb8b9f37f1a0d444881558982c1d9d4d7716c8bbe1ca5f594d2be0954ad57d8413075e431020b87eef2d11e9783f4dc22276b9ac892368c5
 WHIRLPOOL 
540a101279087c9cb992803188371e2082fe3d107b8c106a2dcd82bbc3c8895388c3fb15788e71d3b3438c0830da1c7f923a547fdcabf2b867aff4ecaa83bfe7
 DIST patch-042stab111.12-combined.gz 52812755 SHA256 
d427fb467f6ee2eb895c6ec54f3c7ef674a525e5e68f2c850763bb5e7916710c SHA512 
6cf071a8d7fe405e9a4907b2c8577c663cca3f799d3a4c03d79aea1ceec264abe336bf21e8f115a2ee13f4ba1b11abc1157cf231dcf55c4c89689985a07a86bf
 WHIRLPOOL 
d1d2b435ca53377adfe0dc85b040415928ce93cde33bc628fa0683824d8090238f8cb682fcac12b1f834edc3220a07486ddb9c63a0c8f3e9061829a49111b10e
 DIST patch-042stab112.15-combined.gz 64328107 SHA256 
10309105a1cedba25e122294cb918622d666fd3421656b0579dbc5e81f96f44f SHA512 
3c7ad792c9f8b13d61c0d9ed173e9fd9e2915a73d0533c32357c7caee1d213e42f891dc4ee1509b2bb4a7a19985f757ab52c3023169e341b45bb3ea6fb8bf8be
 WHIRLPOOL 
1c0f6c35a66342cbbe602107b269c04cf048e6efb4bbaf60210f6ee0eee30eb652d30518da6e85b9c37fead769b9bfd7d8a7410482c778a5b634d88b10c76c6c
+DIST patch-042stab113.11-combined.gz 64331474 SHA256 
00baf6ddb8fd50cf415d402fb4bfac064008ff7320183fee8985739401b6c002 SHA512 
87f9551d37f0f4c1dcbef251acf402c95c454c377300851d83d47bc100614cbda35767d32376827dd38d3daa72c3c80ed3b9504ce92924aa1d7b74c804fa1031
 WHIRLPOOL 
0141f853f1c0a7dad084a2f5889113b1a17ac24fcb2d66d19569a9f03368817f489adeddee00ab4b906ad4d31d744fae08acdf41142b09764c5be539afc8fcf6

diff --git a/sys-kernel/openvz-sources/openvz-sources-2.6.32.113.11.ebuild 
b/sys-kernel/openvz-sources/openvz-sources-2.6.32.113.11.ebuild
new file mode 100644
index 000..d145a19
--- /dev/null
+++ b/sys-kernel/openvz-sources/openvz-sources-2.6.32.113.11.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator
+
+OVZ_KV="$(get_version_component_range 4).$(get_version_component_range 5)"
+
+CKV=$(get_version_component_range 1-3)
+OKV=${OKV:-${CKV}}
+EXTRAVERSION=-${PN/-*}-${OVZ_KV}
+ETYPE="sources"
+KV_FULL=${CKV}${EXTRAVERSION}
+if [[ ${PR} != "r0" ]]; then
+   KV_FULL+=-${PR}
+   EXTRAVERSION+=-${PR}
+fi
+S=${WORKDIR}/linux-${KV_FULL}
+
+# ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH} should succeed.
+KV_MAJOR=$(get_version_component_range 1 ${OKV})
+KV_MINOR=$(get_version_component_range 2 ${OKV})
+KV_PATCH=$(get_version_component_range 3 ${OKV})
+
+KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.xz"
+
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE=0
+inherit kernel-2
+#detect_version
+
+KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DESCRIPTION="Kernel sources with OpenVZ patchset"
+HOMEPAGE="http://www.openvz.org;
+SRC_URI="${KERNEL_URI} ${ARCH_URI}
+   
http://download.openvz.org/kernel/branches/rhel6-${CKV}/042stab${OVZ_KV}/patches/patch-042stab${OVZ_KV}-combined.gz;
+
+UNIPATCH_STRICTORDER=1
+UNIPATCH_LIST="${DISTDIR}/patch-042stab${OVZ_KV}-combined.gz"
+
+K_EXTRAEINFO="This openvz kernel uses RHEL6 patchset instead of vanilla kernel.
+This patchset considered to be more stable and security supported by upstream,
+but for us RHEL6 patchset is very fragile and fails to build in many
+configurations so if you have problems use config files from openvz team
+http://wiki.openvz.org/Download/kernel/rhel6/042stab${OVZ_KV};



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

2016-02-05 Thread Maxim Koltsov
commit: 3475e025c28d3af4d03518a4ec90ed09f448d336
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Fri Feb  5 12:39:13 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Fri Feb  5 12:39:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3475e025

dev-python/pygame: add python 3.5 support

Gentoo-Bug: 573862

Package-Manager: portage-2.2.27

 dev-python/pygame/pygame-1.9.2_pre20120101-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pygame/pygame-1.9.2_pre20120101-r2.ebuild 
b/dev-python/pygame/pygame-1.9.2_pre20120101-r2.ebuild
index 242c6d3..bc9dace 100644
--- a/dev-python/pygame/pygame-1.9.2_pre20120101-r2.ebuild
+++ b/dev-python/pygame/pygame-1.9.2_pre20120101-r2.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 DISTUTILS_IN_SOURCE_BUILD=1
 inherit flag-o-matic distutils-r1 virtualx
 



[gentoo-commits] dev/maksbotan:master commit in: dev-python/pybox2d/

2016-02-05 Thread Maxim Koltsov
commit: 0ad6b0625fbcdb1ed7b9a3a088846a8195794d52
Author: Pastafarianist  gmail  com>
AuthorDate: Thu Feb  4 21:54:19 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Fri Feb  5 12:42:11 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=0ad6b062

dev-python/pybox2d: added to the repo

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

diff --git a/dev-python/pybox2d/Manifest b/dev-python/pybox2d/Manifest
new file mode 100644
index 000..c0af447
--- /dev/null
+++ b/dev-python/pybox2d/Manifest
@@ -0,0 +1,2 @@
+EBUILD pybox2d-.ebuild 470 SHA256 
3f31ac0da22f04ac8e11d09022bfe158341021a2ec3513ef0396d525443912f2 SHA512 
94a3bb9fd8d60220c8c2152861efbde7ec957c82399a1596cc459c1b4bb8bfd2273f034010f2f3e2ae21c7f5cc744bde715b278acff5055b2b8c8d7e21c20df9
 WHIRLPOOL 
a43d01f308d41317c33c0c939f25b12748448560cfe6b43e8a5ba9264db3f10c3c48162169f90a8e483e410289416107f1abb27ecf41bb0632964988c4195265
+MISC metadata.xml 334 SHA256 
7f82f3ac64a875b388a50a2b73d8f527a394d557058b2768c4b8413a0c8e2a62 SHA512 
66ce6d1667d4a432f10e0eeb2969905a0ef98390ec362ac96b48206ed62c524addc84e849304a41b724d00a1996b9f1f19a6a84bee6bdd847d64438de1d3ccaa
 WHIRLPOOL 
a6d86d69a4fde02eba43d35d8fb38f6288ab9835a427ad6afa5a36c348060c1e84f492ca6c4b03b2bff7a7b735799970c9a54479030af711ca5ad047778c8496

diff --git a/dev-python/pybox2d/metadata.xml b/dev-python/pybox2d/metadata.xml
new file mode 100644
index 000..62ab4c3
--- /dev/null
+++ b/dev-python/pybox2d/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   maksbo...@gentoo.org
+       Maxim Koltsov
+
+
+   mr.pastafarian...@gmail.com
+   Dmitry Nikulin
+
+
\ No newline at end of file

diff --git a/dev-python/pybox2d/pybox2d-.ebuild 
b/dev-python/pybox2d/pybox2d-.ebuild
new file mode 100644
index 000..1b333c0
--- /dev/null
+++ b/dev-python/pybox2d/pybox2d-.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+EGIT_REPO_URI="git://github.com/pybox2d/pybox2d.git"
+
+inherit distutils-r1 git-2
+
+DESCRIPTION="2D Game Physics for Python"
+HOMEPAGE="https://github.com/pybox2d/pybox2d;
+SRC_URI=""
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+DEPEND="
+   dev-lang/swig:0
+   dev-python/pygame[${PYTHON_USEDEP}]
+"
+RDEPEND=""



[gentoo-commits] dev/maksbotan:master commit in: dev-libs/nvidia-cuda-cudnn/

2016-02-05 Thread Maxim Koltsov
commit: c094c3a3bd81b050c0848237ae0acd56cb0a92c4
Author: Pastafarianist  gmail  com>
AuthorDate: Thu Feb  4 21:54:51 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Fri Feb  5 12:42:12 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=c094c3a3

Fixed style

 dev-libs/nvidia-cuda-cudnn/Manifest | 2 +-
 dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-libs/nvidia-cuda-cudnn/Manifest 
b/dev-libs/nvidia-cuda-cudnn/Manifest
index de79e81..876feaa 100644
--- a/dev-libs/nvidia-cuda-cudnn/Manifest
+++ b/dev-libs/nvidia-cuda-cudnn/Manifest
@@ -1,3 +1,3 @@
 DIST cudnn-6.5-linux-x64-v2.tgz 15919194 SHA256 
4b02cb6bf9dfa57f63bfff33e532f53e2c5a12f9f1a1b46e980e626a55f380aa SHA512 
55d1ed9941e342448409063e1d77587d15b8a4244f281d6abe3a2f5f6049e7f150d3fb39650f8cf082c31b2260ecd8c51bcd81f78b8c969901793697890ca195
 WHIRLPOOL 
cff6e874741b05dc4f8843ee755e120f121252c1773bf92e101adbf3f8915a05f3c08e85f1b9edad8e9bfcf7193e4c404b01b2b7775867a0281050a9ff5e487c
-EBUILD nvidia-cuda-cudnn-6.5.ebuild 640 SHA256 
8cb5af6b33b9bc763bd4e10106c22df07f16dd0f9ac9c6b7103d10b9a3c7b089 SHA512 
257381745f1c657bddd171f49e7a5c9429ebd6b19dc7c0d0ad44e62d153fe2893880988231142af11f33b6f8c9b80c3cbf3e73aef9b27e8510ae2f67ec990a0d
 WHIRLPOOL 
9ed37eaefbb73fb469145b25ac8c9eaf27f078c9afeb535ffa246b82bfd6dab0f13dee8f73e494866608d10208c6255c9875d3c11bef9d532b8e34ee80b7f374
+EBUILD nvidia-cuda-cudnn-6.5.ebuild 632 SHA256 
9e08dfc5b58c660996dd5023f7f7974feab08befefa7c52d5db3a58431afa929 SHA512 
d0a3001356c5843d1723552b0936652ef920952d98f6959572f338f634fa3323e92eb71c89962bf566d48aaadc731704ec3eccaf0a11e338482e45f7db28db85
 WHIRLPOOL 
aa52b0ee44c3f603151e6ff6c0e9e142b3090d77f3195a70273c90721d11576fc93d7bbd36eb92dd6ccdd4597697756a5a9670d74562ae190b8f7595f1d3d369
 MISC metadata.xml 334 SHA256 
7f82f3ac64a875b388a50a2b73d8f527a394d557058b2768c4b8413a0c8e2a62 SHA512 
66ce6d1667d4a432f10e0eeb2969905a0ef98390ec362ac96b48206ed62c524addc84e849304a41b724d00a1996b9f1f19a6a84bee6bdd847d64438de1d3ccaa
 WHIRLPOOL 
a6d86d69a4fde02eba43d35d8fb38f6288ab9835a427ad6afa5a36c348060c1e84f492ca6c4b03b2bff7a7b735799970c9a54479030af711ca5ad047778c8496

diff --git a/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild 
b/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild
index 0272708..6fc09b1 100644
--- a/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild
+++ b/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild
@@ -17,9 +17,9 @@ RESTRICT="fetch"
 S="${WORKDIR}/${PKG}"
 
 pkg_nofetch() {
-einfo "Please download"
-einfo "  - cudnn-6.5-linux-x64-v2.tgz"
-einfo "from ${HOMEPAGE} and place them in ${DISTDIR}"
+   einfo "Please download"
+   einfo "  - cudnn-6.5-linux-x64-v2.tgz"
+   einfo "from ${HOMEPAGE} and place them in ${DISTDIR}"
 }
 
 src_install() {
@@ -28,4 +28,4 @@ src_install() {
 
insinto /usr/include
doins cudnn.h
-}
\ No newline at end of file
+}



[gentoo-commits] dev/maksbotan:master commit in: /

2016-02-05 Thread Maxim Koltsov
commit: 61bdb35f43a2edf457a8b20c64c2c9c880932e6c
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Fri Feb  5 12:44:30 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Fri Feb  5 12:44:30 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=61bdb35f

Merge GitHub pull request 6

- Added dev-python/pybox2d
- Fixed style in CUDNN ebuilds

 dev-libs/nvidia-cuda-cudnn/Manifest|  2 +-
 .../nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild |  8 +++
 dev-python/pybox2d/Manifest|  2 ++
 .../pybox2d}/metadata.xml  |  0
 dev-python/pybox2d/pybox2d-.ebuild | 26 ++
 5 files changed, 33 insertions(+), 5 deletions(-)



[gentoo-commits] dev/maksbotan:master commit in: dev-util/nvidia-cuda-toolkit/files/, dev-util/nvidia-cuda-toolkit/

2016-02-02 Thread Maxim Koltsov
commit: 0cbbfe38a4875e65712e97f5fd2572053e65e17d
Author: Pastafarianist  gmail  com>
AuthorDate: Mon Feb  1 14:59:08 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Feb  1 14:59:08 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=0cbbfe38

dev-util/nvidia-cuda-toolkit: added to the repo

Added version 7.0 of CUDA toolkit, as required by TensorFlow.

 dev-util/nvidia-cuda-toolkit/Manifest  |   4 +
 dev-util/nvidia-cuda-toolkit/files/cuda-config.in  |  28 
 dev-util/nvidia-cuda-toolkit/metadata.xml  |  12 ++
 .../nvidia-cuda-toolkit-7.0.28.ebuild  | 144 +
 4 files changed, 188 insertions(+)

diff --git a/dev-util/nvidia-cuda-toolkit/Manifest 
b/dev-util/nvidia-cuda-toolkit/Manifest
new file mode 100644
index 000..4418375
--- /dev/null
+++ b/dev-util/nvidia-cuda-toolkit/Manifest
@@ -0,0 +1,4 @@
+AUX cuda-config.in 406 SHA256 
7271463891ff75dd83f4cb42bb3004d3204243d0e38f9cbd5b4ec4560865496a SHA512 
df6d16bd2e800868bdf8401b6f82a387b701ea297ddf6e8feb0daf5222e62a33f156e5f45cf1ee4e1aa51559dfbd56b897c257dae1bb9568e839bf806bfebd5b
 WHIRLPOOL 
4a26ee11d97676827cb01644891fdca495c3373585ddfbb5fab9f988186da384f27482c4be9e27d834036ffa87f7ee19f9ad7da2d8536babe874dda4ff991147
+DIST cuda_7.0.28_linux.run 1118797679 SHA256 
d1292e9c2bbaddad24c46e0b0d15a7130831bfac0382f7159321f41ae385a5ce SHA512 
f002433133e4cbb78283e08c25f7397612957c0440605311f8921bcebd54a808069ca36b218be66a054e8afab4871b2bf1bd4d419c6f98a0d74b00a9bc78
 WHIRLPOOL 
dcf21d2e356a1797b9e79ac9edfb3924a1d4a2914382dbe21b2172c200dd4f7d93905ac44fbc2e994ce14b7ab28e78163f4c81ddcc6cbb97e4ce085efd2d8475
+EBUILD nvidia-cuda-toolkit-7.0.28.ebuild 3393 SHA256 
44d5f203a7b49c61d020a0e9b65bb12958d5cb2663c3215d06c18ac207846c76 SHA512 
d99cc4cf16294209a405859d86a55e8bc6e55c5509e91d895814cef3196a4f01fb015a6646c795fbd22fff8bb015666155dda64905aadf401807daea2a18f5be
 WHIRLPOOL 
754a2f5ae7b581237061cb9e48896e7bb8f37cbed0c5f6845588987e3f05b49973da022fb08dbf4ec821176dc53d495a1b7d68e9ce9603385bb906c319bbf1a2
+MISC metadata.xml 334 SHA256 
7f82f3ac64a875b388a50a2b73d8f527a394d557058b2768c4b8413a0c8e2a62 SHA512 
66ce6d1667d4a432f10e0eeb2969905a0ef98390ec362ac96b48206ed62c524addc84e849304a41b724d00a1996b9f1f19a6a84bee6bdd847d64438de1d3ccaa
 WHIRLPOOL 
a6d86d69a4fde02eba43d35d8fb38f6288ab9835a427ad6afa5a36c348060c1e84f492ca6c4b03b2bff7a7b735799970c9a54479030af711ca5ad047778c8496

diff --git a/dev-util/nvidia-cuda-toolkit/files/cuda-config.in 
b/dev-util/nvidia-cuda-toolkit/files/cuda-config.in
new file mode 100644
index 000..ca0d1d7
--- /dev/null
+++ b/dev-util/nvidia-cuda-toolkit/files/cuda-config.in
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+SUPPORT_GCC_VERSIONS_BY_CUDA="CUDA_SUPPORTED_GCC"
+
+_print_help() {
+   cat <<- EOF
+   Usage:
+   $(basename $0) [options]
+   
+   -s | --supported   Returns by current CUDA supported gcc 
versions
+   -h | --helpShows this help
+   EOF
+}
+
+case ${1} in
+   -s|--supported)
+   echo "${SUPPORT_GCC_VERSIONS_BY_CUDA}"
+   exit 0
+   ;;
+   -h|--help)
+   _print_help
+   exit -1
+   ;;
+   *)
+   _print_help
+   exit 1
+   ;;
+esac

diff --git a/dev-util/nvidia-cuda-toolkit/metadata.xml 
b/dev-util/nvidia-cuda-toolkit/metadata.xml
new file mode 100644
index 000..62ab4c3
--- /dev/null
+++ b/dev-util/nvidia-cuda-toolkit/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   maksbo...@gentoo.org
+   Maxim Koltsov
+
+
+   mr.pastafarian...@gmail.com
+   Dmitry Nikulin
+
+
\ No newline at end of file

diff --git a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-7.0.28.ebuild 
b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-7.0.28.ebuild
new file mode 100644
index 000..ce138f0
--- /dev/null
+++ b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-7.0.28.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit check-reqs cuda unpacker versionator
+
+MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
+
+DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)"
+HOMEPAGE="http://developer.nvidia.com/cuda;
+SRC_URI="http://developer.download.nvidia.com/compute/cuda/${MYD}/Prod/local_installers/cuda_${PV}_linux.run;
+
+SLOT="0/${PV}"
+LICENSE="NVIDIA-CUDA"
+KEYWORDS="-* ~amd64 ~amd64-linux"
+IUSE="debugger doc eclipse profiler"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   >=sys-devel/gcc-4.7[cxx]
+   =x11-drivers/nvidia-drivers-352.39[uvm]
+   debugger? (
+   sys-libs/libtermcap-compat
+   sys-libs/ncurses[tinfo]

[gentoo-commits] dev/maksbotan:master commit in: /

2016-02-02 Thread Maxim Koltsov
commit: 457e42bf535747ab1b7b07afc8ca59c3b435daa6
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Feb  2 22:19:37 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Feb  2 22:19:37 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=457e42bf

Merge GitHub pull request 5: deps for tensorflow

URL: https://github.com/maksbotan/maksbotan_overlay/pull/5/

 dev-libs/nvidia-cuda-cudnn/Manifest|   3 +
 .../nvidia-cuda-cudnn}/metadata.xml|   2 +-
 .../nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild |  31 +
 dev-util/nvidia-cuda-toolkit/Manifest  |   4 +
 dev-util/nvidia-cuda-toolkit/files/cuda-config.in  |  28 
 .../nvidia-cuda-toolkit}/metadata.xml  |   2 +-
 .../nvidia-cuda-toolkit-7.0.28.ebuild  | 144 +
 7 files changed, 212 insertions(+), 2 deletions(-)



[gentoo-commits] dev/maksbotan:master commit in: dev-libs/nvidia-cuda-cudnn/

2016-02-02 Thread Maxim Koltsov
commit: 916db07ab6883512fee74be0451cd0a99a2ec64d
Author: Pastafarianist  gmail  com>
AuthorDate: Mon Feb  1 15:00:08 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Feb  1 15:00:08 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=916db07a

dev-libs/nvidia-cuda-cudnn: added to the repo

 dev-libs/nvidia-cuda-cudnn/Manifest|  3 +++
 dev-libs/nvidia-cuda-cudnn/metadata.xml| 12 +
 .../nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild | 31 ++
 3 files changed, 46 insertions(+)

diff --git a/dev-libs/nvidia-cuda-cudnn/Manifest 
b/dev-libs/nvidia-cuda-cudnn/Manifest
new file mode 100644
index 000..de79e81
--- /dev/null
+++ b/dev-libs/nvidia-cuda-cudnn/Manifest
@@ -0,0 +1,3 @@
+DIST cudnn-6.5-linux-x64-v2.tgz 15919194 SHA256 
4b02cb6bf9dfa57f63bfff33e532f53e2c5a12f9f1a1b46e980e626a55f380aa SHA512 
55d1ed9941e342448409063e1d77587d15b8a4244f281d6abe3a2f5f6049e7f150d3fb39650f8cf082c31b2260ecd8c51bcd81f78b8c969901793697890ca195
 WHIRLPOOL 
cff6e874741b05dc4f8843ee755e120f121252c1773bf92e101adbf3f8915a05f3c08e85f1b9edad8e9bfcf7193e4c404b01b2b7775867a0281050a9ff5e487c
+EBUILD nvidia-cuda-cudnn-6.5.ebuild 640 SHA256 
8cb5af6b33b9bc763bd4e10106c22df07f16dd0f9ac9c6b7103d10b9a3c7b089 SHA512 
257381745f1c657bddd171f49e7a5c9429ebd6b19dc7c0d0ad44e62d153fe2893880988231142af11f33b6f8c9b80c3cbf3e73aef9b27e8510ae2f67ec990a0d
 WHIRLPOOL 
9ed37eaefbb73fb469145b25ac8c9eaf27f078c9afeb535ffa246b82bfd6dab0f13dee8f73e494866608d10208c6255c9875d3c11bef9d532b8e34ee80b7f374
+MISC metadata.xml 334 SHA256 
7f82f3ac64a875b388a50a2b73d8f527a394d557058b2768c4b8413a0c8e2a62 SHA512 
66ce6d1667d4a432f10e0eeb2969905a0ef98390ec362ac96b48206ed62c524addc84e849304a41b724d00a1996b9f1f19a6a84bee6bdd847d64438de1d3ccaa
 WHIRLPOOL 
a6d86d69a4fde02eba43d35d8fb38f6288ab9835a427ad6afa5a36c348060c1e84f492ca6c4b03b2bff7a7b735799970c9a54479030af711ca5ad047778c8496

diff --git a/dev-libs/nvidia-cuda-cudnn/metadata.xml 
b/dev-libs/nvidia-cuda-cudnn/metadata.xml
new file mode 100644
index 000..62ab4c3
--- /dev/null
+++ b/dev-libs/nvidia-cuda-cudnn/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   maksbo...@gentoo.org
+       Maxim Koltsov
+
+
+   mr.pastafarian...@gmail.com
+   Dmitry Nikulin
+
+
\ No newline at end of file

diff --git a/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild 
b/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild
new file mode 100644
index 000..0272708
--- /dev/null
+++ b/dev-libs/nvidia-cuda-cudnn/nvidia-cuda-cudnn-6.5.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PKG="cudnn-6.5-linux-x64-v2"
+SRC_URI="${PKG}.tgz"
+
+DESCRIPTION="NVIDIA cuDNN GPU Accelerated Deep Learning"
+HOMEPAGE="https://developer.nvidia.com/cuDNN;
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+RESTRICT="fetch"
+
+S="${WORKDIR}/${PKG}"
+
+pkg_nofetch() {
+einfo "Please download"
+einfo "  - cudnn-6.5-linux-x64-v2.tgz"
+einfo "from ${HOMEPAGE} and place them in ${DISTDIR}"
+}
+
+src_install() {
+   dolib.so libcudnn*$(get_libname)*
+   dolib.a libcudnn_static.a
+
+   insinto /usr/include
+   doins cudnn.h
+}
\ No newline at end of file



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

2016-01-26 Thread Maxim Koltsov
commit: 3ab430380cf9887c09753890e28bfb96c05e367a
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Jan 26 20:02:09 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Tue Jan 26 20:05:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ab43038

www-apps/radicale: add to tree, reworking Sunrise ebuild

Package-Manager: portage-2.2.27

 www-apps/radicale/Manifest |  1 +
 .../radicale/files/radicale-1.1.1-config.patch | 34 ++
 www-apps/radicale/files/radicale.init.d| 27 
 www-apps/radicale/metadata.xml |  8 +++
 www-apps/radicale/radicale-1.1.1.ebuild| 73 ++
 5 files changed, 143 insertions(+)

diff --git a/www-apps/radicale/Manifest b/www-apps/radicale/Manifest
new file mode 100644
index 000..ab96bab
--- /dev/null
+++ b/www-apps/radicale/Manifest
@@ -0,0 +1 @@
+DIST Radicale-1.1.1.tar.gz 47174 SHA256 
e2c9812913c464ab88ae1f66b29e81f87a4cc6ee1c94d167b33508c530dab4b0 SHA512 
dc251d8fa4d347c2bbcf472b7a2da94d674f858a007fec1d74774cd1f3ae43eb2d5902ed45762638ec49546b8ee1f66446d07b50fc0ff6595deb67ea07f87af2
 WHIRLPOOL 
315977a0bed6c1d5bfac24617b23e791d6c306658a14a478364dde61b5df5ac4136be18139d3edb7ab554f40a1d3cfce367770dab4c023868bb476f34e28a3b6

diff --git a/www-apps/radicale/files/radicale-1.1.1-config.patch 
b/www-apps/radicale/files/radicale-1.1.1-config.patch
new file mode 100644
index 000..4eb286f
--- /dev/null
+++ b/www-apps/radicale/files/radicale-1.1.1-config.patch
@@ -0,0 +1,34 @@
+diff --git a/config b/config
+index 453a45e..10c1595 100644
+--- a/config
 b/config
+@@ -146,7 +146,7 @@ http_password_parameter =
+ #custom_handler =
+ 
+ # File for rights management from_file
+-#file = ~/.config/radicale/rights
++file = /etc/radicale/rights
+ 
+ 
+ [storage]
+@@ -163,7 +163,7 @@ file = ~/.config/radicale/rights
+ #custom_handler =
+ 
+ # Folder for storing local collections, created if not present
+-#filesystem_folder = ~/.config/radicale/collections
++filesystem_folder = /var/lib/radicale/
+ 
+ # Database URL for SQLAlchemy
+ # dialect+driver://user:password@host/dbname[?key=value..]
+diff --git a/logging b/logging
+--- a/logging
 b/logging
+@@ -45,7 +45,7 @@ formatter = simple
+ [handler_file]
+ # File handler
+ class = FileHandler
+-args = ('/var/log/radicale',)
++args = ('/var/log/radicale/radicale.log',)
+ formatter = full
+ 
+ 

diff --git a/www-apps/radicale/files/radicale.init.d 
b/www-apps/radicale/files/radicale.init.d
new file mode 100644
index 000..8e3e94a
--- /dev/null
+++ b/www-apps/radicale/files/radicale.init.d
@@ -0,0 +1,27 @@
+#!/sbin/runscript
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+PIDFILE=/var/run/radicale.pid
+
+depend() {
+use net
+need localmount
+}
+
+start() {
+ebegin "Starting radicale"
+start-stop-daemon --start --quiet --background \
+--user radicale \
+--pidfile ${PIDFILE} --make-pidfile \
+--exec /usr/bin/radicale -- --foreground
+eend $?
+}
+
+stop() {
+ebegin "Stopping radicale"
+start-stop-daemon --stop --quiet \
+--pidfile ${PIDFILE}
+eend $?
+}

diff --git a/www-apps/radicale/metadata.xml b/www-apps/radicale/metadata.xml
new file mode 100644
index 000..fe24726
--- /dev/null
+++ b/www-apps/radicale/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+maksbo...@gentoo.org
+Maxim Koltsov
+
+

diff --git a/www-apps/radicale/radicale-1.1.1.ebuild 
b/www-apps/radicale/radicale-1.1.1.ebuild
new file mode 100644
index 000..6ac4c3b
--- /dev/null
+++ b/www-apps/radicale/radicale-1.1.1.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit eutils distutils-r1 user
+
+MY_PN="Radicale"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A simple CalDAV calendar server"
+HOMEPAGE="http://www.radicale.org/;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+S=${WORKDIR}/${MY_P}
+
+RDIR=/var/lib/radicale
+LDIR=/var/log/radicale
+
+PATCHES=( "${FILESDIR}"/${P}-config.patch )
+
+pkg_setup() {
+   enewgroup radicale
+   enewuser radicale -1 -1 ${RDIR} radicale
+}
+
+python_install_all() {
+   rm README* || die
+
+   # init file
+   newinitd "${FILESDIR}"/radicale.init.d radicale
+
+   # directories
+   diropts -m0750
+   dodir ${RDIR}
+   fowners radicale:radicale ${RDIR}
+   diropts -m0755
+   dodir ${LDIR}
+   fowners radicale:radicale ${LDIR}
+
+   # config file
+   insint

[gentoo-commits] repo/gentoo:master commit in: app-vim/pyclewn/

2016-01-17 Thread Maxim Koltsov
commit: 9f504b6e7192172a4f7aa40fc8829926924d6128
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Sun Jan 17 09:53:34 2016 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Sun Jan 17 09:53:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f504b6e

app-vim/pyclewn: add 3.5 to PYTHON_TARGETS

Package-Manager: portage-2.2.26

 app-vim/pyclewn/pyclewn-2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/pyclewn/pyclewn-2.1.ebuild 
b/app-vim/pyclewn/pyclewn-2.1.ebuild
index e1cc815..94de03a 100644
--- a/app-vim/pyclewn/pyclewn-2.1.ebuild
+++ b/app-vim/pyclewn/pyclewn-2.1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 inherit eutils vim-plugin distutils-r1
 
 SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"



[gentoo-commits] dev/maksbotan:master commit in: app-admin/keepasshttp/, app-admin/keeagent/

2015-12-30 Thread Maxim Koltsov
commit: cb0c2cca530cddfda9d67b3632e5d8d6270d4dbb
Author: Pastafarianist  gmail  com>
AuthorDate: Mon Dec 28 15:53:12 2015 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Dec 28 15:53:12 2015 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=cb0c2cca

Fixed checksums

 app-admin/keeagent/Manifest| 2 +-
 app-admin/keepasshttp/Manifest | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/keeagent/Manifest b/app-admin/keeagent/Manifest
index f8e48e1..a9e6202 100644
--- a/app-admin/keeagent/Manifest
+++ b/app-admin/keeagent/Manifest
@@ -1,3 +1,3 @@
 DIST KeeAgent_v0.6.3.zip 901437 SHA256 
a7de2623c57119cf77619a9c5694abd79b72ba05dac3506d4dedeb2647d53fd4 SHA512 
22fa181f6b09276a3b85cd8b5cdbc01d5ed014303357c6c26521e6ee6c239bfeafbeeca5f1ee068cca3771c2ae54e201c61ddb3e89c2fbf29185fb34e642fadc
 WHIRLPOOL 
5a801af2a9d0074d3afc81ca111c7f16f12adedde8288ad634224a622e21fbbacecdaaead36fbfbfc2179390031b3b6c8c3ba642a73857beecc855f1aa346ca1
 EBUILD keeagent-0.6.3.ebuild 672 SHA256 
c5c76a0b2cd28755fc3c834ffded36a8f2e2f4fe36c38a96f6d767e2bca1fdda SHA512 
050e9df50b1fdd88a8ff0d6af828ee821601c223b65c5d8a2e04ebacb86798b28184afeff7071135af04abd969d0687dff0e3e7a321554e98eeda1b3931b005b
 WHIRLPOOL 
9fd35ab45f9c4b8426ab478f6e440ee58d398992a499d3bf5ff0aa9127d83c90d60fc79630c621353c6a27fc47f1cb13d1968ad12af41fe4e6ec02d9a532a3df
-MISC manifest.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be
+MISC metadata.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be

diff --git a/app-admin/keepasshttp/Manifest b/app-admin/keepasshttp/Manifest
index 1de998a..04a4b1c 100644
--- a/app-admin/keepasshttp/Manifest
+++ b/app-admin/keepasshttp/Manifest
@@ -1,3 +1,3 @@
 DIST KeePassHttp.plgx 157117 SHA256 
4803ea799962ec3e294691922d6255e63c5a96df36941f99ef633775829e7289 SHA512 
1fe71c0363e2cbbb1f8d0f668be326876088f128d5945a81124fd419e7ddba87a8eb762aa80c91944d0dcaa072d2cf6012d186380817456d8e307878e768ad0c
 WHIRLPOOL 
85240cf538d45d40435e994614e2be46e92c928240fd46dd2739cf9fc069cdfb196daf32e91d34dfd00f1d207d5a074007ef0c8cd29fa4d2a560060928424d40
 EBUILD keepasshttp-.ebuild 795 SHA256 
e9c8bcdb69b05f3fa52883391c0f6433ec806957fd5c555e9c3185c9c83f6625 SHA512 
1dc086ad907ee38876e2b4a16864c5f1e9050c86ba580deb823d804be297d6e9b1a308ac5c8456abd383442a76badfdd0c143e1c0630ff62b2479b9576d5c58b
 WHIRLPOOL 
31d2eb57b034ceb4d7b68b3e53fcbb2d895a0602c2b65819612aec9aad33a06127e103167cf0c87281f5e0e0f201792869ebcfb23bbd311ef204930c9810260e
-MISC manifest.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be
+MISC metadata.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be



[gentoo-commits] dev/maksbotan:master commit in: /

2015-12-30 Thread Maxim Koltsov
commit: 3a5f8615fd4ce5abf9439b03dff86e022006892c
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Dec 30 13:34:48 2015 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Dec 30 13:34:48 2015 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=3a5f8615

Merge GitHub pull request 4

See: https://github.com/maksbotan/maksbotan_overlay/pull/4

 app-admin/keeagent/Manifest  |  2 +-
 app-admin/keepass-favicon/Manifest   |  3 +++
 .../keepass-favicon-1.9.0.ebuild}| 16 
 app-admin/{keepasshttp => keepass-favicon}/metadata.xml  |  0
 app-admin/keepasshttp/Manifest   |  4 ++--
 app-admin/keepasshttp/keepasshttp-.ebuild|  2 +-
 app-admin/pronouncepwgen/Manifest|  3 +++
 app-admin/{keepasshttp => pronouncepwgen}/metadata.xml   |  0
 .../pronouncepwgen-1.0.4b.ebuild}| 11 ++-
 9 files changed, 24 insertions(+), 17 deletions(-)



[gentoo-commits] dev/maksbotan:master commit in: app-admin/keepass-favicon/

2015-12-30 Thread Maxim Koltsov
commit: d02e2cb072fb196d5b265771310aef2e9f6bd558
Author: Pastafarianist  gmail  com>
AuthorDate: Mon Dec 28 15:53:43 2015 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Mon Dec 28 15:53:43 2015 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=d02e2cb0

app-admin/keepass-favicon: added to the repo

 app-admin/keepass-favicon/Manifest |  3 ++
 .../keepass-favicon/keepass-favicon-1.9.0.ebuild   | 35 ++
 app-admin/keepass-favicon/metadata.xml | 12 
 3 files changed, 50 insertions(+)

diff --git a/app-admin/keepass-favicon/Manifest 
b/app-admin/keepass-favicon/Manifest
new file mode 100644
index 000..120b7c8
--- /dev/null
+++ b/app-admin/keepass-favicon/Manifest
@@ -0,0 +1,3 @@
+DIST KeePassFaviconDownloader.plgx 58823 SHA256 
4d735e514e6c19d00947fc289fc2ee1288bd31541861c504837d089b6258723c SHA512 
9d1f01e5736d2d66c8c4616c59409b7b5f09b192309686299ae270e9db55a2c853c8ff273fe4f9c87510d9a20f3c06a869b3a0ce454695505beb75bac167f6bc
 WHIRLPOOL 
f457efbab2cdc606610f1b1a9033528e470336e934db0411accacb019c2fbbf789d158a540e8a5afd3f873f7acc8c2ba698eb2d8b9c4e50b802cb1b63df6c8fb
+EBUILD keepass-favicon-1.9.0.ebuild 772 SHA256 
1783c40f46d688ae4b86012a27021956dc64520881799684ed70b9cf4318a8fc SHA512 
5945d6c7a6fc5279890ec25d4ea2ca8ad71f9ed4addf54add56db2e0f8fca0027b9e92b281654b65e4a4a1fa51c3e5026dcbf2770677e9f641b905561270eeeb
 WHIRLPOOL 
8953ba3ab9e712772514e7180df3ed8a4dd07e6791310ba56acf6d0f64138abdd1256f17b60d6393d32e95cadf63bc5921e86fd8b0445f8fc2a521e7b9f02622
+MISC metadata.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be

diff --git a/app-admin/keepass-favicon/keepass-favicon-1.9.0.ebuild 
b/app-admin/keepass-favicon/keepass-favicon-1.9.0.ebuild
new file mode 100644
index 000..fac22b1
--- /dev/null
+++ b/app-admin/keepass-favicon/keepass-favicon-1.9.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PLUGIN_FILENAME="KeePassFaviconDownloader.plgx"
+DESCRIPTION="A KeePass plugin that downloads and stores favicons"
+HOMEPAGE="https://sourceforge.net/projects/keepass-favicon/;
+SRC_URI="mirror://sourceforge/${PN}/${PV}/${PLUGIN_FILENAME}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=app-admin/keepass-2.09"
+RDEPEND="${DEPEND}"
+
+INSTALL_DIR="/usr/lib/keepass/"
+S="${WORKDIR}"
+
+src_unpack() {
+   cp "${DISTDIR}/${PLUGIN_FILENAME}" "${WORKDIR}" || die
+}
+
+src_install() {
+   chmod 644 "${PLUGIN_FILENAME}"
+   insinto "${INSTALL_DIR}"
+   doins "${PLUGIN_FILENAME}"
+}
+
+pkg_postinst() {
+   elog "Restart KeePass to complete the installation."
+}
\ No newline at end of file

diff --git a/app-admin/keepass-favicon/metadata.xml 
b/app-admin/keepass-favicon/metadata.xml
new file mode 100644
index 000..60bc84b
--- /dev/null
+++ b/app-admin/keepass-favicon/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+maksbo...@gentoo.org
+Maxim Koltsov
+
+
+pastafari...@gmail.com
+Dmitry Nikulin
+
+



[gentoo-commits] dev/maksbotan:master commit in: app-admin/keepasshttp/

2015-12-30 Thread Maxim Koltsov
commit: 58537103deb62649677262f383e6d38d0e0d268d
Author: Pastafarianist  gmail  com>
AuthorDate: Wed Dec 30 12:58:55 2015 +
Commit:     Maxim Koltsov  gentoo  org>
CommitDate: Wed Dec 30 12:58:55 2015 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=58537103

Updated license for KeePassHttp

 app-admin/keepasshttp/Manifest| 2 +-
 app-admin/keepasshttp/keepasshttp-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/keepasshttp/Manifest b/app-admin/keepasshttp/Manifest
index 04a4b1c..f0a9582 100644
--- a/app-admin/keepasshttp/Manifest
+++ b/app-admin/keepasshttp/Manifest
@@ -1,3 +1,3 @@
 DIST KeePassHttp.plgx 157117 SHA256 
4803ea799962ec3e294691922d6255e63c5a96df36941f99ef633775829e7289 SHA512 
1fe71c0363e2cbbb1f8d0f668be326876088f128d5945a81124fd419e7ddba87a8eb762aa80c91944d0dcaa072d2cf6012d186380817456d8e307878e768ad0c
 WHIRLPOOL 
85240cf538d45d40435e994614e2be46e92c928240fd46dd2739cf9fc069cdfb196daf32e91d34dfd00f1d207d5a074007ef0c8cd29fa4d2a560060928424d40
-EBUILD keepasshttp-.ebuild 795 SHA256 
e9c8bcdb69b05f3fa52883391c0f6433ec806957fd5c555e9c3185c9c83f6625 SHA512 
1dc086ad907ee38876e2b4a16864c5f1e9050c86ba580deb823d804be297d6e9b1a308ac5c8456abd383442a76badfdd0c143e1c0630ff62b2479b9576d5c58b
 WHIRLPOOL 
31d2eb57b034ceb4d7b68b3e53fcbb2d895a0602c2b65819612aec9aad33a06127e103167cf0c87281f5e0e0f201792869ebcfb23bbd311ef204930c9810260e
+EBUILD keepasshttp-.ebuild 771 SHA256 
924f97fc8d6d8347037c37bddb7751f1e26aee8835a1462a5eb99bd8429a2fd8 SHA512 
480f6121848126c1955c72d55d1d5773d79ab51da4949f6d996786267e2f43c8203b0f7512c6484d6d8982c5837a9db18d20dd4d3db33dbfb35c8b2a699aed1d
 WHIRLPOOL 
fc26cac6e281f8ed31a32c86ce734396b7fd5ecfff2e05e4b1950ea6a3636c3ceee675371be28b2abe065af3a53b100bd452108c267ff6ac93e431966a397f94
 MISC metadata.xml 386 SHA256 
f3aad65ac817280764a7f89df91ac427a424d018e28f855788d6bb50bf77bd0e SHA512 
9337bb1ab5d37c3f6d22f69a978fbf04b6bac80ce6d694f5fa21a931ba102dca19286c9ce63b7bcc61d59db730ec27b0b42252c97bc0351ea1222f49b35b8b5f
 WHIRLPOOL 
b51cdc4ffe7858fd1c86fe627d5a55d5e1c54215860a563217884dde195e3b16db406d82e7e1870d36cd77c1384f1047b3d06ca02d0279d6c876f98c16a9f2be

diff --git a/app-admin/keepasshttp/keepasshttp-.ebuild 
b/app-admin/keepasshttp/keepasshttp-.ebuild
index 9fbd71c..2683ff4 100644
--- a/app-admin/keepasshttp/keepasshttp-.ebuild
+++ b/app-admin/keepasshttp/keepasshttp-.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="KeePass plugin to expose password entries securely 
(256bit AES/CBC)
 HOMEPAGE="https://github.com/pfn/keepasshttp;
 SRC_URI="https://raw.github.com/pfn/keepasshttp/master/KeePassHttp.plgx;
 
-LICENSE=""  # nothing in the repository
+LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS=""
 IUSE=""



  1   2   3   4   5   6   >