[gentoo-commits] repo/proj/libressl:master commit in: dev-qt/qtnetwork/

2019-11-02 Thread Stefan Strogin
commit: 77d9434b872624c2457f5c11f267450d0b0d2108
Author: Dennis Gaebler  uni-ulm  de>
AuthorDate: Fri Nov  1 15:08:08 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Sun Nov  3 03:38:53 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=77d9434b

dev-qt/qtnetwork: bump to 5.13.2

Reported-by: Dennis Gaebler  uni-ulm.de>
Closes: https://github.com/gentoo/libressl/pull/311
Signed-off-by: Stefan Strogin  gentoo.org>

 dev-qt/qtnetwork/Manifest|  1 +
 dev-qt/qtnetwork/qtnetwork-5.13.2.ebuild | 68 
 2 files changed, 69 insertions(+)

diff --git a/dev-qt/qtnetwork/Manifest b/dev-qt/qtnetwork/Manifest
index a1c8a32..d89400e 100644
--- a/dev-qt/qtnetwork/Manifest
+++ b/dev-qt/qtnetwork/Manifest
@@ -1,3 +1,4 @@
 DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 
779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c
 SHA512 
1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2
 DIST qtbase-everywhere-src-5.12.4.tar.xz 48431020 BLAKE2B 
7eeb3f6698984343ec14d03b8ad66ab23d81cd7a25c590316f7300c868ab869a9c96b125d56bba149ee116dff44bf47c751cce06f2cdd2d3121e5448708c5f6b
 SHA512 
28b029a0d3621477f625d474b8bc38ddcc7173df6adb274b438e290b6c50bd0891e5b62c04b566a281781acee3a353a6a3b0bc88228e996994f92900448d7946
 DIST qtbase-everywhere-src-5.12.5.tar.xz 48463288 BLAKE2B 
db394becd1c0c2be9f86658f58dbadb5e3b81af82edf2e8b69652a8587a2aa30f481774fa20d55ce7e8b9cc158dedd343dc3964e4ff0bcf111e8c4feceb27e0a
 SHA512 
9a95060318cadfcd6dace6b28353fa868a8dcfe9def0bd884edf7d9f72606bae625de0269323a94b81d594a6c398106c266304106329b79c7dae4e5b88269660
+DIST qtbase-everywhere-src-5.13.2.tar.xz 48735704 BLAKE2B 
50b8d69212602427b76dce6efefb9195e91e4bf5a09b732e564b66a4e27cfaf193fd860139b2c4cc774b0b1132af1426b79e381fb42eafd506239096bd87837e
 SHA512 
b00ad017cc95876698615fd6e41c6ade366146c1f7057e1925bc1b72918f091aa39aa6bf0ea450fc6cd4d8f9810b228770d981dcb6cbe8ad30abb2c42804a204

diff --git a/dev-qt/qtnetwork/qtnetwork-5.13.2.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.13.2.ebuild
new file mode 100644
index 000..0106a1e
--- /dev/null
+++ b/dev-qt/qtnetwork/qtnetwork-5.13.2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+QT5_MODULE="qtbase"
+inherit qt5-build
+
+DESCRIPTION="Network abstraction library for the Qt5 framework"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+fi
+
+IUSE="bindist connman libproxy libressl networkmanager sctp +ssl"
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+   sys-libs/zlib:=
+   connman? ( ~dev-qt/qtdbus-${PV} )
+   libproxy? ( net-libs/libproxy )
+   networkmanager? ( ~dev-qt/qtdbus-${PV} )
+   sctp? ( kernel_linux? ( net-misc/lksctp-tools ) )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[bindist=] )
+   libressl? ( dev-libs/libressl:0= )
+   )
+"
+RDEPEND="${DEPEND}
+   connman? ( net-misc/connman )
+   networkmanager? ( net-misc/networkmanager )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.12.1-libressl.patch
+   "${FILESDIR}"/${PN}-5.12.4-libressl.patch
+)
+
+QT5_TARGET_SUBDIRS=(
+   src/network
+   src/plugins/bearer/generic
+)
+
+QT5_GENTOO_CONFIG=(
+   libproxy:libproxy:
+   ssl::SSL
+   ssl::OPENSSL
+   ssl:openssl-linked:LINKED_OPENSSL
+)
+
+QT5_GENTOO_PRIVATE_CONFIG=(
+   :network
+)
+
+pkg_setup() {
+   use connman && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/connman)
+   use networkmanager && 
QT5_TARGET_SUBDIRS+=(src/plugins/bearer/networkmanager)
+}
+
+src_configure() {
+   local myconf=(
+   $(usex connman -dbus-linked '')
+   $(qt_use libproxy)
+   $(usex networkmanager -dbus-linked '')
+   $(qt_use sctp)
+   $(usex ssl -openssl-linked '')
+   )
+   qt5-build_src_configure
+}



[gentoo-commits] repo/proj/libressl:master commit in: dev-qt/qtnetwork/

2019-11-02 Thread Stefan Strogin
commit: e28b37d813439e53254feeab5433e0bf4f99f467
Author: Stefan Strogin  gentoo  org>
AuthorDate: Sun Nov  3 03:37:19 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Sun Nov  3 03:38:59 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=e28b37d8

dev-qt/qtnetwork: drop old 5.12.4

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

 dev-qt/qtnetwork/Manifest|  1 -
 dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild | 68 
 2 files changed, 69 deletions(-)

diff --git a/dev-qt/qtnetwork/Manifest b/dev-qt/qtnetwork/Manifest
index d89400e..33abd24 100644
--- a/dev-qt/qtnetwork/Manifest
+++ b/dev-qt/qtnetwork/Manifest
@@ -1,4 +1,3 @@
 DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 
779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c
 SHA512 
1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2
-DIST qtbase-everywhere-src-5.12.4.tar.xz 48431020 BLAKE2B 
7eeb3f6698984343ec14d03b8ad66ab23d81cd7a25c590316f7300c868ab869a9c96b125d56bba149ee116dff44bf47c751cce06f2cdd2d3121e5448708c5f6b
 SHA512 
28b029a0d3621477f625d474b8bc38ddcc7173df6adb274b438e290b6c50bd0891e5b62c04b566a281781acee3a353a6a3b0bc88228e996994f92900448d7946
 DIST qtbase-everywhere-src-5.12.5.tar.xz 48463288 BLAKE2B 
db394becd1c0c2be9f86658f58dbadb5e3b81af82edf2e8b69652a8587a2aa30f481774fa20d55ce7e8b9cc158dedd343dc3964e4ff0bcf111e8c4feceb27e0a
 SHA512 
9a95060318cadfcd6dace6b28353fa868a8dcfe9def0bd884edf7d9f72606bae625de0269323a94b81d594a6c398106c266304106329b79c7dae4e5b88269660
 DIST qtbase-everywhere-src-5.13.2.tar.xz 48735704 BLAKE2B 
50b8d69212602427b76dce6efefb9195e91e4bf5a09b732e564b66a4e27cfaf193fd860139b2c4cc774b0b1132af1426b79e381fb42eafd506239096bd87837e
 SHA512 
b00ad017cc95876698615fd6e41c6ade366146c1f7057e1925bc1b72918f091aa39aa6bf0ea450fc6cd4d8f9810b228770d981dcb6cbe8ad30abb2c42804a204

diff --git a/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild
deleted file mode 100644
index 5deffc2..000
--- a/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="Network abstraction library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-fi
-
-IUSE="bindist connman libproxy libressl networkmanager sctp +ssl"
-
-DEPEND="
-   ~dev-qt/qtcore-${PV}
-   sys-libs/zlib:=
-   connman? ( ~dev-qt/qtdbus-${PV} )
-   libproxy? ( net-libs/libproxy )
-   networkmanager? ( ~dev-qt/qtdbus-${PV} )
-   sctp? ( kernel_linux? ( net-misc/lksctp-tools ) )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0=[bindist=] )
-   libressl? ( dev-libs/libressl:0= )
-   )
-"
-RDEPEND="${DEPEND}
-   connman? ( net-misc/connman )
-   networkmanager? ( net-misc/networkmanager )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-5.12.1-libressl.patch
-   "${FILESDIR}"/${PN}-5.12.4-libressl.patch
-)
-
-QT5_TARGET_SUBDIRS=(
-   src/network
-   src/plugins/bearer/generic
-)
-
-QT5_GENTOO_CONFIG=(
-   libproxy:libproxy:
-   ssl::SSL
-   ssl::OPENSSL
-   ssl:openssl-linked:LINKED_OPENSSL
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   :network
-)
-
-pkg_setup() {
-   use connman && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/connman)
-   use networkmanager && 
QT5_TARGET_SUBDIRS+=(src/plugins/bearer/networkmanager)
-}
-
-src_configure() {
-   local myconf=(
-   $(usex connman -dbus-linked '')
-   $(qt_use libproxy)
-   $(usex networkmanager -dbus-linked '')
-   $(qt_use sctp)
-   $(usex ssl -openssl-linked '')
-   )
-   qt5-build_src_configure
-}



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

2019-11-02 Thread Jeroen Roovers
commit: 411b875a443b5259a5113f3323c8d4800a5974f2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov  2 23:44:42 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov  2 23:47:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=411b875a

dev-libs/libmaxminddb: Version 1.4.2

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

 dev-libs/libmaxminddb/Manifest  |  1 +
 dev-libs/libmaxminddb/libmaxminddb-1.4.2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-libs/libmaxminddb/Manifest b/dev-libs/libmaxminddb/Manifest
index b3054911b49..b5c1c6a3571 100644
--- a/dev-libs/libmaxminddb/Manifest
+++ b/dev-libs/libmaxminddb/Manifest
@@ -1 +1,2 @@
 DIST libmaxminddb-1.3.2.tar.gz 619009 BLAKE2B 
1fa2d528d47e14a75e5096072e6ba8136eb5060ab95cb472ef70907dd519540790f6bbc518371e0d276d6977bb3444dbfd179d526877ca740e56ebf6eb459244
 SHA512 
906e80531a901091fd9f88075ece5189b0885400216ea994889d9250dd37ead14e00dc14ca2a38eb2100e4814d0eb3a205ba1618606f1375ab0dcc3981097115
+DIST libmaxminddb-1.4.2.tar.gz 600664 BLAKE2B 
df78522d2d764f813ca708fdaefeef47f3a97afbb010c108ca4e47ef2d711c445b5ad7d3d059b31ef0e72b08be569050b31f461fc6acf2c17ee4ce43225acbd6
 SHA512 
bc18d2f19a74639888a466483afde1bccfc3a83787011a6f38808b76e5a513c9912ff369ccbf584091d4def657e0574b16b35dc69ab12ae4c439aaaf3669c4c1

diff --git a/dev-libs/libmaxminddb/libmaxminddb-1.4.2.ebuild 
b/dev-libs/libmaxminddb/libmaxminddb-1.4.2.ebuild
new file mode 100644
index 000..919dcfb6bd0
--- /dev/null
+++ b/dev-libs/libmaxminddb/libmaxminddb-1.4.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="C library for the MaxMind DB file format"
+HOMEPAGE="https://github.com/maxmind/libmaxminddb;
+SRC_URI="${HOMEPAGE}/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/0.0.7"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="static-libs"
+
+DOCS=( Changes.md )
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/, sys-apps/0install/

2019-11-02 Thread Philip Miess
commit: ecd6b07c144460983a1ff108aa344922b3c48195
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 22:31:02 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 23:37:52 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=ecd6b07c

0install 2.3.6  update icon cache before install and after removed

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest   |  2 +-
 app-text/rig/rig-1.11.ebuild|  3 ++-
 sys-apps/0install/0install-2.3.6.ebuild | 10 +-
 sys-apps/0install/Manifest  |  2 +-
 4 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index 6b06550..dbbdba2 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 899 BLAKE2B 
c4d6f7a726980b669d4c7c431d44e37ebcb9ec30b20a4b388f238f4f783d14323aafc7f7f51a93855eea4c4eabd83ca9681b16f944dfa7fbb68041c96931b6c9
 SHA512 
b9a8078a23440a6463b3c27ca5165749fca68075b6447cff92cd63c1e5146ef3e856fa7e306cd6eb21cbf8c05f0dec75538e4df711888d15c386da559502e95c
+EBUILD rig-1.11.ebuild 904 BLAKE2B 
38569976ea46fbc96259c021fc81f9cd85fa1e984a51c2cf3688c7f586762ae29183079a4bc807cda8e72b52eac069a1e04cbbb4649327ddcb2ea137628f942a
 SHA512 
ed6de810e099a3a4fa305e1bd4fa2ba8d6a4289099c41b92da8ba84f0b88e892a2e9490a2ac7ff6fc1d50d103945dc1f79573fa4be33b98227e30dd59e1c6f8c
 MISC metadata.xml 323 BLAKE2B 
26f8c8a43a2ce23625cf6a63cb13de485cfcb722b2eeb693ef94cca6b00ccce418cd06ecf640674a9af17a1ab400294a8de135d77d2b18634397bccdd6232b02
 SHA512 
93434c2322b6dcddb4ed90be3180136ada13cfa8a1ccb9bdd2f916053f129aa93caab167afe1c66b69fdcd1c81da670e36d09ca534696de43d815f6a490b9f2f

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index 987cb2c..6cbe523 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -22,7 +22,7 @@ PATCHES=(
"${FILESDIR}/${P}-useDestDirAndImportMemcpy.patch"
 )
 
-DOCS=( "README" "Changelog" "rig.6" )
+DOCS=( "README" "Changelog" )
 
 src_compile() {
sed -i -e "s:g++ :$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} :" Makefile \
@@ -40,5 +40,6 @@ src_install() {
emake DESTDIR="${D}" install
fi
rm -rf "${D}/usr/man"
+   doman rig.6
einstalldocs
 }

diff --git a/sys-apps/0install/0install-2.3.6.ebuild 
b/sys-apps/0install/0install-2.3.6.ebuild
index 05be40f..bceea56 100644
--- a/sys-apps/0install/0install-2.3.6.ebuild
+++ b/sys-apps/0install/0install-2.3.6.ebuild
@@ -5,7 +5,7 @@ EAPI="5"
 PYTHON_COMPAT=( python2_7 )
 DISTUTILS_SINGLE_IMPL=1
 PYTHON_REQ_USE="xml(+)"
-inherit distutils-r1
+inherit xdg-utils distutils-r1
 
 DESCRIPTION="Zeroinstall Injector allows regular users to install software 
themselves"
 HOMEPAGE="http://0install.net/;
@@ -41,3 +41,11 @@ python_install_all() {
 
dodir "${BASE_XDG_DATA}/native_feeds"
 }
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}

diff --git a/sys-apps/0install/Manifest b/sys-apps/0install/Manifest
index f6cb099..c71784c 100644
--- a/sys-apps/0install/Manifest
+++ b/sys-apps/0install/Manifest
@@ -9,5 +9,5 @@ EBUILD 0install-1.16.ebuild 1220 BLAKE2B 
01c7642eca89f38f6f243ee33410cf143707846
 EBUILD 0install-2.12.3.ebuild 1229 BLAKE2B 
b0c9be063ae6888197979df92c1d7070eb7199eb099eb66f38ccec19127fd49bdb6dbe96e5973e823319c6fd6079186c9345d1c543aa2842d6c429a28fa8d5ce
 SHA512 
e661e6d6ebf0514eff33ac9d1781690539706af7a533510e419902a498ab301374090733a4d79570d6dfabdd968a89b483d61b983286a85b90e6f93e7cf0a900
 EBUILD 0install-2.13.ebuild 1221 BLAKE2B 
6c5774b05b554c0248f106b4afa620693390eff6b3f9510200ad1030d7f9bf7082f05659e6f1337efed4b18f0bcb839123b749c8e14f6b71c890840acbd24c96
 SHA512 
8aa752c90cd3ada78810e2be271ed560684bb807a0d1ee3082cab2cf13825edb78f187ced1d17cd462f48d2b11a35b02bc15508cbc7a6a705a8a2300c526e0be
 EBUILD 0install-2.3.5.ebuild 1222 BLAKE2B 
24983c13fa184c252f76e21f3255ccc56b8a4ab7b08b4c768976f711583bc800357be8ede1dd683594e0ab2f6adf85f3544be3b0214a60c424f949b4b22b1dbd
 SHA512 
f9b5e8e99608689bb58485cd22f9ac0b7f81e51af8b8d06dc7b78fe55350df3fa3cb12d3c16090a5d45a3c18df4aea15b47a07854c36170c9941bad448e9c6f2
-EBUILD 0install-2.3.6.ebuild 1219 BLAKE2B 

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

2019-11-02 Thread Philip Miess
commit: 1ff978c4ae3b503060cfb255d75ddcf65bfa93aa
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 23:39:31 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 23:41:37 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=1ff978c4

Merge branch 'master' of git+ssh://git.gentoo.org/repo/user/superposition

Signed-off-by: Philip Miess  yahoo.com>




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

2019-11-02 Thread Sergei Trofimovich
commit: 5536405be97eabbc08564a7fceffbe0282686094
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Nov  2 23:12:35 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Nov  2 23:19:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5536405b

dev-libs/libuv: stable 1.33.1 for hppa, bug #699026

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/libuv/libuv-1.33.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libuv/libuv-1.33.1.ebuild 
b/dev-libs/libuv/libuv-1.33.1.ebuild
index d32b2b374b5..f39175a0241 100644
--- a/dev-libs/libuv/libuv-1.33.1.ebuild
+++ b/dev-libs/libuv/libuv-1.33.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD BSD-2 ISC MIT"
 SLOT="0/1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/

2019-11-02 Thread Sergei Trofimovich
commit: 3f334c48651f0a7349134c6c440da3bde8f587ba
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Nov  2 23:11:23 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Nov  2 23:19:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f334c48

dev-tcltk/tdom: stable 0.9.1 for sparc, bug #699014

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-tcltk/tdom/tdom-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/tdom/tdom-0.9.1.ebuild b/dev-tcltk/tdom/tdom-0.9.1.ebuild
index 07720b98007..9f39b444266 100644
--- a/dev-tcltk/tdom/tdom-0.9.1.ebuild
+++ b/dev-tcltk/tdom/tdom-0.9.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://tdom.org/downloads/${P}-src.tgz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="static-libs threads"
 
 DEPEND="



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

2019-11-02 Thread Sergei Trofimovich
commit: 0e6669b3fb7b5d3725eb887a3dbb948d9978ccf8
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Nov  2 23:12:09 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Nov  2 23:19:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6669b3

dev-libs/libpcre2: stable 10.33-r1 for hppa/sparc, bug #699052

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/libpcre2/libpcre2-10.33-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libpcre2/libpcre2-10.33-r1.ebuild 
b/dev-libs/libpcre2/libpcre2-10.33-r1.ebuild
index 77f5ed188a7..997f83eb08f 100644
--- a/dev-libs/libpcre2/libpcre2-10.33-r1.ebuild
+++ b/dev-libs/libpcre2/libpcre2-10.33-r1.ebuild
@@ -21,7 +21,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs 
unicode zlib"
 REQUIRED_USE="?? ( libedit readline )"
 



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

2019-11-02 Thread Andreas Sturmlechner
commit: 1f5f1f0b63dbc5ebefe091150330120863a45034
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Oct 31 21:40:30 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 22:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f5f1f0b

lxqt-base/lxqt-config: add a missing dependency

The 'x11-libs/libXi' package is needed when USE="touchpad".

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Jimi Huotari  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/13511
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 lxqt-base/lxqt-config/lxqt-config-0.14.1-r1.ebuild | 74 ++
 1 file changed, 74 insertions(+)

diff --git a/lxqt-base/lxqt-config/lxqt-config-0.14.1-r1.ebuild 
b/lxqt-base/lxqt-config/lxqt-config-0.14.1-r1.ebuild
new file mode 100644
index 000..263309fa6e7
--- /dev/null
+++ b/lxqt-base/lxqt-config/lxqt-config-0.14.1-r1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils xdg-utils
+
+DESCRIPTION="LXQt system configuration control center"
+HOMEPAGE="https://lxqt.org/;
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
+else
+   SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz;
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+fi
+
+LICENSE="GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2"
+SLOT="0"
+IUSE="+monitor +touchpad"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   >=dev-util/lxqt-build-tools-0.6.0
+"
+DEPEND="
+   >=dev-libs/libqtxdg-3.3.1
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   dev-qt/qtxml:5
+   kde-frameworks/kwindowsystem:5
+   =lxqt-base/liblxqt-$(ver_cut 1-2)*
+   sys-libs/zlib:=
+   x11-apps/setxkbmap
+   x11-libs/libxcb:=
+   x11-libs/libX11
+   x11-libs/libXcursor
+   x11-libs/libXfixes
+   monitor? ( kde-plasma/libkscreen:5= )
+   touchpad? (
+   virtual/libudev
+   x11-drivers/xf86-input-libinput
+   x11-libs/libXext
+   x11-libs/libXi
+   )
+"
+RDEPEND="${DEPEND}
+   !lxqt-base/lxqt-l10n
+"
+
+src_configure() {
+   local mycmakeargs=(
+   -DWITH_MONITOR="$(usex monitor)"
+   -DWITH_TOUCHPAD="$(usex touchpad)"
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   doman man/*.1 liblxqt-config-cursor/man/*.1 
lxqt-config-appearance/man/*.1
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2019-11-02 Thread Andreas Sturmlechner
commit: 6f5210f4ebcb659835a0aa48d78c78044f303caa
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sat Nov  2 21:17:31 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 22:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5210f4

lxqt-base/lxqt-config: drop 0.14.1 (r0)

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Jimi Huotari  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild | 73 -
 1 file changed, 73 deletions(-)

diff --git a/lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild 
b/lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild
deleted file mode 100644
index 9ca987137e5..000
--- a/lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils xdg-utils
-
-DESCRIPTION="LXQt system configuration control center"
-HOMEPAGE="https://lxqt.org/;
-
-if [[ ${PV} = ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
-else
-   SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-fi
-
-LICENSE="GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2"
-SLOT="0"
-IUSE="+monitor +touchpad"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   >=dev-util/lxqt-build-tools-0.6.0
-"
-DEPEND="
-   >=dev-libs/libqtxdg-3.3.1
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   dev-qt/qtxml:5
-   kde-frameworks/kwindowsystem:5
-   =lxqt-base/liblxqt-$(ver_cut 1-2)*
-   sys-libs/zlib:=
-   x11-apps/setxkbmap
-   x11-libs/libxcb:=
-   x11-libs/libX11
-   x11-libs/libXcursor
-   x11-libs/libXfixes
-   monitor? ( kde-plasma/libkscreen:5= )
-   touchpad? (
-   virtual/libudev
-   x11-drivers/xf86-input-libinput
-   x11-libs/libXext
-   )
-"
-RDEPEND="${DEPEND}
-   !lxqt-base/lxqt-l10n
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_MONITOR="$(usex monitor)"
-   -DWITH_TOUCHPAD="$(usex touchpad)"
-   )
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   doman man/*.1 liblxqt-config-cursor/man/*.1 
lxqt-config-appearance/man/*.1
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



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

2019-11-02 Thread Andreas Sturmlechner
commit: e112086d31457c3cfb8a98cfac58f1482a551ded
Author: Vladimir Pavljuchenkov (SpiderX)  spiderx  dp 
 ua>
AuthorDate: Sat Nov  2 16:54:52 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 22:40:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e112086d

app-admin/qtpass: use virtualx eclass

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Vladimir Pavljuchenkov  spiderx.dp.ua>
Closes: https://github.com/gentoo/gentoo/pull/13527
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/qtpass/qtpass-1.3.2.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/app-admin/qtpass/qtpass-1.3.2.ebuild 
b/app-admin/qtpass/qtpass-1.3.2.ebuild
index 5e74ff1ca07..dad3a4d82ee 100644
--- a/app-admin/qtpass/qtpass-1.3.2.ebuild
+++ b/app-admin/qtpass/qtpass-1.3.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit desktop qmake-utils
+inherit desktop qmake-utils virtualx
 
 DESCRIPTION="multi-platform GUI for pass, the standard unix password manager"
 HOMEPAGE="https://qtpass.org/;
@@ -44,15 +44,19 @@ src_configure() {
eqmake5 PREFIX="${D}"/usr
 }
 
+src_test() {
+   virtx default
+}
+
 src_install() {
default
 
-   insinto /usr/share/"${PN}"/translations
+   insinto /usr/share/qtpass/translations
doins localization/*.qm
 
-   doman "${PN}".1
-   domenu "${PN}".desktop
-   newicon artwork/icon.png "${PN}"-icon.png
+   doman qtpass.1
+   domenu qtpass.desktop
+   newicon artwork/icon.png qtpass-icon.png
insinto /usr/share/appdata
doins qtpass.appdata.xml
 }



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/

2019-11-02 Thread Philip Miess
commit: 1045ab432dde131fb08357c9f9b022c0d8cc5235
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 22:31:02 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 22:31:02 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=1045ab43

install man page with doman instead of dodoc

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest| 2 +-
 app-text/rig/rig-1.11.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index 6b06550..dbbdba2 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 899 BLAKE2B 
c4d6f7a726980b669d4c7c431d44e37ebcb9ec30b20a4b388f238f4f783d14323aafc7f7f51a93855eea4c4eabd83ca9681b16f944dfa7fbb68041c96931b6c9
 SHA512 
b9a8078a23440a6463b3c27ca5165749fca68075b6447cff92cd63c1e5146ef3e856fa7e306cd6eb21cbf8c05f0dec75538e4df711888d15c386da559502e95c
+EBUILD rig-1.11.ebuild 904 BLAKE2B 
38569976ea46fbc96259c021fc81f9cd85fa1e984a51c2cf3688c7f586762ae29183079a4bc807cda8e72b52eac069a1e04cbbb4649327ddcb2ea137628f942a
 SHA512 
ed6de810e099a3a4fa305e1bd4fa2ba8d6a4289099c41b92da8ba84f0b88e892a2e9490a2ac7ff6fc1d50d103945dc1f79573fa4be33b98227e30dd59e1c6f8c
 MISC metadata.xml 323 BLAKE2B 
26f8c8a43a2ce23625cf6a63cb13de485cfcb722b2eeb693ef94cca6b00ccce418cd06ecf640674a9af17a1ab400294a8de135d77d2b18634397bccdd6232b02
 SHA512 
93434c2322b6dcddb4ed90be3180136ada13cfa8a1ccb9bdd2f916053f129aa93caab167afe1c66b69fdcd1c81da670e36d09ca534696de43d815f6a490b9f2f

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index 987cb2c..6cbe523 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -22,7 +22,7 @@ PATCHES=(
"${FILESDIR}/${P}-useDestDirAndImportMemcpy.patch"
 )
 
-DOCS=( "README" "Changelog" "rig.6" )
+DOCS=( "README" "Changelog" )
 
 src_compile() {
sed -i -e "s:g++ :$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} :" Makefile \
@@ -40,5 +40,6 @@ src_install() {
emake DESTDIR="${D}" install
fi
rm -rf "${D}/usr/man"
+   doman rig.6
einstalldocs
 }



[gentoo-commits] proj/java-ebuilder:master commit in: src/main/java/org/gentoo/java/ebuilder/maven/

2019-11-02 Thread Miroslav Šulc
commit: 2cfc1a85a6306b51d9ce5771f7645cad74206eaf
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 22:27:15 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 22:27:15 2019 +
URL:https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=2cfc1a85

switched from IUSE to JAVA_PKG_IUSE

Signed-off-by: Miroslav Šulc  gentoo.org>

 src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java 
b/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java
index 2194b80..1be72cb 100644
--- a/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java
+++ b/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java
@@ -493,7 +493,7 @@ public class MavenEbuilder {
 private void writeInherit(final MavenProject mavenProject,
   final PrintWriter writer) {
 writer.println();
-writer.print("IUSE=\"doc source");
+writer.print("JAVA_PKG_IUSE=\"doc source");
 
 if (mavenProject.hasTests()) {
 writer.print(" test");



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/

2019-11-02 Thread Philip Miess
commit: 55fcf06acd93b4c8dfb8b213e754bebcccae11fe
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 22:23:30 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 22:23:30 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=55fcf06a

delete whole image/usr/man directory to avoid QA message

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest| 2 +-
 app-text/rig/rig-1.11.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index 93feec9..6b06550 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 906 BLAKE2B 
3a6cbdd786602bcfb75a583a525179799b0e106761cfc3808eb5bd89ffbd9740956d07692255ca61dbad4084999d8c25fac20bbc675a85a3492f156c225ff22e
 SHA512 
2bb6dc0921e423c89c678946b37988273159c2d3a622095c6fa149258c2db8179c6720e518f7c63ea9d85f4c3f26a6bc1e1b3d03633d2f01811a4895ebfe2ec8
+EBUILD rig-1.11.ebuild 899 BLAKE2B 
c4d6f7a726980b669d4c7c431d44e37ebcb9ec30b20a4b388f238f4f783d14323aafc7f7f51a93855eea4c4eabd83ca9681b16f944dfa7fbb68041c96931b6c9
 SHA512 
b9a8078a23440a6463b3c27ca5165749fca68075b6447cff92cd63c1e5146ef3e856fa7e306cd6eb21cbf8c05f0dec75538e4df711888d15c386da559502e95c
 MISC metadata.xml 323 BLAKE2B 
26f8c8a43a2ce23625cf6a63cb13de485cfcb722b2eeb693ef94cca6b00ccce418cd06ecf640674a9af17a1ab400294a8de135d77d2b18634397bccdd6232b02
 SHA512 
93434c2322b6dcddb4ed90be3180136ada13cfa8a1ccb9bdd2f916053f129aa93caab167afe1c66b69fdcd1c81da670e36d09ca534696de43d815f6a490b9f2f

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index eb3f4b5..987cb2c 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -39,6 +39,6 @@ src_install() {
if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; then
emake DESTDIR="${D}" install
fi
-   rm "${D}/usr/man/man6/rig.6"
+   rm -rf "${D}/usr/man"
einstalldocs
 }



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/

2019-11-02 Thread Philip Miess
commit: ff08874a9a4be4709000b23eb9dce5a513771022
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 22:17:07 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 22:17:07 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=ff08874a

remove DEVRANDOM option because it caueses compile errors

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest|  4 ++--
 app-text/rig/metadata.xml|  5 -
 app-text/rig/rig-1.11.ebuild | 10 ++
 3 files changed, 4 insertions(+), 15 deletions(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index 48fc5be..93feec9 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 1011 BLAKE2B 
8ef5b41f51423775ea28549d320df14f24a8b22bd9169c70540c6631b94c7314192e3033e340add8c69fede60ea87d37b072399a9bc1995c683239fbf233289d
 SHA512 
520f30858f26334003e1384667c0acd250515b4efd72781957aefe35dabdd6a0990064d7bbb3fa258740ea8bc7345f30cb84a5cbfd37a2f00054282170bfad6f
-MISC metadata.xml 402 BLAKE2B 
93231d98ea75439ff9eb1713ab8a6bcd62142b5c01109a17715f9d6710ac90477a2f6546614c25a4e2af4cfa8af52e5035d4e6dfc2e458b11591e154d64921db
 SHA512 
562bb78240696acf97707ce309bcd967b0608d0b90af26763b300c5aaefd8c68ece65dabfc8e13d72b00d2ce6785e83c36dcf372d2176286a47de62dd464eb65
+EBUILD rig-1.11.ebuild 906 BLAKE2B 
3a6cbdd786602bcfb75a583a525179799b0e106761cfc3808eb5bd89ffbd9740956d07692255ca61dbad4084999d8c25fac20bbc675a85a3492f156c225ff22e
 SHA512 
2bb6dc0921e423c89c678946b37988273159c2d3a622095c6fa149258c2db8179c6720e518f7c63ea9d85f4c3f26a6bc1e1b3d03633d2f01811a4895ebfe2ec8
+MISC metadata.xml 323 BLAKE2B 
26f8c8a43a2ce23625cf6a63cb13de485cfcb722b2eeb693ef94cca6b00ccce418cd06ecf640674a9af17a1ab400294a8de135d77d2b18634397bccdd6232b02
 SHA512 
93434c2322b6dcddb4ed90be3180136ada13cfa8a1ccb9bdd2f916053f129aa93caab167afe1c66b69fdcd1c81da670e36d09ca534696de43d815f6a490b9f2f

diff --git a/app-text/rig/metadata.xml b/app-text/rig/metadata.xml
index a7adb80..4304452 100644
--- a/app-text/rig/metadata.xml
+++ b/app-text/rig/metadata.xml
@@ -6,9 +6,4 @@ A program that generates fake identities.
 RIG comes with the top 1000 names from the US census at
 http://www.census.gov/genealogy/names/
 
-
-   
-   Use /dev/random for randomness
-   
-
 

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index ce4f18b..eb3f4b5 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit flag-o-matic toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="generate random, yet real-looking, personal data"
 HOMEPAGE="https://sourceforge.net/projects/rig/ "
@@ -12,7 +12,7 @@ 
SRC_URI="https://sourceforge.net/projects/rig/files/rig/1.11/rig-1.11.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+devrandom"
+IUSE=""
 
 DEPEND=""
 RDEPEND="${DEPEND}"
@@ -24,12 +24,6 @@ PATCHES=(
 
 DOCS=( "README" "Changelog" "rig.6" )
 
-src_configure() {
-   if use devrandom ; then
-   append-cxxflags "-DDEVRANDOM"
-   fi
-}
-
 src_compile() {
sed -i -e "s:g++ :$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} :" Makefile \
|| die "sed fix failed. Uh-oh..."



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

2019-11-02 Thread Miroslav Šulc
commit: eb7af0af37b26d9fd4859b055ca0a0aa2247792f
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 21:58:45 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 21:59:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb7af0af

media-sound/jack-{1.9.13-r1,}: added missing slot info

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/jack2/jack2-1.9.13-r1.ebuild | 2 +-
 media-sound/jack2/jack2-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/jack2/jack2-1.9.13-r1.ebuild 
b/media-sound/jack2/jack2-1.9.13-r1.ebuild
index 8232a61efb4..0f479c637fb 100644
--- a/media-sound/jack2/jack2-1.9.13-r1.ebuild
+++ b/media-sound/jack2/jack2-1.9.13-r1.ebuild
@@ -39,7 +39,7 @@ CDEPEND="${PYTHON_DEPS}
sys-apps/dbus[${MULTILIB_USEDEP}]
)
ieee1394? ( media-libs/libffado:=[${MULTILIB_USEDEP}] )
-   metadata? ( sys-libs/db )
+   metadata? ( sys-libs/db:* )
opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
 DEPEND="${CDEPEND}
virtual/pkgconfig

diff --git a/media-sound/jack2/jack2-.ebuild 
b/media-sound/jack2/jack2-.ebuild
index 4e310216955..9293ca615b0 100644
--- a/media-sound/jack2/jack2-.ebuild
+++ b/media-sound/jack2/jack2-.ebuild
@@ -38,7 +38,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
sys-apps/dbus[${MULTILIB_USEDEP}]
)
ieee1394? ( media-libs/libffado:=[${MULTILIB_USEDEP}] )
-   metadata? ( sys-libs/db )
+   metadata? ( sys-libs/db:* )
opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
 DEPEND="${COMMON_DEPEND}
virtual/pkgconfig



[gentoo-commits] proj/java-ebuilder:master commit in: src/main/java/org/gentoo/java/ebuilder/maven/

2019-11-02 Thread Miroslav Šulc
commit: 9982eb3cbf850fe6985fb29017f2161489cae07a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 21:53:49 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 21:53:49 2019 +
URL:https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=9982eb3c

replacing ebuild name and version with variables

Signed-off-by: Miroslav Šulc  gentoo.org>

 .../gentoo/java/ebuilder/maven/MavenEbuilder.java  | 24 +-
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java 
b/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java
index ffb6e66..2194b80 100644
--- a/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java
+++ b/src/main/java/org/gentoo/java/ebuilder/maven/MavenEbuilder.java
@@ -226,6 +226,16 @@ public class MavenEbuilder {
 return result;
 }
 
+private String replaceWithVars(final String string, final Config config) {
+final String pString
+= config.getEbuildName() + '-' + config.getEbuildVersion();
+
+return string.
+replace(pString, "${P}").
+replace(config.getEbuildName(), "${PN}").
+replace(config.getEbuildVersion(), "${PV}");
+}
+
 /**
  * Writes command that was used to create skeleton of the ebuild.
  *
@@ -551,7 +561,8 @@ public class MavenEbuilder {
 writer.println('"');
 
 writer.print("SRC_URI=\"");
-writer.print(config.getDownloadUri());
+writer.print(
+replaceWithVars(config.getDownloadUri().toString(), config));
 writer.println('"');
 
 writer.print("LICENSE=\"");
@@ -653,7 +664,9 @@ public class MavenEbuilder {
 writer.print(':');
 }
 
-writer.print(config.getWorkdir().relativize(resources));
+writer.print(replaceWithVars(
+config.getWorkdir().relativize(resources).toString(),
+config));
 }
 
 writer.println('"');
@@ -661,8 +674,8 @@ public class MavenEbuilder {
 
 if (mavenProject.hasTests()) {
 writer.print("JAVA_TEST_SRC_DIR=\"");
-writer.print(config.getWorkdir().relativize(
-mavenProject.getTestSourceDirectory()));
+writer.print(replaceWithVars(config.getWorkdir().relativize(
+mavenProject.getTestSourceDirectory()).toString(), 
config));
 writer.println('"');
 
 if (mavenProject.hasTestResources()) {
@@ -678,7 +691,8 @@ public class MavenEbuilder {
 writer.print(':');
 }
 
-writer.print(config.getWorkdir().relativize(resources));
+writer.print(replaceWithVars(config.getWorkdir().
+relativize(resources).toString(), config));
 }
 
 writer.println('"');



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcllib/files/, dev-tcltk/tcllib/

2019-11-02 Thread Alfredo Tupone
commit: ebf94e7aefeceab36a9245b1e91197a4df0ef4b3
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sat Nov  2 21:42:54 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sat Nov  2 21:43:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf94e7a

dev-tcltk/tcllib: Removing a test dependent on time

Closes: https://bugs.gentoo.org/681234
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-tcltk/tcllib/files/tcllib-1.19-test.patch | 18 ++
 dev-tcltk/tcllib/tcllib-1.19.ebuild   |  2 ++
 2 files changed, 20 insertions(+)

diff --git a/dev-tcltk/tcllib/files/tcllib-1.19-test.patch 
b/dev-tcltk/tcllib/files/tcllib-1.19-test.patch
new file mode 100644
index 000..bdeec3fff19
--- /dev/null
+++ b/dev-tcltk/tcllib/files/tcllib-1.19-test.patch
@@ -0,0 +1,18 @@
+--- a/modules/httpd/httpd.test 2019-11-02 22:36:08.983215578 +0100
 b/modules/httpd/httpd.test 2019-11-02 22:37:04.397309180 +0100
+@@ -448,15 +448,6 @@
+ 
+ [clock seconds]}]
+ 
+-test scgi-client-0005 {URL Different output with a different request} {
+-set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
+-REQUEST_URI /time
+-
+-THIS ONE ALONE IS MINE}]
+-
+-::httpd::test::compare $reply $checkreply
+-} {}
+-
+ set fin [open [file join $DEMOROOT pkgIndex.tcl] r]
+ set checkfile [read $fin]
+ close $fin

diff --git a/dev-tcltk/tcllib/tcllib-1.19.ebuild 
b/dev-tcltk/tcllib/tcllib-1.19.ebuild
index d00b44232ee..4df05cba130 100644
--- a/dev-tcltk/tcllib/tcllib-1.19.ebuild
+++ b/dev-tcltk/tcllib/tcllib-1.19.ebuild
@@ -27,6 +27,8 @@ DOCS=(
 )
 HTML_DOCS=( devdoc/devguide.html devdoc/releaseguide.html )
 
+PATCHES=( "${FILESDIR}"/${P}-test.patch )
+
 src_prepare() {
default
if has_version ">=dev-lang/tcl-8.6.9"; then



[gentoo-commits] proj/java-ebuilder:master commit in: src/main/java/org/gentoo/java/ebuilder/maven/

2019-11-02 Thread Miroslav Šulc
commit: 6ffda4c5bb983ee60afe8cdbdd8cac800d2dda4e
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 21:41:55 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 21:41:55 2019 +
URL:https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=6ffda4c5

fixed projects dump issues

Signed-off-by: Miroslav Šulc  gentoo.org>

 src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java 
b/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java
index 6d0d8ec..eb379e0 100644
--- a/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java
+++ b/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java
@@ -151,9 +151,9 @@ public class MavenProject {
 writer.print("sourceDirectory: ");
 writer.println(sourceDirectory);
 writer.print("hasResources: ");
-writer.println(hasResources);
+writer.println(hasResources());
 
-writer.print("resourceDirectories:");
+writer.println("resourceDirectories:");
 
 if (resourceDirectories != null) {
 resourceDirectories.forEach((resourceDirectory) -> {
@@ -163,11 +163,11 @@ public class MavenProject {
 }
 
 writer.print("hasTests: ");
-writer.println(hasTests);
+writer.println(hasTests());
 writer.print("testSourceDirectory: ");
 writer.println(testSourceDirectory);
 writer.print("hasTestResources: ");
-writer.println(hasTestResources);
+writer.println(hasTestResources());
 
 writer.println("testResourceDirectories:");
 



[gentoo-commits] proj/java-ebuilder:master commit in: src/main/java/org/gentoo/java/ebuilder/maven/

2019-11-02 Thread Miroslav Šulc
commit: 54202dcc53c082b4b62bd82510e79ab3f9e53825
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 21:41:30 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 21:41:30 2019 +
URL:https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=54202dcc

fixed parsing of project build tree

Signed-off-by: Miroslav Šulc  gentoo.org>

 src/main/java/org/gentoo/java/ebuilder/maven/MavenParser.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/gentoo/java/ebuilder/maven/MavenParser.java 
b/src/main/java/org/gentoo/java/ebuilder/maven/MavenParser.java
index 2e81541..942ee27 100644
--- a/src/main/java/org/gentoo/java/ebuilder/maven/MavenParser.java
+++ b/src/main/java/org/gentoo/java/ebuilder/maven/MavenParser.java
@@ -389,6 +389,9 @@ public class MavenParser {
 case "artifactId":
 mavenProject.setArtifactId(reader.getElementText());
 break;
+case "build":
+parseProjectBuild(mavenProject, reader);
+break;
 case "dependencies":
 parseProjectDependencies(mavenProject, mavenCache,
 reader);



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

2019-11-02 Thread Robin H. Johnson
commit: 995223f937ca2dbfb7b15e09fdae4adbbf93f536
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Nov  2 21:40:03 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Nov  2 21:40:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=995223f9

net-mail/qlogtools: Update to EAPI7

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Robin H. Johnson  gentoo.org>
Bug: https://bugs.gentoo.org/show_bug.cgi?id=697246

 net-mail/qlogtools/qlogtools-3.1-r1.ebuild | 39 ++
 1 file changed, 39 insertions(+)

diff --git a/net-mail/qlogtools/qlogtools-3.1-r1.ebuild 
b/net-mail/qlogtools/qlogtools-3.1-r1.ebuild
new file mode 100644
index 000..df13e770840
--- /dev/null
+++ b/net-mail/qlogtools/qlogtools-3.1-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Qmail Log processing tools"
+HOMEPAGE="http://untroubled.org/qlogtools/;
+SRC_URI="http://untroubled.org/qlogtools/archive/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="!app-text/multitail"
+
+PATCHES=(
+   "${FILESDIR}"/qlogtools-3.1-errno.patch
+)
+
+src_configure() {
+   echo "$(tc-getCC) ${CFLAGS}" > conf-cc
+   echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
+   echo "${D}/usr/bin" > conf-bin
+   echo "${D}/usr/share/man/" > conf-man
+}
+
+src_install() {
+   dodir /usr/bin /usr/share/man/
+   ./installer || die "Installer failed"
+   dodoc ANNOUNCEMENT FILES NEWS README TARGETS VERSION
+}
+
+pkg_postinst() {
+   elog "Please see /usr/share/doc/${PF}/README for configuration 
information"
+}



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

2019-11-02 Thread Sebastian Pipping
commit: 6830413cc8912ee3a512410a9ae96d4c46bf0c27
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Sat Nov  2 21:32:25 2019 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Sat Nov  2 21:32:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6830413c

net-mail/rss2email: 3.11 + py35 support

Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-2.3.78, Repoman-2.3.16

 net-mail/rss2email/Manifest  |  1 +
 net-mail/rss2email/rss2email-3.11.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/net-mail/rss2email/Manifest b/net-mail/rss2email/Manifest
index fd75a9684c1..880d3ba1b73 100644
--- a/net-mail/rss2email/Manifest
+++ b/net-mail/rss2email/Manifest
@@ -1,4 +1,5 @@
 DIST rss2email-2.71.tar.gz 63268 BLAKE2B 
56c4e2b59611ffcb0e7a9ff3558e6ed4da3f5ba186d5c2f84b715b8b63bf4729a57c1986f910a46d81813f3e756e07a35959e3000f1bf65839a5da830c50377f
 SHA512 
242a4f2e4fe64f42e3348f8c159d91f79121224beec4faf542393c8323bdcba85510a28fc967ec59702f08205de1d40c2a26235f9d5590751f392880a7211c60
 DIST rss2email-3.10.tar.gz 64230 BLAKE2B 
1f41b47c9d48be0c8eff9c4223b1bddcee739566c5414f23abe33c2860c10c34fcab9b149666400897c264ff59fbc692fd4f93963b4084cfa15ae435257fe288
 SHA512 
655f20bfa01ca6923d6b10c5dbed59706e15ae697f3e5f0be8e963301cd9c6d9c5612b82d38bdf5b2cec3a5c495501fd3e4572da5057430fd1de69317b674160
 DIST rss2email-3.10_pre20171001.tar.gz 162385 BLAKE2B 
91ae17c43cca616750139b6d559fcfff50be682f70a932ae3e1e281c2a1ae0c31419d37ce7d8887b72873359f0ce29dfb03a1a7c19cfdc2fc945902110b6a3a1
 SHA512 
d0174489b1d5be9f18e720351f994a87ac0d6131fd23914deb1305223a022e3a741cf279c68c533e8dfe99112af334223354dcd145b38c09e32e16e1a80898ff
+DIST rss2email-3.11.tar.gz 66441 BLAKE2B 
24be7c4d280e337869833f9fa492186a9f4cc208e9f6152c1d4012edb016993a37cddd991d6211888d6aa7654d66bc79d9d70f1508dae20fa39d79fffeeef55b
 SHA512 
2efdef703a4b4774d85926f500a37689aea3a324f63a13a686a2322c9f69ac7b940c5b953f417d9259e1493b3dafde4c2e1ddb3433d085fb2400cd06001141bb
 DIST rss2email_2.65-1.diff.gz 8626 BLAKE2B 
25b497e099d6093d94a29bf79d89b53d51cff0ed71c926e709b17d8a5a066d13a64c75e162ab02fa34756c49891595f43d1031f4549bf5603238d76bf8e1ac3d
 SHA512 
cb0ca7f6c02f342305c6c19f03973f91343ca530a6a858427bfd6a57948e6123e02d64b1285efed10cda9541f3237f666d8e1a7954a3c2b57866a68dd43b8d8d

diff --git a/net-mail/rss2email/rss2email-3.11.ebuild 
b/net-mail/rss2email/rss2email-3.11.ebuild
new file mode 100644
index 000..48bef2206af
--- /dev/null
+++ b/net-mail/rss2email/rss2email-3.11.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Support for 3.7 needs support from dependencies, first
+PYTHON_COMPAT=( python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A python script that converts RSS/Atom newsfeeds to email"
+HOMEPAGE="https://github.com/rss2email/rss2email;
+SRC_URI="https://github.com/rss2email/rss2email/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( GPL-2 GPL-3 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND=">=dev-python/feedparser-5.0.1[${PYTHON_USEDEP}]
+   >=dev-python/html2text-3.01[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+src_install() {
+   distutils-r1_src_install
+   doman r2e.1
+}



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/

2019-11-02 Thread Philip Miess
commit: 85be4911a3f89e73c92b7c37f2eeb8f3096616f9
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 21:34:19 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 21:34:19 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=85be4911

delete manpage from depricated directory import flag-o-matic

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest| 2 +-
 app-text/rig/rig-1.11.ebuild | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index 92b2379..48fc5be 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 993 BLAKE2B 
58292bb026c28d6c6e8eafd04ec979873e4eb9948bd2f0edc25b1958de94b1a0cd5f9b5a04f95a8f658369631f4fdfb1931b61b93b4ca23a005b08466d9b51c1
 SHA512 
eaec1e4526d564ddc1969f56e3c12bd7bc90fa54b50ed27cbe5f816d8158f036357ef3731c59cb00e577ae8e778bcdf0b4162627fa6c51e9a647739b1ef17246
+EBUILD rig-1.11.ebuild 1011 BLAKE2B 
8ef5b41f51423775ea28549d320df14f24a8b22bd9169c70540c6631b94c7314192e3033e340add8c69fede60ea87d37b072399a9bc1995c683239fbf233289d
 SHA512 
520f30858f26334003e1384667c0acd250515b4efd72781957aefe35dabdd6a0990064d7bbb3fa258740ea8bc7345f30cb84a5cbfd37a2f00054282170bfad6f
 MISC metadata.xml 402 BLAKE2B 
93231d98ea75439ff9eb1713ab8a6bcd62142b5c01109a17715f9d6710ac90477a2f6546614c25a4e2af4cfa8af52e5035d4e6dfc2e458b11591e154d64921db
 SHA512 
562bb78240696acf97707ce309bcd967b0608d0b90af26763b300c5aaefd8c68ece65dabfc8e13d72b00d2ce6785e83c36dcf372d2176286a47de62dd464eb65

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index fd2c147..ce4f18b 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="generate random, yet real-looking, personal data"
 HOMEPAGE="https://sourceforge.net/projects/rig/ "
@@ -34,11 +34,9 @@ src_compile() {
sed -i -e "s:g++ :$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} :" Makefile \
|| die "sed fix failed. Uh-oh..."
emake
-   echo 'hello'
 }
 
 src_install() {
-   echo 'hi'
dodir /usr/bin
dodir /usr/man
dodir /usr/share/rig
@@ -47,5 +45,6 @@ src_install() {
if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; then
emake DESTDIR="${D}" install
fi
+   rm "${D}/usr/man/man6/rig.6"
einstalldocs
 }



[gentoo-commits] proj/java-ebuilder:master commit in: src/main/java/org/gentoo/java/ebuilder/maven/, ...

2019-11-02 Thread Miroslav Šulc
commit: 1673958029040f3368d310341832db6d03c18c9c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 21:32:16 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 21:32:16 2019 +
URL:https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=16739580

added option for dumping parsed projects

Signed-off-by: Miroslav Šulc  gentoo.org>

 src/main/java/org/gentoo/java/ebuilder/Config.java | 22 +++
 src/main/java/org/gentoo/java/ebuilder/Main.java   | 28 
 .../gentoo/java/ebuilder/maven/MavenProject.java   | 75 ++
 src/main/resources/usage.txt   |  2 +
 4 files changed, 127 insertions(+)

diff --git a/src/main/java/org/gentoo/java/ebuilder/Config.java 
b/src/main/java/org/gentoo/java/ebuilder/Config.java
index 9bc98f8..3bf8cb8 100644
--- a/src/main/java/org/gentoo/java/ebuilder/Config.java
+++ b/src/main/java/org/gentoo/java/ebuilder/Config.java
@@ -24,6 +24,10 @@ public class Config {
  * URI that goes to SRC_URI.
  */
 private URI downloadUri;
+/**
+ * Whether to output information about parsed projects.
+ */
+private boolean dumpProjects;
 /**
  * Path to ebuild file that should be generated.
  */
@@ -327,6 +331,24 @@ public class Config {
 this.workdir = workdir;
 }
 
+/**
+ * Getter for {@link #dumpProjects}.
+ *
+ * @return {@link #dumpProjects}
+ */
+public boolean isDumpProjects() {
+return dumpProjects;
+}
+
+/**
+ * Setter for {@link #dumpProjects}.
+ *
+ * @param dumpProjects {@link #dumpProjects}
+ */
+public void setDumpProjects(final boolean dumpProjects) {
+this.dumpProjects = dumpProjects;
+}
+
 /**
  * Getter for {@link #generateEbuild}.
  *

diff --git a/src/main/java/org/gentoo/java/ebuilder/Main.java 
b/src/main/java/org/gentoo/java/ebuilder/Main.java
index bb6fbd7..871ac2a 100644
--- a/src/main/java/org/gentoo/java/ebuilder/Main.java
+++ b/src/main/java/org/gentoo/java/ebuilder/Main.java
@@ -126,6 +126,9 @@ public class Main {
 } else if (config.getDownloadUri() != null) {
 config.getErrorWriter().println("WARNING: Download URI is used "
 + "only when generating ebuild.");
+} else if (config.isDumpProjects()) {
+config.getErrorWriter().println("WARNING: Dumping of projects can "
++ "be used only when generating ebuild.");
 } else if (config.getEbuild() != null) {
 config.getErrorWriter().println(
 "WARNING: Ebuild is used only when "
@@ -155,6 +158,23 @@ public class Main {
 }
 }
 
+private static void dumpMavenProjects(final Config config,
+final List mavenProjects) {
+int i = 0;
+
+for (final MavenProject mavenProject : mavenProjects) {
+config.getStdoutWriter().println(MessageFormat.format(
+"\n= PROJECT {0} DUMP START =", i));
+mavenProject.dump(config.getStdoutWriter());
+config.getStdoutWriter().println(MessageFormat.format(
+"= PROJECT {0} DUMP END =", i));
+
+i++;
+}
+
+config.getStdoutWriter().println();
+}
+
 /**
  * Processed generation of ebuild.
  *
@@ -170,6 +190,10 @@ public class Main {
 final List mavenProjects
 = mavenParser.parsePomFiles(config, mavenCache);
 
+if (config.isDumpProjects()) {
+dumpMavenProjects(config, mavenProjects);
+}
+
 final MavenEbuilder mavenEbuilder = new MavenEbuilder();
 mavenEbuilder.generateEbuild(config, mavenProjects, mavenCache);
 }
@@ -197,6 +221,10 @@ public class Main {
 + " is not valid.");
 }
 
+break;
+case "--dump-projects":
+case "-d":
+config.setDumpProjects(true);
 break;
 case "--ebuild":
 case "-e":

diff --git a/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java 
b/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java
index ba575b1..6d0d8ec 100644
--- a/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java
+++ b/src/main/java/org/gentoo/java/ebuilder/maven/MavenProject.java
@@ -1,5 +1,6 @@
 package org.gentoo.java.ebuilder.maven;
 
+import java.io.PrintWriter;
 import java.nio.file.Path;
 import java.util.ArrayList;
 import java.util.Collections;
@@ -121,6 +122,80 @@ public class MavenProject {
 testResourceDirectories.add(path);
 }
 
+/**
+ * Outputs project properties to the writer.
+ *
+ * @param writer writer
+ */
+public void dump(final PrintWriter writer) {
+writer.print("POM file: ");
+writer.println(pomFile);
+writer.print("groupId: ");
+

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

2019-11-02 Thread Ian Whyman
commit: 9502c0b0dc934354c13e14aa5aee783f2ab31d75
Author: Ian Whyman  gentoo  org>
AuthorDate: Sat Nov  2 21:07:05 2019 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Sat Nov  2 21:07:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9502c0b0

net-libs/libupnp: Version bump, tidy old

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

 net-libs/libupnp/Manifest  |  3 +-
 net-libs/libupnp/libupnp-1.8.2.ebuild  | 70 --
 ...ibupnp-1.8.3-r1.ebuild => libupnp-1.8.5.ebuild} |  8 +--
 3 files changed, 4 insertions(+), 77 deletions(-)

diff --git a/net-libs/libupnp/Manifest b/net-libs/libupnp/Manifest
index ccbe5c129a3..a65c18d588b 100644
--- a/net-libs/libupnp/Manifest
+++ b/net-libs/libupnp/Manifest
@@ -1,5 +1,4 @@
 DIST libupnp-1.6.21.tar.bz2 1245353 BLAKE2B 
ca9ff07f88cfc77c3e3f7250ec1de6fb8c1ad3a918f556a7d37a6e994b67d825608edd3fd788a5b5979de72e3b25288225af3b5b8c58f54395682eef50bfc2d2
 SHA512 
65a2989497b941dfa1f7ac09fe44267de4a5231af25a304f0f6e754c7cbb578bdcb3c500188b5ebfbff9f579099db7501817d45e1724ef8e384d6d918bcdcdeb
 DIST libupnp-1.6.25.tar.bz2 722731 BLAKE2B 
7f1850a235683ecd19bc377cd5c80c9d7ee8f0ded123dfc00d29551d2fd97fb873ce4c30ce0d26d562c57470c266a573c37fed4c0db159c65c56c673271adf92
 SHA512 
c1426c2f855f34a56b96761602a35989867918b556ecf9784c9ce9580f6c6083950004909831bad331f3a4dfb70ef1bd287e026c71bbfde2613f77fe05ab9e1f
-DIST libupnp-1.8.2.tar.gz 1379953 BLAKE2B 
472851bfd25530ead4c113657f0e30cf7a3a1a4c88b86864676a2b7096817c1780718710a9535068904901c21d70d92fb267f295e88531e3eeef7d9a0cee58f3
 SHA512 
026f2568a1ffa56a3a0ebc823b126dceabb7e821acb6db52fbca02c4c02febd5508cb644cd2ac51f65397c3248a22340b3673069951e97dcdd22d4cc321d4511
-DIST libupnp-1.8.3.tar.gz 1382278 BLAKE2B 
65774d46633d81fcc810f01339e0eac5d7c7313f69c1a467e6c0bbb2603fdb4d8330f46e86346737cc17c1c953ef26045526bc9fe438f7e917928a3a3d0e
 SHA512 
592a719614492ee1dad3630e5de2dca1dbe369faa3c87ba20fb939334c9d24f9dc869a457f5903cd28c5f7662145d1db4eeb512ee93b47adad4fc9b7d9171507
 DIST libupnp-1.8.4.tar.gz 783896 BLAKE2B 
483ae5344b0677441a02d4666476090e00d0f7b7798e24a7dbe7ea10cd68f02644851ba17cff06033714dc9f2ddf7d9c5588e5a54693f14ad1a9782a7751480d
 SHA512 
6d96dc0dcf187a425f3b60f4e750102331bd0a5bd452007e345eeacb63e9287ac213574c8071294809283ff8d8795433706ed2a14bae3d451605bf7a75e5a5bb
+DIST libupnp-1.8.5.tar.gz 785053 BLAKE2B 
3ffb2568b6b56678732a9784254ba6b5f36dbed3b36a97dfecf8879bf75c1f2643e66ec590625a8060ca18af1ec84cf165ea0e87fecb99c4c1d98429709ea2f5
 SHA512 
0a29a3a05d7ad2a249d17a2b476addf56c64368fddd4e973851e652109ca3ccb7e30e92a97cdc03da3057eec93ea189c71803dbd6a282b70a744c7cfac3bee5b

diff --git a/net-libs/libupnp/libupnp-1.8.2.ebuild 
b/net-libs/libupnp/libupnp-1.8.2.ebuild
deleted file mode 100644
index 4e724b79fc2..000
--- a/net-libs/libupnp/libupnp-1.8.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils flag-o-matic autotools vcs-snapshot
-
-DESCRIPTION="An Portable Open Source UPnP Development Kit"
-HOMEPAGE="http://pupnp.sourceforge.net/;
-SRC_URI="https://github.com/mrjimenez/pupnp/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="1.8"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="blocking-tcp debug doc ipv6 +reuseaddr samples static-libs"
-
-DOCS="NEWS README.md ChangeLog"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.6.19-docs-install.patch
-   "${FILESDIR}"/${PN}-1.6.21-cflags.patch
-)
-
-src_prepare() {
-   default
-
-   # fix tests
-   chmod +x ixml/test/test_document.sh || die
-
-   eautoreconf
-}
-
-src_configure() {
-   use x86-fbsd && append-flags -O1
-   # w/o docdir to avoid sandbox violations
-   econf $(use_enable debug) \
-   $(use_enable blocking-tcp blocking-tcp-connections) \
-   $(use_enable ipv6) \
-   $(use_enable reuseaddr) \
-   $(use_enable static-libs static) \
-   $(use_enable samples) \
-   $(use_with doc documentation "${EPREFIX}/usr/share/doc/${PF}")
-}
-
-src_install () {
-   default
-
-   use static-libs || prune_libtool_files
-
-   # Slot samples
-   if $(use samples); then
-   for bin in combo ctrlpt device ; do
-   newbin "upnp/sample/.libs/tv_$bin" "tv_$bin-${SLOT}"
-   done
-   fi
-
-   # Slot includes
-   cd "${D}/usr/include" || die
-   mv upnp "upnp-${SLOT}" || die
-
-   # Slot pkgconfig
-   cd "${D}/usr/$(get_libdir)/pkgconfig" || die
-   mv libupnp.pc "libupnp-${SLOT}.pc" || die
-   sed -i "s#/upnp#/upnp-${SLOT}#" "libupnp-${SLOT}.pc" || die
-
-   # Slot symlinks
-   cd "${D}/usr/$(get_libdir)" || die
-   mv libupnp.so "libupnp-${SLOT}.so" || die
-   mv libixml.so "libixml-${SLOT}.so" 

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

2019-11-02 Thread Miroslav Šulc
commit: 851145859f1181a157d68226ab5f56c5c7be31fe
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Nov  2 20:53:44 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Nov  2 20:54:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85114585

media-sound/jack-{1.9.13-r1,}: bug #699124

Closes: https://bugs.gentoo.org/699124
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 .../jack2/{jack2-.ebuild => jack2-1.9.13-r1.ebuild} | 17 ++---
 media-sound/jack2/jack2-.ebuild |  4 +++-
 media-sound/jack2/metadata.xml  |  1 +
 3 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/media-sound/jack2/jack2-.ebuild 
b/media-sound/jack2/jack2-1.9.13-r1.ebuild
similarity index 84%
copy from media-sound/jack2/jack2-.ebuild
copy to media-sound/jack2/jack2-1.9.13-r1.ebuild
index 45dd8b8c38a..8232a61efb4 100644
--- a/media-sound/jack2/jack2-.ebuild
+++ b/media-sound/jack2/jack2-1.9.13-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_5 python3_6 python3_7 )
+PYTHON_COMPAT=( python2_7 python3_5 python3_6 python3_7 )
 PYTHON_REQ_USE="threads(+)"
 inherit python-single-r1 waf-utils multilib-minimal
 
@@ -23,12 +23,13 @@ fi
 
 LICENSE="GPL-2"
 SLOT="2"
-IUSE="alsa +classic dbus doc ieee1394 libsamplerate opus pam readline sndfile"
+IUSE="alsa +classic dbus doc ieee1394 libsamplerate metadata opus pam readline 
sndfile"
 
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
|| ( classic dbus )"
 
-COMMON_DEPEND="${PYTHON_DEPS}
+CDEPEND="${PYTHON_DEPS}
media-libs/libsamplerate
media-libs/libsndfile
sys-libs/readline:0=
@@ -38,16 +39,17 @@ COMMON_DEPEND="${PYTHON_DEPS}
sys-apps/dbus[${MULTILIB_USEDEP}]
)
ieee1394? ( media-libs/libffado:=[${MULTILIB_USEDEP}] )
+   metadata? ( sys-libs/db )
opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
-DEPEND="${COMMON_DEPEND}
+DEPEND="${CDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="${CDEPEND}
dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
pam? ( sys-auth/realtime-base )
!media-sound/jack-audio-connection-kit:0"
 
-DOCS=( AUTHORS.rst ChangeLog.rst README.rst README_NETJACK2 )
+DOCS=( ChangeLog.rst README.rst README_NETJACK2 )
 
 src_prepare() {
default
@@ -61,6 +63,7 @@ multilib_src_configure() {
$(usex classic --classic "")
--alsa=$(usex alsa yes no)
--celt=no
+   --db=$(usex metadata yes no)
--doxygen=$(multilib_native_usex doc yes no)
--firewire=$(usex ieee1394 yes no)
--iio=no

diff --git a/media-sound/jack2/jack2-.ebuild 
b/media-sound/jack2/jack2-.ebuild
index 45dd8b8c38a..4e310216955 100644
--- a/media-sound/jack2/jack2-.ebuild
+++ b/media-sound/jack2/jack2-.ebuild
@@ -23,7 +23,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="2"
-IUSE="alsa +classic dbus doc ieee1394 libsamplerate opus pam readline sndfile"
+IUSE="alsa +classic dbus doc ieee1394 libsamplerate metadata opus pam readline 
sndfile"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
|| ( classic dbus )"
@@ -38,6 +38,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
sys-apps/dbus[${MULTILIB_USEDEP}]
)
ieee1394? ( media-libs/libffado:=[${MULTILIB_USEDEP}] )
+   metadata? ( sys-libs/db )
opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
 DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
@@ -61,6 +62,7 @@ multilib_src_configure() {
$(usex classic --classic "")
--alsa=$(usex alsa yes no)
--celt=no
+   --db=$(usex metadata yes no)
--doxygen=$(multilib_native_usex doc yes no)
--firewire=$(usex ieee1394 yes no)
--iio=no

diff --git a/media-sound/jack2/metadata.xml b/media-sound/jack2/metadata.xml
index 7956a5fa461..61e6667c2b4 100644
--- a/media-sound/jack2/metadata.xml
+++ b/media-sound/jack2/metadata.xml
@@ -10,6 +10,7 @@


Enable building of jackd
+   Enable metadata API
Add basic realtime configuration via 
sys-auth/realtime-base

 



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

2019-11-02 Thread Lars Wendler
commit: d86c7a6288d50ba04555fed08d065861f461e3f0
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Nov  2 20:04:27 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Nov  2 20:04:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d86c7a62

sys-apps/fwupd: Fixed dependency on dev-libs/libxmlb

Closes: https://bugs.gentoo.org/699150
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Lars Wendler  gentoo.org>

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

diff --git a/sys-apps/fwupd/fwupd-1.3.3.ebuild 
b/sys-apps/fwupd/fwupd-1.3.3.ebuild
index b1c77f7d52d..71773bc2c48 100644
--- a/sys-apps/fwupd/fwupd-1.3.3.ebuild
+++ b/sys-apps/fwupd/fwupd-1.3.3.ebuild
@@ -44,7 +44,7 @@ DEPEND="${PYTHON_DEPS}
dev-libs/libgpg-error
dev-libs/libgudev:=
>=dev-libs/libgusb-0.2.9[introspection?]
-   >=dev-libs/libxmlb-0.1.7
+   >=dev-libs/libxmlb-0.1.13
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot-nginx/

2019-11-02 Thread Matthew Thode
commit: b7a905d51c16e865c6d15042d8879b31c95dfcf3
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov  2 19:50:24 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov  2 19:50:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7a905d5

app-crypt/certbot-nginx: 0.39.0 stable amd64/x86 with cleanup

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-nginx/Manifest   |  1 -
 .../certbot-nginx/certbot-nginx-0.37.2.ebuild  | 34 --
 .../certbot-nginx/certbot-nginx-0.39.0.ebuild  |  2 +-
 3 files changed, 1 insertion(+), 36 deletions(-)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index 36c995a9682..ad3412d71ac 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -1,3 +1,2 @@
-DIST certbot-0.37.2.tar.gz 1327361 BLAKE2B 
2f36276f527ffc29e54cf58f25051952e9435972a94881e420712844401fc86b2a0220d651f56c07fbff69e12114fdb1d3c0650fc5fc6a4539ff1c279a0b4c24
 SHA512 
2e357dfcb6da669f1ab6e4f9aa3e8e3457ce0f794f40c9ac862a9f24208b4f4d773dbafffd97fd1f7e5b2a29e1ca99be787101469384a9e61b4ddb077b644211
 DIST certbot-0.38.0.tar.gz 1328474 BLAKE2B 
6ea7c6b5d1840ec9d42509859d0f36f3ac3c4e588149e54fd74f8799a414b43c4d182b47e051a96436c9cdac135999d7e2a25424be680a819d50de64bb85b198
 SHA512 
832ac36c5b13e9764c9aab40856af7b909b630f34b1fe1e42dbf847357b28b2a130df480f1cb543dad0db781a843a79a310eba7b1097370e267d01431c21ee29
 DIST certbot-0.39.0.tar.gz 1350312 BLAKE2B 
5f21c45d25754cb1ed0ad92e8d03637928a274637de09903509c7e78c40fd197e95cfa1f3effecef938d6ab8369dc6811714ddb5a93a806048e0998d1032e4f9
 SHA512 
17ab17a5f74e3fba58b1a8b9afe0c3656c7b2a5ea3585edb05ad84e36250c6a8d4d28bd692bc97d033c95eb0bbeff4eb84981ae0006e36d55846cd38373b86a0

diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.37.2.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.37.2.ebuild
deleted file mode 100644
index 73497ec2cbd..000
--- a/app-crypt/certbot-nginx/certbot-nginx-0.37.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{2_7,3_5,3_6,3_7})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   
SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> 
${PN%-nginx}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-   S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Nginx plugin for certbot (Let's Encrypt Client)"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
-   >=app-crypt/acme-0.29.0[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-0.35.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}"

diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.39.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.39.0.ebuild
index c4f2df8684e..73497ec2cbd 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-0.39.0.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-0.39.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else

SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> 
${PN%-nginx}-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
 fi
 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/

2019-11-02 Thread Matthew Thode
commit: 2d81f1030c6915811df5a0ccb257ae6ac8c9970a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov  2 19:47:08 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov  2 19:50:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d81f103

app-crypt/certbot: 0.39.0 stable amd64/x86 with cleanup

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot/Manifest  |  1 -
 app-crypt/certbot/certbot-0.37.0.ebuild | 48 -
 app-crypt/certbot/certbot-0.39.0.ebuild |  2 +-
 3 files changed, 1 insertion(+), 50 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index e333cf03dc0..ad3412d71ac 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1,3 +1,2 @@
-DIST certbot-0.37.0.tar.gz 1327246 BLAKE2B 
917360ab6d9dedd6e5ea2c558822c228ff34617f97341b7d176e69f7589a3aa3012f1d9abdb33b72960c68a80b29987d1a7b1121eadd7d93adec5829b316f326
 SHA512 
3f2df5f591ba241719fe2e5e90c2b87e2d932d991d943eefbe00b9d76f7fb056d3b6026879511f591473c698b798e78645879f018a78e503b8a06280b036cb35
 DIST certbot-0.38.0.tar.gz 1328474 BLAKE2B 
6ea7c6b5d1840ec9d42509859d0f36f3ac3c4e588149e54fd74f8799a414b43c4d182b47e051a96436c9cdac135999d7e2a25424be680a819d50de64bb85b198
 SHA512 
832ac36c5b13e9764c9aab40856af7b909b630f34b1fe1e42dbf847357b28b2a130df480f1cb543dad0db781a843a79a310eba7b1097370e267d01431c21ee29
 DIST certbot-0.39.0.tar.gz 1350312 BLAKE2B 
5f21c45d25754cb1ed0ad92e8d03637928a274637de09903509c7e78c40fd197e95cfa1f3effecef938d6ab8369dc6811714ddb5a93a806048e0998d1032e4f9
 SHA512 
17ab17a5f74e3fba58b1a8b9afe0c3656c7b2a5ea3585edb05ad84e36250c6a8d4d28bd692bc97d033c95eb0bbeff4eb84981ae0006e36d55846cd38373b86a0

diff --git a/app-crypt/certbot/certbot-0.37.0.ebuild 
b/app-crypt/certbot/certbot-0.37.0.ebuild
deleted file mode 100644
index 4ed99381a01..000
--- a/app-crypt/certbot/certbot-0.37.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{2_7,3_5,3_6,3_7})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   ${CDEPEND}
-   >=app-crypt/acme-0.29.0[${PYTHON_USEDEP}]
-   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
-   dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="
-   ${CDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-python_test() {
-   # acme is not installed, removing it here is fine, the dir just 
confuses tests
-   rm -R acme
-   pytest -vv ${PN} || die
-}

diff --git a/app-crypt/certbot/certbot-0.39.0.ebuild 
b/app-crypt/certbot/certbot-0.39.0.ebuild
index 0e7b7afdc97..fc61e30313d 100644
--- a/app-crypt/certbot/certbot-0.39.0.ebuild
+++ b/app-crypt/certbot/certbot-0.39.0.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot-apache/

2019-11-02 Thread Matthew Thode
commit: f364c23f8e20203858a25575358e4b3a6fc94e91
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov  2 19:48:54 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov  2 19:50:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f364c23f

app-crypt/certbot-apache: 0.39.0 stable amd64/x86 with cleanup

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-apache/Manifest  |  1 -
 .../certbot-apache/certbot-apache-0.37.2.ebuild| 38 --
 .../certbot-apache/certbot-apache-0.39.0.ebuild|  2 +-
 3 files changed, 1 insertion(+), 40 deletions(-)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index 36c995a9682..ad3412d71ac 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -1,3 +1,2 @@
-DIST certbot-0.37.2.tar.gz 1327361 BLAKE2B 
2f36276f527ffc29e54cf58f25051952e9435972a94881e420712844401fc86b2a0220d651f56c07fbff69e12114fdb1d3c0650fc5fc6a4539ff1c279a0b4c24
 SHA512 
2e357dfcb6da669f1ab6e4f9aa3e8e3457ce0f794f40c9ac862a9f24208b4f4d773dbafffd97fd1f7e5b2a29e1ca99be787101469384a9e61b4ddb077b644211
 DIST certbot-0.38.0.tar.gz 1328474 BLAKE2B 
6ea7c6b5d1840ec9d42509859d0f36f3ac3c4e588149e54fd74f8799a414b43c4d182b47e051a96436c9cdac135999d7e2a25424be680a819d50de64bb85b198
 SHA512 
832ac36c5b13e9764c9aab40856af7b909b630f34b1fe1e42dbf847357b28b2a130df480f1cb543dad0db781a843a79a310eba7b1097370e267d01431c21ee29
 DIST certbot-0.39.0.tar.gz 1350312 BLAKE2B 
5f21c45d25754cb1ed0ad92e8d03637928a274637de09903509c7e78c40fd197e95cfa1f3effecef938d6ab8369dc6811714ddb5a93a806048e0998d1032e4f9
 SHA512 
17ab17a5f74e3fba58b1a8b9afe0c3656c7b2a5ea3585edb05ad84e36250c6a8d4d28bd692bc97d033c95eb0bbeff4eb84981ae0006e36d55846cd38373b86a0

diff --git a/app-crypt/certbot-apache/certbot-apache-0.37.2.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.37.2.ebuild
deleted file mode 100644
index af317727402..000
--- a/app-crypt/certbot-apache/certbot-apache-0.37.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{2_7,3_5,3_6,3_7})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   
SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz 
-> ${PN%-apache}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm64 x86"
-   S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Apache plugin for certbot (Let's Encrypt Client)"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-
-RDEPEND=">=app-crypt/acme-0.29.0[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-0.36.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/python-augeas[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}] )
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_test() {
-   nosetests || die
-}

diff --git a/app-crypt/certbot-apache/certbot-apache-0.39.0.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.39.0.ebuild
index a90d0aa26db..492ef9bf486 100644
--- a/app-crypt/certbot-apache/certbot-apache-0.39.0.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-0.39.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else

SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz 
-> ${PN%-apache}-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
 fi
 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/

2019-11-02 Thread Matthew Thode
commit: edb7250dcd1fac3f7cac18cf8a21b0f33b9fb3ef
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Nov  2 19:44:04 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Nov  2 19:50:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edb7250d

app-crypt/acme: 0.39.0 stable amd64/x86 with cleanup

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/acme/Manifest   |  1 -
 app-crypt/acme/acme-0.37.0.ebuild | 68 ---
 app-crypt/acme/acme-0.39.0.ebuild |  2 +-
 3 files changed, 1 insertion(+), 70 deletions(-)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index e333cf03dc0..ad3412d71ac 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,3 +1,2 @@
-DIST certbot-0.37.0.tar.gz 1327246 BLAKE2B 
917360ab6d9dedd6e5ea2c558822c228ff34617f97341b7d176e69f7589a3aa3012f1d9abdb33b72960c68a80b29987d1a7b1121eadd7d93adec5829b316f326
 SHA512 
3f2df5f591ba241719fe2e5e90c2b87e2d932d991d943eefbe00b9d76f7fb056d3b6026879511f591473c698b798e78645879f018a78e503b8a06280b036cb35
 DIST certbot-0.38.0.tar.gz 1328474 BLAKE2B 
6ea7c6b5d1840ec9d42509859d0f36f3ac3c4e588149e54fd74f8799a414b43c4d182b47e051a96436c9cdac135999d7e2a25424be680a819d50de64bb85b198
 SHA512 
832ac36c5b13e9764c9aab40856af7b909b630f34b1fe1e42dbf847357b28b2a130df480f1cb543dad0db781a843a79a310eba7b1097370e267d01431c21ee29
 DIST certbot-0.39.0.tar.gz 1350312 BLAKE2B 
5f21c45d25754cb1ed0ad92e8d03637928a274637de09903509c7e78c40fd197e95cfa1f3effecef938d6ab8369dc6811714ddb5a93a806048e0998d1032e4f9
 SHA512 
17ab17a5f74e3fba58b1a8b9afe0c3656c7b2a5ea3585edb05ad84e36250c6a8d4d28bd692bc97d033c95eb0bbeff4eb84981ae0006e36d55846cd38373b86a0

diff --git a/app-crypt/acme/acme-0.37.0.ebuild 
b/app-crypt/acme/acme-0.37.0.ebuild
deleted file mode 100644
index 9a9b63c8fa3..000
--- a/app-crypt/acme/acme-0.37.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_5,3_6,3_7})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-   S=${WORKDIR}/certbot-${PV}/acme
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="An implementation of the ACME protocol"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc test"
-
-RDEPEND="
-   >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
-   >=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
-   dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.10[${PYTHON_USEDEP}]
-   >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
-   test? (
-   ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   )
-   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
-"
-
-src_compile() {
-   python_foreach_impl run_in_build_dir default
-   if use doc ; then
-   cd docs || die
-   sphinx-build -b html -d _build/doctrees   . _build/html
-   fi
-}
-
-python_test() {
-   nosetests -w ${PN} || die
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/app-crypt/acme/acme-0.39.0.ebuild 
b/app-crypt/acme/acme-0.39.0.ebuild
index 3efe8a99669..e5015f90bab 100644
--- a/app-crypt/acme/acme-0.39.0.ebuild
+++ b/app-crypt/acme/acme-0.39.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else
SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
S=${WORKDIR}/certbot-${PV}/acme
 fi
 



[gentoo-commits] repo/user/gerislay:master commit in: dev-util/meson/

2019-11-02 Thread gerion
commit: 8e431d7b3f1c8040559c6551ad3618b6fb547be1
Author: Gerion Entrup  flump  de>
AuthorDate: Sat Nov  2 19:31:55 2019 +
Commit: gerion  flump  de>
CommitDate: Sat Nov  2 19:32:55 2019 +
URL:https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=8e431d7b

dev-util/meson: drop, in gentoo now

Signed-off-by: Gerion Entrup  flump.de>

 dev-util/meson/Manifest|  3 --
 dev-util/meson/meson-0.52.0.ebuild | 79 --
 dev-util/meson/metadata.xml| 11 --
 3 files changed, 93 deletions(-)

diff --git a/dev-util/meson/Manifest b/dev-util/meson/Manifest
deleted file mode 100644
index 54b6ceb..000
--- a/dev-util/meson/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST meson-0.52.0.tar.gz 1507218 BLAKE2B 
d3d869cf4a992ba89f150960ed742ac5da2b63b60a3583f2c4c7cce1e2a86f5101a90a05f59000af70c7ada00c119268df87aaadc55ccee50b85c24e308c1d5c
 SHA512 
b32206c5499580a74bb5442d21263b5328cc3302c3226452fb3a2434fdcf55d5fc16fc841102b09a85abc19dbd00e836a571f917833ef3d726d84524f89b2e1c
-EBUILD meson-0.52.0.ebuild 1809 BLAKE2B 
31b84519e13aabfc8592c9465b8b0a287897061352d18ef7c29ebf06181f6ba0d3e3cd911e25fe68100fd9c15a847e89831deebd4a6cd21802535cc08d48435c
 SHA512 
51f83368a4a639e107ef6e4386eddde70583b9d95044d6ce496e810c0bc28af38e4b632314a1661665c5c391ef28611ac7fd0f8eabb7f0d0afd669865ac26f3a
-MISC metadata.xml 319 BLAKE2B 
227e571b328c9758e2ad5d4683f7b6c19822a8b1aecbd67d81f16272dc87b0ef46e04bd4a3b83225a73da8b08d6851b3aa7df207ab996aa4ba129a13c1131a30
 SHA512 
9a3d42bf7e30882fcd013c881c371769a204a474fb2673b0fb1d1cd6e1a2eb537489d9c04a0de4760bab89a751f0475a53a659c8b54dcb5b8895ac444627f299

diff --git a/dev-util/meson/meson-0.52.0.ebuild 
b/dev-util/meson/meson-0.52.0.ebuild
deleted file mode 100644
index ebfa5f5..000
--- a/dev-util/meson/meson-0.52.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2016-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="https://github.com/mesonbuild/meson;
-   inherit git-r3
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-inherit distutils-r1 toolchain-funcs
-
-DESCRIPTION="Open source build system"
-HOMEPAGE="http://mesonbuild.com/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-libs/glib:2
-   dev-libs/gobject-introspection
-   dev-util/ninja
-   dev-vcs/git
-   sys-libs/zlib[static-libs(+)]
-   virtual/pkgconfig
-   )
-"
-
-python_prepare_all() {
-   # ASAN and sandbox both want control over LD_PRELOAD
-   # https://bugs.gentoo.org/673016
-   sed -i -e 's/test_generate_gir_with_address_sanitizer/_&/' 
run_unittests.py || die
-
-   # ASAN is unsupported on some targets
-   # https://bugs.gentoo.org/692822
-   sed -i -e 's/test_pch_with_address_sanitizer/_&/' run_unittests.py || 
die
-
-   distutils-r1_python_prepare_all
-}
-
-src_test() {
-   tc-export PKG_CONFIG
-   if ${PKG_CONFIG} --exists Qt5Core && ! ${PKG_CONFIG} --exists Qt5Gui; 
then
-   ewarn "Found Qt5Core but not Qt5Gui; skipping tests"
-   else
-   # https://bugs.gentoo.org/687792
-   unset PKG_CONFIG
-   distutils-r1_src_test
-   fi
-}
-
-python_test() {
-   (
-   # test_meson_installed
-   unset PYTHONDONTWRITEBYTECODE
-
-   # test_cross_file_system_paths
-   unset XDG_DATA_HOME
-
-   ${EPYTHON} -u run_tests.py
-   ) || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   insinto /usr/share/vim/vimfiles
-   doins -r data/syntax-highlighting/vim/{ftdetect,indent,syntax}
-   insinto /usr/share/zsh/site-functions
-   doins data/shell-completions/zsh/_meson
-}

diff --git a/dev-util/meson/metadata.xml b/dev-util/meson/metadata.xml
deleted file mode 100644
index c89b5d2..000
--- a/dev-util/meson/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   gerion.ent...@flump.de
-   Gerion Entrup
-   
-   
-   meson
-   
-



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

2019-11-02 Thread Robin H. Johnson
commit: af9a4dafd073b4b41fde54568bfe9efaae716bf5
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Nov  2 19:08:36 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Nov  2 19:08:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af9a4daf

net-mail/checkpassword: fix FILESDIR rename

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Robin H. Johnson  gentoo.org>
Fixes: https://bugs.gentoo.org/699138
Fixes: https://bugs.gentoo.org/699140

 net-mail/checkpassword/checkpassword-0.90-r2.ebuild | 4 ++--
 net-mail/checkpassword/checkpassword-0.90-r4.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-mail/checkpassword/checkpassword-0.90-r2.ebuild 
b/net-mail/checkpassword/checkpassword-0.90-r2.ebuild
index 7c7a9b94f12..5cd7a09218f 100644
--- a/net-mail/checkpassword/checkpassword-0.90-r2.ebuild
+++ b/net-mail/checkpassword/checkpassword-0.90-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=0
@@ -18,7 +18,7 @@ RESTRICT="mirror bindist"
 src_unpack() {
unpack ${A}
cd "${S}"
-   epatch "${FILESDIR}"/${PV}-errno.patch
+   epatch "${FILESDIR}"/${P}-errno.patch
epatch "${FILESDIR}"/${PV}-head-1.patch
 
use static && append-ldflags -static

diff --git a/net-mail/checkpassword/checkpassword-0.90-r4.ebuild 
b/net-mail/checkpassword/checkpassword-0.90-r4.ebuild
index 5029a6bdbee..1680029cd0a 100644
--- a/net-mail/checkpassword/checkpassword-0.90-r4.ebuild
+++ b/net-mail/checkpassword/checkpassword-0.90-r4.ebuild
@@ -18,7 +18,7 @@ RESTRICT="mirror bindist"
 PATCHES=(
"${FILESDIR}"/${P}-errno.patch
"${FILESDIR}"/${P}-exit.patch
-   "${FILESDIR}"/${P}-headers.diff
+   "${FILESDIR}"/${P}-headers.patch
 )
 
 src_prepare() {



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

2019-11-02 Thread Nick Sarnie
commit: 9a14a91a07a58a7cf034cf1ae0e564cc7957453c
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  2 18:28:05 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  2 18:28:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a14a91a

app-emulation/wine-vanilla: Sync with ::wine

Bump to 4.19

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

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-4.19.ebuild  | 538 +
 2 files changed, 539 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 2ed1e0e543e..4e3bef3c63e 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -7,3 +7,4 @@ DIST wine-4.15.tar.xz 22196108 BLAKE2B 
d3b28ad1bbfb7e1522a3acb120049dd3ac3fe0473
 DIST wine-4.16.tar.xz 22205248 BLAKE2B 
e7f7daeb4f75a5cf38478609512317e55ead862812a409e4f094178c0b7dec2a969b0a96e83059a1bede3610d3986529f926041765cfa536b786ee53fdc27b84
 SHA512 
f3097b06e490356e68484239b7a2ac1cfa968818565c79386ba6c0e70a318c092af5549da8218935cbe891876fa519d361a3775d0ab5d4adc192555ae0e45d86
 DIST wine-4.17.tar.xz 22230616 BLAKE2B 
428d9b781acbadabb2ce677b08c1a38f130c39d2acb95364dc0ac4cfef8f7c9efe4199846bf0bfc745dc25ba632847f224da1b0a09b8ee6c4927154771a538cf
 SHA512 
f762aab2596a4b5cf73d3282be561d25a2fe69e5d4a5ec2e29db47b3eda7496ca9eb7e57ff7765853d258422898bfa775bf9b458e61eef837b213e422bd748b8
 DIST wine-4.18.tar.xz 22263936 BLAKE2B 
710d6d90ff1ef9adeb5bb9012c8f354985c1610f46607a144ef12499571373563f8ce204dc3dbed975a9ab47e0b07e65f8fe0ff3e38a698076d95c58fc0797c4
 SHA512 
794802289fa021092a86c939a3618563ad1523689cdafb6fd58aed06c6a5c867fc5ef0d3dbb2435a65c3eb0d3b982b37e983257a7a7d20c3b6d71df9bf5bf1f1
+DIST wine-4.19.tar.xz 22283616 BLAKE2B 
0d648d931737bc381bca3ad0fa2bfcc089c8324c47c80bdaa85aaddb5a63f5145ef5cc442da299591edbd1723ff1dd49fbf629363ec5e4c6152b7016aed612f3
 SHA512 
a86bd7ccfb1878445ea946e4ca72769c10b4d966bcc893536a8c3eaa29484ba687dc3a44755ec92a2ad6073e736985b814c0c682bf4f90b5ffe2bca0ebbf4b25

diff --git a/app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild
new file mode 100644
index 000..d502188edeb
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild
@@ -0,0 +1,538 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20190511"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks v4l vkd3d vulkan 
+X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   faudio? ( 

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

2019-11-02 Thread Nick Sarnie
commit: 2563842c425fb5db4a45a852c09c43132c531960
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  2 18:28:37 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  2 18:28:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2563842c

app-emulation/wine-vanilla: Drop old

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

 app-emulation/wine-vanilla/Manifest|   1 -
 .../wine-vanilla/wine-vanilla-4.15.ebuild  | 538 -
 2 files changed, 539 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 4e3bef3c63e..4b8dd39502f 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -3,7 +3,6 @@ DIST gentoo-wine-patches-20190511.tar.xz 58996 BLAKE2B 
571c30d94341f567261893f88
 DIST wine-4.0.1.tar.xz 21665840 BLAKE2B 
b33b5ce8b4624dfbbbf473a88ed8c52d5e53855fa98ac3128e9b89dbeee6e92044ed1e662e1dc9669bd8d805424c36f2dd2c836c51bf6a5e4d78350926a13150
 SHA512 
dd240525e389f841123a569fd2f9b8da698b7707bc0de408dfd60ae73c5e24d522abb42b76571c840df52c686fdeae56e0a9c69db2cd31f04cdb345feeacf1dc
 DIST wine-4.0.2.tar.xz 21668348 BLAKE2B 
f1aa8ba3add9ae1e6fbb930a0c557c0015a699b21ba9988c6832c9a1b5180f98cbaadc561fbe4a22e97ff78732ee121a14f5a82b0637c71a4856fa5524ff2f5a
 SHA512 
14cb7eeba188562b73125c668f2020e1df6802e486552e422d3aa75b95f6fccedc0f87868f7e58ce71697941ff49757981ec93b9ef288da37ca8570658f194fc
 DIST wine-4.0.tar.xz 21644692 BLAKE2B 
9c426ef2249c16e908a3617c2844d8b12a2df843721338b1cfb69459815b902cfa0ddf3d74c09dc900fb2ceb003e54d97a7c0afaac51a9caab7d21beb82e26c3
 SHA512 
7607fa7a3d5f7bcd3d8c4c9e7bb6e1987466110bbfc672782ebe57c6d9da348c58e76abf40b0a70c725dfd703163db6e194ee0e3db11a47b6b60e225163308dd
-DIST wine-4.15.tar.xz 22196108 BLAKE2B 
d3b28ad1bbfb7e1522a3acb120049dd3ac3fe0473d0f84529e86b5b9163401869e39f7c4c0e14795a97362722c41ea1476e4afbd1a545e5518504df2628c928a
 SHA512 
f8290bbfd3779cb967c1cf689106fa48d1a1daeac2bd42fb91a2d4beed48e0c398ed9239437756bdbe3cd826cef59f5cd660381f637e184c47a865ff3ace91aa
 DIST wine-4.16.tar.xz 22205248 BLAKE2B 
e7f7daeb4f75a5cf38478609512317e55ead862812a409e4f094178c0b7dec2a969b0a96e83059a1bede3610d3986529f926041765cfa536b786ee53fdc27b84
 SHA512 
f3097b06e490356e68484239b7a2ac1cfa968818565c79386ba6c0e70a318c092af5549da8218935cbe891876fa519d361a3775d0ab5d4adc192555ae0e45d86
 DIST wine-4.17.tar.xz 22230616 BLAKE2B 
428d9b781acbadabb2ce677b08c1a38f130c39d2acb95364dc0ac4cfef8f7c9efe4199846bf0bfc745dc25ba632847f224da1b0a09b8ee6c4927154771a538cf
 SHA512 
f762aab2596a4b5cf73d3282be561d25a2fe69e5d4a5ec2e29db47b3eda7496ca9eb7e57ff7765853d258422898bfa775bf9b458e61eef837b213e422bd748b8
 DIST wine-4.18.tar.xz 22263936 BLAKE2B 
710d6d90ff1ef9adeb5bb9012c8f354985c1610f46607a144ef12499571373563f8ce204dc3dbed975a9ab47e0b07e65f8fe0ff3e38a698076d95c58fc0797c4
 SHA512 
794802289fa021092a86c939a3618563ad1523689cdafb6fd58aed06c6a5c867fc5ef0d3dbb2435a65c3eb0d3b982b37e983257a7a7d20c3b6d71df9bf5bf1f1

diff --git a/app-emulation/wine-vanilla/wine-vanilla-4.15.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-4.15.ebuild
deleted file mode 100644
index 85ad8429a75..000
--- a/app-emulation/wine-vanilla/wine-vanilla-4.15.ebuild
+++ /dev/null
@@ -1,538 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
-PLOCALE_BACKUP="en"
-
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
-
-MY_PN="${PN%%-*}"
-MY_P="${MY_PN}-${PV}"
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
-   EGIT_BRANCH="master"
-   inherit git-r3
-   SRC_URI=""
-   #KEYWORDS=""
-else
-   MAJOR_V=$(ver_cut 1)
-   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
-   KEYWORDS="-* ~amd64 ~x86"
-fi
-S="${WORKDIR}/${MY_P}"
-
-GWP_V="20190511"
-PATCHDIR="${WORKDIR}/gentoo-wine-patches"
-
-DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
-HOMEPAGE="https://www.winehq.org/;
-SRC_URI="${SRC_URI}
-   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
-"
-
-LICENSE="LGPL-2.1"
-SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks v4l vkd3d vulkan 
+X +xcomposite xinerama +xml"
-REQUIRED_USE="|| ( 

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

2019-11-02 Thread Nick Sarnie
commit: 694fb2eaccb25bc0666b6990a0f05f707306d3b2
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  2 18:29:44 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  2 18:29:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=694fb2ea

app-emulation/wine-staging: Drop old

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

 app-emulation/wine-staging/Manifest|   2 -
 .../wine-staging/wine-staging-4.15.ebuild  | 620 -
 2 files changed, 622 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 5b9d708f70c..ac13bd81d6c 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -1,10 +1,8 @@
 DIST gentoo-wine-patches-20190511.tar.xz 58996 BLAKE2B 
571c30d94341f567261893f884345b39eab42adc8b5c306a30d03943fd770055e070ae01e41e5add5b873063d3aaa69641faf81b16ac6039970d8a22b177dd7e
 SHA512 
ccd74d0d6acecc7b24dc89466f93099bd6991d607a4fe89d68637d1fa82e02ebd76b532fe1afd8ab8de8ef3f2d49fe8d71f797796a9434f4b0f7a8183c084969
-DIST wine-4.15.tar.xz 22196108 BLAKE2B 
d3b28ad1bbfb7e1522a3acb120049dd3ac3fe0473d0f84529e86b5b9163401869e39f7c4c0e14795a97362722c41ea1476e4afbd1a545e5518504df2628c928a
 SHA512 
f8290bbfd3779cb967c1cf689106fa48d1a1daeac2bd42fb91a2d4beed48e0c398ed9239437756bdbe3cd826cef59f5cd660381f637e184c47a865ff3ace91aa
 DIST wine-4.16.tar.xz 22205248 BLAKE2B 
e7f7daeb4f75a5cf38478609512317e55ead862812a409e4f094178c0b7dec2a969b0a96e83059a1bede3610d3986529f926041765cfa536b786ee53fdc27b84
 SHA512 
f3097b06e490356e68484239b7a2ac1cfa968818565c79386ba6c0e70a318c092af5549da8218935cbe891876fa519d361a3775d0ab5d4adc192555ae0e45d86
 DIST wine-4.17.tar.xz 22230616 BLAKE2B 
428d9b781acbadabb2ce677b08c1a38f130c39d2acb95364dc0ac4cfef8f7c9efe4199846bf0bfc745dc25ba632847f224da1b0a09b8ee6c4927154771a538cf
 SHA512 
f762aab2596a4b5cf73d3282be561d25a2fe69e5d4a5ec2e29db47b3eda7496ca9eb7e57ff7765853d258422898bfa775bf9b458e61eef837b213e422bd748b8
 DIST wine-4.18.tar.xz 22263936 BLAKE2B 
710d6d90ff1ef9adeb5bb9012c8f354985c1610f46607a144ef12499571373563f8ce204dc3dbed975a9ab47e0b07e65f8fe0ff3e38a698076d95c58fc0797c4
 SHA512 
794802289fa021092a86c939a3618563ad1523689cdafb6fd58aed06c6a5c867fc5ef0d3dbb2435a65c3eb0d3b982b37e983257a7a7d20c3b6d71df9bf5bf1f1
 DIST wine-4.19.tar.xz 22283616 BLAKE2B 
0d648d931737bc381bca3ad0fa2bfcc089c8324c47c80bdaa85aaddb5a63f5145ef5cc442da299591edbd1723ff1dd49fbf629363ec5e4c6152b7016aed612f3
 SHA512 
a86bd7ccfb1878445ea946e4ca72769c10b4d966bcc893536a8c3eaa29484ba687dc3a44755ec92a2ad6073e736985b814c0c682bf4f90b5ffe2bca0ebbf4b25
-DIST wine-staging-4.15.tar.gz 9904734 BLAKE2B 
163d6f51a6fe649c8c107b013aafa5c5729bb93cafe94446cde966138c18d5aed2e950ce9a71ae4c719efb358406af079efb21cc8546d97e2b7146a5cae27a56
 SHA512 
0c34695c1d39773fb34a58f0cdb91d427945615e7b76b8a7222bc84fda8df08125832297b75aca55e69511b6b3686df70dade84bcc7cc9324f30c042146761b0
 DIST wine-staging-4.16.tar.gz 9905714 BLAKE2B 
fe72d1123c7f418dc9702b113679de7d21a8f20b2bed5e9b2f7a2b411ca28b407e0d2d134dee19ee06414df7a3ccfaa784d5689e3dc79043544d17c6768e6a17
 SHA512 
8782e4aecb34443404b1ac02c6b1ba91887ad12f07c7960601f879b034937d5ee6f1c1493437e765804beed6e68fa20383f7c02a09534526cc5f4bb857048faf
 DIST wine-staging-4.17.tar.gz 9914906 BLAKE2B 
a5a430588aaede6f6ac2e30710bf58d57100a37444a2610b57529116b2d9b88a6f4bcfb56ad71153734d8f1a99a70eab4cb568d3cfb6d5ce6198eb662e3cc201
 SHA512 
1f27511c8ff6619f4138eb3b2cd0cc1cdf42c0cd4206c68bdf792ae17c339611016e32babad121f0decf20331f7ce4400033be03c4db26cb6a4dc601c9c4b14d
 DIST wine-staging-4.18.tar.gz 9917480 BLAKE2B 
477da02f5177e7efad33ca30267b2a8755c493972c2ff4ebec32275b699a4c08fd9d4b72181f8ad87c58b1c120b7a7b47951057db36963bcd161afe10b1a89aa
 SHA512 
e5ddb7ac09322b5f2c8e8facff9639699a6a3e72a96f4028e88e23e81f73c766bde1479e54a9a80bd7f33c7747a8220e2699f4dcfe55117b9832ff4cdba60a04

diff --git a/app-emulation/wine-staging/wine-staging-4.15.ebuild 
b/app-emulation/wine-staging/wine-staging-4.15.ebuild
deleted file mode 100644
index 1c459adafb0..000
--- a/app-emulation/wine-staging/wine-staging-4.15.ebuild
+++ /dev/null
@@ -1,620 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
-PLOCALE_BACKUP="en"
-
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
-
-MY_PN="${PN%%-*}"
-MY_P="${MY_PN}-${PV}"
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
-   EGIT_BRANCH="master"
-   inherit git-r3
-   SRC_URI=""
-   #KEYWORDS=""
-else
-   MAJOR_V=$(ver_cut 1)
-   

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

2019-11-02 Thread Nick Sarnie
commit: e229e5d74de3c58dd5e75c3ad9a892424f19e355
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  2 18:29:21 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  2 18:29:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e229e5d7

app-emulation/wine-staging: Sync with ::wine

Bump to 4.19

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

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-4.19.ebuild  | 620 +
 2 files changed, 622 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 69a94593d44..5b9d708f70c 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -3,7 +3,9 @@ DIST wine-4.15.tar.xz 22196108 BLAKE2B 
d3b28ad1bbfb7e1522a3acb120049dd3ac3fe0473
 DIST wine-4.16.tar.xz 22205248 BLAKE2B 
e7f7daeb4f75a5cf38478609512317e55ead862812a409e4f094178c0b7dec2a969b0a96e83059a1bede3610d3986529f926041765cfa536b786ee53fdc27b84
 SHA512 
f3097b06e490356e68484239b7a2ac1cfa968818565c79386ba6c0e70a318c092af5549da8218935cbe891876fa519d361a3775d0ab5d4adc192555ae0e45d86
 DIST wine-4.17.tar.xz 22230616 BLAKE2B 
428d9b781acbadabb2ce677b08c1a38f130c39d2acb95364dc0ac4cfef8f7c9efe4199846bf0bfc745dc25ba632847f224da1b0a09b8ee6c4927154771a538cf
 SHA512 
f762aab2596a4b5cf73d3282be561d25a2fe69e5d4a5ec2e29db47b3eda7496ca9eb7e57ff7765853d258422898bfa775bf9b458e61eef837b213e422bd748b8
 DIST wine-4.18.tar.xz 22263936 BLAKE2B 
710d6d90ff1ef9adeb5bb9012c8f354985c1610f46607a144ef12499571373563f8ce204dc3dbed975a9ab47e0b07e65f8fe0ff3e38a698076d95c58fc0797c4
 SHA512 
794802289fa021092a86c939a3618563ad1523689cdafb6fd58aed06c6a5c867fc5ef0d3dbb2435a65c3eb0d3b982b37e983257a7a7d20c3b6d71df9bf5bf1f1
+DIST wine-4.19.tar.xz 22283616 BLAKE2B 
0d648d931737bc381bca3ad0fa2bfcc089c8324c47c80bdaa85aaddb5a63f5145ef5cc442da299591edbd1723ff1dd49fbf629363ec5e4c6152b7016aed612f3
 SHA512 
a86bd7ccfb1878445ea946e4ca72769c10b4d966bcc893536a8c3eaa29484ba687dc3a44755ec92a2ad6073e736985b814c0c682bf4f90b5ffe2bca0ebbf4b25
 DIST wine-staging-4.15.tar.gz 9904734 BLAKE2B 
163d6f51a6fe649c8c107b013aafa5c5729bb93cafe94446cde966138c18d5aed2e950ce9a71ae4c719efb358406af079efb21cc8546d97e2b7146a5cae27a56
 SHA512 
0c34695c1d39773fb34a58f0cdb91d427945615e7b76b8a7222bc84fda8df08125832297b75aca55e69511b6b3686df70dade84bcc7cc9324f30c042146761b0
 DIST wine-staging-4.16.tar.gz 9905714 BLAKE2B 
fe72d1123c7f418dc9702b113679de7d21a8f20b2bed5e9b2f7a2b411ca28b407e0d2d134dee19ee06414df7a3ccfaa784d5689e3dc79043544d17c6768e6a17
 SHA512 
8782e4aecb34443404b1ac02c6b1ba91887ad12f07c7960601f879b034937d5ee6f1c1493437e765804beed6e68fa20383f7c02a09534526cc5f4bb857048faf
 DIST wine-staging-4.17.tar.gz 9914906 BLAKE2B 
a5a430588aaede6f6ac2e30710bf58d57100a37444a2610b57529116b2d9b88a6f4bcfb56ad71153734d8f1a99a70eab4cb568d3cfb6d5ce6198eb662e3cc201
 SHA512 
1f27511c8ff6619f4138eb3b2cd0cc1cdf42c0cd4206c68bdf792ae17c339611016e32babad121f0decf20331f7ce4400033be03c4db26cb6a4dc601c9c4b14d
 DIST wine-staging-4.18.tar.gz 9917480 BLAKE2B 
477da02f5177e7efad33ca30267b2a8755c493972c2ff4ebec32275b699a4c08fd9d4b72181f8ad87c58b1c120b7a7b47951057db36963bcd161afe10b1a89aa
 SHA512 
e5ddb7ac09322b5f2c8e8facff9639699a6a3e72a96f4028e88e23e81f73c766bde1479e54a9a80bd7f33c7747a8220e2699f4dcfe55117b9832ff4cdba60a04
+DIST wine-staging-4.19.tar.gz 9908545 BLAKE2B 
36674228de808ac9d1f3f66e9274fd9de68173a6a1acca405eb08836a8a787e4e78465442ef6769c02f8fd2e20c3f059d59a1408ed3a8add8a91a68efd07b7bc
 SHA512 
a47ae16dd39797b54011f942fe7e722897af7ddc0bed2bf2e39c46aecf60a02769f7287609c63b4c0c3f1c8e40172e0cdf3bdb53562a07d7a2b7ac53e570dbdc

diff --git a/app-emulation/wine-staging/wine-staging-4.19.ebuild 
b/app-emulation/wine-staging/wine-staging-4.19.ebuild
new file mode 100644
index 000..2d1bd8b5970
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-4.19.ebuild
@@ -0,0 +1,620 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+STAGING_P="wine-staging-${PV}"
+STAGING_DIR="${WORKDIR}/${STAGING_P}"
+GWP_V="20190511"

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2019-11-02 Thread Nick Sarnie
commit: 09ba77c3f606472ca38d5eea4c94877a4c5aa4c6
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  2 18:25:43 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  2 18:25:43 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=09ba77c3

app-emulation/wine-staging: Bump to 4.19

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

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-4.19.ebuild  | 620 +
 2 files changed, 622 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 1dfb9a5..067d62c 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -13,6 +13,7 @@ DIST wine-4.15.tar.xz 22196108 BLAKE2B 
d3b28ad1bbfb7e1522a3acb120049dd3ac3fe0473
 DIST wine-4.16.tar.xz 22205248 BLAKE2B 
e7f7daeb4f75a5cf38478609512317e55ead862812a409e4f094178c0b7dec2a969b0a96e83059a1bede3610d3986529f926041765cfa536b786ee53fdc27b84
 SHA512 
f3097b06e490356e68484239b7a2ac1cfa968818565c79386ba6c0e70a318c092af5549da8218935cbe891876fa519d361a3775d0ab5d4adc192555ae0e45d86
 DIST wine-4.17.tar.xz 22230616 BLAKE2B 
428d9b781acbadabb2ce677b08c1a38f130c39d2acb95364dc0ac4cfef8f7c9efe4199846bf0bfc745dc25ba632847f224da1b0a09b8ee6c4927154771a538cf
 SHA512 
f762aab2596a4b5cf73d3282be561d25a2fe69e5d4a5ec2e29db47b3eda7496ca9eb7e57ff7765853d258422898bfa775bf9b458e61eef837b213e422bd748b8
 DIST wine-4.18.tar.xz 22263936 BLAKE2B 
710d6d90ff1ef9adeb5bb9012c8f354985c1610f46607a144ef12499571373563f8ce204dc3dbed975a9ab47e0b07e65f8fe0ff3e38a698076d95c58fc0797c4
 SHA512 
794802289fa021092a86c939a3618563ad1523689cdafb6fd58aed06c6a5c867fc5ef0d3dbb2435a65c3eb0d3b982b37e983257a7a7d20c3b6d71df9bf5bf1f1
+DIST wine-4.19.tar.xz 22283616 BLAKE2B 
0d648d931737bc381bca3ad0fa2bfcc089c8324c47c80bdaa85aaddb5a63f5145ef5cc442da299591edbd1723ff1dd49fbf629363ec5e4c6152b7016aed612f3
 SHA512 
a86bd7ccfb1878445ea946e4ca72769c10b4d966bcc893536a8c3eaa29484ba687dc3a44755ec92a2ad6073e736985b814c0c682bf4f90b5ffe2bca0ebbf4b25
 DIST wine-4.2.tar.xz 21724960 BLAKE2B 
d3c4381265e5086a17582c28fd4d19c84ed8e9839d039d5f2eba32efcc09ae6dad2a25fa375042d98d35de30065eaa0095e36bb8fbca608ec74abc654bae5196
 SHA512 
408a846e92a0222f64ddd3c4d2c2a71b387ce51749e346c1fbca1fd57db910fa18dc6bb4ce0a350bef81e13be77c6b2d74537f7a1c0dcbb0e6d4c19d1ade288c
 DIST wine-4.3.tar.xz 21764500 BLAKE2B 
dd94b710f2be20ce3225fb58e0a20f0ee46e59834dc77383e262620faa64597c41625382237c39563b3bb67b1850cca2460ca147e2c5ee3052f0fdfdee067ec5
 SHA512 
45c0519f8f2873ef65e1761d518a7148f3aa54c0e993a41a60849c01c8df17386d57edd83308cff289300adc6a8e3fc5918fb12513f5b85a88e556b420479e83
 DIST wine-4.4.tar.xz 21805668 BLAKE2B 
cf973240a3f2a1ad1cac8690cdc5cd86be428220395d90bfe3b15567e6a2be0bb78e5828de3b77b617827122f5b0bb1dfeeef351102ca001722340ceaeb5625e
 SHA512 
6678c9b0e086bdc9fab9f9fd2517226352b49f846bbae7be6000bb60db2f302aad49622192077b45880d45ad33ba4d82bfe3403fb82a1e65159f1352b40933de
@@ -32,6 +33,7 @@ DIST wine-staging-4.15.tar.gz 9904734 BLAKE2B 
163d6f51a6fe649c8c107b013aafa5c572
 DIST wine-staging-4.16.tar.gz 9905714 BLAKE2B 
fe72d1123c7f418dc9702b113679de7d21a8f20b2bed5e9b2f7a2b411ca28b407e0d2d134dee19ee06414df7a3ccfaa784d5689e3dc79043544d17c6768e6a17
 SHA512 
8782e4aecb34443404b1ac02c6b1ba91887ad12f07c7960601f879b034937d5ee6f1c1493437e765804beed6e68fa20383f7c02a09534526cc5f4bb857048faf
 DIST wine-staging-4.17.tar.gz 9914906 BLAKE2B 
a5a430588aaede6f6ac2e30710bf58d57100a37444a2610b57529116b2d9b88a6f4bcfb56ad71153734d8f1a99a70eab4cb568d3cfb6d5ce6198eb662e3cc201
 SHA512 
1f27511c8ff6619f4138eb3b2cd0cc1cdf42c0cd4206c68bdf792ae17c339611016e32babad121f0decf20331f7ce4400033be03c4db26cb6a4dc601c9c4b14d
 DIST wine-staging-4.18.tar.gz 9917480 BLAKE2B 
477da02f5177e7efad33ca30267b2a8755c493972c2ff4ebec32275b699a4c08fd9d4b72181f8ad87c58b1c120b7a7b47951057db36963bcd161afe10b1a89aa
 SHA512 
e5ddb7ac09322b5f2c8e8facff9639699a6a3e72a96f4028e88e23e81f73c766bde1479e54a9a80bd7f33c7747a8220e2699f4dcfe55117b9832ff4cdba60a04
+DIST wine-staging-4.19.tar.gz 9908545 BLAKE2B 
36674228de808ac9d1f3f66e9274fd9de68173a6a1acca405eb08836a8a787e4e78465442ef6769c02f8fd2e20c3f059d59a1408ed3a8add8a91a68efd07b7bc
 SHA512 
a47ae16dd39797b54011f942fe7e722897af7ddc0bed2bf2e39c46aecf60a02769f7287609c63b4c0c3f1c8e40172e0cdf3bdb53562a07d7a2b7ac53e570dbdc
 DIST wine-staging-4.2.tar.gz 9850260 BLAKE2B 
938d12bb44acef2920c6a47978f170cab532ddd785de394dddc95cc359b301e0db26a3ec9aa08abaf03542b59a97c16dfebb3bf5e4c9ddc9bed829200e529bb9
 SHA512 
2fb66bdeab084231983569d3884211a4d269a48bd6b25ba2e7c7e83d2dc98a205bd92dfc67c09528d57192086571d3f4f6c988c522b25aade1d525b74e662f2e
 DIST wine-staging-4.3.tar.gz 9888763 BLAKE2B 
095f2789f601822e34b7f9d0a078bd433aa2861e7cc55d5b74520bfedc2c88064bbffa3a73bcea170c4e4fb96e9eaa50f0cb927aba2cc6d1f12480bacfa49968
 SHA512 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2019-11-02 Thread Nick Sarnie
commit: b79a49b9e1ee287e1cf3a4fb2653267de434c965
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sat Nov  2 18:24:44 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sat Nov  2 18:24:44 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b79a49b9

app-emulation/wine-vanilla: Bump to 4.19

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

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-4.19.ebuild  | 538 +
 2 files changed, 539 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 3011f57..3721049 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -15,6 +15,7 @@ DIST wine-4.15.tar.xz 22196108 BLAKE2B 
d3b28ad1bbfb7e1522a3acb120049dd3ac3fe0473
 DIST wine-4.16.tar.xz 22205248 BLAKE2B 
e7f7daeb4f75a5cf38478609512317e55ead862812a409e4f094178c0b7dec2a969b0a96e83059a1bede3610d3986529f926041765cfa536b786ee53fdc27b84
 SHA512 
f3097b06e490356e68484239b7a2ac1cfa968818565c79386ba6c0e70a318c092af5549da8218935cbe891876fa519d361a3775d0ab5d4adc192555ae0e45d86
 DIST wine-4.17.tar.xz 22230616 BLAKE2B 
428d9b781acbadabb2ce677b08c1a38f130c39d2acb95364dc0ac4cfef8f7c9efe4199846bf0bfc745dc25ba632847f224da1b0a09b8ee6c4927154771a538cf
 SHA512 
f762aab2596a4b5cf73d3282be561d25a2fe69e5d4a5ec2e29db47b3eda7496ca9eb7e57ff7765853d258422898bfa775bf9b458e61eef837b213e422bd748b8
 DIST wine-4.18.tar.xz 22263936 BLAKE2B 
710d6d90ff1ef9adeb5bb9012c8f354985c1610f46607a144ef12499571373563f8ce204dc3dbed975a9ab47e0b07e65f8fe0ff3e38a698076d95c58fc0797c4
 SHA512 
794802289fa021092a86c939a3618563ad1523689cdafb6fd58aed06c6a5c867fc5ef0d3dbb2435a65c3eb0d3b982b37e983257a7a7d20c3b6d71df9bf5bf1f1
+DIST wine-4.19.tar.xz 22283616 BLAKE2B 
0d648d931737bc381bca3ad0fa2bfcc089c8324c47c80bdaa85aaddb5a63f5145ef5cc442da299591edbd1723ff1dd49fbf629363ec5e4c6152b7016aed612f3
 SHA512 
a86bd7ccfb1878445ea946e4ca72769c10b4d966bcc893536a8c3eaa29484ba687dc3a44755ec92a2ad6073e736985b814c0c682bf4f90b5ffe2bca0ebbf4b25
 DIST wine-4.2.tar.xz 21724960 BLAKE2B 
d3c4381265e5086a17582c28fd4d19c84ed8e9839d039d5f2eba32efcc09ae6dad2a25fa375042d98d35de30065eaa0095e36bb8fbca608ec74abc654bae5196
 SHA512 
408a846e92a0222f64ddd3c4d2c2a71b387ce51749e346c1fbca1fd57db910fa18dc6bb4ce0a350bef81e13be77c6b2d74537f7a1c0dcbb0e6d4c19d1ade288c
 DIST wine-4.3.tar.xz 21764500 BLAKE2B 
dd94b710f2be20ce3225fb58e0a20f0ee46e59834dc77383e262620faa64597c41625382237c39563b3bb67b1850cca2460ca147e2c5ee3052f0fdfdee067ec5
 SHA512 
45c0519f8f2873ef65e1761d518a7148f3aa54c0e993a41a60849c01c8df17386d57edd83308cff289300adc6a8e3fc5918fb12513f5b85a88e556b420479e83
 DIST wine-4.4.tar.xz 21805668 BLAKE2B 
cf973240a3f2a1ad1cac8690cdc5cd86be428220395d90bfe3b15567e6a2be0bb78e5828de3b77b617827122f5b0bb1dfeeef351102ca001722340ceaeb5625e
 SHA512 
6678c9b0e086bdc9fab9f9fd2517226352b49f846bbae7be6000bb60db2f302aad49622192077b45880d45ad33ba4d82bfe3403fb82a1e65159f1352b40933de

diff --git a/app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild
new file mode 100644
index 000..d502188
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-4.19.ebuild
@@ -0,0 +1,538 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20190511"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks v4l vkd3d vulkan 
+X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( abi_x86_32 

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

2019-11-02 Thread Matt Turner
commit: 3b67737d772a2083776df71961c3d5756e87b2d6
Author: Benjamin Neff  coding4coffee  ch>
AuthorDate: Sat Nov  2 16:40:16 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Nov  2 17:35:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b67737d

media-libs/mesa: Require libdrm-2.4.100

Signed-off-by: Benjamin Neff  coding4coffee.ch>
Closes: https://github.com/gentoo/gentoo/pull/13528
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 65e64abf562..8f593918a1a 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -71,7 +71,7 @@ REQUIRED_USE="
xvmc? ( X )
 "
 
-LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.99"
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.100"
 RDEPEND="
!app-eselect/eselect-mesa
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-arch/xar/

2019-11-02 Thread Fabian Groffen
commit: c41e4e8d39a9d4399ffcabf91c1bcb9a9cc4607d
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Nov  2 17:25:37 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Nov  2 17:26:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c41e4e8d

app-arch/xar: version bump -r3 (417.1), bug #694606

Closes: https://bugs.gentoo.org/694606
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Fabian Groffen  gentoo.org>

 app-arch/xar/Manifest  |  1 +
 app-arch/xar/xar-1.8-r3.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-arch/xar/Manifest b/app-arch/xar/Manifest
index 4205e8ead62..ca6f1ec9cfa 100644
--- a/app-arch/xar/Manifest
+++ b/app-arch/xar/Manifest
@@ -1 +1,2 @@
 DIST xar-400.tar.gz 213319 BLAKE2B 
55b8695313a1a5ae778b62791f716af00edba7e7b01500eac4b951e04cf7b18e84e0d508ac5471996796e5ab59e4628a4f85a63a5929b372555e28b222c77ab1
 SHA512 
c54850d5443c776f18d788bf7d026b3b08274ee71321d1615238c9fa2d20cc0b21f3f298364b0d0eecd98ce2a6efc8d5039cabd5a21c2419c430d90db004d159
+DIST xar-417.1.tar.gz 219350 BLAKE2B 
2ca073e52b8d7a12c3d33fb65ccaf0984b912f42e4e9dc52bcaec7af41bafcc530cd055da16646113fb24ee046122425a66351f88279ef79a0f0b2b04ae51f9a
 SHA512 
4c3c61f5289d0b2e380cbde772b383da369ca8ad046f5d779e02f59300288c90c5e31d105a2c01ac17dc719b8b46b55d8d36a8b3b20360f315766fce92dec762

diff --git a/app-arch/xar/xar-1.8-r3.ebuild b/app-arch/xar/xar-1.8-r3.ebuild
new file mode 100644
index 000..18ab6a29a1f
--- /dev/null
+++ b/app-arch/xar/xar-1.8-r3.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit flag-o-matic multilib-minimal multilib ltprune
+
+APPLE_PV=417.1
+DESCRIPTION="An easily extensible archive format"
+HOMEPAGE="https://opensource.apple.com/source/xar/;
+SRC_URI="https://opensource.apple.com/tarballs/xar/xar-${APPLE_PV}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="libressl kernel_Darwin"
+
+DEPEND="
+   !kernel_Darwin? (
+   !kernel_SunOS? ( virtual/acl )
+   !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
+   libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
+   )
+   app-arch/bzip2[${MULTILIB_USEDEP}]
+   sys-libs/zlib[${MULTILIB_USEDEP}]
+   dev-libs/libxml2[${MULTILIB_USEDEP}]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.6.1-ext2.patch
+   "${FILESDIR}"/${PN}-1.8-safe_dirname.patch
+   "${FILESDIR}"/${PN}-1.8-arm-ppc.patch
+   "${FILESDIR}"/${PN}-1.8-openssl-1.1.patch
+)
+
+S=${WORKDIR}/${PN}-${APPLE_PV}/${PN}
+
+src_prepare() {
+   default
+
+   # make lib headers available (without installing first?)
+   cd "${S}"/include || die
+   mv ../lib/*.h . || die
+
+   # strip RPATH pointing to ED
+   cd "${S}"/src || die
+   sed -i -e 's/@RPATH@//' Makefile.inc.in || die
+}
+
+multilib_src_configure() {
+   use kernel_Darwin || append-libs $(pkg-config --libs openssl)
+   ECONF_SOURCE=${S} \
+   econf \
+   --disable-static
+   # botched check, fix it up
+   if use kernel_SunOS ; then
+   sed -i -e '/HAVE_SYS_ACL_H/s:^\(.*\)$:/* \1 */:' 
include/config.h || die
+   fi
+}
+
+multilib_src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: games-misc/bsd-games/

2019-11-02 Thread James Le Cuirot
commit: e2e46d754340342473b8bfca031edd7fead34132
Author: Wim Muskee  gmail  com>
AuthorDate: Sat Nov  2 10:22:11 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov  2 17:15:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e46d75

games-misc/bsd-games: update HOMEPAGE, SRC_URI, metadata

Closes: https://bugs.gentoo.org/680676
Signed-off-by: Wim Muskee  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13525
Signed-off-by: James Le Cuirot  gentoo.org>

 games-misc/bsd-games/bsd-games-2.17-r5.ebuild | 6 +++---
 games-misc/bsd-games/metadata.xml | 3 +++
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/games-misc/bsd-games/bsd-games-2.17-r5.ebuild 
b/games-misc/bsd-games/bsd-games-2.17-r5.ebuild
index cefeb7976f5..6679e61b5fc 100644
--- a/games-misc/bsd-games/bsd-games-2.17-r5.ebuild
+++ b/games-misc/bsd-games/bsd-games-2.17-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,8 +6,8 @@ inherit eutils toolchain-funcs games
 
 DEB_PATCH_VER=22
 DESCRIPTION="collection of games from NetBSD"
-HOMEPAGE="http://www.advogato.org/proj/bsd-games/;
-SRC_URI="ftp://metalab.unc.edu/pub/Linux/games/${P}.tar.gz
+HOMEPAGE="https://www.polyomino.org.uk/computer/software/bsd-games/;
+SRC_URI="https://www.polyomino.org.uk/computer/software/bsd-games/${P}.tar.gz

mirror://debian/pool/main/b/bsdgames/bsdgames_${PV}-${DEB_PATCH_VER}.debian.tar.xz"
 
 LICENSE="BSD"

diff --git a/games-misc/bsd-games/metadata.xml 
b/games-misc/bsd-games/metadata.xml
index 78274e0fa55..e21a7394ad3 100644
--- a/games-misc/bsd-games/metadata.xml
+++ b/games-misc/bsd-games/metadata.xml
@@ -5,4 +5,7 @@
ga...@gentoo.org
Gentoo Games Project
 
+
+   jsm28/bsd-games
+
 



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/

2019-11-02 Thread Philip Miess
commit: 7b3bac21f17c11b28a30bdbd9214cccb8af1d178
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 17:08:44 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 17:08:44 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=7b3bac21

spell Changelog correctly

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest| 2 +-
 app-text/rig/rig-1.11.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index c2e8468..92b2379 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 994 BLAKE2B 
70ae593eac790115055ac457ce30c315b49efc995dcad789a6da2bc4b64c36c3789690f377b6752789a0de584e99b51311caef23d2b9d5242545c79711d7206b
 SHA512 
a8b765b5af32f9c85589723f57150181b51bcb87ece4cb7c9432728d8468c81a42db68b6474da7d7c289c5a4b991f5fc06c09d9310437183994d45176c092e5e
+EBUILD rig-1.11.ebuild 993 BLAKE2B 
58292bb026c28d6c6e8eafd04ec979873e4eb9948bd2f0edc25b1958de94b1a0cd5f9b5a04f95a8f658369631f4fdfb1931b61b93b4ca23a005b08466d9b51c1
 SHA512 
eaec1e4526d564ddc1969f56e3c12bd7bc90fa54b50ed27cbe5f816d8158f036357ef3731c59cb00e577ae8e778bcdf0b4162627fa6c51e9a647739b1ef17246
 MISC metadata.xml 402 BLAKE2B 
93231d98ea75439ff9eb1713ab8a6bcd62142b5c01109a17715f9d6710ac90477a2f6546614c25a4e2af4cfa8af52e5035d4e6dfc2e458b11591e154d64921db
 SHA512 
562bb78240696acf97707ce309bcd967b0608d0b90af26763b300c5aaefd8c68ece65dabfc8e13d72b00d2ce6785e83c36dcf372d2176286a47de62dd464eb65

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index ad2bdfb..fd2c147 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -22,7 +22,7 @@ PATCHES=(
"${FILESDIR}/${P}-useDestDirAndImportMemcpy.patch"
 )
 
-DOCS=( "README" "Changlelog" "rig.6" )
+DOCS=( "README" "Changelog" "rig.6" )
 
 src_configure() {
if use devrandom ; then



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/

2019-11-02 Thread Philip Miess
commit: 549700ef239c379b77989c52b85f4bf500abbdfb
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 17:05:30 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 17:05:30 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=549700ef

create man directory

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest| 2 +-
 app-text/rig/rig-1.11.ebuild | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
index 76ad669..c2e8468 100644
--- a/app-text/rig/Manifest
+++ b/app-text/rig/Manifest
@@ -1,4 +1,4 @@
 AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
 DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
-EBUILD rig-1.11.ebuild 973 BLAKE2B 
d8bfc1034262a6407fbe680c3b4736acaacbf13e62b8d91d3b1c1faee86f94d37c7d468a2ba4f95601ecad65b5caa24fd98315d71f7d91ce7d87377f2d8a3b6e
 SHA512 
9a66a36b9c686d1a6e19c15fb8c2b335b31b70a9f7a13e7ce5a826cdb445bc488d8bb3f98173e58bd78c1e040f5576788d3a9846f101cae751e36fa0bf19e888
+EBUILD rig-1.11.ebuild 994 BLAKE2B 
70ae593eac790115055ac457ce30c315b49efc995dcad789a6da2bc4b64c36c3789690f377b6752789a0de584e99b51311caef23d2b9d5242545c79711d7206b
 SHA512 
a8b765b5af32f9c85589723f57150181b51bcb87ece4cb7c9432728d8468c81a42db68b6474da7d7c289c5a4b991f5fc06c09d9310437183994d45176c092e5e
 MISC metadata.xml 402 BLAKE2B 
93231d98ea75439ff9eb1713ab8a6bcd62142b5c01109a17715f9d6710ac90477a2f6546614c25a4e2af4cfa8af52e5035d4e6dfc2e458b11591e154d64921db
 SHA512 
562bb78240696acf97707ce309bcd967b0608d0b90af26763b300c5aaefd8c68ece65dabfc8e13d72b00d2ce6785e83c36dcf372d2176286a47de62dd464eb65

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
index 382e455..ad2bdfb 100644
--- a/app-text/rig/rig-1.11.ebuild
+++ b/app-text/rig/rig-1.11.ebuild
@@ -42,6 +42,7 @@ src_install() {
dodir /usr/bin
dodir /usr/man
dodir /usr/share/rig
+   dodir /usr/man/man6
 
if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; then
emake DESTDIR="${D}" install



[gentoo-commits] repo/user/superposition:master commit in: app-text/rig/, app-text/rig/files/

2019-11-02 Thread Philip Miess
commit: b3a80ba13ba3008264ec34de66ad3365ffe7e3b8
Author: Philip Miess  yahoo  com>
AuthorDate: Sat Nov  2 16:57:22 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Sat Nov  2 16:57:22 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=b3a80ba1

add rig

Signed-off-by: Philip Miess  yahoo.com>

 app-text/rig/Manifest  |  4 ++
 .../files/rig-1.11-useDestDirAndImportMemcpy.patch | 23 ++
 app-text/rig/metadata.xml  | 14 ++
 app-text/rig/rig-1.11.ebuild   | 50 ++
 4 files changed, 91 insertions(+)

diff --git a/app-text/rig/Manifest b/app-text/rig/Manifest
new file mode 100644
index 000..76ad669
--- /dev/null
+++ b/app-text/rig/Manifest
@@ -0,0 +1,4 @@
+AUX rig-1.11-useDestDirAndImportMemcpy.patch 674 BLAKE2B 
92c64551d8ca030a21c0a33e993980583c96064ac7f0a8040f95041cc76dbc25aa7094f638f58a5e9797c97310d73b2aa16d9cc45a0b2e774fce270cc3eca21d
 SHA512 
958e13d420b5c91506b953a30be662d459d0c53faab36912a58658356ab019107b6b6ec1242ef23bf2e5ba03eb18e1a4c5170fca494a295272f855bbf797baba
+DIST rig-1.11.tar.gz 23112 BLAKE2B 
4682581f4d0150040db29371a7d0fbb6b63072513038de37ad52195a2b83ef671d15a00e1024bc32b82c847af750d57a96ff6a6cdb08ed288e0d9d05823be445
 SHA512 
95bab873404fd4498f7895026b7cdda5b182dd3c33a17c4ad81389f5ed6cc0e9429cd1abaa51a023fedc472c611a66674c698d23b57515ed30d7f92e5f280b87
+EBUILD rig-1.11.ebuild 973 BLAKE2B 
d8bfc1034262a6407fbe680c3b4736acaacbf13e62b8d91d3b1c1faee86f94d37c7d468a2ba4f95601ecad65b5caa24fd98315d71f7d91ce7d87377f2d8a3b6e
 SHA512 
9a66a36b9c686d1a6e19c15fb8c2b335b31b70a9f7a13e7ce5a826cdb445bc488d8bb3f98173e58bd78c1e040f5576788d3a9846f101cae751e36fa0bf19e888
+MISC metadata.xml 402 BLAKE2B 
93231d98ea75439ff9eb1713ab8a6bcd62142b5c01109a17715f9d6710ac90477a2f6546614c25a4e2af4cfa8af52e5035d4e6dfc2e458b11591e154d64921db
 SHA512 
562bb78240696acf97707ce309bcd967b0608d0b90af26763b300c5aaefd8c68ece65dabfc8e13d72b00d2ce6785e83c36dcf372d2176286a47de62dd464eb65

diff --git a/app-text/rig/files/rig-1.11-useDestDirAndImportMemcpy.patch 
b/app-text/rig/files/rig-1.11-useDestDirAndImportMemcpy.patch
new file mode 100755
index 000..415fbbd
--- /dev/null
+++ b/app-text/rig/files/rig-1.11-useDestDirAndImportMemcpy.patch
@@ -0,0 +1,23 @@
+Use DestDir for install, dont install into /usr/local,
+and #include cstring for memcpy to fix compilation error
+FROM:Phil Miess 
+Bug found by pmiess
+
+--- before/Makefile2002-06-04 22:07:50.0 -0400
 after/Makefile 2019-11-02 07:28:13.787725115 -0400
+@@ -1,4 +1,4 @@
+-PREFIX=/usr/local
++PREFIX=$(DESTDIR)/usr
+ BINDIR=${PREFIX}/bin
+ MANDIR=${PREFIX}/man
+ DATADIR=${PREFIX}/share/rig
+--- before/rig.cc  2006-04-23 10:42:22.0 -0400
 after/rig.cc   2019-11-01 16:52:47.025118177 -0400
+@@ -21,6 +21,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/app-text/rig/metadata.xml b/app-text/rig/metadata.xml
new file mode 100644
index 000..a7adb80
--- /dev/null
+++ b/app-text/rig/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+A program that generates fake identities.
+RIG comes with the top 1000 names from the US census at
+http://www.census.gov/genealogy/names/
+
+
+   
+   Use /dev/random for randomness
+   
+
+

diff --git a/app-text/rig/rig-1.11.ebuild b/app-text/rig/rig-1.11.ebuild
new file mode 100644
index 000..382e455
--- /dev/null
+++ b/app-text/rig/rig-1.11.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="generate random, yet real-looking, personal data"
+HOMEPAGE="https://sourceforge.net/projects/rig/ "
+SRC_URI="https://sourceforge.net/projects/rig/files/rig/1.11/rig-1.11.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+devrandom"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+PATCHES=(
+   "${FILESDIR}/${P}-useDestDirAndImportMemcpy.patch"
+)
+
+DOCS=( "README" "Changlelog" "rig.6" )
+
+src_configure() {
+   if use devrandom ; then
+   append-cxxflags "-DDEVRANDOM"
+   fi
+}
+
+src_compile() {
+   sed -i -e "s:g++ :$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} :" Makefile \
+   || die "sed fix failed. Uh-oh..."
+   emake
+   echo 'hello'
+}
+
+src_install() {
+   echo 'hi'
+   dodir /usr/bin
+   dodir /usr/man
+   dodir /usr/share/rig
+
+   if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]] ; then
+   emake DESTDIR="${D}" install
+   fi
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/stellarium/

2019-11-02 Thread Andreas Sturmlechner
commit: 6a4e9c288fbf439871df6a4f81051ffc8ecd5b53
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 16:33:25 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 16:36:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a4e9c28

sci-astronomy/stellarium: RESTRICT="!test? ( test )"...

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

 sci-astronomy/stellarium/stellarium-0.19.2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sci-astronomy/stellarium/stellarium-0.19.2.ebuild 
b/sci-astronomy/stellarium/stellarium-0.19.2.ebuild
index b47582c27ba..dbc5a771b76 100644
--- a/sci-astronomy/stellarium/stellarium-0.19.2.ebuild
+++ b/sci-astronomy/stellarium/stellarium-0.19.2.ebuild
@@ -45,6 +45,8 @@ DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )
 "
 
+RESTRICT="!test? ( test )"
+
 src_prepare() {
cmake-utils_src_prepare
use debug || append-cppflags -DQT_NO_DEBUG #415769



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

2019-11-02 Thread Andreas Sturmlechner
commit: 94306a0abd5470d3200dcda55e0daf65c62cf4cc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 16:34:42 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 16:36:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94306a0a

app-admin/qtpass: RESTRICT="!test? ( test )"...

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

 app-admin/qtpass/qtpass-1.3.2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-admin/qtpass/qtpass-1.3.2.ebuild 
b/app-admin/qtpass/qtpass-1.3.2.ebuild
index ceb54ec6b63..5e74ff1ca07 100644
--- a/app-admin/qtpass/qtpass-1.3.2.ebuild
+++ b/app-admin/qtpass/qtpass-1.3.2.ebuild
@@ -25,6 +25,8 @@ DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
 BDEPEND="dev-qt/linguist-tools:5"
 
+RESTRICT="!test? ( test )"
+
 S="${WORKDIR}/QtPass-${PV}"
 
 DOCS=( {CHANGELOG,CONTRIBUTING,FAQ,README}.md )



[gentoo-commits] repo/gentoo:master commit in: sys-auth/libnss-pgsql/, sys-auth/libnss-pgsql/files/

2019-11-02 Thread Aaron W. Swenson
commit: a8e2b1b69695ff13c292b87afc76304fb36f9a9a
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Sat Nov  2 16:13:39 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Sat Nov  2 16:13:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8e2b1b6

sys-auth/libnss-pgsql: Cleanup old ebuilds/patches

Remove EAPI0 based ebuilds and related patches.

1.5.0_beta includes patch from bug 170581.

Closes: https://bugs.gentoo.org/170581
Closes: https://bugs.gentoo.org/697206
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 sys-auth/libnss-pgsql/Manifest |  1 -
 .../files/libnss-pgsql-1.4.0-gentoo.patch  | 12 -
 .../files/libnss-pgsql-1.4.0-schema.patch  | 22 -
 sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild| 56 --
 .../libnss-pgsql/libnss-pgsql-1.5.0_beta.ebuild| 55 -
 5 files changed, 146 deletions(-)

diff --git a/sys-auth/libnss-pgsql/Manifest b/sys-auth/libnss-pgsql/Manifest
index 8f78238ebfd..0dd14f29e4f 100644
--- a/sys-auth/libnss-pgsql/Manifest
+++ b/sys-auth/libnss-pgsql/Manifest
@@ -1,2 +1 @@
-DIST libnss-pgsql-1.4.0.tgz 244076 BLAKE2B 
9bdfbc7d4a6af547e033d6217a0241ace3520e7eab501187d65a69783ec329632821385863f2f544d057d895e1ee2ae84b4bc1d38521608fce77ba1fc849e1f0
 SHA512 
e7d0ea5198e44c1cad2c22f8346ff7198c028bf664fe5dbd23ec4d4a0ade32ba4aa5174eae071982a2cc385782d3d7e1a804650e4ed25c2b2b2fb5187bc8f5f8
 DIST libnss-pgsql-1.5.0-beta.tgz 305543 BLAKE2B 
a902315ba17539ac64caaad31cae68859bab3fff2df77ae23f4486ea6ab25db14e5d5787f4d5fcfb1ddebf0d6c58acbf66052b6d5ad4017aff810ba1bcb9f98b
 SHA512 
cabc09337841aadb27790fb66bb55f7da70b52d4e28c717d83ad63b440ac65d8e72505e602b1324d8091ace8b9fe90510492ce0dec17148b74288a2524726cc8

diff --git a/sys-auth/libnss-pgsql/files/libnss-pgsql-1.4.0-gentoo.patch 
b/sys-auth/libnss-pgsql/files/libnss-pgsql-1.4.0-gentoo.patch
deleted file mode 100644
index 7a2a938b5c7..000
--- a/sys-auth/libnss-pgsql/files/libnss-pgsql-1.4.0-gentoo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nur libnss-pgsql-1.4.0.orig/src/backend.c 
libnss-pgsql-1.4.0/src/backend.c
 libnss-pgsql-1.4.0.orig/src/backend.c  2001-10-18 13:32:52.0 
+0200
-+++ libnss-pgsql-1.4.0/src/backend.c   2003-11-28 16:14:38.0 +0100
-@@ -9,7 +9,7 @@
-  */
- 
- #include "nss-pgsql.h"
--#include 
-+#include 
- #include 
- #include 
- #include 

diff --git a/sys-auth/libnss-pgsql/files/libnss-pgsql-1.4.0-schema.patch 
b/sys-auth/libnss-pgsql/files/libnss-pgsql-1.4.0-schema.patch
deleted file mode 100644
index 6d2b338f45c..000
--- a/sys-auth/libnss-pgsql/files/libnss-pgsql-1.4.0-schema.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 conf/dbschema.sql.orig 2005-05-04 04:27:51.0 +0200
-+++ conf/dbschema.sql  2006-11-11 22:37:01.0 +0100
-@@ -19,15 +19,16 @@
-   "gecos" character varying(128),
-   "homedir" character varying(256) NOT NULL,
-   "shell" character varying DEFAULT '/bin/bash' NOT NULL,
--  PRIMARY KEY ("username")
-+  PRIMARY KEY ("username"),
-+  UNIQUE ("uid")
- );
- 
- CREATE TABLE "usergroups" (
-   "gid" int4 NOT NULL,
-   "uid" int4 NOT NULL,
-   PRIMARY KEY ("gid", "uid"),
--  CONSTRAINT "ug_gid_fkey" FOREIGN KEY ("gid") REFERENCES "groups"("gid"),
--  CONSTRAINT "ug_uid_fkey" FOREIGN KEY ("uid") REFERENCES 
"accounts"("uid")
-+  CONSTRAINT "ug_gid_fkey" FOREIGN KEY ("gid") REFERENCES 
"group_table"("gid"),
-+  CONSTRAINT "ug_uid_fkey" FOREIGN KEY ("uid") REFERENCES 
"passwd_table"("uid")
- );
-   
- CREATE TABLE "shadow_table" (

diff --git a/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild 
b/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild
deleted file mode 100644
index 8a9ab45b876..000
--- a/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit autotools eutils multilib
-
-KEYWORDS="~x86"
-
-DESCRIPTION="Name Service Switch module for use with PostgreSQL"
-HOMEPAGE="http://pgfoundry.org/projects/sysauth/;
-SRC_URI="http://pgfoundry.org/frs/download.php/605/${P}.tgz;
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-db/postgresql
-   app-text/xmlto"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}/${P}-gentoo.patch"
-   epatch "${FILESDIR}/${P}-schema.patch"
-   eautoreconf
-}
-
-src_compile() {
-   econf \
-   --libdir=/lib \
-   --with-docdir=/usr/share/doc/${PF}/html || die "econf failed"
-   emake || die "emake failed"
-}
-
-src_install() {
-   insinto /$(get_libdir)
-   doins src/.libs/libnss_pgsql.so.2.0.0
-   dosym libnss_pgsql.so.2.0.0 /lib/libnss_pgsql.so.2
-   dosym libnss_pgsql.so.2.0.0 /lib/libnss_pgsql.so
-
-   dodoc AUTHORS 

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

2019-11-02 Thread Aaron W. Swenson
commit: 681f42e078527a1a2f7a47d8cb00e72e3f8990d2
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Sat Nov  2 16:10:51 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Sat Nov  2 16:10:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681f42e0

sys-auth/libnss-pgsql: Bump EAPI to 7

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 .../libnss-pgsql/libnss-pgsql-1.5.0_beta-r1.ebuild | 48 ++
 1 file changed, 48 insertions(+)

diff --git a/sys-auth/libnss-pgsql/libnss-pgsql-1.5.0_beta-r1.ebuild 
b/sys-auth/libnss-pgsql/libnss-pgsql-1.5.0_beta-r1.ebuild
new file mode 100644
index 000..62a4efe9017
--- /dev/null
+++ b/sys-auth/libnss-pgsql/libnss-pgsql-1.5.0_beta-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="Name Service Switch module for use with PostgreSQL"
+HOMEPAGE="http://pgfoundry.org/projects/sysauth/;
+
+MY_P="${P/_/-}"
+SRC_URI="http://pgfoundry.org/frs/download.php/1878/${MY_P}.tgz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-db/postgresql:*"
+DEPEND="${RDEPEND}
+   app-text/xmlto"
+
+src_prepare() {
+   eapply "${FILESDIR}/${P}-gentoo.patch"
+   eapply_user
+   eautoreconf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   find "${D}" -name '*.la' -delete || die
+
+   dodoc AUTHORS ChangeLog NEWS README
+   insinto /usr/share/doc/${PF}/examples
+   doins conf/*
+}
+
+pkg_postinst() {
+   elog "Next steps:"
+   elog "1. Create the required tables in the database:"
+   elog "   $ psql a_database -f 
/usr/share/doc/${PF}/examples/dbschema.sql"
+   elog "2. Create the configuration file '/etc/nss-pgsql.conf'"
+   elog "   You can copy the example from 
/usr/share/doc/${PF}/examples/nss-pgsql.conf"
+   elog "3. Edit /etc/nsswitch.conf to use the NSS service 'pgsql'"
+   elog "   An example is available here: 
/usr/share/doc/${PF}/examples/nsswitch.conf"
+}



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

2019-11-02 Thread Jory Pratt
commit: 19d57fc22ff232a5405b6631190c2344a36f89d9
Author: Jory Pratt  gentoo  org>
AuthorDate: Sat Nov  2 15:47:55 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat Nov  2 15:47:55 2019 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=19d57fc2

www-client/firefox: 71.0b6 bump

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

 www-client/firefox/Manifest| 95 +-
 ...refox-70.0.ebuild => firefox-71.0_beta6.ebuild} |  6 +-
 2 files changed, 5 insertions(+), 96 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 8d3237b..bb5a135 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -1,93 +1,2 @@
-DIST firefox-70.0-ach.xpi 488104 BLAKE2B 
a17e2e32332c577444bcf9cd015a82285e3253b61bb4a4aaff675beb200d8c8bb0b953540b7ae02bcdc510607016e84c433fe40869189ae01472889996f0b5f5
 SHA512 
6728b2d0d992ca96dbfa966e91c84f132598f2a75aefb3ad1b76f5df3280fcf6e3ba1385af0040354a522de9aa5202663e49bf07f6615eee402a33ad931e9335
-DIST firefox-70.0-af.xpi 456543 BLAKE2B 
587413e50d9e1338985325542afd9f47ec07decf58aa55292e7e4c1c94f3ce150326e66bc3f3e26d2bb295f268aad04ae92d3fe290d38c3f45b02df140cd0a09
 SHA512 
6997fd5600bc2affe2a5b5a96995a9f0541204aa40f5df683d3bf6e615eeef940a84c61a39bdcdd59588c4d0d002022b4da5ec5dc2423b546dc6d92e13b944c4
-DIST firefox-70.0-an.xpi 499801 BLAKE2B 
46335aea1c6d39d428fbc82371bd5d69867163a37215e984b529b13b56e27c530a0758d92693f6b17821c139b838b65c42f2e6457fbd270c160eb32fa3f91003
 SHA512 
0026d8622c5e1480c7e71d9443b3e89545baf1b992c8756664088b15bed6038158402b44ec54f88fb6fd7b3ac03e18d33380afbd8a50461f2b0f7a223afbf4bc
-DIST firefox-70.0-ar.xpi 564990 BLAKE2B 
a6ae28e4212cab24f0cb5e21bdf63f4ebd3b7c18b602ebe219ff20659ce6c934c16e8890c827a2c98b25cb646270e109c2307d457e80c31ced14855263a1de79
 SHA512 
47f54800b0e6f0cdeda6a501bed09311e019ed1a263fbebfb4a3fdd06c8bf8f2dc1a1bbe53ec24dcdd2fe3ef8b13f19a2e19cf2483ef488c4c08a4d12d2b8884
-DIST firefox-70.0-ast.xpi 496490 BLAKE2B 
296fd7bbb736dfaadf19493e5e3e81ecbea479d8d072a9dd8ce9ec515e71cd7d4e98cc641e253c171f1fdda95256925baa603ae3e6cabad43d121d8a49ded7a2
 SHA512 
8030ac5f09a6218e364658f964c5a868c90542a08b2721aa50d01e07cfcbb0d5c090d41cf0b760026aba75130dc6bcb6f1539aa8abeace74369ef72559b5a924
-DIST firefox-70.0-az.xpi 528700 BLAKE2B 
1b95b166c63f8df3b04172fed936fbef41cd989d4e42ae4d78e7fed4f25bfcc62137f25a1c6fd89584652f4a637b55ba9e0b1eb6ed10b408d9f27ae768883ee1
 SHA512 
91679783d34546d86eb0eee51732e9a66412d1b02fdba63b230fb6fef751e0d48167997102855d8c96cee99b69a86df341a2811807075a30aeedc423d0fc4fef
-DIST firefox-70.0-be.xpi 621214 BLAKE2B 
90fcca60e0928a98fb0521b0b931b16729812b8319e4269fac42b7481595ee108fc8bbeb6b989bf79ceb773bbb730158cd45e19f68a1f49a38c0876b9cb8535a
 SHA512 
f6b47be53e3c123b1970ca0269c0ae99fe1e5a6499aa98a0f9ac2c029acb9a009e88a1aaa325a049cd0fc2bee82c6c2e16a0e7f6528bd1d9d99a53c248a4b383
-DIST firefox-70.0-bg.xpi 579400 BLAKE2B 
42c6ef8a3c124b2fabe04907923d960dae8ab99e9cfa44cf0edfdc2e4cce53ab4539b349c2f45bc633754de3bad9f5b396c4ecf2bf7fcb9ad3e4e722a866214b
 SHA512 
34777858cade099ae5207a5a4671c8efa0cb6f0169e2f56cd244ced5c3e3e9c519502e2cdec56b7ca4b08546549f69415f0d0ace4b3bc7900f7d2382775cf62c
-DIST firefox-70.0-bn.xpi 598557 BLAKE2B 
e88cfe1532d77e69b546e29456ff222a75c03a3e30cf284780e7678a1bffc696252a9431c8111f674302574f627447c092d16dfea2ddbb92abcf29245b4c87fc
 SHA512 
3ed2975f462ffd4ee97bc674d9ce7cd42944c6355210609d3ae747afb44ec6ac13ded9291d81469404a831eb493ea643b396f8d348655e30fdb199b73eed1e64
-DIST firefox-70.0-br.xpi 528416 BLAKE2B 
91b3cabfd47c30c53e73af1245ad5371d1c1071687744a281236361aadb1d69b6795a519c47fdefd95f4fb8f0ca3772cad71e98e49fc0be2caead398823f3abf
 SHA512 
019fca3437203bc2e9add51b9afc7f144fd0d5ff1f2ac08ff9a91085d1122c21f9135572069bd1d93ec9e59706cd24461c637286df759d84319b5eb4c2b022b7
-DIST firefox-70.0-bs.xpi 499848 BLAKE2B 
bd4bbe96c64c172b1ce09d25e4a731018b6f048405580c638fe94cea6b18ba9f081588dd71c4c09d31a786661947ecc33fa44d57db6e022f2a5f3a5a606c3fec
 SHA512 
7d78086de319a31d15caf6a3abe5f6bb94c30eefcb73e2c4cb599515ba777f6d44ccf15d609d920b605bf381abe97f1fb3fc3e591423bb2f6f1a4bc8b7c011f1
-DIST firefox-70.0-ca.xpi 531460 BLAKE2B 
6532b4218f618ab5e48e5a0a8bc5cc88f778c57d21513c9f70fd6d5cfc9078175eef19b51dfd2da841159d17656a2e2a63af8da5766954c18ac33526cbfbc10a
 SHA512 
932d466ac210e00d8704bbdedbc2fe8d9e29dfe6139edc7269abe5bb79415267347fc3b0fa99c1b827bd85390a77c97dcb7c20084cd9a403141955a7c329b0d2
-DIST firefox-70.0-cak.xpi 562497 BLAKE2B 
e66833b2a28e1229fa9088cd66ff84fefa14099191ea0ef0496681ef8ad43bd505bbab015e1238c99f3d275198cf7b068d6406af61bfbd587a0e4a36a8c8e2fc
 SHA512 
43ccd99f2a12787e3119dd658283d310758407911eb2ca2cb9812cbd2fcbd486c7561719f66c2611510643c4d07d059bae9d59b5b5e65bbd917039e0ce3d8b9a
-DIST firefox-70.0-cs.xpi 550071 BLAKE2B 
fc06ee34405620cf654f09827ee530f7b90a94769d8c7753d01b0af4b1798b5ca82f853cb65072029f21b056a34bd69ac98c969f03a383f4c45ccb0810dd6f22
 SHA512 

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

2019-11-02 Thread Andreas Sturmlechner
commit: e87ca85c89afc4f49fd6027a73b344e5abb244b4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 13:58:55 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e87ca85c

app-office/libreoffice-bin: Security cleanup

Bug: https://bugs.gentoo.org/695536
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/libreoffice-bin/Manifest|  12 -
 .../libreoffice-bin/libreoffice-bin-6.2.5.2.ebuild | 257 -
 2 files changed, 269 deletions(-)

diff --git a/app-office/libreoffice-bin/Manifest 
b/app-office/libreoffice-bin/Manifest
index 232f70499f3..239d2cf7cef 100644
--- a/app-office/libreoffice-bin/Manifest
+++ b/app-office/libreoffice-bin/Manifest
@@ -1,24 +1,12 @@
-DIST amd64-bin-libreoffice-6.2.5.2.tar.xz 104233412 BLAKE2B 
577d104f966b6c8809246569cdc92c4af5815ba69a9a56ec41e9666f1f45828385f84cd6b611d76d4f6dca5af75d18d735153ea8eb4ca6e5998039e09d308c2a
 SHA512 
784d780099f14ae2285c2c45086d49571b8def5d531c5dd0432c53922ef560c4c9dfbd8f318218b31823faeb8dc3443a1b2da97b90dac0964b54d0c2cd7b26a3
 DIST amd64-bin-libreoffice-6.2.8.2.tar.xz 104308312 BLAKE2B 
417a04efdf839e27a63bf63bafccb57c4eec644f73a2e2651a11e8b61540c81e6a4235c4ae3f903ae155927876cf9ce23e8d12178527196cf44ad267b973e693
 SHA512 
bec10c3ca57cdef43e6ad580e1a69c7d419d523a4268d484497f067b3e6387e905dc8e98606fc749442c32ec6c36046576a0e237542acdccb9c2add679f2ab4b
-DIST amd64-bin-libreoffice-gnome-6.2.5.2.xd3 827035 BLAKE2B 
eb4e8693e0863da1170c8cf28abe336054544e87c4c19862e5de90e068c233ff20d287db88f7bfacb599c010d9926198d7654233f3993981c6a9342e1ddd6645
 SHA512 
09811b27195733a4d62899491c02f72177a9a3ba14bfe34dcd7e103710d3da0a2d750af2094900168a668f5b336c47e4756e045ecbb19f1bc1792ad5b0ad6b00
 DIST amd64-bin-libreoffice-gnome-6.2.8.2.xd3 811884 BLAKE2B 
56f33945bad7912cd0aeba5adb19c4086b96f1d01dc11d389da3758a77ddd229ba671ba779c8febe2887ab790e991c8ad44a885b34d8956e8bc41f17e3763ab2
 SHA512 
9b14f9db785ceb59cb8ff193bbcf59bae8ef52d5295c4f505aeed57e6d7d14f2ef2c805e145bb7a598e963dfbf1de6cfa1532c2d38e7ea6843fc808e8513cec2
-DIST amd64-bin-libreoffice-gnome-java-6.2.5.2.xd3 29528433 BLAKE2B 
e8d61fbc5c3b0df1635d9a5f1633884c8090db509ae053e45a9d3c8462737e258584f8badea038218c1af6fa2b8e438afd923d6496207daf9f298b1dcba422cc
 SHA512 
6cd2fb0bf978fe6ba2a5e0b453f63f4443f7042a5f9b1b158aee5c17a634becf1877f3e39a2e689ea65dee95a60c1becda1a381265cff55a32ada5d03104f09a
 DIST amd64-bin-libreoffice-gnome-java-6.2.8.2.xd3 29523177 BLAKE2B 
c9104ade23ccfdeb4feeabf5ababd7de0c3609cf3c607e80c1226a75a3b7cc7b88f0e997592c6fabea05f6b5043cca7f118a1326f1eec2978b444584cf88e6f0
 SHA512 
ca4edac5a9c72b913a37ef09099a089546e450101cf87a56c5e65b959a67c02ce37c4167e5c1220bdfb0a181a2511f3df68d1ef36c4c0eb97d37fd56876b
-DIST amd64-bin-libreoffice-java-6.2.5.2.xd3 29397096 BLAKE2B 
a96bdb8054f340b9ed8cbfb0cac13240787d6cb21babd17be2136e7e1dcd63754bdbb1d346ad00f87c3b90d0540b9ad314adb681f6441e3bf564759cd2fa1142
 SHA512 
4d557944a8bcae5ede07229ad487585ca9cd1aaf532a9ebe3bd6fdc2720461f760dc54b62ff8898d1a876786797ce2dce0134e7c200778d269c9ff24002e9270
 DIST amd64-bin-libreoffice-java-6.2.8.2.xd3 29390594 BLAKE2B 
301566a9fefcf8c0ffcff02df78598c066fde089e39cb13c7ebfdf82e6f7d294a013d2ec3758315bcbde0ed2466d645e0e096a9264cbc4caf77df5ab24e22e88
 SHA512 
c00f63a713ee32e941486ebe4573a11bd939fa91cfb618a4f66916b8aa6f82382d5b3db9ea6cf92fefdbaadb48c18ec4465418ab3806b8d2a8156d22e9471e3e
-DIST amd64-bin-libreoffice-kde-6.2.5.2.xd3 18176613 BLAKE2B 
f96688eedad180dd21336a4458f46281a267ab6b0b8c274a9ff6c0f60415c63e2de723d8474781cb91e426c230f54dbc8032133a4a30db048eea59f31279cb5c
 SHA512 
129ee7e6020db5bab4fb50e3a87060e561e598a6a1fc192d3bbe8a3770ff25e66e3e96b1c04a59f56dd72e18c34a94894d8ed82dccef44f332205805b0891f7a
 DIST amd64-bin-libreoffice-kde-6.2.8.2.xd3 18180052 BLAKE2B 
487fcdd3560d0f3455d1418421492cdb87984c4cbea9ed0dcf021acd6e880fa867dc04ba2b3dd360e8f872ad2580ae8a9cab0c5d1958fd0b9b3df236389ff865
 SHA512 
4eb038394dc5b2cc9a65b1e2d254779294008e57cee1fb7663aef7b04bebde3e1633bec5f79a1bab70c5778fea01d78815dff37036212095c737249bc21cd945
-DIST amd64-bin-libreoffice-kde-java-6.2.5.2.xd3 29682018 BLAKE2B 
be1088deb9ac86c740294279cfab4ba55b3db7a9dd048b35275b323ee2c3d69cf7fb5ea9ae188870f3649abf353ad02af20f93343720c618a02a5135b37ced17
 SHA512 
da772be63d9195756c4d1468be37dfaf2f245d4259f411913fda58eabbc85041359cf7f689050752efc2c30ab30d35adf2e94bfaefdce1cafc762c52ce7d7b50
 DIST amd64-bin-libreoffice-kde-java-6.2.8.2.xd3 29672937 BLAKE2B 
43cd3e217bacda3a049a9ffd818fbc6773c810d47e4052997ced8622741acea9fb749ce984b7cf7036e63b8ac25bbb16ab5d5fda871df10eb564c4fd993d2837
 SHA512 
fdea6190c8ef83935007377e9e25fc6bf8985606137d7d12575c45392ff6fadf60fbd0c027575114cd8755130549c1208c87225931618ac076aac1b74cfec923
-DIST x86-bin-libreoffice-6.2.5.2.tar.xz 106672784 BLAKE2B 

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

2019-11-02 Thread Andreas Sturmlechner
commit: 8829d1fb717f7e00f5166eeb3e6c4be62778e7ef
Author: Vladimir Pavljuchenkov (SpiderX)  spiderx  dp 
 ua>
AuthorDate: Sat Nov  2 07:09:21 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8829d1fb

app-admin/qtpass: version bump to 1.3.2

Closes: https://bugs.gentoo.org/693786
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Vladimir Pavljuchenkov  spiderx.dp.ua>
Closes: https://github.com/gentoo/gentoo/pull/13164
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/qtpass/Manifest|  1 +
 app-admin/qtpass/qtpass-1.3.2.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/app-admin/qtpass/Manifest b/app-admin/qtpass/Manifest
index c4ccd3f6517..671e5ebd098 100644
--- a/app-admin/qtpass/Manifest
+++ b/app-admin/qtpass/Manifest
@@ -1 +1,2 @@
 DIST qtpass-1.2.3.tar.gz 369412 BLAKE2B 
55e8f5e7967b264b20aa044979620631f319e2ff38edcc4e1390ab5d9f35e1e90ff8ff00c94cd35a9b5c05a5ccd8d8fdfc97214e9bd9f564bae1bd80efe0f224
 SHA512 
d6c3af5b92042a38afecb40689d41c08105dd2a39555f78ebc585a6db6dd65cd8fd6dc637542dd3b5b4ce18f1a852768ffa298b5a461a2d0e4ef4950c58d1649
+DIST qtpass-1.3.2.tar.gz 310316 BLAKE2B 
ac0f562fd263e9d46980a69183cfd556596750e1050dbc50748cd9be45bc4bf39e4de14cb59f778cfc54f5c32050d567d88d65ec039cba1e9c2e8ef24d7ae99a
 SHA512 
9026f74f6ff75fcef2f6a0862484a2a1eaed1370edd0659e8b4d20039affe846e0da3a0a26a804563813bc678638ab67fa516441208e70c7e9de9b2eda876a10

diff --git a/app-admin/qtpass/qtpass-1.3.2.ebuild 
b/app-admin/qtpass/qtpass-1.3.2.ebuild
new file mode 100644
index 000..ceb54ec6b63
--- /dev/null
+++ b/app-admin/qtpass/qtpass-1.3.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils
+
+DESCRIPTION="multi-platform GUI for pass, the standard unix password manager"
+HOMEPAGE="https://qtpass.org/;
+SRC_URI="https://github.com/IJHack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="app-admin/pass
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[xcb]
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   net-misc/x11-ssh-askpass"
+DEPEND="${RDEPEND}
+   dev-qt/qtsvg:5
+   test? ( dev-qt/qttest:5 )"
+BDEPEND="dev-qt/linguist-tools:5"
+
+S="${WORKDIR}/QtPass-${PV}"
+
+DOCS=( {CHANGELOG,CONTRIBUTING,FAQ,README}.md )
+
+src_prepare() {
+   default
+
+   if ! use test ; then
+   sed -i '/SUBDIRS += src /s/tests //' \
+   qtpass.pro || die "sed for qtpass.pro failed"
+   fi
+}
+
+src_configure() {
+   eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/"${PN}"/translations
+   doins localization/*.qm
+
+   doman "${PN}".1
+   domenu "${PN}".desktop
+   newicon artwork/icon.png "${PN}"-icon.png
+   insinto /usr/share/appdata
+   doins qtpass.appdata.xml
+}



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

2019-11-02 Thread Andreas Sturmlechner
commit: fa26aba07983affba4840e80e824ed350312f19b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 13:57:57 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa26aba0

app-office/libreoffice-bin-debug: Drop 6.2.5.2

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

 app-office/libreoffice-bin-debug/Manifest  | 12 ---
 .../libreoffice-bin-debug-6.2.5.2.ebuild   | 87 --
 2 files changed, 99 deletions(-)

diff --git a/app-office/libreoffice-bin-debug/Manifest 
b/app-office/libreoffice-bin-debug/Manifest
index 9d1fe3d4703..9c021bc915a 100644
--- a/app-office/libreoffice-bin-debug/Manifest
+++ b/app-office/libreoffice-bin-debug/Manifest
@@ -1,24 +1,12 @@
-DIST amd64-debug-libreoffice-6.2.5.2.tar.xz 1641072480 BLAKE2B 
fb084df67bbcf7af16050c7e72478b16b69c7cbe4cccf18ace02907e98e5e5d49ea516d6aa9a1c232984aafcbbcbcb009ca9df3f074642ac1c3ab9860f16757d
 SHA512 
7f7bfb9dd90bb6e5a7b45987b46cdd0da29c633e93511d4a275a073a8fe15b165770f7536af5f2d351be636c904318d71a07d91da15da08dea4ba84b0046fc4d
 DIST amd64-debug-libreoffice-6.2.8.2.tar.xz 1642014084 BLAKE2B 
40d13fbcc3ce16eb52ce88455c06d7252f4dd486704191f8a132dfd5532e96cb3fdb835137c1cc96ae7d7c62a01bc1c817b48e791ee52a2f52d7da9d3fccc212
 SHA512 
6e4fc5e3a2335403701d0589f8693507713eedb896bc3eb23dc2cc4ba5817362e8dd4a41bd705fbffd8df253a5b23c77e1cf603df53952bb8d9b541445bc45d5
-DIST amd64-debug-libreoffice-gnome-6.2.5.2.xd3 1609525 BLAKE2B 
24df754b5a03bb06e08a3defff41d9cc135c787f7427c6e2948713c4f1f27cbf2ac20d8d9df25ee648221d36c355fdd70a39ea9498cc88a52a8c1fbb0ea396eb
 SHA512 
8c34bccfd1ada25e5f3076631a1c61bf359d2e26a0ea97de3b073622e801e57c24cf1675f3b3baccce12b9d803d3c5ad432cb724074119766c60d416535330f4
 DIST amd64-debug-libreoffice-gnome-6.2.8.2.xd3 1609778 BLAKE2B 
dedb6cc6c2b05ec4514e3bedda54cbf2dc507a8ee85289b3f847aa6786bce46a916ddf6b63256e66fe55707ec8b960d90634feeb4a19668d015cd1f21610a5b3
 SHA512 
239efa94c35a7ff313d607d5aa237b387f55d72c958efc4819a8bd31bc986d931c7e6131317c8daf10f5be3b002d728fb3441b3442948d36c9c00dabfdd31cf0
-DIST amd64-debug-libreoffice-gnome-java-6.2.5.2.xd3 866015327 BLAKE2B 
014989b5f558590dc55f4f82d1a502804c6cb03baef35674fcaefb858925422b0ad21c821fe8e215c6cb6a01e12642d217a28bce42591034d808e5bc172869f1
 SHA512 
318e1fdf09bd06333e81f557ebb3ef26e745920022d8a1ff25f481737faade03be6613b39539f6e0ce4c58404c1baad3f1217c4b17673bf740b1c421d4f42933
 DIST amd64-debug-libreoffice-gnome-java-6.2.8.2.xd3 858666487 BLAKE2B 
f70a02ef90049c1e209fd5f9847c538f726a52a893ee4f404731d4b5a154508d7739f70f2f221431d6df5518a4f19eb25c1c950d597c56ca621f50cd1062c71b
 SHA512 
bffcb1b9d0eea6d86489ec3cd72ffc5481b57e2b8ab2e79bd0c8a177e2c50a5f628bc55470678603c086a79876e0383d20e0daa55425394901d8ad5fa4b3185a
-DIST amd64-debug-libreoffice-java-6.2.5.2.xd3 864389819 BLAKE2B 
14ea27a4c869c6cc3241d20d55f30f9bc471c4bf0816e9b4e7b1e18c47286734c752ccf1f438bb116ba3f56b10827a537a9dbef80f9b370d2ee6bafc2be45162
 SHA512 
ee04800538235f58256784989acfb8bc1a3c842016ee6a52ee875067f4614903b3de8367706f53e2a65d053793f50f536518fd409465af49bdcc20683014bc85
 DIST amd64-debug-libreoffice-java-6.2.8.2.xd3 857026842 BLAKE2B 
96ff47f0fc56ae09f9e3e081c4d0379301ea06a056da9be6d24400b2711ba14e07993d0d245917e45e81c4dbdc7e7cf02026686f6d1b00243adbb27e3e006550
 SHA512 
3bf2a8b8f49bc6b37d6ea1d7e78f1bb0dcc5232e3837b34029341a4fdbc13e79845afb31a0bd31b132c4dcc95320cad72f3b087cdacfe2e6fde5400e6c40f456
-DIST amd64-debug-libreoffice-kde-6.2.5.2.xd3 462116544 BLAKE2B 
27cba58f6329a9318ea2c33959fa7bb942449d033bfc6cc3c0b730d2c1e29195119810205a49951639487cfcbb2b433539be191439b10f60b875a18429be8741
 SHA512 
50e1533397ab7d94004462ad042de09653fa75a87492acbc1650f3808c6187fb79e66fbfcf1b3088ed67711747a4601b0fea2c6c8a34b5ef8a167ee6bf535959
 DIST amd64-debug-libreoffice-kde-6.2.8.2.xd3 462401347 BLAKE2B 
a3ced18dd28a95a3de37f0d45687c94e7f06854e3e5a17505d14e07e4799cb5c176fa0b472a6ed9bf0701337d19e899a3d23d5dbf60584bf6c4b3e2e40019796
 SHA512 
89f14e53e3371c512083612d9b2891c2f971301482aba4cae64ce2ebae87c7d4b2b521e25753cd8dd69313ceb34ab845a5696304c295ebcd56e7758c13aec340
-DIST amd64-debug-libreoffice-kde-java-6.2.5.2.xd3 869114510 BLAKE2B 
d158629b437118e5bf00c637b33deb651034323a5931bb75d878fe4e1d38c1e10bf4dd6426f75cc3d7be6070e657f89587507649abc8929f03c9b19a1f6f9b95
 SHA512 
2849c1fbf12272d8206a3f37df5278d0cec3387de65d07f17b466a040ccb74b4fa33654dd6b54eecefcf986855a9ccb840545dcf4a926b7e0e6ce6ca07ad1185
 DIST amd64-debug-libreoffice-kde-java-6.2.8.2.xd3 862023938 BLAKE2B 
5c19e18aa0a96e54fd664c01102e2315c0c008d3fe6c030cc01f92f72364616183267dd8cc8febb05b7a8be5842dcff4a72c4b418395073d49292fddebc30b65
 SHA512 
2094f528396b85e20bbf40970e1ca762f820514d76f39175043e6d613036b4c4db941279cad19b0c1d4f89a65693d2d70ae9c65660e03b2d1f6cb7c16ffed40f
-DIST x86-debug-libreoffice-6.2.5.2.tar.xz 1601980988 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtgui/

2019-11-02 Thread Andreas Sturmlechner
commit: aa52bb1b8dedd9db585ea75e70ccbdc3d2bb2791
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 12:38:00 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa52bb1b

dev-qt/qtgui: Fix build with CXXFLAGS="-march=native"

Old fix from 5.12.1 still applies.

Bug: https://bugs.gentoo.org/672946
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtgui/qtgui-5.13.2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-qt/qtgui/qtgui-5.13.2.ebuild b/dev-qt/qtgui/qtgui-5.13.2.ebuild
index 480c023a611..6bec13c736d 100644
--- a/dev-qt/qtgui/qtgui-5.13.2.ebuild
+++ b/dev-qt/qtgui/qtgui-5.13.2.ebuild
@@ -124,6 +124,8 @@ QT5_GENTOO_PRIVATE_CONFIG=(
:gui
 )
 
+PATCHES+=( "${FILESDIR}/qt-5.12-gcc-avx2.patch" ) # bug 672946
+
 src_prepare() {
# don't add -O3 to CXXFLAGS, bug 549140
sed -i -e '/CONFIG\s*+=/s/optimize_full//' src/gui/gui.pro || die



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

2019-11-02 Thread Andreas Sturmlechner
commit: 597e61658604f7c3f3f74eb03d38d5a54d4e4fff
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 14:05:32 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597e6165

app-office/libreoffice: Security cleanup

Bug: https://bugs.gentoo.org/695536
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/libreoffice/Manifest   |   2 -
 app-office/libreoffice/libreoffice-6.2.5.2.ebuild | 553 --
 app-office/libreoffice/metadata.xml   |   1 -
 3 files changed, 556 deletions(-)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index 58a9bd64826..50f980722c3 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -3,10 +3,8 @@ DIST 185d60944ea767075d27247c3162b3bc-unowinreg.dll 12288 
BLAKE2B c067f60d0ee325
 DIST 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip 9796 BLAKE2B 
a30b0225313b23092bc57ccd989f26ea04a323dcb17a0ea8baaa6a21b5d5e2b6e29fcae9d18ecd043073030e104ad56c86a115760590f57eda86c22c9fe478b0
 SHA512 
4a48f1e32907fb2dee601cda3cd7a0d7198b2d51f2a572b647f1e93f901fd511eef3567676e52dfb1723a2cdfbc01f2015ca0bb22903b0bc1476dd618cc9aa8a
 DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 BLAKE2B 
d2769842c180997055648a8b1a33cc89988b74628bad8aa012242e0c1afa5b5b8568323c107187072207ee69bd841ba4ca3bbfe27ef65223ddc729d1a1aa6590
 SHA512 
ec5ae23c8fe2f5efc377f7a9665039afadf28b4d8f2791379296766a5fbc9a3bf7548f9b0e3b3b07762229ec733a92ccbb69791ee0318c9c6f78f8e847253d3f
 DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 
51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3
 SHA512 
2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a
-DIST libreoffice-6.2.5.2.tar.xz 215008848 BLAKE2B 
5dd1ef185820944816e01c8ed6a7873a5a8fe6f7f4b41fad279729970d85ff868f51ed573e8b3d0a554ffd1f8e295b6ff2e493e7f7250f8cb1c7c2a40115abf4
 SHA512 
b46b6731c415ab354ad7d876cb8905cb9eae2ca71639abf049ea7f5930601c957cc0eb04a2cd06949073ba5e94778ecdb449692ed8bbfbd95b05f6e7980d8d10
 DIST libreoffice-6.2.8.2.tar.xz 215070800 BLAKE2B 
d6bc1e94de1df4dd20dafaeac9702435f305fe15117e8aee02233c6d2e74423bb475aeaf79ff6dcd30e22d69a5d6f0648218819b08003524a2c7b1db340281c4
 SHA512 
cf1dd708f10ea4b9a3134851cad45fe91c1d535e2b2068f7e65f1cb1bf4076c5c41ec253f628c5b912590e91ccfe16f5c8bcf39bc92df2ec7c8aef84210349bd
 DIST libreoffice-6.3.3.2.tar.xz 224944844 BLAKE2B 
16d58d1b34f6a7da5a9cb32dade8f15ce074f516b77d6481f1befec75572f2533f3ae19964ce2688ff121789241a11823f05768b3386bc755f015a243af6c55a
 SHA512 
4809ce26c48419e1e8408bdd71e7aeec3940bad150afeb90034013fbe8757c37417da3a996f8935aac3103806e14bd47dee7e560051d6718a75e6b869a2b1934
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
-DIST libreoffice-help-6.2.5.2.tar.xz 13023680 BLAKE2B 
f1f3a03104c1270e59f2b9130a29e1fbc99a9bf76b2bf4cedef8dc61487c9a2036f143501ad7fcd0c056c8b72446305b7a4ca9a719b11200ade5feca35e5e7ea
 SHA512 
14f964161bd827a5846ec667ae1dac80d1485450e172da44010103e31f3872df62595e8b1b1d45c720caac9256d2adaf8f5a0bb80d059d35f1c560b533eb764c
 DIST libreoffice-help-6.2.8.2.tar.xz 13024032 BLAKE2B 
524ba3ff77670afebf8be4724b5e54f9b157582cfcac8640e2184b8ae24c8e5e01b924415949f1756c18e2d54b8eab7efb78c979321e50b6d52b741ddd49
 SHA512 
c1f5b1b3c50da0a47a9724c9fc3544a15b7df72e66c5c2008afeae7732e2b29f0e57e64ce9a216c3237acdb4345715525f32be290f3196ba6e28685fa6c0925c
 DIST libreoffice-help-6.3.3.2.tar.xz 13192080 BLAKE2B 
108f33d77ec24ac5f5b669aae72dc23f0ae1800038d9028a3c92b6dfbe09003cb6d9f89a6675162c8cb058ac850a0e7c5544f8692c527cfa83bd32ba28149a50
 SHA512 
c4d994c4047aeee5e35207228e2b62ccc7d7303ae8fcbfb52cbf73950f232ad8d45953ee364379d3834e79c59ab79df920ec624ebe4b7214f955c2bd89af7cee

diff --git a/app-office/libreoffice/libreoffice-6.2.5.2.ebuild 
b/app-office/libreoffice/libreoffice-6.2.5.2.ebuild
deleted file mode 100644
index c66bae1fdfd..000
--- a/app-office/libreoffice/libreoffice-6.2.5.2.ebuild
+++ /dev/null
@@ -1,553 +0,0 @@
-# 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} )
-PYTHON_REQ_USE="threads(+),xml"
-
-MY_PV="${PV/_alpha/.alpha}"
-MY_PV="${MY_PV/_beta/.beta}"
-# experimental ; release ; old
-# Usually the tarballs are moved a lot so this should make everyone happy.
-DEV_URI="
-   https://dev-builds.libreoffice.org/pre-releases/src
-   

[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/stellarium/

2019-11-02 Thread Andreas Sturmlechner
commit: 4c1d5f68f7c039fb4cc3b4969016cf9701013404
Author: Alexey Sokolov  google  com>
AuthorDate: Fri Oct 11 20:59:51 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c1d5f68

sci-astronomy/stellarium: version 0.19.2

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alexey Sokolov  google.com>
Closes: https://github.com/gentoo/gentoo/pull/13259
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-astronomy/stellarium/Manifest |  1 +
 sci-astronomy/stellarium/stellarium-0.19.2.ebuild | 81 +++
 2 files changed, 82 insertions(+)

diff --git a/sci-astronomy/stellarium/Manifest 
b/sci-astronomy/stellarium/Manifest
index 5b4dd900519..335b0fe58cc 100644
--- a/sci-astronomy/stellarium/Manifest
+++ b/sci-astronomy/stellarium/Manifest
@@ -5,3 +5,4 @@ DIST stars_7_2v0_1.cat 305710678 BLAKE2B 
1cc9b4a6bc35a9339e495f7e0da4f7e90a0e92b
 DIST stars_8_2v0_1.cat 559068934 BLAKE2B 
c040a369cdf6885759998e1315b554d21a5e2b9b149a67967a8af45606aebf57bec407fab5ce1904978af0dc529aa6bddd267331ca45f58617bbf56d5ca99dee
 SHA512 
06d4fa298b9dff8452f550377df99fcaa5e7107cfc7b75c9a4769b3cb6d97a822a54213c706102c1d7ef2dabc16df32a85f46b2f6d6c6f76a4e919353b739de4
 DIST stellarium-0.19.0.tar.gz 309151408 BLAKE2B 
d5726762c402cebca47c7cb218a2edc918aceb11e4bf44f0473bf86a8bfc75b908467112e8ce797c90f9c1307884f853a24f919efe11e86ef04c9eb0ff356a3b
 SHA512 
26cb44fe4280275ce64594d01bdded4ddd2cda5d21887b4329de51188cc392e8390036702ee316446dcdb54182dec5d217a387898c4c7aa82ce14742b4d4694f
 DIST stellarium-0.19.1.tar.gz 314373270 BLAKE2B 
23f11005e2862c42abefc37d997c875bbed379e8182dbc533f24f303200791dc4c069adc0e290b2faa630a0fc058b7060bc3715714bae37a89ff5820b86d21ed
 SHA512 
59ab715f7b81e037ed3d23444547dcd00a41b9a1925d58b40a17372e286bbea2c1b762582cd7e1f81d690204840cc23dd9627e2c0bd4abf52367a456849eefe9
+DIST stellarium-0.19.2.tar.gz 318402838 BLAKE2B 
cee07bbb2e4a124912dc383e1d43007912498793c3609de05caf3b6673d01ccfcf0b560cb879bf47d6b00c7ce6b10810a17189f38fdac55e02dc496e194269b3
 SHA512 
a0002dc8a1e43aa264cdf013b57362880d4809207a1f867285d3e1187c4c88c67d166652afe0edeec5a98eff1167e6c3693594d467605ba78ee29d6eb7878d4b

diff --git a/sci-astronomy/stellarium/stellarium-0.19.2.ebuild 
b/sci-astronomy/stellarium/stellarium-0.19.2.ebuild
new file mode 100644
index 000..b47582c27ba
--- /dev/null
+++ b/sci-astronomy/stellarium/stellarium-0.19.2.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils desktop flag-o-matic xdg virtualx
+
+DESCRIPTION="3D photo-realistic skies in real time"
+HOMEPAGE="https://www.stellarium.org/;
+SRC_URI="
+   
https://github.com/Stellarium/stellarium/releases/download/v${PV}/${P}.tar.gz
+   stars? (
+   
https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_4_1v0_2.cat
+   
https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_5_2v0_1.cat
+   
https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_6_2v0_1.cat
+   
https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_7_2v0_1.cat
+   
https://github.com/Stellarium/stellarium-data/releases/download/stars-2.0/stars_8_2v0_1.cat
+   )"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug gps media nls stars test"
+
+BDEPEND="
+   nls? ( dev-qt/linguist-tools:5 )
+"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtopengl:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtscript:5
+   dev-qt/qtserialport:5
+   dev-qt/qtwidgets:5
+   media-fonts/dejavu
+   sys-libs/zlib
+   virtual/opengl
+   gps? ( dev-qt/qtpositioning:5 )
+   media? ( dev-qt/qtmultimedia:5[widgets] )
+"
+DEPEND="${RDEPEND}
+   dev-qt/qtconcurrent:5
+   test? ( dev-qt/qttest:5 )
+"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   use debug || append-cppflags -DQT_NO_DEBUG #415769
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_GPS="$(usex gps)"
+   -DENABLE_MEDIA="$(usex media)"
+   -DENABLE_NLS="$(usex nls)"
+   -DENABLE_TESTING="$(usex test)"
+   )
+   cmake-utils_src_configure
+}
+
+src_test() {
+   virtx cmake-utils_src_test
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   # use the more up-to-date system fonts
+   rm "${ED}"/usr/share/stellarium/data/DejaVuSans{Mono,}.ttf || die
+   dosym ../../fonts/dejavu/DejaVuSans.ttf 
/usr/share/stellarium/data/DejaVuSans.ttf
+   dosym ../../fonts/dejavu/DejaVuSansMono.ttf 
/usr/share/stellarium/data/DejaVuSansMono.ttf
+
+   if use stars ; then
+   insinto 

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

2019-11-02 Thread Andreas Sturmlechner
commit: 54d99d5a87a45cc27c17f55a7af6bdb4a25120a1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 14:07:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d99d5a

app-office/libreoffice-l10n: Drop 6.2.5.2

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

 app-office/libreoffice-l10n/Manifest   | 168 -
 .../libreoffice-l10n-6.2.5.2.ebuild|  91 ---
 2 files changed, 259 deletions(-)

diff --git a/app-office/libreoffice-l10n/Manifest 
b/app-office/libreoffice-l10n/Manifest
index 5af9d5f0326..8c002f96f02 100644
--- a/app-office/libreoffice-l10n/Manifest
+++ b/app-office/libreoffice-l10n/Manifest
@@ -1,171 +1,3 @@
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_am.tar.gz 2493974 BLAKE2B 
7db70734abce94b679deb0c042a4f099d58a12db345cd6625e0f91bc63ae696325805636d901c0b8e0dc2d05906d22a9d68c0ec6365a6a4435be8e13f116f98d
 SHA512 
62a32f71fab451fb3d24c03b598f4e93a3e9d881b2262426d802332e805805a506aeae0e448032ca2658dd07021395735b609d85eb8cdad804b79cbc4f31816e
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_ast.tar.gz 2388631 BLAKE2B 
925c6143c2c464f56702e435f3cc23e8faa8094975d8a0895647f530a2ce506a192ce54a4470d887052fb7d08589a7ce2612f946b5dd91a0e4046b7113f86822
 SHA512 
edb097a55d3cbcb72018eff85192b5f1f4e6db95a58365c415ff122b9588b615ff3750c88bf6c0efd9379d2de9a8bded1624c2e647613950a95368ad3f8cb3f9
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_bg.tar.gz 2567602 BLAKE2B 
d47192e4dca6b776e126fbd7ca32bfc6eb39e04fb73bf5f0894a54201fd6df00b19a446db1974f277847a1b25ac9779a1c5f23babca122b83c0a762c5f3e5399
 SHA512 
fa37d90cea80161b895f16be9ea87fbed6b8fca69db4ab8439011b82aead37bbc9a3788474cf16635d769c65bec06c738d78fe9776e58acfb394b568cd391bc2
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 2578334 BLAKE2B 
5566013fb75b30c64b0333911b4744c011be7abf1403c06e1083687071a25896a1fa4e895a7342183f7eca072de4017e52dd84ea48e060dbf2325f26b450bba1
 SHA512 
7e1ea06891e6c3651ad7fb3384b608e9057c064d5e86befb79be66c95d0328435b89f71c7dcac92f730d03471fbde7d88075c424969293d9fb7b5657b3ebfed4
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_bn.tar.gz 2561371 BLAKE2B 
b5693d8a753c7bf2f8d8ae0d69cae4c27942bdafcaa5615fb8627e90e7fd442d6e18dd2f9032fc582d0277d331accd59d64c6208cf5e77a5fb171b0f43385d34
 SHA512 
0df07c2e41d1d231f9a6525f78c4f5e2a8e44e8a6104f81a1a7572426e2c9ac1f39c3c9b27d5b3d47828e43b39bd59842f681c9949de691a5df319a1e62a370b
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_bo.tar.gz 2576428 BLAKE2B 
a9a1c397f3b903e069906dd336e8020e9773fe8e54abcf363b6985e6bad0b44772781d6397c7a00d07e981d91d793dd6132e85b82f9a2db7417267b1c69d5c34
 SHA512 
b9061797011995a74e958ddd4faec8713ec80d176cd6e3b17d51e4ff11291114845b2c47a774e75f12f4f0826d6c779744fffb337d03a3ad974fabbdbd91b2a5
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_bs.tar.gz 2302687 BLAKE2B 
c9112deb314766ec8d8e58f5eda7002c175aeca427715dff982b4374aede547634f923c1aa9d3bb613562dd7d24434def3b49d6bafa9065fdd539163540ae59e
 SHA512 
a6a9db07170a8db022b3421fe651a41f81eca26d1a462cdcec92b9a414b61da8d79313f799fb6b664706a9918010444f435629c8e44b2dd22e94af57ee7439df
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 2380315 
BLAKE2B 
81320160ce064fd304affcdf810a6dd3f5e611add3706da762a77ce119be887b71faedd6128434fe4c64a3ca735bfc78cda64896d2539848bd4ae3b6f99a98e6
 SHA512 
e08dc6fec0f1ad1c52c3c4caffe4007ab0e14bf0ccfacfc5933743799be12f624a4cfd7aba09d66a5051f23d29678aa3250bb7b476e5124b6a1c4c84c6e6b800
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_ca.tar.gz 2366265 BLAKE2B 
3c2640ed62061f0518a42a553ac997c745c23c540f6ecb039057b9ab4b51a72e275d38a29c20f709b3ef37289adae3d696c0c22ad3403ae00efcad5ab9a1
 SHA512 
7afec0e91941426cfe0503b5cff90d13cc245366e8a280adbed5d341eea81e57a955913f5ebbc9c145fa242e83abc0dbd10d0bf674b33a7ce40490f2258321ab
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_cs.tar.gz 2362124 BLAKE2B 
ca53d6c829d50d715c7bab286f5da7587f7d7b2c927d9f2444f35968bce937a47b03cb6a43ab7652ee31a5e39278bc34f023d93468e9721f0291dd760ad0
 SHA512 
ab6f5fdc81ab2061837a356498176695943a903e6ac8f0eaf71906ac11343d1ced28046de9f5518f8c5da339ffe166bde3f843c14b8183d2dcc406952db63740
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_da.tar.gz 2328576 BLAKE2B 
11c07a4a2f26bc10d1f76690b580be58b0b14b9884708b6993684ad65bf1b039b44e77a168acb0e64fda0b7d822c710711d1cc324e64b06f0bd6b5dcb0043972
 SHA512 
61396b834be56fe09875e6d141d2a1cfa7280dbac1e544603077b2e717e9518aa6bf82639ab5208fb126332a0aa4b7657c163263557a42a5e5edee32c84938f5
-DIST LibreOffice_6.2.5.2_Linux_x86_rpm_helppack_de.tar.gz 2422705 BLAKE2B 
560fe85502aed7a2719b4752ee1d29554d13f985753f94742768a8d39ffafe9d600f9e0719269f6623e99b84e8875b6b9148f9215dd01fcad48b6391ea83ab09
 SHA512 
004b34fd536ceb8127d01c0bb756f99a201b5c84768442428f3bf6c86e1109fb521870740ed8ab13662c76716c6623b2a2c59925536f0e10e148419700c8944d

[gentoo-commits] repo/gentoo:master commit in: app-office/calligra/, app-office/calligra/files/

2019-11-02 Thread Andreas Sturmlechner
commit: 11e22c282ae1fc952dfcdfa407a40c55ab0e3cd0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov  1 20:07:56 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e22c28

app-office/calligra: Fix build with poppler-0.82.0

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

 app-office/calligra/calligra-3.1.0-r4.ebuild   |  4 +++
 .../files/calligra-3.1.0-poppler-0.82.patch| 35 ++
 2 files changed, 39 insertions(+)

diff --git a/app-office/calligra/calligra-3.1.0-r4.ebuild 
b/app-office/calligra/calligra-3.1.0-r4.ebuild
index 37e03558459..411c8177f1c 100644
--- a/app-office/calligra/calligra-3.1.0-r4.ebuild
+++ b/app-office/calligra/calligra-3.1.0-r4.ebuild
@@ -135,6 +135,10 @@ pkg_setup() {
 src_prepare() {
kde5_src_prepare
 
+   if has_version ">=app-text/poppler-0.82"; then
+   eapply "${FILESDIR}/${P}-poppler-0.82.patch" # TODO: make 
upstreamable patch
+   fi
+
if ! use test; then
sed -e "/add_subdirectory( *benchmarks *)/s/^/#DONT/" \
-i libs/pigment/CMakeLists.txt || die

diff --git a/app-office/calligra/files/calligra-3.1.0-poppler-0.82.patch 
b/app-office/calligra/files/calligra-3.1.0-poppler-0.82.patch
new file mode 100644
index 000..4cb9d1872eb
--- /dev/null
+++ b/app-office/calligra/files/calligra-3.1.0-poppler-0.82.patch
@@ -0,0 +1,35 @@
+Patch stolen from Mageia Cauldron but had to be modified quite a bit.
+
+diff --git a/filters/karbon/pdf/SvgOutputDev.cpp 
b/filters/karbon/pdf/SvgOutputDev.cpp
+index ffdbf01..70bc9f8 100644
+--- a/filters/karbon/pdf/SvgOutputDev.cpp
 b/filters/karbon/pdf/SvgOutputDev.cpp
+@@ -405,7 +405,7 @@ void SvgOutputDev::drawString(GfxState * state, GooString 
* s)
+ const char * p = s->c_str();
+ int len = s->getLength();
+ CharCode code;
+-Unicode *u = nullptr;
++const Unicode *u = nullptr;
+ int uLen;
+ double dx, dy, originX, originY;
+ while (len > 0) {
+@@ -545,7 +545,7 @@ void SvgOutputDev::drawImage(GfxState *state, Object 
*/*ref*/, Stream *str,
+ 
+ void SvgOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
+  int width, int height, GfxImageColorMap 
*colorMap,
+- bool /*interpolate*/, int *maskColors, bool 
inlineImg)
++ bool /*interpolate*/, const int *maskColors, 
bool inlineImg)
+ {
+ drawImage(state, ref, str, width, height, colorMap, maskColors, 
inlineImg);
+ }
+--- a/filters/karbon/pdf/SvgOutputDev.h
 b/filters/karbon/pdf/SvgOutputDev.h
+@@ -63,7 +63,7 @@ public:
+ // images
+ void drawImage(GfxState *state, Object *ref, Stream *str,
+int width, int height, GfxImageColorMap *colorMap,
+-   bool interpolate, int *maskColors, bool inlineImg) 
override;
++   bool interpolate, const int *maskColors, bool 
inlineImg) override;
+ 
+ // styles
+ virtual void updateAll(GfxState *state);



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

2019-11-02 Thread Andreas Sturmlechner
commit: a421d8f2d1c99e76bc4ccda5772de1e6ee93a2ed
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 11:07:33 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a421d8f2

profiles: arm: Promote media-video/pipewire to p.use.stable.mask

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/arch/arm/package.use.mask| 8 
 profiles/arch/arm/package.use.stable.mask | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 71d556ec63d..e1917bf5ccb 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -5,14 +5,6 @@
 # Neither sys-apps/bolt nor kde-plasma/plasma-thunderbolt are keyworded
 kde-plasma/plasma-meta thunderbolt
 
-# Andreas Sturmlechner  (2019-08-18)
-# media-video/pipewire is not keyworded yet
-dev-libs/weston pipewire
-kde-apps/krfb wayland
-kde-plasma/xdg-desktop-portal-kde screencast
-sys-apps/xdg-desktop-portal screencast
-x11-wm/mutter screencast
-
 # Michał Górny  (2019-07-13)
 # app-forensics/libewf is not keyworded here.
 app-admin/testdisk ewf

diff --git a/profiles/arch/arm/package.use.stable.mask 
b/profiles/arch/arm/package.use.stable.mask
index f140c5fde0f..03ae92ee77a 100644
--- a/profiles/arch/arm/package.use.stable.mask
+++ b/profiles/arch/arm/package.use.stable.mask
@@ -1,6 +1,14 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Andreas Sturmlechner  (2019-11-02)
+# media-video/pipewire is not stable yet
+dev-libs/weston pipewire
+kde-apps/krfb wayland
+kde-plasma/xdg-desktop-portal-kde screencast
+sys-apps/xdg-desktop-portal screencast
+x11-wm/mutter screencast
+
 # Michał Górny  (2019-09-08)
 # virtual/jdk is not stable here.
 sci-mathematics/z3 java



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

2019-11-02 Thread Andreas Sturmlechner
commit: 8ce457bd7c36639364dae655ecf0e9c5ef66c8be
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 09:40:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 15:22:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce457bd

dev-libs/liborcus: Add missing USEDEP on dev-libs/boost[zlib]

Closes: https://bugs.gentoo.org/699128
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-libs/liborcus/{liborcus-0.14.1.ebuild => liborcus-0.14.1-r1.ebuild} | 2 +-
 dev-libs/liborcus/liborcus-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/liborcus/liborcus-0.14.1.ebuild 
b/dev-libs/liborcus/liborcus-0.14.1-r1.ebuild
similarity index 97%
rename from dev-libs/liborcus/liborcus-0.14.1.ebuild
rename to dev-libs/liborcus/liborcus-0.14.1-r1.ebuild
index 23cb5009d8f..fee41849ef8 100644
--- a/dev-libs/liborcus/liborcus-0.14.1.ebuild
+++ b/dev-libs/liborcus/liborcus-0.14.1-r1.ebuild
@@ -22,7 +22,7 @@ SLOT="0/0.14" # based on SONAME of liborcus.so
 IUSE="python +spreadsheet-model static-libs tools"
 
 RDEPEND="
-   dev-libs/boost:=
+   dev-libs/boost:=[zlib(+)]
sys-libs/zlib
python? ( ${PYTHON_DEPS} )
spreadsheet-model? ( >=dev-libs/libixion-0.14.0:= )

diff --git a/dev-libs/liborcus/liborcus-.ebuild 
b/dev-libs/liborcus/liborcus-.ebuild
index ffb340248f3..97a7a49aaa2 100644
--- a/dev-libs/liborcus/liborcus-.ebuild
+++ b/dev-libs/liborcus/liborcus-.ebuild
@@ -22,7 +22,7 @@ SLOT="0/0.15" # based on SONAME of liborcus.so
 IUSE="python +spreadsheet-model static-libs tools"
 
 RDEPEND="
-   dev-libs/boost:=
+   dev-libs/boost:=[zlib(+)]
sys-libs/zlib
python? ( ${PYTHON_DEPS} )
spreadsheet-model? ( >=dev-libs/libixion-0.15.0:= )



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

2019-11-02 Thread Thomas Deutschmann
commit: bc401f8668da343a63970e8b8a4d55458302ab3e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov  2 15:03:42 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov  2 15:04:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc401f86

mail-client/neomutt: fix bad filename

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

 mail-client/neomutt/Manifest| 2 +-
 mail-client/neomutt/neomutt-20191102.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-client/neomutt/Manifest b/mail-client/neomutt/Manifest
index 3346ff5f0b3..953ccb33735 100644
--- a/mail-client/neomutt/Manifest
+++ b/mail-client/neomutt/Manifest
@@ -1,4 +1,4 @@
-DIST 20191102.tar.gz 3224856 BLAKE2B 
ff645bb0521f97e7935aef3e3b286643e30e78e10c6322b93da635cdba82496c3bc8f8b4b95fb4c197439bae3ddcfb5b207803900ab434e01b63e9989a5f2458
 SHA512 
fa4f488110560b25a4d208cf059c44bdfb514b4904964a0928f1491afc2b0d748fa7075d8465e066683f44a5741454b9c73391ecfe20842aae34f3848b9c0bc8
 DIST neomutt-20180512.tar.gz 2758674 BLAKE2B 
47a8d1fe5d5e2725a6ee868b937eea3807ab35dc8eefe47f0d9b1db3aeaa97e69c36e3b8544fc43f1ce0a9980017d654bace8d342094fd7d26ecdb13cdf54253
 SHA512 
033faa27b01998895d2452d541ed5942cf7dede7a935fc807e6a7f88f3a8c182ea0ab5b4ed7db852ff2afb4d3b990db05477d9ff0dcf7dee186c393244d1db66
 DIST neomutt-20180622.tar.gz 2769280 BLAKE2B 
57e708a0502d8de795a08150dd92c4b2a8ba9d0594102f4d4d4b183f29caad147e233586882ca68aa23df6e69b0c55345120ca40ddc9db80e76c734409ff5a3b
 SHA512 
8085bf2bcf25ee4a4531cc5f950f862f58e3bf6ebfb96450479132ed60b4d87e35bc54f9b5e110d93dbd8e9684c1eceb36012753fc7bf5d3fb5046d9d42b69e0
 DIST neomutt-20180716.tar.gz 2778105 BLAKE2B 
b367407baf2187347971a0327a0c037861f648ebef12ce7b006b756bf60e696ff7a2c986848a9f15815aa95638dd5a3a90f47e97a9c0573950be8cdcc93b13ad
 SHA512 
ee4093217cc1409262b96ab33ed78a38f5c6a72f62fcd7b25027f9373687ce67af8a4e1793b1d7d843bee5b4a7e0c69b30b3badf88a4e1a8fadd8b21441faaae
+DIST neomutt-20191102.tar.gz 3224856 BLAKE2B 
ff645bb0521f97e7935aef3e3b286643e30e78e10c6322b93da635cdba82496c3bc8f8b4b95fb4c197439bae3ddcfb5b207803900ab434e01b63e9989a5f2458
 SHA512 
fa4f488110560b25a4d208cf059c44bdfb514b4904964a0928f1491afc2b0d748fa7075d8465e066683f44a5741454b9c73391ecfe20842aae34f3848b9c0bc8

diff --git a/mail-client/neomutt/neomutt-20191102.ebuild 
b/mail-client/neomutt/neomutt-20191102.ebuild
index adc571a3be8..cf65746042c 100644
--- a/mail-client/neomutt/neomutt-20191102.ebuild
+++ b/mail-client/neomutt/neomutt-20191102.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} =~ $ ]]; then
EGIT_REPO_URI="https://github.com/neomutt/neomutt.git;
EGIT_CHECKOUT_DIR="${WORKDIR}/neomutt-${P}"
 else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz;
+   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
 fi
 



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

2019-11-02 Thread Thomas Deutschmann
commit: 7f0d24218ba93a87ca77cd4357b8bbd010121eb9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov  2 15:01:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov  2 15:04:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0d2421

www-client/firefox: remove double empty line

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

 www-client/firefox/firefox-68.2.0.ebuild | 1 -
 www-client/firefox/firefox-70.0.1.ebuild | 1 -
 2 files changed, 2 deletions(-)

diff --git a/www-client/firefox/firefox-68.2.0.ebuild 
b/www-client/firefox/firefox-68.2.0.ebuild
index 0c4c46d373c..614449e81df 100644
--- a/www-client/firefox/firefox-68.2.0.ebuild
+++ b/www-client/firefox/firefox-68.2.0.ebuild
@@ -177,7 +177,6 @@ DEPEND="${CDEPEND}
x86? ( >=dev-lang/nasm-2.13 )
)"
 
-
 S="${WORKDIR}/firefox-${PV%_*}"
 
 QA_PRESTRIPPED="usr/lib*/${PN}/firefox"

diff --git a/www-client/firefox/firefox-70.0.1.ebuild 
b/www-client/firefox/firefox-70.0.1.ebuild
index 014e8e10c90..babada4b252 100644
--- a/www-client/firefox/firefox-70.0.1.ebuild
+++ b/www-client/firefox/firefox-70.0.1.ebuild
@@ -178,7 +178,6 @@ DEPEND="${CDEPEND}
x86? ( >=dev-lang/nasm-2.13 )
)"
 
-
 S="${WORKDIR}/firefox-${PV%_*}"
 
 QA_PRESTRIPPED="usr/lib*/${PN}/firefox"



[gentoo-commits] repo/gentoo:master commit in: games-emulation/desmume/

2019-11-02 Thread Hanno Boeck
commit: 434a67f0c946a4d93d3ac4cb3438e809c09a9f4f
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 14:59:59 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 14:59:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=434a67f0

games-emulation/desmume: Remove unneeded gtkglext dependency

Port to EAPI 7.

Closes: https://bugs.gentoo.org/698962
Closes: https://github.com/gentoo/gentoo/pull/13506
Signed-off-by: Hanno Boeck  gentoo.org>
Package-Manager: Portage-2.3.78, Repoman-2.3.17

 games-emulation/desmume/desmume-0.9.11-r2.ebuild | 37 
 1 file changed, 37 insertions(+)

diff --git a/games-emulation/desmume/desmume-0.9.11-r2.ebuild 
b/games-emulation/desmume/desmume-0.9.11-r2.ebuild
new file mode 100644
index 000..964f794fb7f
--- /dev/null
+++ b/games-emulation/desmume/desmume-0.9.11-r2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg
+
+DESCRIPTION="Nintendo DS emulator"
+HOMEPAGE="http://desmume.org/;
+SRC_URI="mirror://sourceforge/desmume/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/zziplib
+   gnome-base/libglade
+   media-libs/libsdl[joystick,opengl,video]
+   sys-libs/zlib
+   virtual/opengl
+   x11-libs/agg
+   >=x11-libs/gtk+-2.8.0:2"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog README README.LIN )
+
+# fix QA compiler warning, see
+# https://sourceforge.net/p/desmume/patches/172/
+PATCHES=(
+   "${FILESDIR}/${P}-fix-pointer-conversion-warning.diff"
+   "${FILESDIR}/${P}-gcc6.patch"
+   "${FILESDIR}/${P}-gcc7.patch"
+)



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

2019-11-02 Thread Thomas Deutschmann
commit: 73bddea54d7e0097c86df82f3d43707b344e83e3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov  2 14:55:39 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov  2 14:55:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73bddea5

dev-libs/openssl-compat: fix RESTRICT

Bug: https://bugs.gentoo.org/699154
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-libs/openssl-compat/openssl-compat-1.0.2t-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/openssl-compat/openssl-compat-1.0.2t-r1.ebuild 
b/dev-libs/openssl-compat/openssl-compat-1.0.2t-r1.ebuild
index 50ca46ba72e..b157a2495fc 100644
--- a/dev-libs/openssl-compat/openssl-compat-1.0.2t-r1.ebuild
+++ b/dev-libs/openssl-compat/openssl-compat-1.0.2t-r1.ebuild
@@ -39,7 +39,9 @@ LICENSE="openssl"
 SLOT="1.0.0"
 KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~x86-linux"
 IUSE="+asm bindist gmp kerberos rfc3779 sctp cpu_flags_x86_sse2 sslv2 +sslv3 
static-libs test +tls-heartbeat vanilla zlib"
-RESTRICT="!bindist? ( bindist )"
+
+RESTRICT="!bindist? ( bindist )
+   test"
 
 RDEPEND="gmp? ( >=dev-libs/gmp-5.1.3-r1[static-libs(+)?,${MULTILIB_USEDEP}] )
kerberos? ( >=app-crypt/mit-krb5-1.11.4[${MULTILIB_USEDEP}] )
@@ -55,8 +57,6 @@ BDEPEND="
sys-devel/bc
)"
 
-RESTRICT="test"
-
 # Do not install any docs
 DOCS=()
 



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/fast_xml/

2019-11-02 Thread Hanno Boeck
commit: c18257461bb962efc744172594ad967fee7094b2
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 14:47:10 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 14:47:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1825746

dev-erlang/fast_xml: Assign to ejabberd project

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

 dev-erlang/fast_xml/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-erlang/fast_xml/metadata.xml b/dev-erlang/fast_xml/metadata.xml
index cea333097d7..6cb8a8b96bc 100644
--- a/dev-erlang/fast_xml/metadata.xml
+++ b/dev-erlang/fast_xml/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   ejabb...@gentoo.org
+   

processone/fast_xml




[gentoo-commits] repo/gentoo:master commit in: dev-erlang/fast_tls/

2019-11-02 Thread Hanno Boeck
commit: 3d203b6fa58932753f47b641d58a76149e57325f
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 14:46:12 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 14:46:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d203b6f

dev-erlang/fast_tls: Assign to erlang project

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

 dev-erlang/fast_tls/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-erlang/fast_tls/metadata.xml b/dev-erlang/fast_tls/metadata.xml
index de6222ecd81..3fc3485d680 100644
--- a/dev-erlang/fast_tls/metadata.xml
+++ b/dev-erlang/fast_tls/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   ejabb...@gentoo.org
+   

processone/fast_tls




[gentoo-commits] repo/gentoo:master commit in: dev-erlang/esip/

2019-11-02 Thread Hanno Boeck
commit: ba1f10b48e0352891f4ea093056860e04f715cf0
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 14:45:27 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 14:45:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba1f10b4

dev-erlang/esip: Assign to erlang project

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

 dev-erlang/esip/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-erlang/esip/metadata.xml b/dev-erlang/esip/metadata.xml
index 8abef49c9dc..cb493f98ebc 100644
--- a/dev-erlang/esip/metadata.xml
+++ b/dev-erlang/esip/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   ejabb...@gentoo.org
+   

processone/esip




[gentoo-commits] repo/gentoo:master commit in: dev-erlang/cache_tab/

2019-11-02 Thread Hanno Boeck
commit: 1c2f0ce6d15254c37613c9ac45159f28c72b4e51
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 14:44:33 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 14:44:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2f0ce6

dev-erlang/cache_tab: Assign to erlang project

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

 dev-erlang/cache_tab/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-erlang/cache_tab/metadata.xml 
b/dev-erlang/cache_tab/metadata.xml
index 21231fce40f..da7e6bbbf4e 100644
--- a/dev-erlang/cache_tab/metadata.xml
+++ b/dev-erlang/cache_tab/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   ejabb...@gentoo.org
+   

cache_tab application is intended to proxy back-end operations 
for
Key-Value insert, lookup and delete and maintain a cache of 
those



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/xmpp/

2019-11-02 Thread Hanno Boeck
commit: 29243ea627298c8dd0bd11ebe6b57cbb5753e267
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:44:45 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:45:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29243ea6

dev-erlang/xmpp: Fix dependencies

Our package missed some dependencies, changes taken
from vampik's overlay. Remove keywords to accomodate
new idna package.
Assign to ejabberd project.

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

 dev-erlang/xmpp/metadata.xml| 2 +-
 dev-erlang/xmpp/{xmpp-1.4.2.ebuild => xmpp-1.4.2-r1.ebuild} | 7 ---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-erlang/xmpp/metadata.xml b/dev-erlang/xmpp/metadata.xml
index 0d50efe5afd..ecb028955e8 100644
--- a/dev-erlang/xmpp/metadata.xml
+++ b/dev-erlang/xmpp/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


processone/xmpp

diff --git a/dev-erlang/xmpp/xmpp-1.4.2.ebuild 
b/dev-erlang/xmpp/xmpp-1.4.2-r1.ebuild
similarity index 84%
rename from dev-erlang/xmpp/xmpp-1.4.2.ebuild
rename to dev-erlang/xmpp/xmpp-1.4.2-r1.ebuild
index 4445b2f5c6d..abac362f1f5 100644
--- a/dev-erlang/xmpp/xmpp-1.4.2.ebuild
+++ b/dev-erlang/xmpp/xmpp-1.4.2-r1.ebuild
@@ -12,14 +12,15 @@ 
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64"
 
-RDEPEND="dev-lang/erlang
+RDEPEND=">=dev-lang/erlang-20.0
>=dev-erlang/ezlib-1.0.6
>=dev-erlang/fast_tls-1.1.2
>=dev-erlang/fast_xml-1.1.37
>=dev-erlang/p1_utils-1.0.16
-   >=dev-erlang/stringprep-1.0.17"
+   >=dev-erlang/stringprep-1.0.17
+   >=dev-erlang/idna-6.0.0"
 DEPEND="${RDEPEND}"
 
 DOCS=( CHANGELOG.md README.md )



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2019-11-02 Thread Jeroen Roovers
commit: 9c36bcfbfa28356d2f2e12090f035bc1a9ea296d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov  2 13:43:24 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov  2 13:44:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c36bcfb

x11-drivers/nvidia-drivers: Unset RESTRICT

RESTRICT="bindist mirror test" is now set in
eclass/nvidia-driver.eclass.

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

 x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild | 1 -
 x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild| 1 -
 x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild | 1 -
 x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild | 1 -
 x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild | 1 -
 5 files changed, 5 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild
index fb14cd13d11..5f370d0daef 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild
@@ -27,7 +27,6 @@ EMULTILIB_PKG="true"
 IUSE="acpi multilib kernel_FreeBSD kernel_linux static-libs +tools +X"
 KEYWORDS="-* amd64 x86"
 LICENSE="GPL-2 NVIDIA-r2"
-RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
 
 COMMON="

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild
index 4fc91e52bbb..705a1973f01 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild
@@ -29,7 +29,6 @@ SRC_URI="
 EMULTILIB_PKG="true"
 KEYWORDS="-* amd64 x86"
 LICENSE="GPL-2 NVIDIA-r2"
-RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib 
static-libs +tools uvm wayland +X"

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild
index 6f093c7e8fc..4c25381ffa1 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild
@@ -24,7 +24,6 @@ SRC_URI="
 EMULTILIB_PKG="true"
 KEYWORDS="-* amd64"
 LICENSE="GPL-2 NVIDIA-r2"
-RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib 
static-libs +tools uvm wayland +X"

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild
index af6542d8b8c..ba476b4116d 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild
@@ -24,7 +24,6 @@ SRC_URI="
 EMULTILIB_PKG="true"
 KEYWORDS="-* amd64"
 LICENSE="GPL-2 NVIDIA-r2"
-RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms libglvnd 
multilib static-libs +tools uvm wayland +X"

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild
index d254654c987..f1723d4e80d 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild
@@ -24,7 +24,6 @@ SRC_URI="
 EMULTILIB_PKG="true"
 KEYWORDS="-* ~amd64"
 LICENSE="GPL-2 NVIDIA-r2"
-RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms libglvnd 
multilib static-libs +tools uvm wayland +X"



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

2019-11-02 Thread Jeroen Roovers
commit: eef4adae086d90ca8f277307b740ac5b98ebee35
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov  2 13:41:54 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov  2 13:44:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eef4adae

eclass/nvidia-driver.eclass: Set RESTRICT="bindist mirror test"

Signed-off-by: Jeroen Roovers  gentoo.org>

 eclass/nvidia-driver.eclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/eclass/nvidia-driver.eclass b/eclass/nvidia-driver.eclass
index 482c62c012f..a8631947748 100644
--- a/eclass/nvidia-driver.eclass
+++ b/eclass/nvidia-driver.eclass
@@ -14,6 +14,7 @@
 inherit readme.gentoo-r1 versionator
 
 DEPEND="sys-apps/pciutils"
+RESTRICT="bindist mirror test"
 
 # Variables for readme.gentoo.eclass:
 DISABLE_AUTOFORMATTING="yes"



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/iptraf-ng/

2019-11-02 Thread Jeroen Roovers
commit: f4c6cbe1c290f91328794fafbfcda45a0483da7c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov  2 13:40:07 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov  2 13:44:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4c6cbe1

net-analyzer/iptraf-ng: Update live ebuild

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Fixes: https://bugs.gentoo.org/656982
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/iptraf-ng/iptraf-ng-.ebuild | 18 --
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/net-analyzer/iptraf-ng/iptraf-ng-.ebuild 
b/net-analyzer/iptraf-ng/iptraf-ng-.ebuild
index ea4ed84750b..284d4bb322e 100644
--- a/net-analyzer/iptraf-ng/iptraf-ng-.ebuild
+++ b/net-analyzer/iptraf-ng/iptraf-ng-.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils git-r3 toolchain-funcs
+EAPI=7
+inherit git-r3 toolchain-funcs
 
 DESCRIPTION="A console-based network monitoring utility"
-HOMEPAGE="http://fedorahosted.org/iptraf-ng/;
-EGIT_REPO_URI="https://git.fedorahosted.org/git/iptraf-ng.git;
+HOMEPAGE="https://github.com/iptraf-ng/iptraf-ng;
+EGIT_REPO_URI="https://github.com/iptraf-ng/iptraf-ng;
 
 LICENSE="GPL-2 doc? ( FDL-1.1 )"
 SLOT="0"
@@ -25,6 +25,8 @@ DEPEND="
 "
 
 src_prepare() {
+   default
+
sed -i \
-e '/^CC =/d' \
-e '/^CFLAGS/s:= -g -O2:+= :' \
@@ -54,7 +56,11 @@ src_install() {
 
doman src/*.8
dodoc AUTHORS CHANGES FAQ README* RELEASE-NOTES
-   use doc && dohtml -a gif,html,png -r Documentation/*
+
+   if use doc; then
+   docinto html
+   dodoc -r Documentation
+   fi
 
keepdir /var/{lib,log}/iptraf-ng #376157
 }



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

2019-11-02 Thread Sergei Trofimovich
commit: e562e5f0fcc272aeb40c9367d1ef6dfb6b0dcac5
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Nov  2 13:33:07 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Nov  2 13:38:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e562e5f0

net-misc/curl: stable 7.66.0 for sparc, bug #694020

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/net-misc/curl/curl-7.66.0.ebuild b/net-misc/curl/curl-7.66.0.ebuild
index 9cdc8db5485..0c4c734a804 100644
--- a/net-misc/curl/curl-7.66.0.ebuild
+++ b/net-misc/curl/curl-7.66.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="adns alt-svc brotli http2 idn ipv6 kerberos ldap metalink 
+progress-meter rtmp samba ssh ssl static-libs test threads"
 IUSE+=" curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss 
+curl_ssl_openssl curl_ssl_winssl"
 IUSE+=" nghttp3 quiche"



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

2019-11-02 Thread Mikle Kolyada
commit: cdc87769514188e78a590c4ce5d42c578bb93042
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov  2 13:39:06 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov  2 13:39:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc87769

dev-util/pycharm-community: Version bump (v2019.2.4)

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-util/pycharm-community/Manifest|  1 +
 .../pycharm-community-2019.2.4.ebuild  | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 3b1957ca102..da132b3efe5 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1 +1,2 @@
 DIST pycharm-community-2019.2.3.tar.gz 360509772 BLAKE2B 
8924e6b5e2823c26a96531d14bc60f01f0849a5cca3c87bdff7c23c304081e668aecb1b2c681622c472cacf4b2e1f58c5fa4e42624f204491d27e37785146fd3
 SHA512 
65f834ba20cddb93533d596430f8b537167f32e99d224758d9fd4407f95304609912dec7f11cf61f9edf2e30722f1624250f44765c0f83dcbf6815bb8c35d9d9
+DIST pycharm-community-2019.2.4.tar.gz 363680469 BLAKE2B 
d550dc8144746c0b4bcff408531eba289896dc325eea99a2d2a4363cfaca00de55045cff54a3163acd15105b0705dc48ac28374831bd6f0f6842823cdf4b5ceb
 SHA512 
f7d12ccd8309bf547d1f3785392d7ab023ebebcc71c6f09f71a21ae9bfceb8718d9ebf77a7717e1b145f56ea902d8d02d573d658b7db540696fb9630b0d3

diff --git a/dev-util/pycharm-community/pycharm-community-2019.2.4.ebuild 
b/dev-util/pycharm-community/pycharm-community-2019.2.4.ebuild
new file mode 100644
index 000..3bd1b2cb410
--- /dev/null
+++ b/dev-util/pycharm-community/pycharm-community-2019.2.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
+HOMEPAGE="http://www.jetbrains.com/pycharm/;
+SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
+
+LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8
+   dev-libs/libdbusmenu
+   dev-python/pip"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/${PN}/bin/fsnotifier
+   opt/${PN}/bin/fsnotifier64
+   opt/${PN}/bin/fsnotifier-arm"
+
+MY_PN=${PN/-community/}
+
+src_prepare() {
+   default
+
+   rm -rf jre || die
+}
+
+src_install() {
+   insinto /opt/${PN}
+   doins -r *
+
+   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
+
+   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
+   newicon bin/${MY_PN}.png ${PN}.png
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-11-02 Thread Mikle Kolyada
commit: 6f8a1e106d687f2c9ad5bc99d3bbb7755ecc3f83
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov  2 13:36:18 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov  2 13:37:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8a1e10

dev-util/pycharm-professional: Version bump (v2019.2.4)

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-util/pycharm-professional/Manifest |  1 +
 .../pycharm-professional-2019.2.4.ebuild   | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/dev-util/pycharm-professional/Manifest 
b/dev-util/pycharm-professional/Manifest
index bcba8e2b60f..88c5519efeb 100644
--- a/dev-util/pycharm-professional/Manifest
+++ b/dev-util/pycharm-professional/Manifest
@@ -1 +1,2 @@
 DIST pycharm-professional-2019.2.3.tar.gz 482051405 BLAKE2B 
e299c2d545b808ed15b4775acb003137467694f528a088cd84d7055a9c15ead96a9e0ac6599374faf60fab3c2ca72a390157130411f4b15bc2b7e3f4b41f0c8e
 SHA512 
4474a74d2762b202100ddbcdfa3807a8136bd392200c79b795cee34a843716218ac21d1d7ed3ac7df9b3c6241f77658a535274759473871cd23a4cc4cfafcfdf
+DIST pycharm-professional-2019.2.4.tar.gz 485589877 BLAKE2B 
c2af015129eec902927ac1b33860ff696e7e3f994a1c827b6e31c84a87a6163262c95a579ec2d4d3c801612af8f8f23b23b432db470f30b199ddca7c6874a37a
 SHA512 
c4fa438ee4ef1de66839a225f61e2b8ecb6e49f41da4099fe0ed8da4840c72c34886a76e090e47fc5ad9f7112b339fec01f5617935e490314d7e73a4585f4ce9

diff --git a/dev-util/pycharm-professional/pycharm-professional-2019.2.4.ebuild 
b/dev-util/pycharm-professional/pycharm-professional-2019.2.4.ebuild
new file mode 100644
index 000..9196130c9fd
--- /dev/null
+++ b/dev-util/pycharm-professional/pycharm-professional-2019.2.4.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
+HOMEPAGE="http://www.jetbrains.com/pycharm/;
+SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
+
+LICENSE="PyCharm_Academic PyCharm_Classroom PyCharm PyCharm_OpenSource 
PyCharm_Preview"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8
+   dev-libs/libdbusmenu
+   dev-python/pip"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/${PN}/bin/fsnotifier
+   opt/${PN}/bin/fsnotifier64
+   opt/${PN}/bin/fsnotifier-arm
+   opt/${PN}/bin/libyjpagent-linux.so
+   opt/${PN}/bin/libyjpagent-linux64.so"
+
+MY_PN=${PN/-professional/}
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_prepare() {
+   default
+
+   rm -rf jre || die
+}
+
+src_install() {
+   insinto /opt/${PN}
+   doins -r *
+
+   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
+
+   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
+   newicon bin/${MY_PN}.png ${PN}.png
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/fatcat/

2019-11-02 Thread Ben Kohler
commit: 98cf4e1e7e27c91751355b67bed0b04682c85f15
Author: Ben Kohler  gentoo  org>
AuthorDate: Sat Nov  2 13:33:56 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Sat Nov  2 13:34:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98cf4e1e

sys-fs/fatcat: bump to 1.1.0

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

 sys-fs/fatcat/Manifest|  1 +
 sys-fs/fatcat/fatcat-1.1.0.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/sys-fs/fatcat/Manifest b/sys-fs/fatcat/Manifest
index 9d4074a660d..0bf72018519 100644
--- a/sys-fs/fatcat/Manifest
+++ b/sys-fs/fatcat/Manifest
@@ -1 +1,2 @@
 DIST fatcat-1.0.6.tar.gz 50447 BLAKE2B 
f33c479ec9482a7cf7113d1fa0d02c8bde0c58c5162e392867c18ec157f23d9891e90c9571892fe48b22b5c6d713404bdbd822ac07f4bba9243fcb1ead6932c3
 SHA512 
5a0eedad9c3d3f8dc6d7230c74669082a33850bd0a91310dccb080f4a2351ca75be6af7bbb6610c71030d5f97cf63f98f43891084171a82e07ef70064a8bce7b
+DIST fatcat-1.1.0.tar.gz 57104 BLAKE2B 
9ff69f576258a39b767db67e6934a35175af218a184516681300c646ce1ec508652cf1113bf61f9e2f628849de2b53152345ca12fe84e8a9a7f51799bb3e13a2
 SHA512 
f5bcffcb46b77e950241a9f957133083ea5d43f4e0f3e038c84310da926cc017048d22f85f3c8e90a2745ce26f513079997717c5b758649b7090694006be0078

diff --git a/sys-fs/fatcat/fatcat-1.1.0.ebuild 
b/sys-fs/fatcat/fatcat-1.1.0.ebuild
new file mode 100644
index 000..75961d0164b
--- /dev/null
+++ b/sys-fs/fatcat/fatcat-1.1.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+DESCRIPTION="FAT filesystems explore, extract, repair, and forensic tool"
+HOMEPAGE="https://github.com/Gregwar/fatcat;
+SRC_URI="https://github.com/Gregwar/fatcat/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_install() {
+   cmake-utils_src_install
+   doman man/${PN}.1
+   dodoc docs/*.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/yconf/

2019-11-02 Thread Hanno Boeck
commit: 337cbb7403cfe5eb453c71ec082359e12db4a91d
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:29:41 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:29:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=337cbb74

dev-erlang/yconf: Assign to ejabberd project

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

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

diff --git a/dev-erlang/yconf/metadata.xml b/dev-erlang/yconf/metadata.xml
index aaa5b90cf47..d33dedda884 100644
--- a/dev-erlang/yconf/metadata.xml
+++ b/dev-erlang/yconf/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


processone/yconf



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/pkix/

2019-11-02 Thread Hanno Boeck
commit: 53adca0975b0fb347dfb6690f97a11c24ead62e2
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:28:28 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:28:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53adca09

dev-erlang/pkix: Assign to ejabberd project

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

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

diff --git a/dev-erlang/pkix/metadata.xml b/dev-erlang/pkix/metadata.xml
index f535eb2324f..e244a5a4922 100644
--- a/dev-erlang/pkix/metadata.xml
+++ b/dev-erlang/pkix/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


processone/pkix



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/mqtree/

2019-11-02 Thread Hanno Boeck
commit: f040a0fa1e02aca655211b7dc20257044856d835
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:21:59 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:21:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f040a0fa

dev-erlang/mqtree: Assign to ejabberd project

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

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

diff --git a/dev-erlang/mqtree/metadata.xml b/dev-erlang/mqtree/metadata.xml
index e2841463559..dd68e81a989 100644
--- a/dev-erlang/mqtree/metadata.xml
+++ b/dev-erlang/mqtree/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


processone/mqtree



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2019-11-02 Thread Jeroen Roovers
commit: 0f64ba7887e3d6568966eea500bda31ebe86da77
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov  2 13:18:57 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov  2 13:20:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f64ba78

x11-drivers/nvidia-drivers: Set RESTRICT="bindist mirror test"

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

 x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild | 8 
 x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild| 6 +++---
 x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild | 7 +++
 x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild | 7 +++
 x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild | 7 +++
 5 files changed, 16 insertions(+), 19 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild
index 4f9c8bd7f17..fb14cd13d11 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-340.107-r1.ebuild
@@ -23,12 +23,12 @@ SRC_URI="
)
 "
 
+EMULTILIB_PKG="true"
+IUSE="acpi multilib kernel_FreeBSD kernel_linux static-libs +tools +X"
+KEYWORDS="-* amd64 x86"
 LICENSE="GPL-2 NVIDIA-r2"
+RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* amd64 x86"
-IUSE="acpi multilib kernel_FreeBSD kernel_linux static-libs +tools +X"
-RESTRICT="bindist mirror"
-EMULTILIB_PKG="true"
 
 COMMON="
app-eselect/eselect-opencl

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild
index 2f3591b34f4..4fc91e52bbb 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.129.ebuild
@@ -26,11 +26,11 @@ SRC_URI="
)
 "
 
+EMULTILIB_PKG="true"
+KEYWORDS="-* amd64 x86"
 LICENSE="GPL-2 NVIDIA-r2"
+RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* amd64 x86"
-RESTRICT="bindist mirror"
-EMULTILIB_PKG="true"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib 
static-libs +tools uvm wayland +X"
 REQUIRED_USE="

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild
index 3c32f8cb729..6f093c7e8fc 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-430.50.ebuild
@@ -21,18 +21,17 @@ SRC_URI="
)
 "
 
+EMULTILIB_PKG="true"
+KEYWORDS="-* amd64"
 LICENSE="GPL-2 NVIDIA-r2"
+RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* amd64"
-RESTRICT="bindist mirror"
-EMULTILIB_PKG="true"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib 
static-libs +tools uvm wayland +X"
 REQUIRED_USE="
tools? ( X )
static-libs? ( tools )
 "
-RESTRICT="test"
 
 COMMON="
app-eselect/eselect-opencl

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild
index ef8a7105ca3..af6542d8b8c 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild
@@ -21,18 +21,17 @@ SRC_URI="
)
 "
 
+EMULTILIB_PKG="true"
+KEYWORDS="-* amd64"
 LICENSE="GPL-2 NVIDIA-r2"
+RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* amd64"
-RESTRICT="bindist mirror"
-EMULTILIB_PKG="true"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms libglvnd 
multilib static-libs +tools uvm wayland +X"
 REQUIRED_USE="
tools? ( X )
static-libs? ( tools )
 "
-RESTRICT="test"
 
 COMMON="
app-eselect/eselect-opencl

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild
index 529819532dc..d254654c987 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-440.26.ebuild
@@ -21,18 +21,17 @@ SRC_URI="
)
 "
 
+EMULTILIB_PKG="true"
+KEYWORDS="-* ~amd64"
 LICENSE="GPL-2 NVIDIA-r2"
+RESTRICT="bindist mirror test"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* ~amd64"
-RESTRICT="bindist mirror"
-EMULTILIB_PKG="true"
 
 IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms libglvnd 
multilib static-libs +tools uvm wayland +X"
 REQUIRED_USE="
tools? ( X )
static-libs? ( tools )
 "
-RESTRICT="test"
 
 COMMON="
app-eselect/eselect-opencl



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/meck/

2019-11-02 Thread Hanno Boeck
commit: 3f7863e08a0cade57b06af3c9be0998a1ffe52f8
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:19:13 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:19:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7863e0

dev-erlang/meck: Assign to ejabberd project

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

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

diff --git a/dev-erlang/meck/metadata.xml b/dev-erlang/meck/metadata.xml
index 3201dae..690e0258268 100644
--- a/dev-erlang/meck/metadata.xml
+++ b/dev-erlang/meck/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


eproxus/meck



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/jiffy/

2019-11-02 Thread Hanno Boeck
commit: 861d452694d7ac56baa4a9e415f08bd49dd29e71
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:18:36 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:18:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=861d4526

dev-erlang/jiffy: Assign to ejabberd project

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

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

diff --git a/dev-erlang/jiffy/metadata.xml b/dev-erlang/jiffy/metadata.xml
index 0b084614449..586629b67fd 100644
--- a/dev-erlang/jiffy/metadata.xml
+++ b/dev-erlang/jiffy/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


davisp/jiffy



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/goldrush/

2019-11-02 Thread Hanno Boeck
commit: 1a88701da6a05ebe14f1168fb177df41206d8222
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:14:53 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:14:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a88701d

dev-erlang/goldrush: Assign to ejabberd project

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

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

diff --git a/dev-erlang/goldrush/metadata.xml b/dev-erlang/goldrush/metadata.xml
index d37cd055df3..fedf07abdaa 100644
--- a/dev-erlang/goldrush/metadata.xml
+++ b/dev-erlang/goldrush/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


DeadZen/goldrush



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/fast_yaml/

2019-11-02 Thread Hanno Boeck
commit: c950e7e7a249b8e47fc51bc251b4e9fbaa2c7bf7
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:09:52 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:09:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c950e7e7

dev-erlang/fast_yaml: Assign to ejabberd project

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

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

diff --git a/dev-erlang/fast_yaml/metadata.xml 
b/dev-erlang/fast_yaml/metadata.xml
index e1f5c00cd37..f42ec4b7f47 100644
--- a/dev-erlang/fast_yaml/metadata.xml
+++ b/dev-erlang/fast_yaml/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


processone/fast_yaml



[gentoo-commits] repo/gentoo:master commit in: dev-erlang/idna/, dev-erlang/idna/files/

2019-11-02 Thread Hanno Boeck
commit: e85e19067f4629b655709bee6376bcafb993b7db
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:07:18 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:07:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e85e1906

dev-erlang/idna: Initial commit

Dependency of latest dev-erlang/xmpp version.
Use upstream patch to avoid adding a compatibility package
for older erlang versions.

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

 dev-erlang/idna/Manifest   |   1 +
 .../files/idna-remove-unicode_util_compat.diff | 103 +
 dev-erlang/idna/idna-6.0.0.ebuild  |  25 +
 dev-erlang/idna/metadata.xml   |  10 ++
 4 files changed, 139 insertions(+)

diff --git a/dev-erlang/idna/Manifest b/dev-erlang/idna/Manifest
new file mode 100644
index 000..7d3a68b0157
--- /dev/null
+++ b/dev-erlang/idna/Manifest
@@ -0,0 +1 @@
+DIST idna-6.0.0.tar.gz 740802 BLAKE2B 
91bc6ee4031450b00659415125e8cec3f034f988bb7d307d323b0a7ca53450d42f0e84a044ccb6c198107c253b70e54466e77b2b0b4e9dd7f7051da49872be33
 SHA512 
59f8996199f7e3391b1da1b8fb1ebb70e442838eab1f26af9a8a8545f3e1b9f72f0afd65108272a51d846b34e0e8abe9623f10c89156ebca3d87b6b3eb63a066

diff --git a/dev-erlang/idna/files/idna-remove-unicode_util_compat.diff 
b/dev-erlang/idna/files/idna-remove-unicode_util_compat.diff
new file mode 100644
index 000..d369cefbf2a
--- /dev/null
+++ b/dev-erlang/idna/files/idna-remove-unicode_util_compat.diff
@@ -0,0 +1,103 @@
+diff --git a/rebar.config b/rebar.config
+index 84fd954..cd02013 100644
+--- a/rebar.config
 b/rebar.config
+@@ -1,3 +1,3 @@
+ {erl_opts, []}.
+ 
+-{deps, [{unicode_util_compat, "0.4.1"}]}.
++{deps, []}.
+diff --git a/rebar.config.script b/rebar.config.script
+deleted file mode 100644
+index d2bce94..000
+--- a/rebar.config.script
 /dev/null
+@@ -1,11 +0,0 @@
+-IsRebar3 = erlang:function_exported(rebar3, main, 1),
+-Rebar2Deps = [{unicode_util_compat, ".*",
+-   {git, "https://github.com/benoitc/unicode_util_compat.git;,
+-{tag, "0.3.1"}}}
+- ],
+-case IsRebar3 of
+-true ->
+-CONFIG;
+-false ->
+-lists:keyreplace(deps, 1, CONFIG, {deps, Rebar2Deps})
+-end.
+diff --git a/rebar.lock b/rebar.lock
+deleted file mode 100644
+index 15fc8a1..000
+--- a/rebar.lock
 /dev/null
+@@ -1,6 +0,0 @@
+-{"1.1.0",
+-[{<<"unicode_util_compat">>,{pkg,<<"unicode_util_compat">>,<<"0.4.1">>},0}]}.
+-[
+-{pkg_hash,[
+- {<<"unicode_util_compat">>, 
<<"D869E4C68901DD9531385BB0C8C40444EBF624E60B6962D95952775CAC5E90CD">>}]}
+-].
+diff --git a/src/idna.erl b/src/idna.erl
+index 5f010b3..32b1745 100644
+--- a/src/idna.erl
 b/src/idna.erl
+@@ -333,7 +333,7 @@ lowercase_list([], true) ->
+ lowercase_list([], false) ->
+   throw(unchanged);
+ lowercase_list(CPs0, Changed) ->
+-  case unicode_util_compat:lowercase(CPs0) of
++  case unicode_util:lowercase(CPs0) of
+ [Char|CPs] when Char =:= hd(CPs0) -> [Char|lowercase_list(CPs, Changed)];
+ [Char|CPs] -> append(Char,lowercase_list(CPs, true));
+ [] -> lowercase_list([], Changed)
+@@ -346,9 +346,9 @@ lowercase_bin(CP1, <>, Changed)
+   when CP1 < 128, CP2 < 256 ->
+   [CP1|lowercase_bin(CP2, Bin, Changed)];
+ lowercase_bin(CP1, Bin, Changed) ->
+-  case unicode_util_compat:lowercase([CP1|Bin]) of
++  case unicode_util:lowercase([CP1|Bin]) of
+ [CP1|CPs] ->
+-  case unicode_util_compat:cp(CPs) of
++  case unicode_util:cp(CPs) of
+ [Next|Rest] ->
+   [CP1|lowercase_bin(Next, Rest, Changed)];
+ [] when Changed ->
+@@ -357,7 +357,7 @@ lowercase_bin(CP1, Bin, Changed) ->
+   throw(unchanged)
+   end;
+ [Char|CPs] ->
+-  case unicode_util_compat:cp(CPs) of
++  case unicode_util:cp(CPs) of
+ [Next|Rest] ->
+   [Char|lowercase_bin(Next, Rest, true)];
+ [] ->
+@@ -374,7 +374,7 @@ append(GC, Str) when is_list(GC) -> GC ++ Str.
+ 
+ 
+ characters_to_nfc_list(CD) ->
+-  case unicode_util_compat:nfc(CD) of
++  case unicode_util:nfc(CD) of
+ [CPs|Str] when is_list(CPs) -> CPs ++ characters_to_nfc_list(Str);
+ [CP|Str] -> [CP|characters_to_nfc_list(Str)];
+ [] -> []
+diff --git a/src/idna_context.erl b/src/idna_context.erl
+index afcb814..a09ff1f 100644
+--- a/src/idna_context.erl
 b/src/idna_context.erl
+@@ -28,7 +28,7 @@ valid_contextj(Label, Pos) ->
+ valid_contextj(16#200c, Label, Pos) ->
+   if
+  Pos > 0 ->
+-   case unicode_util_compat:lookup(lists:nth(Pos, Label)) of
++   case unicode_util:lookup(lists:nth(Pos, Label)) of
+  #{ ccc := ?virama_combining_class } -> true;
+  _ ->
+valid_contextj_1(Label, Pos)
+@@ -38,7 +38,7 @@ valid_contextj(16#200c, Label, Pos) ->
+   end;
+ 
+ valid_contextj(16#200d, Label, Pos) when Pos > 0 ->
+-  case unicode_util_compat:lookup(lists:nth(Pos, Label)) 

[gentoo-commits] repo/gentoo:master commit in: dev-erlang/eimp/

2019-11-02 Thread Hanno Boeck
commit: f52c5198b3d066c84662cbd7057705e95b992e39
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 13:01:11 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 13:01:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52c5198

dev-erlang/eimp: Assign to ejabberd project.

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

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

diff --git a/dev-erlang/eimp/metadata.xml b/dev-erlang/eimp/metadata.xml
index 39eefb9c422..b06cdac151a 100644
--- a/dev-erlang/eimp/metadata.xml
+++ b/dev-erlang/eimp/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ha...@gentoo.org
+   ejabb...@gentoo.org


processone/eimp



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

2019-11-02 Thread Hanno Boeck
commit: cdc0eea58fca87b91015db2b20a433fbbdf02123
Author: Hanno  gentoo  org>
AuthorDate: Sat Nov  2 12:59:13 2019 +
Commit: Hanno Boeck  gentoo  org>
CommitDate: Sat Nov  2 12:59:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc0eea5

app-forensics/afl: Version bump.

Add github reference to metadata.xml.

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

 app-forensics/afl/Manifest |  1 +
 app-forensics/afl/afl-2.56b.ebuild | 42 ++
 app-forensics/afl/metadata.xml |  3 +++
 3 files changed, 46 insertions(+)

diff --git a/app-forensics/afl/Manifest b/app-forensics/afl/Manifest
index eb236db750f..fad1c7abf27 100644
--- a/app-forensics/afl/Manifest
+++ b/app-forensics/afl/Manifest
@@ -1,2 +1,3 @@
 DIST afl-2.52b.tgz 835907 BLAKE2B 
6df8b8f97a0b1ccb22466492bf15f054e7a05f77f2827c672fd610cbed24c903ae188e2242ba6ffec302e154e319adb627626a7927f17ffa5ab00cef604f
 SHA512 
30d4526440cff109ef2a014278f52a04b1b33560b6ab7d7f59e1516655858ffb36dac81963d2d8f214984776742ca9a7942c27c8fb61f7eb70b5b35cd029008f
 DIST afl-2.55b.tar.gz 836905 BLAKE2B 
53e20d4d6b8368eb981964263493beabb50aedc03a9c98ad7f24b99a3ce25264a5296911ac20ab2bc95d6b5ecbb4d14a7e8e01fd2a88db07a289f0bdefb1c1a9
 SHA512 
d2257aba27e90e502d89c528c4a214397cba83e04564e6bd9e73c9afb654c02c7e7f806952d730f685fd9b0049a61e07629e5ebd6e23fac516099ca1ea25a36e
+DIST afl-2.56b.tar.gz 836989 BLAKE2B 
974c1efa3999c714068529d24c81e6d0ffb45a487b97625fa4ff538aeb86d43825561d5b496cb47caebf687078699e2ee606d7525424b5890dced14a95417750
 SHA512 
4e76fc503fe615aac4d0bbd8e3632d5cfbb7a3ac107be03c399afc024a8ad364dba933875d50a9b65083159faf6ebef5e13c39b25db977b01bd29b6340cad162

diff --git a/app-forensics/afl/afl-2.56b.ebuild 
b/app-forensics/afl/afl-2.56b.ebuild
new file mode 100644
index 000..a2278aa4463
--- /dev/null
+++ b/app-forensics/afl/afl-2.56b.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib toolchain-funcs flag-o-matic
+
+DESCRIPTION="american fuzzy lop - compile-time instrumentation fuzzer"
+HOMEPAGE="http://lcamtuf.coredump.cx/afl/;
+SRC_URI="https://github.com/google/AFL/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+DEPEND="sys-devel/gcc:*
+   sys-devel/clang:="
+RDEPEND="${DEPEND}"
+QA_PREBUILT="/usr/share/afl/testcases/others/elf/small_exec.elf"
+
+S="${WORKDIR}/AFL-${PV}"
+
+src_compile() {
+   emake CC="$(tc-getCC)" \
+   PREFIX="/usr" \
+   HELPER_PATH="/usr/$(get_libdir)/afl" \
+   DOC_PATH="/usr/share/doc/${PF}"
+   CC="clang" CXX="clang++" strip-unsupported-flags
+   cd llvm_mode || die
+   emake \
+   PREFIX="/usr" \
+   HELPER_PATH="/usr/$(get_libdir)/afl" \
+   DOC_PATH="/usr/share/doc/${PF}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" \
+   PREFIX="/usr" \
+   HELPER_PATH="/usr/$(get_libdir)/afl" \
+   DOC_PATH="/usr/share/doc/${PF}" \
+   install
+}

diff --git a/app-forensics/afl/metadata.xml b/app-forensics/afl/metadata.xml
index 38ce6c17a3f..f5884d8aebb 100644
--- a/app-forensics/afl/metadata.xml
+++ b/app-forensics/afl/metadata.xml
@@ -4,4 +4,7 @@
   
 ha...@gentoo.org
   
+  
+google/AFL
+  
 



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

2019-11-02 Thread Thomas Deutschmann
commit: 6525aee0eca76dc102c7d2cb16c5d95982288259
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov  2 12:51:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov  2 12:52:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6525aee0

www-client/firefox: fix RESTRICT; Move REQUIRED_USE for readability

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

 www-client/firefox/firefox-68.2.0.ebuild | 9 ++---
 www-client/firefox/firefox-70.0.1.ebuild | 9 +
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/www-client/firefox/firefox-68.2.0.ebuild 
b/www-client/firefox/firefox-68.2.0.ebuild
index 7c5b0d66a9e..0c4c46d373c 100644
--- a/www-client/firefox/firefox-68.2.0.ebuild
+++ b/www-client/firefox/firefox-68.2.0.ebuild
@@ -56,7 +56,12 @@ IUSE="bindist clang cpu_flags_x86_avx2 dbus debug eme-free 
geckodriver
+screenshot selinux startup-notification +system-av1
+system-harfbuzz +system-icu +system-jpeg +system-libevent
+system-sqlite +system-libvpx +system-webp test wayland wifi"
-RESTRICT="!bindist? ( bindist )"
+
+REQUIRED_USE="pgo? ( lto )
+   wifi? ( dbus )"
+
+RESTRICT="!bindist? ( bindist )
+   !test? ( test )"
 
 PATCH_URIS=( 
https://dev.gentoo.org/~{anarchy,axs,polynomial-c,whissi}/mozilla/patchsets/${PATCH}.tar.xz
 )
 SRC_URI="${SRC_URI}
@@ -172,8 +177,6 @@ DEPEND="${CDEPEND}
x86? ( >=dev-lang/nasm-2.13 )
)"
 
-REQUIRED_USE="wifi? ( dbus )
-   pgo? ( lto )"
 
 S="${WORKDIR}/firefox-${PV%_*}"
 

diff --git a/www-client/firefox/firefox-70.0.1.ebuild 
b/www-client/firefox/firefox-70.0.1.ebuild
index e043eb80210..014e8e10c90 100644
--- a/www-client/firefox/firefox-70.0.1.ebuild
+++ b/www-client/firefox/firefox-70.0.1.ebuild
@@ -56,7 +56,11 @@ IUSE="bindist clang cpu_flags_x86_avx2 debug eme-free 
geckodriver
+screenshot selinux startup-notification +system-av1
+system-harfbuzz +system-icu +system-jpeg +system-libevent
+system-sqlite +system-libvpx +system-webp test wayland wifi"
-RESTRICT="!bindist? ( bindist )"
+
+REQUIRED_USE="pgo? ( lto )"
+
+RESTRICT="!bindist? ( bindist )
+   !test? ( test )"
 
 PATCH_URIS=( 
https://dev.gentoo.org/~{anarchy,axs,polynomial-c,whissi}/mozilla/patchsets/${PATCH}.tar.xz
 )
 SRC_URI="${SRC_URI}
@@ -174,9 +178,6 @@ DEPEND="${CDEPEND}
x86? ( >=dev-lang/nasm-2.13 )
)"
 
-REQUIRED_USE="pgo? ( lto )"
-
-RESTRICT="!test? ( test )"
 
 S="${WORKDIR}/firefox-${PV%_*}"
 



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

2019-11-02 Thread Thomas Deutschmann
commit: bd593ec9d55c22256617c1adbd78921ea2671451
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov  2 12:46:11 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov  2 12:52:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd593ec9

www-client/firefox: drop old

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

 www-client/firefox/Manifest|  92 
 www-client/firefox/firefox-70.0.ebuild | 801 -
 2 files changed, 893 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 7be77c8d188..1a4f077c093 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -369,98 +369,7 @@ DIST firefox-68.2.0esr-xh.xpi 470415 BLAKE2B 
75be1c5f0291255b6449e6dc6e6c1a362f5
 DIST firefox-68.2.0esr-zh-CN.xpi 536450 BLAKE2B 
6afaf3d33d6f9e26b5e4f33257829997f90f183073959bd80e042cc27cbd77ff479e2dbeb30cbed389155efa77f53141ba730519ae4519ff0d5a401ec66f77b2
 SHA512 
83d35262dd37856d2cfd0e2fcb1130e0e9937b09bec6db5d3def61352d1f2839245f72c754fc287efc705225eed4c77f4ebc7eeecc552a04d069436c1f33b711
 DIST firefox-68.2.0esr-zh-TW.xpi 535872 BLAKE2B 
ca8a08540e00ec1c6f6b0445ae305fd95e84483f9e4aff1a974466b8b01364833adda1edb407cddfec6cb62737be6e91a1f6572ff9233869d16f21c8d792e47e
 SHA512 
1ebf8dd903ca970a94385ff79ab1c0ac5a372982289e58bdb2af784e9b058edb17d1758112039787f7a8e28e6cc83364acd5d93219b7cbeb2c1ba0394dcf8f94
 DIST firefox-68.2.0esr.source.tar.xz 312103756 BLAKE2B 
03e336cdc04ab69f4144e715d3882178b3804cf3288fa58b8e285e4fe06729281dd4c5604d4659e7b257d7314afdb3fe907dffd38f6c3423675bc90e7d19cf0c
 SHA512 
f6522ca6b9efa3fdeb866912ab9cb904eaace5806c606d5721cba23aebd679885670011c743ca8d381b579b728077182dc766f9b6d3b31ccf51c3eb583c547ee
-DIST firefox-70.0-ach.xpi 488104 BLAKE2B 
a17e2e32332c577444bcf9cd015a82285e3253b61bb4a4aaff675beb200d8c8bb0b953540b7ae02bcdc510607016e84c433fe40869189ae01472889996f0b5f5
 SHA512 
6728b2d0d992ca96dbfa966e91c84f132598f2a75aefb3ad1b76f5df3280fcf6e3ba1385af0040354a522de9aa5202663e49bf07f6615eee402a33ad931e9335
-DIST firefox-70.0-af.xpi 456543 BLAKE2B 
587413e50d9e1338985325542afd9f47ec07decf58aa55292e7e4c1c94f3ce150326e66bc3f3e26d2bb295f268aad04ae92d3fe290d38c3f45b02df140cd0a09
 SHA512 
6997fd5600bc2affe2a5b5a96995a9f0541204aa40f5df683d3bf6e615eeef940a84c61a39bdcdd59588c4d0d002022b4da5ec5dc2423b546dc6d92e13b944c4
-DIST firefox-70.0-an.xpi 499801 BLAKE2B 
46335aea1c6d39d428fbc82371bd5d69867163a37215e984b529b13b56e27c530a0758d92693f6b17821c139b838b65c42f2e6457fbd270c160eb32fa3f91003
 SHA512 
0026d8622c5e1480c7e71d9443b3e89545baf1b992c8756664088b15bed6038158402b44ec54f88fb6fd7b3ac03e18d33380afbd8a50461f2b0f7a223afbf4bc
-DIST firefox-70.0-ar.xpi 564990 BLAKE2B 
a6ae28e4212cab24f0cb5e21bdf63f4ebd3b7c18b602ebe219ff20659ce6c934c16e8890c827a2c98b25cb646270e109c2307d457e80c31ced14855263a1de79
 SHA512 
47f54800b0e6f0cdeda6a501bed09311e019ed1a263fbebfb4a3fdd06c8bf8f2dc1a1bbe53ec24dcdd2fe3ef8b13f19a2e19cf2483ef488c4c08a4d12d2b8884
-DIST firefox-70.0-ast.xpi 496490 BLAKE2B 
296fd7bbb736dfaadf19493e5e3e81ecbea479d8d072a9dd8ce9ec515e71cd7d4e98cc641e253c171f1fdda95256925baa603ae3e6cabad43d121d8a49ded7a2
 SHA512 
8030ac5f09a6218e364658f964c5a868c90542a08b2721aa50d01e07cfcbb0d5c090d41cf0b760026aba75130dc6bcb6f1539aa8abeace74369ef72559b5a924
-DIST firefox-70.0-az.xpi 528700 BLAKE2B 
1b95b166c63f8df3b04172fed936fbef41cd989d4e42ae4d78e7fed4f25bfcc62137f25a1c6fd89584652f4a637b55ba9e0b1eb6ed10b408d9f27ae768883ee1
 SHA512 
91679783d34546d86eb0eee51732e9a66412d1b02fdba63b230fb6fef751e0d48167997102855d8c96cee99b69a86df341a2811807075a30aeedc423d0fc4fef
-DIST firefox-70.0-be.xpi 621214 BLAKE2B 
90fcca60e0928a98fb0521b0b931b16729812b8319e4269fac42b7481595ee108fc8bbeb6b989bf79ceb773bbb730158cd45e19f68a1f49a38c0876b9cb8535a
 SHA512 
f6b47be53e3c123b1970ca0269c0ae99fe1e5a6499aa98a0f9ac2c029acb9a009e88a1aaa325a049cd0fc2bee82c6c2e16a0e7f6528bd1d9d99a53c248a4b383
-DIST firefox-70.0-bg.xpi 579400 BLAKE2B 
42c6ef8a3c124b2fabe04907923d960dae8ab99e9cfa44cf0edfdc2e4cce53ab4539b349c2f45bc633754de3bad9f5b396c4ecf2bf7fcb9ad3e4e722a866214b
 SHA512 
34777858cade099ae5207a5a4671c8efa0cb6f0169e2f56cd244ced5c3e3e9c519502e2cdec56b7ca4b08546549f69415f0d0ace4b3bc7900f7d2382775cf62c
-DIST firefox-70.0-bn.xpi 598557 BLAKE2B 
e88cfe1532d77e69b546e29456ff222a75c03a3e30cf284780e7678a1bffc696252a9431c8111f674302574f627447c092d16dfea2ddbb92abcf29245b4c87fc
 SHA512 
3ed2975f462ffd4ee97bc674d9ce7cd42944c6355210609d3ae747afb44ec6ac13ded9291d81469404a831eb493ea643b396f8d348655e30fdb199b73eed1e64
-DIST firefox-70.0-br.xpi 528416 BLAKE2B 
91b3cabfd47c30c53e73af1245ad5371d1c1071687744a281236361aadb1d69b6795a519c47fdefd95f4fb8f0ca3772cad71e98e49fc0be2caead398823f3abf
 SHA512 
019fca3437203bc2e9add51b9afc7f144fd0d5ff1f2ac08ff9a91085d1122c21f9135572069bd1d93ec9e59706cd24461c637286df759d84319b5eb4c2b022b7
-DIST firefox-70.0-bs.xpi 499848 BLAKE2B 

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

2019-11-02 Thread Michał Górny
commit: 95f3d2d96181cf192b59ad1672041b977c64df72
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  2 12:03:36 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  2 12:04:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f3d2d9

dev-util/cmake: Add missing RESTRICT="!test? ( test )"

Signed-off-by: Michał Górny  gentoo.org>

 dev-util/cmake/cmake-3.16.0_rc3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/cmake/cmake-3.16.0_rc3.ebuild 
b/dev-util/cmake/cmake-3.16.0_rc3.ebuild
index 8379ddfb933..d9456163e0e 100644
--- a/dev-util/cmake/cmake-3.16.0_rc3.ebuild
+++ b/dev-util/cmake/cmake-3.16.0_rc3.ebuild
@@ -18,6 +18,7 @@ SLOT="0"
 [[ "${PV}" = *_rc* ]] || \
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs system-jsoncpp ncurses qt5 test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
app-crypt/rhash



[gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/, media-tv/tvheadend/files/

2019-11-02 Thread James Le Cuirot
commit: 1d77ca72c6de413343b61c2a4658b20f2fda8fc4
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov  2 11:52:01 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov  2 12:04:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d77ca72

media-tv/tvheadend: Add Python 3 and GCC 9 patches from RPM Fusion

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: James Le Cuirot  gentoo.org>

 .../tvheadend/files/tvheadend-4.2.7-python3.patch  | 91 ++
 .../tvheadend/files/tvheadend-4.2.8-gcc9.patch | 36 +
 media-tv/tvheadend/tvheadend-4.2.8.ebuild  |  2 +
 media-tv/tvheadend/tvheadend-.ebuild   |  1 +
 4 files changed, 130 insertions(+)

diff --git a/media-tv/tvheadend/files/tvheadend-4.2.7-python3.patch 
b/media-tv/tvheadend/files/tvheadend-4.2.7-python3.patch
new file mode 100644
index 000..752b17ba08f
--- /dev/null
+++ b/media-tv/tvheadend/files/tvheadend-4.2.7-python3.patch
@@ -0,0 +1,91 @@
+diff -up ./lib/py/tvh/tsreader.py.orig ./lib/py/tvh/tsreader.py
+--- ./lib/py/tvh/tsreader.py.orig  2018-10-08 14:37:05.0 +0200
 ./lib/py/tvh/tsreader.py   2018-10-15 11:53:53.766850060 +0200
+@@ -31,7 +31,7 @@ def encode_utf8(c):
+ 
+ def conv_8859(tnum, data):
+ r = u''
+-print 'TBL %d' % tnum
++print('TBL %d' % tnum)
+ tbl = conv_8859_table[tnum]
+ for c in data:
+ if ord(c) <= 0x7f:
+@@ -46,8 +46,8 @@ def conv_8859(tnum, data):
+ 
+ 
+ def dvb_convert_string(data, conv):
+-print 'convert(%d)' % conv
+-print repr(data)
++print('convert(%d)' % conv)
++print(repr(data))
+ if not conv:
+ return data
+ return conv_8859(conv, data)
+@@ -83,8 +83,8 @@ class TsSection(object):
+ # print self.tid, self.len, len(data)
+ 
+ def process(self):
+-print 'TS Section:'
+-print self.tid, self.len, len(self.data)
++print('TS Section:')
++print(self.tid, self.len, len(self.data))
+ # print str2hex(self.data, 16)
+ # print self.data
+ 
+@@ -112,7 +112,7 @@ class TsSection(object):
+ if l + 1 > dlen:
+ return (None, -1)
+ c = ord(data[1])
+-print c
++print(c)
+ conv = None
+ if c == 0:
+ return (None, -1)
+@@ -162,14 +162,14 @@ class TsSection(object):
+ eid = (hdr[0] << 8) + hdr[1]
+ start = dvb_convert_date(hdr[2:])
+ 
+-print 'process event (%d):' % dllen
+-print '  EID   :   %d' % eid
+-print '  START : %d' % start
++print('process event (%d):' % dllen)
++print('  EID   :   %d' % eid)
++print('  START : %d' % start)
+ 
+ while dllen > 2:
+ dtag = ord(data[0])
+ dlen = ord(data[1])
+-print 'dtag = 0x%02x, dlen = %d' % (dtag, dlen)
++print('dtag = 0x%02x, dlen = %d' % (dtag, dlen))
+ 
+ dllen = dllen - 2
+ data = data[2:]
+@@ -178,8 +178,8 @@ class TsSection(object):
+ 
+ if dtag == 0x4d:
+ (title, summary) = self.short_event(data, dlen)
+-print '  TITLE : %s' % title
+-print '  SUMMARY   : %s' % summary
++print('  TITLE : %s' % title)
++print('  SUMMARY   : %s' % summary)
+ 
+ dllen = dllen - dlen
+ data = data[dlen:]
+@@ -216,7 +216,7 @@ if __name__ == '__main__':
+ # Complete?
+ if cur:
+ if len(cur.data) >= cur.len:
+-print 'Process Section:'
++print('Process Section:')
+ # try:
+ cur.process()
+ # except: pass
+@@ -224,7 +224,7 @@ if __name__ == '__main__':
+ print
+ sys.exit(0)
+ else:
+-print 'waiting for %d bytes' % (cur.len - len(cur.data))
++print('waiting for %d bytes' % (cur.len - len(cur.data)))
+ 
+ # Next
+ if nxt:

diff --git a/media-tv/tvheadend/files/tvheadend-4.2.8-gcc9.patch 
b/media-tv/tvheadend/files/tvheadend-4.2.8-gcc9.patch
new file mode 100644
index 000..9ccadb44c42
--- /dev/null
+++ b/media-tv/tvheadend/files/tvheadend-4.2.8-gcc9.patch
@@ -0,0 +1,36 @@
+diff -up ./src/plumbing/transcoding.c.orig ./src/plumbing/transcoding.c
+--- ./src/plumbing/transcoding.c.orig  2019-01-12 09:58:47.0 +0100
 ./src/plumbing/transcoding.c   2019-03-12 15:49:24.922314869 +0100
+@@ -1804,7 +1804,7 @@ transcoder_init_video(transcoder_t *t, s
+   char *str, *token, *saveptr, codec_list[sizeof(tp->tp_src_vcodec)];
+   int codec_match=0;
+ 
+-  strncpy(codec_list, tp->tp_src_vcodec, sizeof(tp->tp_src_vcodec)-1);
++  memcpy(codec_list, tp->tp_src_vcodec, sizeof(tp->tp_src_vcodec)-1);
+ 
+   tvhtrace(LS_TRANSCODE, "src_vcodec=\"%s\" ssc_type=%d (%s)\n",
+ tp->tp_src_vcodec,
+@@ -2130,10 

[gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/files/, media-tv/tvheadend/

2019-11-02 Thread James Le Cuirot
commit: 7cafcb0803138fba20bc535c732115d6658a9b93
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov  2 12:02:57 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov  2 12:04:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cafcb08

media-tv/tvheadend: Take upstream patch for libhdhomerun-20190621

Closes: https://bugs.gentoo.org/698592
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: James Le Cuirot  gentoo.org>

 .../files/tvheadend-4.2.8-hdhomerun.patch  | 29 ++
 media-tv/tvheadend/tvheadend-4.2.8.ebuild  |  2 +-
 2 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/media-tv/tvheadend/files/tvheadend-4.2.8-hdhomerun.patch 
b/media-tv/tvheadend/files/tvheadend-4.2.8-hdhomerun.patch
new file mode 100644
index 000..c30af8aba2a
--- /dev/null
+++ b/media-tv/tvheadend/files/tvheadend-4.2.8-hdhomerun.patch
@@ -0,0 +1,29 @@
+From 13cd23c371e3377973502f8dc65654b6a0ff372b Mon Sep 17 00:00:00 2001
+From: Michael Marley 
+Date: Wed, 26 Jun 2019 19:35:50 -0400
+Subject: [PATCH] Fix compilation with libhdhomerun 20190621
+
+They renamed the symbol that was used to determine whether the
+"hdhomerun_discover_find_devices_custom" needed to be aliased,
+causing an FTBFS.  Instead, recognize both the old and new symbols.
+---
+ src/input/mpegts/tvhdhomerun/tvhdhomerun.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/src/input/mpegts/tvhdhomerun/tvhdhomerun.c 
b/src/input/mpegts/tvhdhomerun/tvhdhomerun.c
+index 58dec51ab..18068faf5 100644
+--- a/src/input/mpegts/tvhdhomerun/tvhdhomerun.c
 b/src/input/mpegts/tvhdhomerun/tvhdhomerun.c
+@@ -32,7 +32,8 @@
+ 
+ #include "config.h"
+ 
+-#ifdef HDHOMERUN_TAG_DEVICE_AUTH_BIN
++#if defined(HDHOMERUN_TAG_DEVICE_AUTH_BIN) \
++   || defined(HDHOMERUN_TAG_DEVICE_AUTH_BIN_DEPRECATED)
+ #define hdhomerun_discover_find_devices_custom \
+hdhomerun_discover_find_devices_custom_v2
+ #endif
+-- 
+2.23.0
+

diff --git a/media-tv/tvheadend/tvheadend-4.2.8.ebuild 
b/media-tv/tvheadend/tvheadend-4.2.8.ebuild
index 4a49b1460b5..a20bac30f22 100644
--- a/media-tv/tvheadend/tvheadend-4.2.8.ebuild
+++ b/media-tv/tvheadend/tvheadend-4.2.8.ebuild
@@ -47,7 +47,7 @@ REQUIRED_USE="dvbcsa? ( || ( capmt constcw cwc dvben50221 ) )"
 
 PATCHES=(
"${FILESDIR}"/${PN}-4.0.9-use_system_queue.patch
-   "${FILESDIR}"/${PN}-4.2.1-hdhomerun.patch
+   "${FILESDIR}"/${PN}-4.2.{1,8}-hdhomerun.patch
"${FILESDIR}"/${PN}-4.2.2-dtv_scan_tables.patch
"${FILESDIR}"/${PN}-4.2.7-python3.patch
"${FILESDIR}"/${PN}-4.2.8-gcc9.patch



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

2019-11-02 Thread Nicolas Bock
commit: f4d79241c6f3ad661ca98ee32e95cd185a625744
Author: Nicolas Bock  gentoo  org>
AuthorDate: Sat Nov  2 12:02:34 2019 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Sat Nov  2 12:03:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4d79241

mail-client/neomutt: Version bump to 20191102

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Nicolas Bock  gentoo.org>

 mail-client/neomutt/Manifest|   1 +
 mail-client/neomutt/neomutt-20191102.ebuild | 129 
 2 files changed, 130 insertions(+)

diff --git a/mail-client/neomutt/Manifest b/mail-client/neomutt/Manifest
index 0fdc563bc43..3346ff5f0b3 100644
--- a/mail-client/neomutt/Manifest
+++ b/mail-client/neomutt/Manifest
@@ -1,3 +1,4 @@
+DIST 20191102.tar.gz 3224856 BLAKE2B 
ff645bb0521f97e7935aef3e3b286643e30e78e10c6322b93da635cdba82496c3bc8f8b4b95fb4c197439bae3ddcfb5b207803900ab434e01b63e9989a5f2458
 SHA512 
fa4f488110560b25a4d208cf059c44bdfb514b4904964a0928f1491afc2b0d748fa7075d8465e066683f44a5741454b9c73391ecfe20842aae34f3848b9c0bc8
 DIST neomutt-20180512.tar.gz 2758674 BLAKE2B 
47a8d1fe5d5e2725a6ee868b937eea3807ab35dc8eefe47f0d9b1db3aeaa97e69c36e3b8544fc43f1ce0a9980017d654bace8d342094fd7d26ecdb13cdf54253
 SHA512 
033faa27b01998895d2452d541ed5942cf7dede7a935fc807e6a7f88f3a8c182ea0ab5b4ed7db852ff2afb4d3b990db05477d9ff0dcf7dee186c393244d1db66
 DIST neomutt-20180622.tar.gz 2769280 BLAKE2B 
57e708a0502d8de795a08150dd92c4b2a8ba9d0594102f4d4d4b183f29caad147e233586882ca68aa23df6e69b0c55345120ca40ddc9db80e76c734409ff5a3b
 SHA512 
8085bf2bcf25ee4a4531cc5f950f862f58e3bf6ebfb96450479132ed60b4d87e35bc54f9b5e110d93dbd8e9684c1eceb36012753fc7bf5d3fb5046d9d42b69e0
 DIST neomutt-20180716.tar.gz 2778105 BLAKE2B 
b367407baf2187347971a0327a0c037861f648ebef12ce7b006b756bf60e696ff7a2c986848a9f15815aa95638dd5a3a90f47e97a9c0573950be8cdcc93b13ad
 SHA512 
ee4093217cc1409262b96ab33ed78a38f5c6a72f62fcd7b25027f9373687ce67af8a4e1793b1d7d843bee5b4a7e0c69b30b3badf88a4e1a8fadd8b21441faaae

diff --git a/mail-client/neomutt/neomutt-20191102.ebuild 
b/mail-client/neomutt/neomutt-20191102.ebuild
new file mode 100644
index 000..adc571a3be8
--- /dev/null
+++ b/mail-client/neomutt/neomutt-20191102.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic
+
+if [[ ${PV} =~ $ ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/neomutt/neomutt.git;
+   EGIT_CHECKOUT_DIR="${WORKDIR}/neomutt-${P}"
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="A small but very powerful text-based mail client"
+HOMEPAGE="https://neomutt.org/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="berkdb doc gdbm gnutls gpgme idn kerberos kyotocabinet libressl
+   lmdb nls notmuch pgp-classic qdbm sasl selinux slang smime-classic
+   ssl tokyocabinet"
+
+CDEPEND="
+   app-misc/mime-types
+   berkdb? (
+   || (
+   sys-libs/db:6.2
+   sys-libs/db:5.3
+   sys-libs/db:4.8
+   )
+   =net-libs/gnutls-1.0.17 )
+   gpgme? ( >=app-crypt/gpgme-0.9.0 )
+   idn? ( net-dns/libidn:= )
+   kerberos? ( virtual/krb5 )
+   notmuch? ( net-mail/notmuch )
+   sasl? ( >=dev-libs/cyrus-sasl-2 )
+   !slang? ( sys-libs/ncurses:0 )
+   slang? ( sys-libs/slang )
+   ssl? (
+   !libressl? ( >=dev-libs/openssl-0.9.6:0 )
+   libressl? ( dev-libs/libressl )
+   )
+"
+DEPEND="${CDEPEND}
+   dev-lang/tcl
+   net-mail/mailbase
+   doc? (
+   dev-libs/libxml2
+   dev-libs/libxslt
+   app-text/docbook-xsl-stylesheets
+   || ( www-client/lynx www-client/w3m www-client/elinks )
+   )"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-mutt )
+"
+
+src_configure() {
+   local myconf=(
+   "$(use_enable doc)"
+   "$(usex doc --full-doc)"
+   "$(use_enable nls)"
+   "$(use_enable notmuch)"
+
+   "$(use_enable gpgme)"
+   "$(use_enable pgp-classic pgp)"
+   "$(use_enable smime-classic smime)"
+
+   # Database backends.
+   "$(use_enable berkdb bdb)"
+   "$(use_enable gdbm)"
+   "$(use_enable kyotocabinet)"
+   "$(use_enable qdbm)"
+   "$(use_enable tokyocabinet)"
+
+   "$(use_enable idn)"
+   "$(use_enable kerberos gss)"
+   "$(use_enable lmdb)&

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

2019-11-02 Thread Mikle Kolyada
commit: 7e62043cc015953df2336d37c144168c467170d4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov  2 11:58:05 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov  2 11:58:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e62043c

x11-themes/arc-theme: mark stable

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 x11-themes/arc-theme/arc-theme-20190330.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/arc-theme/arc-theme-20190330.ebuild 
b/x11-themes/arc-theme/arc-theme-20190330.ebuild
index 6ceb36af4e7..1c13c2afb1e 100644
--- a/x11-themes/arc-theme/arc-theme-20190330.ebuild
+++ b/x11-themes/arc-theme/arc-theme-20190330.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/NicoHood/${PN}/releases/download/${PV}/${P}.tar.xz
pre-rendered? ( 
https://dev.gentoo.org/~chewi/distfiles/${P}-pngs.tar.xz )"
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="cinnamon gnome-shell +gtk2 +gtk3 mate +pre-rendered xfce"
 
 SASSC_DEPEND="



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

2019-11-02 Thread James Le Cuirot
commit: 390c169f15584a52facdbfa78a2e91f17b8c2397
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov  2 11:29:57 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov  2 11:50:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=390c169f

x11-themes/arc-theme: Version bump to 20190917

Bug: https://bugs.gentoo.org/699092
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: James Le Cuirot  gentoo.org>

 x11-themes/arc-theme/Manifest  |  2 +
 x11-themes/arc-theme/arc-theme-20190917.ebuild | 87 ++
 x11-themes/arc-theme/metadata.xml  |  2 +-
 3 files changed, 90 insertions(+), 1 deletion(-)

diff --git a/x11-themes/arc-theme/Manifest b/x11-themes/arc-theme/Manifest
index c23a91d5bf6..a52dc02a5ac 100644
--- a/x11-themes/arc-theme/Manifest
+++ b/x11-themes/arc-theme/Manifest
@@ -1,2 +1,4 @@
 DIST arc-theme-20190330-pngs.tar.xz 87632 BLAKE2B 
a860abe61d98c1ba2c7e13d21cb24e74e110b4e075eb53fc0d34b5e84eeed345a9b32e948e673b445d15e74b4c27991408139861b2d80124c8d97e417ecb3fb3
 SHA512 
0421530b99ebbe286e111477a056e17e7aa23a63e8c7d63443c4ffcdcb053f191a05fd16e54d9fa4efa9d1c870ff500ffb0c519d6604d6d7294cc1da711de5ba
 DIST arc-theme-20190330.tar.xz 227936 BLAKE2B 
35815019884c55ce2d22dbb2d78892c00b35839b017fb7f0c1e9e1f1bad1bf94703e0c15205045eed96add556381c28fdd702c7657226fd75492304abaafd41d
 SHA512 
ac4f1bde028e027314004999502dcc914abf6070ffd4345021df486084de2c943e6c110776b3b6af55143962a40b368c060a11754ffaf30300b87cb923bc55b9
+DIST arc-theme-20190917-pngs.tar.xz 87664 BLAKE2B 
8f4cd7cf4eaeef6e71113178776e35f81df1c7a86c5a4e1727ddac9e2c18f81ff51f0b8c2ca578c176fddb969fcbdef7135080c1a8851f56e1b1a33d8c2b86e6
 SHA512 
5ded6dd5f0c7067c8abefef8fae4620caf795f10b5fe46c30ab7b430379f3b3e2eb27ec85c752bb4a77288a640bcf6a5f4d60e19a97f96af1b31143014afde37
+DIST arc-theme-20190917.tar.xz 308592 BLAKE2B 
0ca3b6bb9c501891243755984799c404645a524fd5e65e6ed5d509d3c3b0b54d60a2219030b86d6e8a19a12106da832ff4a4fcd35ff1f02766b57d104e9e642b
 SHA512 
da3e98e696160542fc77678193ff4fdeecc1cab7b4c1ec57e1bd850486a80547e1d688c9784f5ef422f097449f1105c071a3ff917c25a6a315fe970bedf10c6f

diff --git a/x11-themes/arc-theme/arc-theme-20190917.ebuild 
b/x11-themes/arc-theme/arc-theme-20190917.ebuild
new file mode 100644
index 000..99e91d87192
--- /dev/null
+++ b/x11-themes/arc-theme/arc-theme-20190917.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# USE="-* gtk2 gtk3 xfce" ebuild ${P}.ebuild clean compile
+# cd ~portage/x11-themes/${P}/work
+# make -j -C ${P}/common/gtk-3.0/3.18
+# find ${P}/common/{gtk-2.0,gtk-3.0/3.*,xfwm4} -name "*.png" ! -path 
"*/menubar-toolbar/*" | xargs tar Jcvf /usr/portage/distfiles/${P}-pngs.tar.xz
+
+inherit autotools
+
+DESCRIPTION="A flat theme with transparent elements for GTK+3, GTK+2 and GNOME 
Shell"
+HOMEPAGE="https://github.com/arc-design/arc-theme;
+SRC_URI="https://github.com/arc-design/${PN}/releases/download/${PV}/${P}.tar.xz
+   pre-rendered? ( 
https://dev.gentoo.org/~chewi/distfiles/${P}-pngs.tar.xz )"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="cinnamon gnome-shell +gtk2 +gtk3 mate +pre-rendered xfce"
+
+SASSC_DEPEND="
+   dev-lang/sassc
+"
+
+SVG_DEPEND="
+   !pre-rendered? (
+   media-gfx/inkscape
+   media-gfx/optipng
+   )
+"
+
+# Supports various GTK+3 versions and uses pkg-config to determine which
+# set of files to install. Updates will break it but only this fix will
+# help. See https://github.com/horst3180/arc-theme/pull/436. The same
+# applies to GNOME Shell but I don't know whether that's fixable.
+BDEPEND="
+   cinnamon? (
+   ${SASSC_DEPEND}
+   )
+   gnome-shell? (
+   ${SASSC_DEPEND}
+   >=gnome-base/gnome-shell-3.18
+   )
+   gtk2? (
+   ${SVG_DEPEND}
+   )
+   gtk3? (
+   ${SASSC_DEPEND}
+   ${SVG_DEPEND}
+   virtual/pkgconfig
+   >=x11-libs/gtk+-3.18:3
+   )
+   xfce? (
+   ${SVG_DEPEND}
+   )
+"
+
+# gnome-themes-standard is only needed by GTK+2 for the Adwaita
+# engine. This engine is built into GTK+3.
+RDEPEND="
+   gtk2? (
+   x11-themes/gnome-themes-standard
+   x11-themes/gtk-engines-murrine
+   )
+"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   use pre-rendered &&
+   export INKSCAPE="${BROOT}"/bin/false 
OPTIPNG="${BROOT}"/bin/false
+
+   econf \
+   --disable-openbox \
+   --disable-plank \
+   --disable-unity \
+   $(use_enable cinnamon) \
+   $(use_enable gtk2) \
+   $(use_enable gtk3) \
+   $(use_enable gnome-shell) \
+   $(use_enable mate metacity) \
+   $(use_enable xfce 

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

2019-11-02 Thread James Le Cuirot
commit: b325703f8b9910150bb9b823245f39203ed388b5
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov  2 11:27:26 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov  2 11:50:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b325703f

profiles: Mask x11-themes/arc-theme[gnome-shell] in SELinux profiles

gnome-base/gnome-shell is also masked here.

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/profiles/features/selinux/package.use.mask 
b/profiles/features/selinux/package.use.mask
index 508d530d08a..6c6cd0f280d 100644
--- a/profiles/features/selinux/package.use.mask
+++ b/profiles/features/selinux/package.use.mask
@@ -29,5 +29,6 @@ app-misc/workrave gnome
 net-misc/wicd gnome-shell
 x11-misc/gpaste gnome
 x11-terms/gnome-terminal gnome-shell
+x11-themes/arc-theme gnome-shell
 x11-themes/zukitwo gnome-shell
 net-wireless/bluez user-session



[gentoo-commits] repo/gentoo:master commit in: x11-themes/papirus-icon-theme/

2019-11-02 Thread Mikle Kolyada
commit: 16af40f5d1f7a5ca294612afa5d050debdce9a53
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov  2 11:50:05 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov  2 11:50:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16af40f5

x11-themes/papirus-icon-theme: Version bump (v20191101)

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 x11-themes/papirus-icon-theme/Manifest |  1 +
 .../papirus-icon-theme-20191101.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/x11-themes/papirus-icon-theme/Manifest 
b/x11-themes/papirus-icon-theme/Manifest
index db4b1cd7280..9037927f2db 100644
--- a/x11-themes/papirus-icon-theme/Manifest
+++ b/x11-themes/papirus-icon-theme/Manifest
@@ -1 +1,2 @@
 DIST papirus-icon-theme-20191009.tar.gz 18636796 BLAKE2B 
cb1797468ffb1542fb6b732a0e54cf18b4158bf15ee0fd7f2c7616cba8568876bdfff0247fc1f311d15f064836d7a17916ac14887c3f4132983ebc7e75736668
 SHA512 
09d259783439721baf68bb5c65cc9cb51af148356e8c8c277ba2f45b5c96358f14defe1bb34db0281cb0cf77023ab54017e0d348de2910648a918a1638ae334f
+DIST papirus-icon-theme-20191101.tar.gz 20072061 BLAKE2B 
457d47e16ce2c4465c8d23e46bbbc0753351442415be0a8293880d33909beb06b53d4ceb4e13eb2fb4fc1c453c0cc71bb313f7506deba3fec0f98cd47cf75150
 SHA512 
abbf3c6b248abd6945e7397ea53fe92e645d74918f6fa6f54e3701e560d75e94ac75c2e9d01d5bed7c989af8e14ea9dff4dba018956aaff43291d45fc7ab9e4d

diff --git a/x11-themes/papirus-icon-theme/papirus-icon-theme-20191101.ebuild 
b/x11-themes/papirus-icon-theme/papirus-icon-theme-20191101.ebuild
new file mode 100644
index 000..8afbb557b0c
--- /dev/null
+++ b/x11-themes/papirus-icon-theme/papirus-icon-theme-20191101.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome2-utils
+
+DESCRIPTION="icon theme for Linux"
+HOMEPAGE="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
+SRC_URI="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_compile() { :; }
+
+src_install() {
+   insinto /usr/share/icons
+   doins -r ePapirus Papirus{,-Dark,-Light}
+
+}
+
+pkg_preinst() { gnome2_icon_savelist; }
+pkg_postinst() { gnome2_icon_cache_update; }
+pkg_postrm() { gnome2_icon_cache_update; }



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

2019-11-02 Thread Mikle Kolyada
commit: cdbb5b6795858e102bc0b7c03fdf65e4ab57e982
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov  2 11:45:45 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov  2 11:46:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdbb5b67

Revert "dev-python/pyyaml: remove insecure"

This reverts commit e4b4576d33480b691957813b6e937672ace88591.

Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-python/pyyaml/Manifest   |  2 ++
 dev-python/pyyaml/pyyaml-3.12.ebuild | 41 
 dev-python/pyyaml/pyyaml-3.13.ebuild | 41 
 3 files changed, 84 insertions(+)

diff --git a/dev-python/pyyaml/Manifest b/dev-python/pyyaml/Manifest
index 928e9d8b399..5a317e2d538 100644
--- a/dev-python/pyyaml/Manifest
+++ b/dev-python/pyyaml/Manifest
@@ -1 +1,3 @@
+DIST PyYAML-3.12.tar.gz 253011 BLAKE2B 
530f2910acb757af9e2a738d93ace45daee3fc5764f19fbc758508e873f05ebfa2486c4f82800540e5e405e7f114f06f963e5011908fd15014ca8b8afb3a76aa
 SHA512 
e16d8b7f4f026b6a95b11fb59c54ec5f114f6f516294eaa95e718abdf5d37c17a9c4b5e0a0a61fca04e801792d9b7fb801087cf849ff22b9581f6af204b1883a
+DIST PyYAML-3.13.tar.gz 270607 BLAKE2B 
f365f63587b911234497426c9796f98b85f5de052abd88ea434137a4eb8a4c1e08f9ee1982a30df1934dadb615145f4af8fcff577d3d4e52058e7a8843aa8604
 SHA512 
93642286d0317e2fe970632c36d38ce6030f7cabcf971f28e3a1054f07390fcee5baaf7f167e7c9690dbd7b2adc61f5b7d75a218ace0abca34ff8815486cfdd7
 DIST PyYAML-5.1.tar.gz 274244 BLAKE2B 
ea8cc4b56b9fc70bc7b01f8c654ceb8b73c82dcc936c939cba3c3654df04fe32fc46c7df322a38869d28ad5a58f6134b35cbe43924df3b4d5f3e54e33700dc73
 SHA512 
8f27f92bdfa310a99dd6d83947332cc033fa18f0011998bb585ad5c4340a2da20d8c20bfdb53beaae15651198d1240c986818379b0a05b230f74d1f30f53e7fd

diff --git a/dev-python/pyyaml/pyyaml-3.12.ebuild 
b/dev-python/pyyaml/pyyaml-3.12.ebuild
new file mode 100644
index 000..d010dd39cf6
--- /dev/null
+++ b/dev-python/pyyaml/pyyaml-3.12.ebuild
@@ -0,0 +1,41 @@
+# 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 )
+
+inherit distutils-r1
+
+MY_P="PyYAML-${PV}"
+
+DESCRIPTION="YAML parser and emitter for Python"
+HOMEPAGE="https://pyyaml.org/wiki/PyYAML https://pypi.org/project/PyYAML/;
+SRC_URI="https://pyyaml.org/download/${PN}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+IUSE="examples libyaml"
+
+RDEPEND="libyaml? ( dev-libs/libyaml )"
+DEPEND="${RDEPEND}
+   libyaml? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' 
python2_7 'python3*') )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_configure_all() {
+   mydistutilsargs=( $(use_with libyaml) )
+}
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}
+   fi
+}

diff --git a/dev-python/pyyaml/pyyaml-3.13.ebuild 
b/dev-python/pyyaml/pyyaml-3.13.ebuild
new file mode 100644
index 000..244c5cb8505
--- /dev/null
+++ b/dev-python/pyyaml/pyyaml-3.13.ebuild
@@ -0,0 +1,41 @@
+# 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,7} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_P="PyYAML-${PV}"
+
+DESCRIPTION="YAML parser and emitter for Python"
+HOMEPAGE="https://pyyaml.org/wiki/PyYAML https://pypi.org/project/PyYAML/;
+SRC_URI="https://pyyaml.org/download/${PN}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+IUSE="examples libyaml"
+
+RDEPEND="libyaml? ( dev-libs/libyaml )"
+DEPEND="${RDEPEND}
+   libyaml? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' 
python2_7 'python3*') )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_configure_all() {
+   mydistutilsargs=( $(use_with libyaml) )
+}
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}
+   fi
+}



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

2019-11-02 Thread Michał Górny
commit: c74fb98c07aa4bf07dfc3974de5549b3a28cf3ca
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  2 11:43:02 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  2 11:43:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74fb98c

metadata/layout.conf: Disallow RESTRICT=primaryuri

Bug: https://bugs.gentoo.org/696832
Signed-off-by: Michał Górny  gentoo.org>

 metadata/layout.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index ed70320df0d..89383a671c4 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # For details on this file, see the layout.conf section of the
@@ -6,7 +6,7 @@
 
 # Allow specific PROPERTIES and RESTRICT values in ebuilds.
 properties-allowed = interactive live
-restrict-allowed = binchecks bindist fetch installsources mirror preserve-libs 
primaryuri splitdebug strip test userpriv
+restrict-allowed = binchecks bindist fetch installsources mirror preserve-libs 
splitdebug strip test userpriv
 
 # manifest-hashes specify hashes used for new/updated entries
 # the current set went live on 2017-11-21, per 2017-11-12 Council meeting



[gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/

2019-11-02 Thread Michał Górny
commit: 25c02841f22cb191de145a0ca795a950345de8d9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  2 11:41:28 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  2 11:41:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c02841

app-arch/wimlib: Remove RESTRICT=primaryuri

Closes: https://bugs.gentoo.org/696826
Signed-off-by: Michał Górny  gentoo.org>

 app-arch/wimlib/wimlib-1.12.0.ebuild | 3 +--
 app-arch/wimlib/wimlib-1.13.0.ebuild | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild 
b/app-arch/wimlib/wimlib-1.12.0.ebuild
index 77b9c95e275..c8a393c4005 100644
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,6 @@ else
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> 
${P}.tar.gz"
-   RESTRICT="primaryuri"
KEYWORDS="~amd64 ~x86"
 fi
 

diff --git a/app-arch/wimlib/wimlib-1.13.0.ebuild 
b/app-arch/wimlib/wimlib-1.13.0.ebuild
index 9db9ef57d01..c8a393c4005 100644
--- a/app-arch/wimlib/wimlib-1.13.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.0.ebuild
@@ -12,7 +12,6 @@ else
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> 
${P}.tar.gz"
-   RESTRICT="primaryuri"
KEYWORDS="~amd64 ~x86"
 fi
 



  1   2   >