[gentoo-commits] proj/portage:master commit in: repoman/man/, repoman/lib/repoman/, repoman/lib/repoman/modules/scan/depend/, ...

2019-12-05 Thread Zac Medico
commit: 1b1e0fcf0adf4aab07083edcd3bc82a988732137
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec  5 22:23:28 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 07:20:29 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=1b1e0fcf

repoman: support profiles/package.deprecated (bug 702100)

Bug: https://bugs.gentoo.org/702100
Signed-off-by: Zac Medico  gentoo.org>

 repoman/cnf/qa_data/qa_data.yaml  |  1 +
 repoman/cnf/repository/qa_data.yaml   |  1 +
 repoman/lib/repoman/modules/scan/depend/_depend_checks.py | 14 ++
 repoman/lib/repoman/scanner.py|  4 
 repoman/man/repoman.1 |  3 +++
 5 files changed, 23 insertions(+)

diff --git a/repoman/cnf/qa_data/qa_data.yaml b/repoman/cnf/qa_data/qa_data.yaml
index 6aad56b8c..9a807aaf3 100644
--- a/repoman/cnf/qa_data/qa_data.yaml
+++ b/repoman/cnf/qa_data/qa_data.yaml
@@ -26,6 +26,7 @@ qahelp:
 badinexp: "User-visible ebuilds with unsatisfied dependencies (matched 
against *visible* ebuilds) in experimental arch"
 badmaskedinexp: "Masked ebuilds with unsatisfied dependencies (matched 
against *all* ebuilds) in experimental arch"
 badtilde: "Uses the ~ dep operator with a non-zero revision part, 
which is useless (the revision is ignored)"
+deprecated: "Ebuild has a dependency that refers to a deprecated 
package"
 equalsversion: "Suspicious =-dependency with a specific version and no 
rev. Please either use ~ if any revision is acceptable, or append -r0 to 
silence the warning."
 missingslot: "RDEPEND matches more than one SLOT but does not specify 
a slot and/or use the := or :* slot operator"
 perlcore: "This ebuild directly depends on a package in perl-core; it 
should use the corresponding virtual instead."

diff --git a/repoman/cnf/repository/qa_data.yaml 
b/repoman/cnf/repository/qa_data.yaml
index c96ce46a9..464482056 100644
--- a/repoman/cnf/repository/qa_data.yaml
+++ b/repoman/cnf/repository/qa_data.yaml
@@ -44,6 +44,7 @@ qawarnings:
 - dependency.badindev
 - dependency.badmaskedindev
 - dependency.badtilde
+- dependency.deprecated
 - dependency.equalsversion
 - dependency.missingslot
 - dependency.perlcore

diff --git a/repoman/lib/repoman/modules/scan/depend/_depend_checks.py 
b/repoman/lib/repoman/modules/scan/depend/_depend_checks.py
index 690b95aa0..e01024da2 100644
--- a/repoman/lib/repoman/modules/scan/depend/_depend_checks.py
+++ b/repoman/lib/repoman/modules/scan/depend/_depend_checks.py
@@ -108,6 +108,20 @@ def _depend_checks(ebuild, pkg, portdb, qatracker, 
repo_metadata, qadata):
not atom.cp.startswith("virtual/"):
unknown_pkgs.add((mytype, 
atom.unevaluated_atom))
 
+   if not atom.blocker:
+   all_deprecated = False
+   for pkg_match in 
portdb.xmatch("match-all", atom):
+   if 
any(repo_metadata['package.deprecated'].iterAtomsForPackage(pkg_match)):
+   all_deprecated = True
+   else:
+   all_deprecated = False
+   break
+
+   if all_deprecated:
+   qatracker.add_error(
+   'dependency.deprecated',
+   ebuild.relative_path + 
": '%s'" % atom)
+
if pkg.category != "virtual":
if not is_blocker and \
atom.cp in 
qadata.suspect_virtual:

diff --git a/repoman/lib/repoman/scanner.py b/repoman/lib/repoman/scanner.py
index 06234b0ad..5db54bb97 100644
--- a/repoman/lib/repoman/scanner.py
+++ b/repoman/lib/repoman/scanner.py
@@ -8,6 +8,7 @@ from itertools import chain
 import portage
 from portage import normalize_path
 from portage import os
+from portage._sets.base import InternalPackageSet
 from portage.output import green
 from portage.util.futures.extendedfutures import ExtendedFuture
 from repoman.metadata import get_metadata_xsd
@@ -93,6 +94,9 @@ class Scanner(object):
'profile_list': profile_list,
'pmaskdict': global_pmaskdict,
'lic_deprecated': liclist_deprecated,
+   'package.deprecated': 
InternalPackageSet(initial_atoms=portage.util.stack_lists(
+   
[portage.util.grabfile_package(os.path.join(path, 'profiles', 
'package.deprecated'), 

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

2019-12-05 Thread Zac Medico
commit: a1bdfbffd155baa4b946d2ce52ffb2021f903b23
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Dec  6 07:35:57 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 07:36:04 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a1bdfbff

repoman-2.3.20

Signed-off-by: Zac Medico  gentoo.org>

 repoman/RELEASE-NOTES | 7 +++
 repoman/setup.py  | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/repoman/RELEASE-NOTES b/repoman/RELEASE-NOTES
index eaba6a1d7..849cf6a42 100644
--- a/repoman/RELEASE-NOTES
+++ b/repoman/RELEASE-NOTES
@@ -1,6 +1,13 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+repoman-2.3.20
+==
+* Bug Fixes:
+- Bug 541076 repoman commit: ignore unadded hidden files
+- Bug 702100 repoman: support profiles/package.deprecated
+
+
 repoman-2.3.19
 ==
 * Bug Fixes:

diff --git a/repoman/setup.py b/repoman/setup.py
index c265dbe75..d8cf68a99 100755
--- a/repoman/setup.py
+++ b/repoman/setup.py
@@ -450,7 +450,7 @@ def get_manpages():
 
 setup(
name = 'repoman',
-   version = '2.3.19',
+   version = '2.3.20',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage: New tag: repoman-2.3.20

2019-12-05 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 07:53:46 2019 +

New tag: repoman-2.3.20




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

2019-12-05 Thread Zac Medico
commit: 7bb5d7b074164ceae5f03ddfb40881a7cc6f12dd
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Dec  6 07:45:55 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 07:52:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb5d7b0

app-portage/repoman: Bump to version 2.3.20

 #541076 repoman commit: ignore unadded hidden files
 #702100 repoman: support profiles/package.deprecated

Bug: https://bugs.gentoo.org/541076
Bug: https://bugs.gentoo.org/702100
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Zac Medico  gentoo.org>

 app-portage/repoman/Manifest  |  1 +
 app-portage/repoman/repoman-2.3.20.ebuild | 63 +++
 2 files changed, 64 insertions(+)

diff --git a/app-portage/repoman/Manifest b/app-portage/repoman/Manifest
index 12edf9acee7..9efbf2df3fd 100644
--- a/app-portage/repoman/Manifest
+++ b/app-portage/repoman/Manifest
@@ -3,3 +3,4 @@ DIST repoman-2.3.16.tar.bz2 86739 BLAKE2B 
dc3e3b5e72df751cfacc17e6f5c847160438a4
 DIST repoman-2.3.17.tar.bz2 86732 BLAKE2B 
95324a3513513349f3127b5c758766d3a05f9aa47ed9cbf1808a49b402b90004c469c2d621e5402358c307f53bfa04ac2873d0b3c5d6bc8548a092f9cde408b2
 SHA512 
a3c798482d5f91b61c979636876e8f127c5c84627b433c20343f359bc89b65b48f17fbe0d34fb0a8b9cbd3aabbacef71302ad87abc88763f51829e74a9d9f8fd
 DIST repoman-2.3.18.tar.bz2 86765 BLAKE2B 
99ba098b17d676a24c03cd37fb8aa81ce34e178af0973083e67196af88acb4473b0992e6c7706aefc20f4540c03544776fe74dcef7e6b1e1789ea95e43e457d4
 SHA512 
f041acc2f848f02a14cc8b50ad6e9b556db5a3409fb31b6d3e3e1755b44439252a90bee50e004f5921fd6326307c80a140a58e833bb6d902a603d96970cd6ef0
 DIST repoman-2.3.19.tar.bz2 87027 BLAKE2B 
af2cdab503f886a1c54770874fe21126f1a5465fac358505a3c5d17101046a0a0b1fcaa2575a1c5e52e3f93ef5fc1d0a44e0fc2dd2179b1b7d7583b4cca460fd
 SHA512 
240dded2dcc491e155cf33f701f900f3745fa37e2ce0de9bb9ec7fedf3a25b2002d2737156bc8945c95e8d612bbae5c01642868796026551e172201281d4beb9
+DIST repoman-2.3.20.tar.bz2 87313 BLAKE2B 
cc0ff9b651e01b12202b32d48979f42ffde6e8a7c72095a3f75228a54892bc11c521f015738443133bec223f9ca0faf5687388680ddfd19e07514f873094b0f9
 SHA512 
edb5564de920156fd89b4df136d86b73401d4d5cf591abc2fbbf97f0ebb7bb43ed17d076560a76a1f3269d19a64c7c52d48540134a9fb86d9fa952d1702e01e2

diff --git a/app-portage/repoman/repoman-2.3.20.ebuild 
b/app-portage/repoman/repoman-2.3.20.ebuild
new file mode 100644
index 000..55dce4a172b
--- /dev/null
+++ b/app-portage/repoman/repoman-2.3.20.ebuild
@@ -0,0 +1,63 @@
+# 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,8} )
+PYTHON_REQ_USE='bzip2(+)'
+
+inherit distutils-r1
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git;
+   S="${WORKDIR}/${P}/repoman"
+else
+   SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2;
+   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"
+fi
+
+DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   >=sys-apps/portage-2.3.80[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_test() {
+   esetup.py test
+}
+
+python_install() {
+   # Install sbin scripts to bindir for python-exec linking
+   # they will be relocated in pkg_preinst()
+   distutils-r1_python_install \
+   --system-prefix="${EPREFIX}/usr" \
+   --bindir="$(python_get_scriptdir)" \
+   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+   --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
+   --sbindir="$(python_get_scriptdir)" \
+   --sysconfdir="${EPREFIX}/etc" \
+   "${@}"
+}
+
+pkg_postinst() {
+   if [[ -z {REPLACING_VERSIONS} ]]; then
+   elog ""
+   elog "This release of repoman is from the new portage/repoman 
split"
+   elog "release code base."
+   elog "This new repoman code base is still being developed.  So 
its API's"
+   elog "are not to be considered stable and are subject to 
change."
+   elog "The code released has been tested and considered ready 
for use."
+   elog "This however does not guarantee it to be completely bug 
free."
+   elog "Please report any bugs you may encounter."
+   elog ""
+   fi
+}



[gentoo-commits] proj/qt:master commit in: dev-qt/qtdatavis3d/, dev-qt/qtscxml/, dev-qt/qtwidgets/, dev-qt/qdbus/, ...

2019-12-05 Thread Andreas Sturmlechner
commit: 49d6ef58ff4ced68007f933f8fa3a885b6d6e3d9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Dec  6 03:48:53 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Dec  6 07:36:18 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=49d6ef58

dev-qt: Drop Qt 5.14.0_beta3

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

 dev-qt/assistant/Manifest  |   1 -
 dev-qt/assistant/assistant-5.14.0_beta3.ebuild |  55 ---
 dev-qt/designer/Manifest   |   1 -
 dev-qt/designer/designer-5.14.0_beta3.ebuild   |  57 ---
 dev-qt/linguist-tools/Manifest |   1 -
 .../linguist-tools-5.14.0_beta3.ebuild |  35 
 dev-qt/linguist/Manifest   |   1 -
 dev-qt/linguist/linguist-5.14.0_beta3.ebuild   |  48 --
 dev-qt/pixeltool/Manifest  |   1 -
 dev-qt/pixeltool/pixeltool-5.14.0_beta3.ebuild |  25 ---
 dev-qt/qdbus/Manifest  |   1 -
 dev-qt/qdbus/qdbus-5.14.0_beta3.ebuild |  25 ---
 dev-qt/qdbusviewer/Manifest|   1 -
 dev-qt/qdbusviewer/qdbusviewer-5.14.0_beta3.ebuild |  45 --
 dev-qt/qdoc/Manifest   |   1 -
 dev-qt/qdoc/qdoc-5.14.0_beta3.ebuild   |  40 -
 dev-qt/qt3d/Manifest   |   1 -
 dev-qt/qt3d/qt3d-5.14.0_beta3.ebuild   |  34 
 dev-qt/qtbluetooth/Manifest|   1 -
 dev-qt/qtbluetooth/qtbluetooth-5.14.0_beta3.ebuild |  33 
 dev-qt/qtcharts/Manifest   |   1 -
 dev-qt/qtcharts/qtcharts-5.14.0_beta3.ebuild   |  29 
 dev-qt/qtconcurrent/Manifest   |   1 -
 .../qtconcurrent/qtconcurrent-5.14.0_beta3.ebuild  |  23 ---
 dev-qt/qtcore/Manifest |   1 -
 ...0_beta2-disable-hwrng-in-boostrapped-mode.patch |  31 
 dev-qt/qtcore/qtcore-5.14.0_beta3.ebuild   |  87 --
 dev-qt/qtdatavis3d/Manifest|   1 -
 dev-qt/qtdatavis3d/qtdatavis3d-5.14.0_beta3.ebuild |  31 
 dev-qt/qtdbus/Manifest |   1 -
 dev-qt/qtdbus/qtdbus-5.14.0_beta3.ebuild   |  43 -
 dev-qt/qtdeclarative/Manifest  |   1 -
 .../qtdeclarative-5.14.0_beta3.ebuild  |  53 ---
 dev-qt/qtdiag/Manifest |   1 -
 dev-qt/qtdiag/qtdiag-5.14.0_beta3.ebuild   |  36 -
 dev-qt/qtgamepad/Manifest  |   1 -
 dev-qt/qtgamepad/qtgamepad-5.14.0_beta3.ebuild |  35 
 dev-qt/qtgraphicaleffects/Manifest |   1 -
 .../qtgraphicaleffects-5.14.0_beta3.ebuild |  21 ---
 dev-qt/qtgui/Manifest  |   1 -
 dev-qt/qtgui/qtgui-5.14.0_beta3.ebuild | 176 -
 dev-qt/qthelp/Manifest |   1 -
 dev-qt/qthelp/qthelp-5.14.0_beta3.ebuild   |  29 
 dev-qt/qtimageformats/Manifest |   1 -
 .../qtimageformats-5.14.0_beta3.ebuild |  30 
 dev-qt/qtlocation/Manifest |   1 -
 dev-qt/qtlocation/qtlocation-5.14.0_beta3.ebuild   |  45 --
 dev-qt/qtmultimedia/Manifest   |   1 -
 .../qtmultimedia/qtmultimedia-5.14.0_beta3.ebuild  |  68 
 dev-qt/qtnetwork/Manifest  |   1 -
 dev-qt/qtnetwork/qtnetwork-5.14.0_beta3.ebuild |  60 ---
 dev-qt/qtnetworkauth/Manifest  |   1 -
 .../qtnetworkauth-5.14.0_beta3.ebuild  |  20 ---
 dev-qt/qtopengl/Manifest   |   1 -
 dev-qt/qtopengl/qtopengl-5.14.0_beta3.ebuild   |  34 
 dev-qt/qtpaths/Manifest|   1 -
 dev-qt/qtpaths/qtpaths-5.14.0_beta3.ebuild |  23 ---
 dev-qt/qtplugininfo/Manifest   |   1 -
 .../qtplugininfo/qtplugininfo-5.14.0_beta3.ebuild  |  23 ---
 dev-qt/qtpositioning/Manifest  |   1 -
 .../qtpositioning-5.14.0_beta3.ebuild  |  40 -
 dev-qt/qtprintsupport/Manifest |   1 -
 .../qtprintsupport-5.14.0_beta3.ebuild |  42 -
 dev-qt/qtquickcontrols/Manifest|   1 -
 .../qtquickcontrols-5.14.0_beta3.ebuild|  32 
 dev-qt/qtquickcontrols2/Manifest   |   1 -
 .../qtquickcontrols2-5.14.0_beta3.ebuild   |  30 
 dev-qt/qtscript/Manifest   |   1 -
 dev-qt/qtscript/qtscript-5.14.0_beta3.ebuild   |  36 -
 dev-qt/qtscxml/Manifest|   1 -
 dev-qt/qtscxml/qtscxml-5.14.0_beta3.ebuild |  19 ---
 dev-qt/qtsensors/Manifest  |   1 -
 dev-qt/qtsensors/qtsensors-5.14.0_beta3.ebuild |  28 
 dev-qt/qtserialbus/Manifest 

[gentoo-commits] proj/qt:master commit in: dev-qt/qtxml/, dev-qt/qtcharts/, dev-qt/qtwebengine/, dev-qt/qtnetwork/, ...

2019-12-05 Thread Andreas Sturmlechner
commit: 24354dd4c50b873b79df99e0ae7adb5928bb8508
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Dec  4 21:46:47 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Dec  6 03:52:51 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=24354dd4

dev-qt: Qt 5.14.0_rc version bump

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

 dev-qt/assistant/Manifest  |   1 +
 dev-qt/assistant/assistant-5.14.0_rc.ebuild|  55 +++
 dev-qt/designer/Manifest   |   1 +
 dev-qt/designer/designer-5.14.0_rc.ebuild  |  57 +++
 dev-qt/linguist-tools/Manifest |   1 +
 .../linguist-tools/linguist-tools-5.14.0_rc.ebuild |  35 
 dev-qt/linguist/Manifest   |   1 +
 dev-qt/linguist/linguist-5.14.0_rc.ebuild  |  48 ++
 dev-qt/pixeltool/Manifest  |   1 +
 dev-qt/pixeltool/pixeltool-5.14.0_rc.ebuild|  25 +++
 dev-qt/qdbus/Manifest  |   1 +
 dev-qt/qdbus/qdbus-5.14.0_rc.ebuild|  25 +++
 dev-qt/qdbusviewer/Manifest|   1 +
 dev-qt/qdbusviewer/qdbusviewer-5.14.0_rc.ebuild|  45 ++
 dev-qt/qdoc/Manifest   |   1 +
 dev-qt/qdoc/qdoc-5.14.0_rc.ebuild  |  40 +
 dev-qt/qt3d/Manifest   |   1 +
 dev-qt/qt3d/qt3d-5.14.0_rc.ebuild  |  34 
 dev-qt/qtbluetooth/Manifest|   1 +
 dev-qt/qtbluetooth/qtbluetooth-5.14.0_rc.ebuild|  33 
 dev-qt/qtcharts/Manifest   |   1 +
 dev-qt/qtcharts/qtcharts-5.14.0_rc.ebuild  |  29 
 dev-qt/qtconcurrent/Manifest   |   1 +
 dev-qt/qtconcurrent/qtconcurrent-5.14.0_rc.ebuild  |  23 +++
 dev-qt/qtcore/Manifest |   1 +
 dev-qt/qtcore/qtcore-5.14.0_rc.ebuild  |  83 ++
 dev-qt/qtdatavis3d/Manifest|   1 +
 dev-qt/qtdatavis3d/qtdatavis3d-5.14.0_rc.ebuild|  31 
 dev-qt/qtdbus/Manifest |   1 +
 dev-qt/qtdbus/qtdbus-5.14.0_rc.ebuild  |  43 +
 dev-qt/qtdeclarative/Manifest  |   1 +
 .../qtdeclarative/qtdeclarative-5.14.0_rc.ebuild   |  53 +++
 dev-qt/qtdiag/Manifest |   1 +
 dev-qt/qtdiag/qtdiag-5.14.0_rc.ebuild  |  36 +
 dev-qt/qtgamepad/Manifest  |   1 +
 dev-qt/qtgamepad/qtgamepad-5.14.0_rc.ebuild|  35 
 dev-qt/qtgraphicaleffects/Manifest |   1 +
 .../qtgraphicaleffects-5.14.0_rc.ebuild|  21 +++
 dev-qt/qtgui/Manifest  |   1 +
 dev-qt/qtgui/qtgui-5.14.0_rc.ebuild| 176 +
 dev-qt/qthelp/Manifest |   1 +
 dev-qt/qthelp/qthelp-5.14.0_rc.ebuild  |  29 
 dev-qt/qtimageformats/Manifest |   1 +
 .../qtimageformats/qtimageformats-5.14.0_rc.ebuild |  30 
 dev-qt/qtlocation/Manifest |   1 +
 dev-qt/qtlocation/qtlocation-5.14.0_rc.ebuild  |  45 ++
 dev-qt/qtmultimedia/Manifest   |   1 +
 dev-qt/qtmultimedia/qtmultimedia-5.14.0_rc.ebuild  |  68 
 dev-qt/qtnetwork/Manifest  |   1 +
 dev-qt/qtnetwork/qtnetwork-5.14.0_rc.ebuild|  60 +++
 dev-qt/qtnetworkauth/Manifest  |   1 +
 .../qtnetworkauth/qtnetworkauth-5.14.0_rc.ebuild   |  20 +++
 dev-qt/qtopengl/Manifest   |   1 +
 dev-qt/qtopengl/qtopengl-5.14.0_rc.ebuild  |  34 
 dev-qt/qtpaths/Manifest|   1 +
 dev-qt/qtpaths/qtpaths-5.14.0_rc.ebuild|  23 +++
 dev-qt/qtplugininfo/Manifest   |   1 +
 dev-qt/qtplugininfo/qtplugininfo-5.14.0_rc.ebuild  |  23 +++
 dev-qt/qtpositioning/Manifest  |   1 +
 .../qtpositioning/qtpositioning-5.14.0_rc.ebuild   |  40 +
 dev-qt/qtprintsupport/Manifest |   1 +
 .../qtprintsupport/qtprintsupport-5.14.0_rc.ebuild |  42 +
 dev-qt/qtquickcontrols/Manifest|   1 +
 .../qtquickcontrols-5.14.0_rc.ebuild   |  32 
 dev-qt/qtquickcontrols2/Manifest   |   1 +
 .../qtquickcontrols2-5.14.0_rc.ebuild  |  30 
 dev-qt/qtscript/Manifest   |   1 +
 dev-qt/qtscript/qtscript-5.14.0_rc.ebuild  |  36 +
 dev-qt/qtscxml/Manifest|   1 +
 dev-qt/qtscxml/qtscxml-5.14.0_rc.ebuild|  19 +++
 dev-qt/qtsensors/Manifest  |   1 +
 dev-qt/qtsensors/qtsensors-5.14.0_rc.ebuild|  28 
 dev-qt/qtserialbus/Manifest|   1 +
 

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

2019-12-05 Thread Hans de Graaff
commit: 8aa4fc5226e688a34e0495e1ce25db78712238bd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec  6 06:16:03 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec  6 06:21:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aa4fc52

dev-ruby/nokogiri: cleanup of vulnerable version 1.8.4

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/nokogiri/Manifest  |  1 -
 dev-ruby/nokogiri/nokogiri-1.8.4.ebuild | 93 -
 2 files changed, 94 deletions(-)

diff --git a/dev-ruby/nokogiri/Manifest b/dev-ruby/nokogiri/Manifest
index bfaf0d40a6e..3d165204603 100644
--- a/dev-ruby/nokogiri/Manifest
+++ b/dev-ruby/nokogiri/Manifest
@@ -1,2 +1 @@
 DIST nokogiri-1.10.4-git.tgz 5792963 BLAKE2B 
80223c7bda39c56ced8e98d1d9f6858907f2814eb2d9f28d13c9f26fe29ae7f057e5a19765a3b304ffc4f9edd3dd0f77b99d5a673923ce95a8f02135aa9882ca
 SHA512 
c27877297d432b9a9baf3e0639600d6ca5b382a87ff0dc1efb5d9bb3c79aaa31a589a4491f938283e4f9d35e8d29b6f88a60e27a5d4c81e7b491e100f8d06a9d
-DIST nokogiri-1.8.4-git.tgz 5754921 BLAKE2B 
189dc8ffe4df67b04fa8436799bd6d64e4f8c1f93206b619bda8e153afffb3091fdfab9a3a4da28fcaa2650711aad6e37232e4e948a74c217f7fdc8b061dd4cd
 SHA512 
ed409daeb4e13f93e13bc6901ee27bf5d1155e24fb306b5b9e8ba462517d26d4514413b9728d4a8f2514015c54436b9689a11449030c7bb5826d2ca7bf7eb97a

diff --git a/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
deleted file mode 100644
index 20c882ff2f7..000
--- a/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md STANDARD_RESPONSES.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="ext"
-
-inherit ruby-fakegem eutils multilib
-
-DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
-HOMEPAGE="https://www.nokogiri.org/;
-LICENSE="MIT"
-SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
-
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-SLOT="0"
-IUSE=""
-
-RDEPEND="${RDEPEND}
-   >=dev-libs/libxml2-2.9.8:=
-   >=dev-libs/libxslt-1.1.30
-   virtual/libiconv"
-DEPEND="${DEPEND}
-   >=dev-libs/libxml2-2.9.8
-   >=dev-libs/libxslt-1.1.30
-   virtual/libiconv"
-
-ruby_add_bdepend "
-   dev-ruby/hoe
-   >=dev-ruby/pkg-config-1.1.7
-   dev-ruby/rexical
-   dev-ruby/rdoc
-   dev-ruby/racc
-   test? ( dev-ruby/minitest )"
-
-all_ruby_prepare() {
-   sed -i \
-   -e '/tasks\/cross_compile/s:^:#:' \
-   -e '/:test.*prerequisites/s:^:#:' \
-   -e '/license/ s:^:#:' \
-   Rakefile || die
-   # Remove the cross compilation options since they interfere with
-   # native building.
-   sed -i -e 's/cross_compile  = true/cross_compile = false/' Rakefile || 
die
-   sed -i -e '/cross_config_options/d' Rakefile || die
-}
-
-each_ruby_configure() {
-   NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
-   ${RUBY} -Cext/${PN} extconf.rb \
-   --with-zlib-include="${EPREFIX}"/usr/include \
-   --with-zlib-lib="${EPREFIX}"/$(get_libdir) \
-   --with-iconv-include="${EPREFIX}"/usr/include \
-   --with-iconv-lib="${EPREFIX}"/$(get_libdir) \
-   --with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
-   --with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
-   --with-xslt-dir="${EPREFIX}"/usr \
-   --with-iconvlib=iconv \
-   || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
-   if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
-   ${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical 
failed"
-   fi
-
-   if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
-   ${RUBY} -S rake lib/nokogiri/css/parser.rb || die "racc failed"
-   fi
-
-   emake -Cext/${PN} \
-   V=1 \
-   CFLAGS="${CFLAGS} -fPIC" \
-   archflag="${LDFLAGS}" || die "make extension failed"
-   cp -l ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each {|f| require f}' 
|| die
-}
-
-each_ruby_install() {
-   # Clean up "ext" directory before installing it. nokogumbo expects
-   # the header files and shared object to be in ext.
-   rm -rf ext/java ext/nokogiri/*.o ext/nokogiri/{mkmf.log,Makefile} || die
-
-   each_fakegem_install
-}



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

2019-12-05 Thread Hans de Graaff
commit: d874d69aa2c9e347f8dab4d9e83e489e1d7a8349
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec  6 06:17:47 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec  6 06:21:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d874d69a

dev-ruby/rexical: cleanup vulnerable version 1.0.5-r3

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/rexical/Manifest|  1 -
 dev-ruby/rexical/rexical-1.0.5-r3.ebuild | 42 
 2 files changed, 43 deletions(-)

diff --git a/dev-ruby/rexical/Manifest b/dev-ruby/rexical/Manifest
index 232ad795b1d..5744ff0cc72 100644
--- a/dev-ruby/rexical/Manifest
+++ b/dev-ruby/rexical/Manifest
@@ -1,2 +1 @@
-DIST rexical-1.0.5.gem 20480 BLAKE2B 
6ed81f9247410aa68cec1ad02a49774da839679fa3f535691f79da42144fbcda4b0f0dac74c7c02bb08d262b66bd543a8bde05ac5871454b96a7582c228e5fff
 SHA512 
6cf5eac36953203a2de66eccbbc8679a4d695c3f0540ab8adf7a3db37eb4e94889c64c3ce4e4e88ea52738a6733680be2105e0604d01a2e07bae10939deb03c1
 DIST rexical-1.0.7.gem 22016 BLAKE2B 
aaadf4131fbc4958a6a17be02b970070e511dcb031fd6432fb62fb841eff36b4d5c41d8f8f295aed4ac376c49e736e5d795166f71957578c6cbe14fd6cea26be
 SHA512 
f71c86bd9764e65ebe0c66acd5446b5da7a1b38aae9d33367d70bfa253eb53c178634ce90c883c5459622219670d4d32f375b216c3023a3109329d6930dec1fc

diff --git a/dev-ruby/rexical/rexical-1.0.5-r3.ebuild 
b/dev-ruby/rexical/rexical-1.0.5-r3.ebuild
deleted file mode 100644
index 0a8b9b58f6a..000
--- a/dev-ruby/rexical/rexical-1.0.5-r3.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc  DOCUMENTATION.en.rdoc  
DOCUMENTATION.ja.rdoc  README.ja  README.rdoc"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="Rexical is a lexical scanner generator"
-HOMEPAGE="https://github.com/tenderlove/rexical/tree/master;
-LICENSE="LGPL-2" # plus exception
-
-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"
-SLOT="0"
-IUSE=""
-
-# File collision, bug 459116
-RDEPEND+=" !!app-admin/rex"
-
-ruby_add_bdepend "
-   doc? ( >=dev-ruby/hoe-2.6.2 )
-   test? (
-   >=dev-ruby/hoe-2.6.2
-   dev-ruby/test-unit:2
-   )"
-
-all_ruby_prepare() {
-   sed -i -e '1igem "test-unit"' test/test_generator.rb || die
-
-   sed -i -e '/rubyforge_name/d' Rakefile || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc sample/* || die
-}



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

2019-12-05 Thread Hans de Graaff
commit: ba5d214380e46aa456a92de3640d09108a0b0787
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec  6 06:20:18 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec  6 06:21:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba5d2143

dev-ruby/listen: add 3.2.1

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/listen/Manifest|  1 +
 dev-ruby/listen/listen-3.2.1.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/listen/Manifest b/dev-ruby/listen/Manifest
index 8e73d4e9cef..56d0a086279 100644
--- a/dev-ruby/listen/Manifest
+++ b/dev-ruby/listen/Manifest
@@ -2,3 +2,4 @@ DIST listen-0.7.3-git.tgz 34831 BLAKE2B 
38ad9805080606f17cfe4073ce503985ee4a1312
 DIST listen-1.3.1-git.tgz 35521 BLAKE2B 
6b93daff2b3ba221d0c0f196c67353963e983610dd9deb3409c8ad270f7221d50e9eefee826c16c51ac0361cf7f5da727db216b1bd92a02077b0bee580fa368c
 SHA512 
4676d030a3e676249a221cf4a136ce69651009ce5855821924be184460e404e4f33026627c9d524156a89344c826b48a690a249f1059493d7d214b922381bdd0
 DIST listen-3.1.5.tar.gz 51250 BLAKE2B 
8ed941ed72293fad3327f2fb939920f82b02a9c0f25e8b1273961d9bff64830d619e9e97c184e353b69a78fe38be01a2fd2f0453cf94d3ca9fff66e40d18f59d
 SHA512 
132266485d70002da5bd1e680530331db6b74e8ea12011d60a6ba7df0ec045459b5b3a6305bb2ea6a80ff6a4a1244ef935a4143f6c8709df7a176d6db69da08a
 DIST listen-3.2.0.tar.gz 50938 BLAKE2B 
5373e3a04b17226da74b2b7f55de6706e5c30439024abf8b45c2933c2eb64593104ddeb21bfb30a41893f1982accc5321a04fb3b81aa3f1e228efc8c2e6439a9
 SHA512 
7270f0f7a4e71ce729ab82fae6f3d779effb2733e18353f937971daa23316f8c86495ea5f1c62ce8bdc8b2539f2abbfed3277f5b27993a3834562a5e92462d29
+DIST listen-3.2.1.tar.gz 51030 BLAKE2B 
1c7df3910c856c472f42417d51449f04d56635f0c77dbc6eb7a30d25042482f4efc7bbfa2d74609aa9f8d4ae134f53dc675b621efe35c2cc6faed8780d7128c8
 SHA512 
24cd67b926589401123dfce1a344a6d1ab1d0f9435b9646b7f638deebc0f683b77df70064537f84538eaf800beca4c67fd7c02e40d955fac92866b8ce1eeb769

diff --git a/dev-ruby/listen/listen-3.2.1.ebuild 
b/dev-ruby/listen/listen-3.2.1.ebuild
new file mode 100644
index 000..57168d55669
--- /dev/null
+++ b/dev-ruby/listen/listen-3.2.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+SRC_URI="https://github.com/guard/listen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+DESCRIPTION="Listens to file modifications and notifies you about the changes"
+HOMEPAGE="https://github.com/guard/listen;
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+# Block on other packages trying to install a /usr/bin/listen
+RDEPEND+="!!media-radio/ax25-apps !!=dev-ruby/rb-inotify-0.9.10"
+
+ruby_add_bdepend "test? ( dev-ruby/thor )"
+
+all_ruby_prepare() {
+   rm -f Gemfile || die
+   sed -i -e "/git/,+3d" -e "/rb-fsevent/d" ${PN}.gemspec || die
+   sed -i -e "/rb-fsevent/d"  lib/listen/adapter/darwin.rb || die
+   rm -rf spec/lib/listen/adapter/darwin_spec.rb || die
+}
+
+each_ruby_prepare() {
+   mkdir spec/.fixtures || die
+}
+
+each_ruby_test() {
+   RSPEC_VERSION=3 ruby-ng_rspec
+   rm -rf spec/.fixtures || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Archive-Tar-Stream/

2019-12-05 Thread Robin H. Johnson
commit: 5ecb38b3d32d14487537f3b6f96c3db51db3686d
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Dec  6 05:52:04 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Dec  6 05:52:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ecb38b3

dev-perl/Archive-Tar-Stream: new package for infra usage

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Robin H. Johnson  gentoo.org>

 .../Archive-Tar-Stream-0.030.0.ebuild  | 27 ++
 dev-perl/Archive-Tar-Stream/Manifest   |  1 +
 dev-perl/Archive-Tar-Stream/metadata.xml   | 15 
 3 files changed, 43 insertions(+)

diff --git a/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.030.0.ebuild 
b/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.030.0.ebuild
new file mode 100644
index 000..a7e7c3b1233
--- /dev/null
+++ b/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.030.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=CDRAKE
+DIST_VERSION=0.03
+inherit perl-module
+
+HOMEPAGE="https://github.com/brong/Archive-Tar-Stream;
+DESCRIPTION="pure perl IO-friendly tar file management"
+LICENSE="|| ( Artistic GPL-2 )"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-File-Temp
+   virtual/perl-IO
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Digest-SHA
+   )
+"

diff --git a/dev-perl/Archive-Tar-Stream/Manifest 
b/dev-perl/Archive-Tar-Stream/Manifest
new file mode 100644
index 000..4ed81b16eb7
--- /dev/null
+++ b/dev-perl/Archive-Tar-Stream/Manifest
@@ -0,0 +1 @@
+DIST Archive-Tar-Stream-0.03.tar.gz 9390 BLAKE2B 
c934dc9fa40d33b33cc34fd78a9c36a1eaccc0ab8f86c3c938e55de32a53ba7ced43ac174fec8ffc9395cc444c49ea0b08111fb7bdfac6e1e41057d826effe52
 SHA512 
887b9b5ca9634fefa95f801d4a1ce60e69c886c06dcee9912a31e009cf7d1427e7e2b8b9ff591ae3f1529f18d753a68de81a35db47d3288a74341327a2612f21

diff --git a/dev-perl/Archive-Tar-Stream/metadata.xml 
b/dev-perl/Archive-Tar-Stream/metadata.xml
new file mode 100644
index 000..7f4a70e994a
--- /dev/null
+++ b/dev-perl/Archive-Tar-Stream/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+robb...@gentoo.org
+  
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Archive-Tar-Stream
+Archive::Tar::Stream
+  
+



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

2019-12-05 Thread Jory Pratt
commit: c61ccde76c5fec5616c57cb05ad6d4dce813810e
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Dec  6 05:46:22 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Dec  6 05:46:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c61ccde7

dev-libs/nss: Version bump 3.48

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

 dev-libs/nss/Manifest|   1 +
 dev-libs/nss/nss-3.48.ebuild | 374 +++
 2 files changed, 375 insertions(+)

diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest
index a99f1232f30..2a4c5e79063 100644
--- a/dev-libs/nss/Manifest
+++ b/dev-libs/nss/Manifest
@@ -3,5 +3,6 @@ DIST nss-3.46.1.tar.gz 76417797 BLAKE2B 
c65679a7eb50991958858afe2a20824dd9ff4c0f
 DIST nss-3.46.tar.gz 76417155 BLAKE2B 
18e22a60df185764f434779211289a78d05270d8493766100e378e2ecfdb3013feb73359088d53667fb3c57a5b29633c9f800d29739cff5aab2af81e7ddbe2d7
 SHA512 
de309ec8d6aa2c3cf4d5ebfe9fa1f8bf5def717d22018d5c88c1de963b4ae7b0d69ad64e68d830574fc85613483fd538cb2f319ffb3fa2e1b97ec02f85d37c48
 DIST nss-3.47.1.tar.gz 76462846 BLAKE2B 
a26e858e06c494adb4059f8cc73993b0f3cff90a0785ed7eed3760931aa6b4ae5706cf7994c6c1421d9ed8bc36d1a4c199988bd9c59c06bb95fd03521c20f141
 SHA512 
ddee53f58929e5f3849c9f88a3a6735453a258c3c32a7e3e73cc949e0b7ad2dff81b21db31c9c5e1ef3eb79d63c31660e38ce76c06ca54a5681dd611dc2e2ae9
 DIST nss-3.47.tar.gz 76461837 BLAKE2B 
8b11b5330cf134f2f94c2b4a07d52e153ff40006770e31cbba379ff623b822778bd8ae4510493912263299bbb8f6e0706f30d59633256a3141cbd8faedd1f257
 SHA512 
99d04d28c38092826f5aab125662780865de49a97743ff0ab49a191bafae3ba3a937369cd6909ab23e7dcaf06482c8852b31ef057dc12c758f2681e03822e247
+DIST nss-3.48.tar.gz 76481237 BLAKE2B 
aded12d9f917d87e6fe32bc6c57b19e478507919c7d87b3f95e86ba10717d30da25632e60753b5cf7a24fbfef8fab6529ae373eea25d633d8164164bac97357c
 SHA512 
71aefe323501dd8d750ed36606554f2e67ecb2bca85b55bc798d5dfc3a47f3d454348ca950971fb16f6d847c098d2b1c40d40b50380e0c2540ed1b9a9e9a
 DIST nss-cacert-class1-class3.patch 22950 BLAKE2B 
9d5e60df5f161a3c27c41e5a9419440a54f888eda454e3cde5ebe626d4075b65cf9938b5144d0fb022377f4bd415bff5e5c67d104409860aa9391b3eb8872c68
 SHA512 
a5aa740bf110a3f0262e3f1ef2fc739ac2b44f042e220039d48aee8e97cd764d5c10718220364f4098aba955882bd02cadb5481512388971a8290312f88a7df0
 DIST nss-pem-20160329.tar.xz 27732 BLAKE2B 
7c23133a7bfb969d8eac98fb6311e76ab60c5d6601c7329f3c492da30c017e66d64a1f8bc827dd36e52e65c1a1ec02b58816442aaf410345c5ed759a02264b84
 SHA512 
5834b06e4c64205447573d4f4c8989e20986ae67ee00eebce3817eb73794a6355a404143ba1c676ec302ceefaf9df103cb879b1d4ff14ba4e3790dbee3e40eb2

diff --git a/dev-libs/nss/nss-3.48.ebuild b/dev-libs/nss/nss-3.48.ebuild
new file mode 100644
index 000..3211b8962ae
--- /dev/null
+++ b/dev-libs/nss/nss-3.48.ebuild
@@ -0,0 +1,374 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
+
+NSPR_VER="4.24"
+RTM_NAME="NSS_${PV//./_}_RTM"
+# Rev of https://git.fedorahosted.org/cgit/nss-pem.git
+PEM_GIT_REV="429b0222759d8ad8e6dcd29e62875ae3efd69116"
+PEM_P="${PN}-pem-20160329"
+
+DESCRIPTION="Mozilla's Network Security Services library that implements PKI 
support"
+HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/;
+SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz
+   cacert? ( 
https://dev.gentoo.org/~axs/distfiles/${PN}-cacert-class1-class3.patch )
+   nss-pem? ( https://dev.gentoo.org/~polynomial-c/${PEM_P}.tar.xz )"
+
+LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+IUSE="cacert +nss-pem utils"
+BDEPEND="
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+"
+RDEPEND="
+   >=dev-libs/nspr-${NSPR_VER}[${MULTILIB_USEDEP}]
+   >=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}]
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+RESTRICT="test"
+
+S="${WORKDIR}/${P}/${PN}"
+
+MULTILIB_CHOST_TOOLS=(
+   /usr/bin/nss-config
+)
+
+PATCHES=(
+   # Custom changes for gentoo
+   "${FILESDIR}/${PN}-3.47-gentoo-fixups.patch"
+   "${FILESDIR}/${PN}-3.21-gentoo-fixup-warnings.patch"
+   "${FILESDIR}/${PN}-3.23-hppa-byte_order.patch"
+)
+
+src_unpack() {
+   unpack ${A}
+   if use nss-pem ; then
+   mv "${PN}"/lib/ckfw/pem/ "${S}"/lib/ckfw/ || die
+   fi
+}
+
+src_prepare() {
+   if use nss-pem ; then
+   PATCHES+=(
+   "${FILESDIR}/${PN}-3.47-enable-pem.patch"
+   )
+   fi
+   if use cacert ; then #521462
+   PATCHES+=(
+   "${DISTDIR}/${PN}-cacert-class1-class3.patch"
+   )
+   fi
+
+   

[gentoo-commits] proj/mozilla:master commit in: dev-libs/nss/

2019-12-05 Thread Jory Pratt
commit: 12443fc5a49b4f64876b1e323a2b32cd4f9d7d42
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Dec  6 05:44:34 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Dec  6 05:44:34 2019 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=12443fc5

dev-libs/nss: Version bump 3.48

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

 dev-libs/nss/Manifest   | 2 +-
 dev-libs/nss/{nss-3.47.1.ebuild => nss-3.48.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest
index ec7d084..e326108 100644
--- a/dev-libs/nss/Manifest
+++ b/dev-libs/nss/Manifest
@@ -1,3 +1,3 @@
-DIST nss-3.47.1.tar.gz 76462846 BLAKE2B 
a26e858e06c494adb4059f8cc73993b0f3cff90a0785ed7eed3760931aa6b4ae5706cf7994c6c1421d9ed8bc36d1a4c199988bd9c59c06bb95fd03521c20f141
 SHA512 
ddee53f58929e5f3849c9f88a3a6735453a258c3c32a7e3e73cc949e0b7ad2dff81b21db31c9c5e1ef3eb79d63c31660e38ce76c06ca54a5681dd611dc2e2ae9
+DIST nss-3.48.tar.gz 76481237 BLAKE2B 
aded12d9f917d87e6fe32bc6c57b19e478507919c7d87b3f95e86ba10717d30da25632e60753b5cf7a24fbfef8fab6529ae373eea25d633d8164164bac97357c
 SHA512 
71aefe323501dd8d750ed36606554f2e67ecb2bca85b55bc798d5dfc3a47f3d454348ca950971fb16f6d847c098d2b1c40d40b50380e0c2540ed1b9a9e9a
 DIST nss-cacert-class1-class3.patch 22950 BLAKE2B 
9d5e60df5f161a3c27c41e5a9419440a54f888eda454e3cde5ebe626d4075b65cf9938b5144d0fb022377f4bd415bff5e5c67d104409860aa9391b3eb8872c68
 SHA512 
a5aa740bf110a3f0262e3f1ef2fc739ac2b44f042e220039d48aee8e97cd764d5c10718220364f4098aba955882bd02cadb5481512388971a8290312f88a7df0
 DIST nss-pem-20160329.tar.xz 27732 BLAKE2B 
7c23133a7bfb969d8eac98fb6311e76ab60c5d6601c7329f3c492da30c017e66d64a1f8bc827dd36e52e65c1a1ec02b58816442aaf410345c5ed759a02264b84
 SHA512 
5834b06e4c64205447573d4f4c8989e20986ae67ee00eebce3817eb73794a6355a404143ba1c676ec302ceefaf9df103cb879b1d4ff14ba4e3790dbee3e40eb2

diff --git a/dev-libs/nss/nss-3.47.1.ebuild b/dev-libs/nss/nss-3.48.ebuild
similarity index 99%
rename from dev-libs/nss/nss-3.47.1.ebuild
rename to dev-libs/nss/nss-3.48.ebuild
index a7be090..3211b89 100644
--- a/dev-libs/nss/nss-3.47.1.ebuild
+++ b/dev-libs/nss/nss-3.48.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
 
-NSPR_VER="4.22"
+NSPR_VER="4.24"
 RTM_NAME="NSS_${PV//./_}_RTM"
 # Rev of https://git.fedorahosted.org/cgit/nss-pem.git
 PEM_GIT_REV="429b0222759d8ad8e6dcd29e62875ae3efd69116"



[gentoo-commits] proj/portage: New tag: portage-2.3.81

2019-12-05 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 04:58:12 2019 +

New tag: portage-2.3.81




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

2019-12-05 Thread Zac Medico
commit: 545fbfcb51976a33ea4b7af5d244ac161556ba9d
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Dec  6 04:36:17 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 04:43:43 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=545fbfcb

Updates for portage-2.3.81 release

Signed-off-by: Zac Medico  gentoo.org>

 NEWS  | 11 +++
 RELEASE-NOTES |  8 
 setup.py  |  2 +-
 3 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index 751f91456..65cfa3e4f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,16 @@
 News (mainly features/major bug fixes)
 
+portage-2.3.80
+--
+* The emerge --quickpkg-direct option enables use of installed packages
+  directly as binary packages. It can be used to create minimal runtime
+  container images (which need not include a package manager), or to
+  enable a live image to act as a binary installer that uses packages
+  installed in the live image as a source of binary packages. This
+  option is especially useful in combination with --usepkgonly and
+  --ignore-soname-deps=n options, allowing implicit system dependencies
+  such as libc to be automatically accounted for.
+
 portage-2.3.77
 --
 * The emerge --autounmask option is now disabled by default, except for

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index a3b077da0..e4df13dc8 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,14 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.81
+==
+* Bug Fixes:
+- Bug 681312 add emerge --implicit-system-deps  option
+- Bug 701996 fix virtual/wine handling to avoid pulling in multiple
+  wine implementations in some cases
+
+
 portage-2.3.80
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index 964bfb036..6ab0db225 100755
--- a/setup.py
+++ b/setup.py
@@ -662,7 +662,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.80',
+   version = '2.3.81',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



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

2019-12-05 Thread Zac Medico
commit: 295fe16532e9fee185885e540293ebd7e603d6fc
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Dec  6 04:50:56 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 04:57:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295fe165

sys-apps/portage: Bump to version 2.3.81

 #681312 add emerge --implicit-system-deps  option
 #701996 fix virtual/wine handling to avoid pulling in
 multiple wine implementations in some cases

Bug: https://bugs.gentoo.org/701268
Bug: https://bugs.gentoo.org/681312
Bug: https://bugs.gentoo.org/701996
Package-Manager: Portage-2.3.81, Repoman-2.3.19
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/Manifest  |   1 +
 sys-apps/portage/portage-2.3.81.ebuild | 261 +
 2 files changed, 262 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 781918d4058..737a5819d4b 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -3,3 +3,4 @@ DIST portage-2.3.76.tar.bz2 1033462 BLAKE2B 
1be0641337cd7d2a55f8aaba6f84bbfa7182
 DIST portage-2.3.79.tar.bz2 1038675 BLAKE2B 
7a6cff28fa1d4b54607e9416914ab534d250718b082a9789a36be057933867a8a3befd7c99d404b058f67b92c6ee975323c37251fe89d3e3e46865daf0fea25e
 SHA512 
23101644185fb7c6eff12f015d442599b3af744f7b13dcb630f47a7f27c1392c46bd4aa5fa32d403dcf058cc3cc1d56cef00fd8c34dda811388eb268761c0797
 DIST portage-2.3.80-depgraph-fix-buildtime_blockers-logic-bug-689226.patch 
1193 BLAKE2B 
9c549d1e742f1417554d5b2c0b34ae73c53e8d65a930bd9f7cdb14f0d13a1d044aa2c0bb309dd361242aafb754b26b8b592f7e7a601e18104f2537cf7b68e3c4
 SHA512 
11f803c681b26780c6b1db91a299bbca7be545bc9f3903fd1e47e7157542477d84a82fdc2418b9ed0ebb7d8aefea0437a6a3defc5ffa0ff35b1a4301eb315bad
 DIST portage-2.3.80.tar.bz2 1040844 BLAKE2B 
c504ab4b6cfb305a0b4228008f3aa0ac4cc77a57ac83250f20e37f99987484b3dad4c9851d0e94255bc6478c374317b8a337b91cbc3f555fa73e2c131b31edcc
 SHA512 
816f16bf26223035e62fdfe307d4a28f7a826733f7634aca88215d42c77ea43874a9e3da2a51b1ac8a815aadd2813cdfbe7ce7bf913cbbee842d4c8413485ef0
+DIST portage-2.3.81.tar.bz2 1041978 BLAKE2B 
03c032204dcc4725bfbf4d2bf605a8f2a24bfbd854d7c74e0697e25ae4e10831ec19e3c1252d2d1a5921cdf00801fbbc6fcf60a2d64076cee96f427e49b1ee37
 SHA512 
ce0688eab181243cf4e8dd2a7e2e5bc188e6323331ffcf8d6ee970073bc634bb5566afebef7570fff711ad1ae9a4484df9a602db523d3398ca6ad29d633f0824

diff --git a/sys-apps/portage/portage-2.3.81.ebuild 
b/sys-apps/portage/portage-2.3.81.ebuild
new file mode 100644
index 000..e7b9119d36b
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.81.ebuild
@@ -0,0 +1,261 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=(
+   pypy
+   python3_5 python3_6 python3_7 python3_8
+   python2_7
+)
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 linux-info systemd prefix
+
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86"
+SLOT="0"
+IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
+# Require sandbox-2.2 for bug #288863.
+# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
+# quite slow, so it's not considered in the dependencies as an alternative to
+# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
+# for now, don't pull in xattr deps for other kernels.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-shells/bash:0[readline]
+   >=app-admin/eselect-1.2
+   $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' \
+   python{2_7,3_5} pypy)
+   rsync-verify? (
+   >=app-portage/gemato-14[${PYTHON_USEDEP}]
+   >=app-crypt/openpgp-keys-gentoo-release-20180706
+   >=app-crypt/gnupg-2.2.4-r2[ssl(-)]
+   )
+   )
+   elibc_FreeBSD? ( sys-freebsd/freebsd-bin )
+   elibc_glibc? ( >=sys-apps/sandbox-2.2 )
+   elibc_musl? ( >=sys-apps/sandbox-2.2 )
+   elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
+   kernel_linux? ( sys-apps/util-linux )
+   

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

2019-12-05 Thread Patrick McLean
commit: 4480ad059cf7edb93dee4f70790c940951bde781
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 04:36:52 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 04:36:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4480ad05

dev-python/pytest-cov-2.8.1: Add py38

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 .../files/pytest-cov-2.8.1-latest-setuptools.patch | 40 +
 .../files/pytest-cov-2.8.1-python38.patch  | 52 ++
 dev-python/pytest-cov/pytest-cov-2.8.1.ebuild  |  5 ++-
 3 files changed, 96 insertions(+), 1 deletion(-)

diff --git 
a/dev-python/pytest-cov/files/pytest-cov-2.8.1-latest-setuptools.patch 
b/dev-python/pytest-cov/files/pytest-cov-2.8.1-latest-setuptools.patch
new file mode 100644
index 000..8a9618c3fd9
--- /dev/null
+++ b/dev-python/pytest-cov/files/pytest-cov-2.8.1-latest-setuptools.patch
@@ -0,0 +1,40 @@
+diff --git a/setup.py b/setup.py
+index 1305b23..3a5803e 100644
+--- a/setup.py
 b/setup.py
+@@ -29,7 +29,7 @@ def read(*names, **kwargs):
+ 
+ 
+ class BuildWithPTH(build):
+-def run(self):
++def run(self, **kwargs):
+ build.run(self)
+ path = join(dirname(__file__), 'src', 'pytest-cov.pth')
+ dest = join(self.build_lib, basename(path))
+@@ -37,7 +37,7 @@ class BuildWithPTH(build):
+ 
+ 
+ class EasyInstallWithPTH(easy_install):
+-def run(self):
++def run(self, **kwargs):
+ easy_install.run(self)
+ path = join(dirname(__file__), 'src', 'pytest-cov.pth')
+ dest = join(self.install_dir, basename(path))
+@@ -45,7 +45,7 @@ class EasyInstallWithPTH(easy_install):
+ 
+ 
+ class InstallLibWithPTH(install_lib):
+-def run(self):
++def run(self, **kwargs):
+ install_lib.run(self)
+ path = join(dirname(__file__), 'src', 'pytest-cov.pth')
+ dest = join(self.install_dir, basename(path))
+@@ -57,7 +57,7 @@ class InstallLibWithPTH(install_lib):
+ 
+ 
+ class DevelopWithPTH(develop):
+-def run(self):
++def run(self, **kwargs):
+ develop.run(self)
+ path = join(dirname(__file__), 'src', 'pytest-cov.pth')
+ dest = join(self.install_dir, basename(path))

diff --git a/dev-python/pytest-cov/files/pytest-cov-2.8.1-python38.patch 
b/dev-python/pytest-cov/files/pytest-cov-2.8.1-python38.patch
new file mode 100644
index 000..6292672b619
--- /dev/null
+++ b/dev-python/pytest-cov/files/pytest-cov-2.8.1-python38.patch
@@ -0,0 +1,52 @@
+diff --git a/tests/test_pytest_cov.py b/tests/test_pytest_cov.py
+index e79e9aa..198478b 100644
+--- a/tests/test_pytest_cov.py
 b/tests/test_pytest_cov.py
+@@ -662,6 +662,7 @@ def test_fail(p):
+ ])
+ 
+ 
++@pytest.mark.skipif("sys.hexversion >= 0x308", reason="Seems buggy on 
python3.8")
+ @pytest.mark.skipif('sys.platform == "win32" or 
platform.python_implementation() == "PyPy"')
+ def test_dist_combine_racecondition(testdir):
+ script = testdir.makepyfile("""
+@@ -1018,6 +1019,7 @@ def test_funcarg_not_active(testdir):
+ assert result.ret == 0
+ 
+ 
++@pytest.mark.skipif("sys.hexversion >= 0x308", 
reason="https://bugs.python.org/issue38227;)
+ @pytest.mark.skipif("sys.version_info[0] < 3", reason="no context manager api 
on Python 2")
+ @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing 
support is broken on Windows")
+ @pytest.mark.skipif('platform.python_implementation() == "PyPy"', 
reason="often deadlocks on PyPy")
+@@ -1059,6 +1061,7 @@ def test_run_target():
+ assert result.ret == 0
+ 
+ 
++@pytest.mark.skipif("sys.hexversion >= 0x308", 
reason="https://bugs.python.org/issue38227;)
+ @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing 
support is broken on Windows")
+ @pytest.mark.skipif('platform.python_implementation() == "PyPy"', 
reason="often deadlocks on PyPy")
+ def test_multiprocessing_pool_terminate(testdir):
+@@ -1141,6 +1144,7 @@ def test_run_target():
+ assert result.ret == 0
+ 
+ 
++@pytest.mark.skipif("sys.hexversion >= 0x308", 
reason="https://bugs.python.org/issue38227;)
+ @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing 
support is broken on Windows")
+ def test_multiprocessing_process(testdir):
+ pytest.importorskip('multiprocessing.util')
+@@ -1171,6 +1175,7 @@ def test_run_target():
+ assert result.ret == 0
+ 
+ 
++@pytest.mark.skipif("sys.hexversion >= 0x308", 
reason="https://bugs.python.org/issue38227;)
+ @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing 
support is broken on Windows")
+ def test_multiprocessing_process_no_source(testdir):
+ pytest.importorskip('multiprocessing.util')
+@@ -1201,6 +1206,7 @@ def test_run_target():
+ assert result.ret == 0
+ 
+ 
++@pytest.mark.skipif("sys.hexversion >= 0x308", 
reason="https://bugs.python.org/issue38227;)

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

2019-12-05 Thread Patrick McLean
commit: a698247d763a4356327d2fdbc940569a99d8e0de
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 04:29:01 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 04:29:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a698247d

dev-lua/lua-openssl-0.7.7_p0-r1: revbump, fix libdir

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 .../{lua-openssl-0.7.7_p0.ebuild => lua-openssl-0.7.7_p0-r1.ebuild}| 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild 
b/dev-lua/lua-openssl/lua-openssl-0.7.7_p0-r1.ebuild
similarity index 92%
rename from dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild
rename to dev-lua/lua-openssl/lua-openssl-0.7.7_p0-r1.ebuild
index 4f939f080f5..2f9abd5424d 100644
--- a/dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild
+++ b/dev-lua/lua-openssl/lua-openssl-0.7.7_p0-r1.ebuild
@@ -46,6 +46,7 @@ src_configure() {
LUA_VERSION="$(${PKG_CONFIG} --variable=$(usex luajit abiver V) $(usex 
luajit luajit lua))"
LUA_CFLAGS="$(${PKG_CONFIG} $(usex luajit luajit lua) --cflags) 
${CFLAGS}"
LUA_LIBS="$(${PKG_CONFIG} $(usex luajit luajit lua) --libs) ${LDFLAGS}"
+   INSTALL_CMOD="$(${PKG_CONFIG} $(usex luajit luajit lua) 
--variable=INSTALL_CMOD)"
INSTALL_LMOD="$(${PKG_CONFIG} $(usex luajit luajit lua) 
--variable=INSTALL_LMOD)"
 
export LUA_VERSION LUA_CFLAGS LUA_LIBS
@@ -60,7 +61,7 @@ src_test() {
 }
 
 src_install() {
-   emake PREFIX="${ED}/usr" install
+   emake PREFIX="${ED}/usr" LUA_LIBDIR="${ED}/${INSTALL_CMOD}" install
 
# install lua code as well
insinto "${INSTALL_LMOD}"



[gentoo-commits] proj/portage:master commit in: lib/_emerge/, man/

2019-12-05 Thread Zac Medico
commit: ba871d9232b1dc1e0a8090f7664e05e23818b1b4
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec  5 17:11:12 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 04:09:13 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ba871d92

emerge: add --implicit-system-deps  option (bug 681312)

Assume that packages may have implicit dependencies on packages which
belong to the @system set. This option is enabled by default. One of
the effects of disabling this option is to allow the --jobs option
to spawn jobs without accounting for the possiblity of implicit
dependencies on packages that belong to the @system set (this causes
the @system set to behave more like the @profile set).

Bug: https://bugs.gentoo.org/681312
Signed-off-by: Zac Medico  gentoo.org>

 lib/_emerge/Scheduler.py  | 4 
 lib/_emerge/create_depgraph_params.py | 4 
 lib/_emerge/depgraph.py   | 7 ---
 lib/_emerge/main.py   | 6 ++
 man/emerge.1  | 7 +++
 5 files changed, 25 insertions(+), 3 deletions(-)

diff --git a/lib/_emerge/Scheduler.py b/lib/_emerge/Scheduler.py
index 7fa3992e7..98eaf3bcc 100644
--- a/lib/_emerge/Scheduler.py
+++ b/lib/_emerge/Scheduler.py
@@ -499,6 +499,10 @@ class Scheduler(PollScheduler):
added to the graph and traversed deeply (the depgraph "complete"
parameter will do this, triggered by emerge --complete-graph 
option).
"""
+   params = create_depgraph_params(self.myopts, None)
+   if not params["implicit_system_deps"]:
+   return
+
deep_system_deps = self._deep_system_deps
deep_system_deps.clear()
deep_system_deps.update(

diff --git a/lib/_emerge/create_depgraph_params.py 
b/lib/_emerge/create_depgraph_params.py
index 7d8da9065..81edcb9c0 100644
--- a/lib/_emerge/create_depgraph_params.py
+++ b/lib/_emerge/create_depgraph_params.py
@@ -32,6 +32,8 @@ def create_depgraph_params(myopts, myaction):
#   packages, so that they do not trigger dependency resolution
#   failures, or cause packages to be rebuilt or replaced.
# ignore_world: ignore the @world package set and its dependencies
+   # implicit_system_deps: Assume that packages may have implicit 
dependencies
+   #   on packages which belong to the @system set.
# with_test_deps: pull in test deps for packages matched by arguments
# changed_deps: rebuild installed packages with outdated deps
# changed_deps_report: report installed packages with outdated deps
@@ -87,6 +89,8 @@ def create_depgraph_params(myopts, myaction):
if dynamic_deps:
myparams["dynamic_deps"] = True
 
+   myparams["implicit_system_deps"] =  
myopts.get("--implicit-system-deps", "y") != "n"
+
if myaction == "remove":
myparams["remove"] = True
myparams["complete"] = True

diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index 78226a3ea..02e0e075d 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -7403,6 +7403,8 @@ class depgraph(object):
For optimal leaf node selection, promote deep system runtime 
deps and
order nodes from highest to lowest overall reference count.
"""
+   if not self._dynamic_config.myparams["implicit_system_deps"]:
+   return
 
node_info = {}
for node in mygraph.order:
@@ -8047,10 +8049,9 @@ class depgraph(object):
# by a normal replacement 
operation then abort.
skip = False
try:
-   for atom in 
root_config.sets[
-   
"system"].iterAtomsForPackage(task):
+   if 
(self._dynamic_config.myparams["implicit_system_deps"] and
+   
any(root_config.sets["system"].iterAtomsForPackage(task))):
skip = True
-   break
except 
portage.exception.InvalidDependString as e:
portage.writemsg("!!! 
Invalid PROVIDE in " + \

"'%svar/db/pkg/%s/PROVIDE': %s\n" % \

diff --git a/lib/_emerge/main.py b/lib/_emerge/main.py
index 8c72cdf9c..95855ef2d 100644
--- a/lib/_emerge/main.py
+++ b/lib/_emerge/main.py
@@ -525,6 +525,12 @@ def parse_opts(tmpcmdline, silent=False):
"choices" : true_y_or_n
   

[gentoo-commits] proj/portage:master commit in: lib/portage/tests/resolver/, lib/_emerge/

2019-12-05 Thread Zac Medico
commit: fa7b6ea6ecdc135a01a65e249276e6d75b92791e
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec  5 07:11:47 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Dec  6 04:03:28 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=fa7b6ea6

_queue_disjunctive_deps: group disjunctions (bug 701996)

When disjunctive dependencies are queued, group together disjunctions
from the same dependency string so that any overlap between them will
trigger expansion to DNF.

Bug: https://bugs.gentoo.org/701996
Signed-off-by: Zac Medico  gentoo.org>

 lib/_emerge/depgraph.py|  8 +++--
 .../resolver/test_virtual_minimize_children.py | 39 ++
 2 files changed, 45 insertions(+), 2 deletions(-)

diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index f80b077bc..78226a3ea 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -3850,10 +3850,11 @@ class depgraph(object):
Yields non-disjunctive deps. Raises InvalidDependString when
necessary.
"""
+   disjunctions = []
for x in dep_struct:
if isinstance(x, list):
if x and x[0] == "||":
-   self._queue_disjunction(pkg, dep_root, 
dep_priority, [x])
+   disjunctions.append(x)
else:
for y in self._queue_disjunctive_deps(
pkg, dep_root, dep_priority, x):
@@ -3863,10 +3864,13 @@ class depgraph(object):
# or whatever other metadata gets implemented 
for this
# purpose.
if x.cp.startswith('virtual/'):
-   self._queue_disjunction(pkg, dep_root, 
dep_priority, [x])
+   disjunctions.append(x)
else:
yield x
 
+   if disjunctions:
+   self._queue_disjunction(pkg, dep_root, dep_priority, 
disjunctions)
+
def _queue_disjunction(self, pkg, dep_root, dep_priority, dep_struct):
self._dynamic_config._dep_disjunctive_stack.append(
(pkg, dep_root, dep_priority, dep_struct))

diff --git a/lib/portage/tests/resolver/test_virtual_minimize_children.py 
b/lib/portage/tests/resolver/test_virtual_minimize_children.py
index b566cb592..720fbe57b 100644
--- a/lib/portage/tests/resolver/test_virtual_minimize_children.py
+++ b/lib/portage/tests/resolver/test_virtual_minimize_children.py
@@ -285,3 +285,42 @@ class VirtualMinimizeChildrenTestCase(TestCase):
finally:
playground.debug = False
playground.cleanup()
+
+
+   def testVirtualWine(self):
+   ebuilds = {
+   'virtual/wine-0-r6': {
+   'RDEPEND': '|| ( app-emulation/wine-staging 
app-emulation/wine-any ) '
+   '|| ( app-emulation/wine-vanilla 
app-emulation/wine-staging app-emulation/wine-any )'
+   },
+   'app-emulation/wine-staging-4': {},
+   'app-emulation/wine-any-4': {},
+   'app-emulation/wine-vanilla-4': {},
+   }
+
+   test_cases = (
+   # Test bug 701996, where separate disjunctions where not
+   # converted to DNF, causing both wine-vanilla and
+   # wine-staging to be pulled in.
+   ResolverPlaygroundTestCase(
+   [
+   'virtual/wine',
+   ],
+   success=True,
+   mergelist=(
+   'app-emulation/wine-staging-4',
+   'virtual/wine-0-r6',
+   ),
+   ),
+   )
+
+   playground = ResolverPlayground(debug=False, ebuilds=ebuilds)
+
+   try:
+   for test_case in test_cases:
+   playground.run_TestCase(test_case)
+   self.assertEqual(test_case.test_success, True,
+   test_case.fail_msg)
+   finally:
+   playground.debug = False
+   playground.cleanup()



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

2019-12-05 Thread Patrick McLean
commit: 588fe99ef3f7b7ec80c5d4db4e9d661deaa21cd2
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 03:39:02 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 03:39:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=588fe99e

dev-python/sh-1.12.14: remove trailing empty line

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/sh/sh-1.12.14.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/sh/sh-1.12.14.ebuild b/dev-python/sh/sh-1.12.14.ebuild
index 6dbc3e0ccc8..2d02b529b89 100644
--- a/dev-python/sh/sh-1.12.14.ebuild
+++ b/dev-python/sh/sh-1.12.14.ebuild
@@ -27,4 +27,3 @@ PATCHES=(
 python_test() {
"${EPYTHON}" test.py || die "Tests fail with ${EPYTHON}"
 }
-



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

2019-12-05 Thread Patrick McLean
commit: 0afff5649b7b05804d5d40df60dceec7a78d0f7f
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 03:14:50 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 03:14:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0afff564

dev-python/sh-1.12.14: Version bump, add py38, pypy{,3}

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/sh/Manifest |  1 +
 .../sh/files/sh-1.12.14-skip-unreliable-test.patch | 12 ++
 dev-python/sh/files/sh-1.12.14-tests.patch | 43 ++
 dev-python/sh/sh-1.12.14.ebuild| 30 +++
 4 files changed, 86 insertions(+)

diff --git a/dev-python/sh/Manifest b/dev-python/sh/Manifest
index 8c76a636c80..08b31627e8a 100644
--- a/dev-python/sh/Manifest
+++ b/dev-python/sh/Manifest
@@ -1,2 +1,3 @@
 DIST sh-1.11.tar.gz 36821 BLAKE2B 
30ac7cdb814b307c810190deea54f819d7ad3d134440040c5e0d1718b970331ec4764665f79784acf40b3905da074c19e9dd0338f7306e07d086a583dd058517
 SHA512 
ccaf178384b5a609c00bb44796a6bec088750414385f19b2d8ffcb93cc8f5ddb6bf82fb966d2bf519651f6efed54258a3c6542a9827d01e6be64af8cb8f86d3d
+DIST sh-1.12.14.tar.gz 56861 BLAKE2B 
dcab86c518fdfdf763053f05a6701fbd0faa76e05d710d6ef709dca89b7527157385ecde355f5f358ba08f7da8e551712732ef43f3074f5568fc7092ed12f014
 SHA512 
5f2daa2666cf8efe90ba550c8ea5875f2a8812d787597c9d9b933f58feccd192e1ec0ab5695b756bdbfbf9748d106c2045be20838e680b31dac3f778970b5786
 DIST sh-1.12.9.tar.gz 54077 BLAKE2B 
6a63a07fe82479388e5d84655d7a22d01fb2be2cb858884f2f69799aa3390443cbf7e6d42b640be6432239ab5d1a0db0b69f1e39bc3e30719dbba78c6fc8f5f0
 SHA512 
378ebfe148de6d1fb0f6488a42a39570f1fde6bb2d3ce40cbe29a6920e102f4c31d38a686663e52b2968099d85a0b5867e112c5d53ca0a4527a2f2bc9e607d35

diff --git a/dev-python/sh/files/sh-1.12.14-skip-unreliable-test.patch 
b/dev-python/sh/files/sh-1.12.14-skip-unreliable-test.patch
new file mode 100644
index 000..aa4f75727a1
--- /dev/null
+++ b/dev-python/sh/files/sh-1.12.14-skip-unreliable-test.patch
@@ -0,0 +1,12 @@
+diff --git a/test.py b/test.py
+index 68ef40c..e5d48da 100644
+--- a/test.py
 b/test.py
+@@ -500,2 +500,3 @@ while True:
+ 
++@unittest.skip("Test is unreliable")
+ def test_environment(self):
+@@ -587,2 +588,3 @@ exit(2)
+ 
++@unittest.skip("Test seems to be unreliable")
+ def test_piped_exception1(self):

diff --git a/dev-python/sh/files/sh-1.12.14-tests.patch 
b/dev-python/sh/files/sh-1.12.14-tests.patch
new file mode 100644
index 000..bc3d1b59fef
--- /dev/null
+++ b/dev-python/sh/files/sh-1.12.14-tests.patch
@@ -0,0 +1,43 @@
+diff --git a/test.py b/test.py
+index 68ef40c..640e5b5 100644
+--- a/test.py
 b/test.py
+@@ -515,6 +515,13 @@ def test_environment(self):
+ "VERSIONER_PYTHON_VERSION",
+ ]
+
++# On python-3.7+, the changes for no encoding inject LC_CTYPE into 
subprocesses
++py37_extra_envvars = [
++"LC_CTYPE",
++]
++
++prune_envvars = osx_cruft + py37_extra_envvars
++
+ # first we test that the environment exists in our child process as
+ # we've set it
+ py = create_tmp_test("""
+@@ -525,7 +532,7 @@ def test_environment(self):
+ try: del os.environ[key]
+ except: pass
+ print(os.environ["HERP"] + " " + str(len(os.environ)))
+-""" % osx_cruft)
++""" % prune_envvars)
+ out = python(py.name, _env=env).strip()
+ self.assertEqual(out, "DERP 1")
+
+@@ -533,12 +540,12 @@ def test_environment(self):
+ import os, sys
+ sys.path.insert(0, os.getcwd())
+ import sh
+-osx_cruft = %s
+-for key in osx_cruft:
++prune_envvars = %s
++for key in prune_envvars:
+ try: del os.environ[key]
+ except: pass
+ print(sh.HERP + " " + str(len(os.environ)))
+-""" % osx_cruft)
++""" % prune_envvars)
+ out = python(py.name, _env=env, _cwd=THIS_DIR).strip()
+ self.assertEqual(out, "DERP 1")
+

diff --git a/dev-python/sh/sh-1.12.14.ebuild b/dev-python/sh/sh-1.12.14.ebuild
new file mode 100644
index 000..6dbc3e0ccc8
--- /dev/null
+++ b/dev-python/sh/sh-1.12.14.ebuild
@@ -0,0 +1,30 @@
+# 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,8} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python subprocess interface"
+HOMEPAGE="https://github.com/amoffat/sh;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+PATCHES=(
+   "${FILESDIR}/sh-1.12.14-skip-unreliable-test.patch"
+
+   # https://github.com/amoffat/sh/pull/468
+   "${FILESDIR}/sh-1.12.14-tests.patch"
+)
+
+python_test() {
+   "${EPYTHON}" test.py || die "Tests fail with ${EPYTHON}"
+}
+



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

2019-12-05 Thread Patrick McLean
commit: d5ee859e598e8fc3545c71716109d13442baceec
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 02:40:21 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 02:40:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ee859e

dev-lua/lua-openssl-0.7.7_p0: Version bump, install .lua files

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 dev-lua/lua-openssl/Manifest|  2 +
 dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild | 70 +
 2 files changed, 72 insertions(+)

diff --git a/dev-lua/lua-openssl/Manifest b/dev-lua/lua-openssl/Manifest
index a2022b3e4ba..496f324f822 100644
--- a/dev-lua/lua-openssl/Manifest
+++ b/dev-lua/lua-openssl/Manifest
@@ -1,3 +1,5 @@
 DIST lua-openssl-0.7.3.tar.gz 383743 BLAKE2B 
2709eed607e6d752488cacd5b96ee4a845f1ec13948fc7e40e45af968f240579b5d96ab69380f87d7edfc8a55aa44b099e9a592891f78a7928d172f5abcbc9fb
 SHA512 
00eea8d4d04e167456a7602ae111cb768db61f7bdf9e0056c424bdcd67618811cd304543f95ecb273c66c6b41779e2fe721cb43bc332765ce77effb6245edbe2
+DIST lua-openssl-0.7.7_p0.tar.gz 395094 BLAKE2B 
a4f8efdce1ad76879f85cd1b467c4cfaa6dda60e337a850bf8a521b02e93e3252f0a77c39bfa6bbb01ff1f9af76b63db9e257499278e2f6789c1d0c4965c
 SHA512 
5c659bced2801b9a42a20894261bb10f516ae2cf66206a68249e1c24b73af9df32280640f1379db1a24648852b2a4be1a4b52baee1e18862b538bfff8232fa6d
 DIST lua-openssl-aux-b56f6937096acea34ddf241ec7ea08ac52414d18.tar.gz 3684 
BLAKE2B 
78e92c6cc1c2a29b00a9179db71a9404aff40a0e844f2f092b7868bbf98b6f3fa9519c63a2c38304ce2928b007bd4c015c5afa66ca32b1646035ebb949b3c655
 SHA512 
ba1eaf7c6b58fde48f47146d6c773368484ea10a229d6a45f317bda8d8cc21829ceda68071685f1b071e150936362b934b90532344ebb266febcc0efa45904f4
+DIST lua-openssl-compat-a1735f6e6bd17588fcaf98720f0548c4caa23b34.tar.gz 51950 
BLAKE2B 
16dbf5eb444393f093a5f2cc0fa2a8b394a8b2d62ca36882d02202304a2906b4e2bb87814c1ca198e4b77a9bc27d85627da75244ce9c68c3fd1e06e9262fa970
 SHA512 
2a8e1d3bb6475225f311995f70417c0620c5efa7384400b2002166daa6fc1baedb32f492dc65cc5b92bf63e850c293a36c1f8aed6e7cf0985e582aa0e52141a8
 DIST lua-openssl-compat-daebe77a2f498817713df37f0bb316db1d8f.tar.gz 51418 
BLAKE2B 
1d04684e6b6d850bdf6bd3165a90c6a08bd93b757d91e387da152bcb3fc4756db5c16f3cc12ecf33bcdd647742c7923cc2e72627beb5527c5e9dfbfd63c147ba
 SHA512 
60ec9ecfc4e4ad47b6a8189ffb1e7c83fe8b9e9df13cb91bf33725905ab72bff3d3009e8ad04fb73fd7255facdbb8279f20bfd160aee89b12c25431786eaca14

diff --git a/dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild 
b/dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild
new file mode 100644
index 000..4f939f080f5
--- /dev/null
+++ b/dev-lua/lua-openssl/lua-openssl-0.7.7_p0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_PV="${PV//_p/-}"
+
+DESCRIPTION="OpenSSL binding for Lua"
+HOMEPAGE="https://github.com/zhaozg/lua-openssl;
+LUA_AUX_COMMIT="b56f6937096acea34ddf241ec7ea08ac52414d18"
+LUA_COMPAT_COMMIT="a1735f6e6bd17588fcaf98720f0548c4caa23b34"
+SRC_URI="https://github.com/zhaozg/lua-openssl/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz
+   https://github.com/zhaozg/lua-auxiliar/archive/${LUA_AUX_COMMIT}.tar.gz 
-> ${PN}-aux-${LUA_AUX_COMMIT}.tar.gz
+   
https://github.com/keplerproject/lua-compat-5.3/archive/${LUA_COMPAT_COMMIT}.tar.gz
 -> ${PN}-compat-${LUA_COMPAT_COMMIT}.tar.gz"
+
+LICENSE="MIT openssl PHP-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl luajit"
+
+RDEPEND="
+   luajit? ( dev-lang/luajit:2 )
+   !luajit? ( >=dev-lang/lua-5.1:0 )
+   libressl? ( 

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

2019-12-05 Thread Patrick McLean
commit: 10d568cb77df7a7ac7cb4117be369f4e251d2940
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 02:02:46 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 02:04:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d568cb

dev-python/virtualenv-16.7.8: Add py38

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

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

diff --git a/dev-python/virtualenv/virtualenv-16.7.8.ebuild 
b/dev-python/virtualenv/virtualenv-16.7.8.ebuild
index 5916c8f457e..bb85f78d9a3 100644
--- a/dev-python/virtualenv/virtualenv-16.7.8.ebuild
+++ b/dev-python/virtualenv/virtualenv-16.7.8.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 # pypy{,3} dropped until test deps are tested/updated
-PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy{,3} )
+PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} )
 
 inherit distutils-r1
 



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

2019-12-05 Thread Thomas Deutschmann
commit: 179f03e4c57644b4c0499413225edb852ce420f9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 01:41:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 01:41:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179f03e4

dev-python/sabyenc: make pkgcheck happy

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

 dev-python/sabyenc/sabyenc-3.3.6.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-python/sabyenc/sabyenc-3.3.6.ebuild 
b/dev-python/sabyenc/sabyenc-3.3.6.ebuild
index cd21981df43..2d3ffa014e0 100644
--- a/dev-python/sabyenc/sabyenc-3.3.6.ebuild
+++ b/dev-python/sabyenc/sabyenc-3.3.6.ebuild
@@ -7,14 +7,16 @@ PYTHON_COMPAT=( python2_7 )
 inherit distutils-r1 vcs-snapshot
 
 DESCRIPTION="Module providing raw yEnc encoding/decoding for SABnzbd"
-HOMEPAGE="https://github.com/sabnzbd/sabyenc/;
-SRC_URI="https://github.com/sabnzbd/${PN}/tarball/v${PV} -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/sabnzbd/sabyenc;
+SRC_URI="https://github.com/sabnzbd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
+RESTRICT="!test? ( test )"
+
 DEPEND="
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
 



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

2019-12-05 Thread Patrick McLean
commit: 5ff17cb62ba846de4753fb77f91f9567080673cf
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 01:29:58 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 01:29:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff17cb6

dev-python/pip-19.3.1-r2: Some cleanups, add py38

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 .../pip/files/pip-19.3.1-network-tests.patch   |  66 ++
 .../pip-19.3.1-r2-disable-system-install.patch |  17 +++
 dev-python/pip/pip-19.3.1-r2.ebuild| 133 +
 3 files changed, 216 insertions(+)

diff --git a/dev-python/pip/files/pip-19.3.1-network-tests.patch 
b/dev-python/pip/files/pip-19.3.1-network-tests.patch
new file mode 100644
index 000..f194a7b34a9
--- /dev/null
+++ b/dev-python/pip/files/pip-19.3.1-network-tests.patch
@@ -0,0 +1,66 @@
+diff --git a/news/7359.trivial b/news/7359.trivial
+new file mode 100644
+index 0..e69de29bb
+diff --git a/tests/functional/test_freeze.py b/tests/functional/test_freeze.py
+index d13c931d0..2e35de3e6 100644
+--- a/tests/functional/test_freeze.py
 b/tests/functional/test_freeze.py
+@@ -721,6 +721,7 @@ def test_freeze_user(script, virtualenv, data):
+ assert 'simple2' not in result.stdout
+
+
++@pytest.mark.network
+ def test_freeze_path(tmpdir, script, data):
+ """
+ Test freeze with --path.
+@@ -734,5 +735,6 @@ def test_freeze_path(tmpdir, script, data):
+ _check_output(result.stdout, expected)
+
+
++@pytest.mark.network
+ def test_freeze_path_exclude_user(tmpdir, script, data):
+ """
+@@ -756,6 +758,7 @@ def test_freeze_path_exclude_user(tmpdir, script, data):
+ _check_output(result.stdout, expected)
+
+
++@pytest.mark.network
+ def test_freeze_path_multiple(tmpdir, script, data):
+ """
+ Test freeze with multiple --path arguments.
+diff --git a/tests/functional/test_install.py 
b/tests/functional/test_install.py
+index a9eff081d..ba7a0a55c 100644
+--- a/tests/functional/test_install.py
 b/tests/functional/test_install.py
+@@ -1325,6 +1325,7 @@ def 
test_install_no_binary_disables_building_wheels(script, data, with_wheel):
+ assert "Running setup.py install for upper" in str(res), str(res)
+
+
++@pytest.mark.network
+ def test_install_no_binary_builds_pep_517_wheel(script, data, with_wheel):
+ to_install = data.packages.joinpath('pep517_setup_and_pyproject')
+ res = script.pip(
+diff --git a/tests/functional/test_install_config.py 
b/tests/functional/test_install_config.py
+index 176976c4e..308263928 100644
+--- a/tests/functional/test_install_config.py
 b/tests/functional/test_install_config.py
+@@ -133,6 +133,7 @@ def test_command_line_appends_correctly(script, data):
+ ), 'stdout: {}'.format(result.stdout)
+
+
++@pytest.mark.network
+ def test_config_file_override_stack(script, virtualenv):
+ """
+ Test config files (global, overriding a global config with a
+diff --git a/tests/functional/test_install_upgrade.py 
b/tests/functional/test_install_upgrade.py
+index 6d2eeb5dc..0024de4d4 100644
+--- a/tests/functional/test_install_upgrade.py
 b/tests/functional/test_install_upgrade.py
+@@ -8,6 +8,7 @@
+ from tests.lib.local_repos import local_checkout
+
+
++@pytest.mark.network
+ def test_no_upgrade_unless_requested(script):
+ """
+ No upgrade if not specifically requested.

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

diff --git a/dev-python/pip/pip-19.3.1-r2.ebuild 
b/dev-python/pip/pip-19.3.1-r2.ebuild
new file mode 100644
index 000..6e7219b27df
--- /dev/null
+++ b/dev-python/pip/pip-19.3.1-r2.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+

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

2019-12-05 Thread Thomas Deutschmann
commit: f24a5c63aa77399922016070f9909b99fa87edc4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:29:33 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:42:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24a5c63

dev-python/pythonutils: rescue dep of net-nntp/sabnzbd

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

 dev-python/pythonutils/metadata.xml | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/pythonutils/metadata.xml 
b/dev-python/pythonutils/metadata.xml
index 9e5274c5b4a..a32d600f949 100644
--- a/dev-python/pythonutils/metadata.xml
+++ b/dev-python/pythonutils/metadata.xml
@@ -1,8 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   pyt...@gentoo.org
-   Python
-
+   
+   whi...@gentoo.org
+   Thomas Deutschmann
+   
 



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

2019-12-05 Thread Thomas Deutschmann
commit: 6151eac947887c80a686cce9cfc7e51a5c22597f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:31:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:42:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6151eac9

dev-python/sabyenc: bump to v3.3.6

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

 dev-python/sabyenc/Manifest |  1 +
 dev-python/sabyenc/sabyenc-3.3.6.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/sabyenc/Manifest b/dev-python/sabyenc/Manifest
index 581cf3ccf68..46d9ebf9a9d 100644
--- a/dev-python/sabyenc/Manifest
+++ b/dev-python/sabyenc/Manifest
@@ -1 +1,2 @@
 DIST sabyenc-3.3.5.tar.gz 19578318 BLAKE2B 
d36182074682a00cdca15be12d9d1424f9d3a8f03130df905e53814135cb0f685086d643ad23f3aec47b56b50b3ca43925a0fb4a3ded14cae2559fd14b6beeaf
 SHA512 
94b5114be111feafc65f75d6461e5135bc1b8c8a84d8501f28e1035150d5581e901e7290f5b4cc6cb5426fac5d4971d138c43f6a62ec3bfe43ea9b5f269c0a89
+DIST sabyenc-3.3.6.tar.gz 19578544 BLAKE2B 
dc196618578b213fa8f1ffc2c29340d9f9765d98942c354ef7510a6472c4594431448291d19153b1f51606d27c4e43b34d12623ca69dc366aea3aa0483713489
 SHA512 
bc9a1d1cd487dc0a1a0cc8ef690cef67de70c211dce520896888c3d37167e83439002f4ab6cf0cef14a27b45b0ee08ad349d34e1609abb45f33e2f2f7b5ac074

diff --git a/dev-python/sabyenc/sabyenc-3.3.6.ebuild 
b/dev-python/sabyenc/sabyenc-3.3.6.ebuild
new file mode 100644
index 000..cd21981df43
--- /dev/null
+++ b/dev-python/sabyenc/sabyenc-3.3.6.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Module providing raw yEnc encoding/decoding for SABnzbd"
+HOMEPAGE="https://github.com/sabnzbd/sabyenc/;
+SRC_URI="https://github.com/sabnzbd/${PN}/tarball/v${PV} -> ${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+DOCS=( CHANGES.md README.md doc/yenc-draft.1.3.txt )
+
+python_test() {
+   pytest -v || die "Test failed."
+}



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

2019-12-05 Thread Thomas Deutschmann
commit: e288dbe102e2c37bb80705f91c4b5f5fb2f3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:28:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:42:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e288dbe1

dev-python/sabyenc: rescue dep of net-nntp/sabnzbd

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

 dev-python/sabyenc/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/sabyenc/metadata.xml b/dev-python/sabyenc/metadata.xml
index 7a38bb90096..a32d600f949 100644
--- a/dev-python/sabyenc/metadata.xml
+++ b/dev-python/sabyenc/metadata.xml
@@ -1,5 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   whi...@gentoo.org
+   Thomas Deutschmann
+   
 



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

2019-12-05 Thread Thomas Deutschmann
commit: 5e92ce9b77d70413b74d9bc1c841430e8c771d77
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:23:42 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:42:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e92ce9b

profiles: Unmask net-nntp/sabnzbd & deps

Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index f77bb7bc820..ecec41919b0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -141,8 +141,6 @@ dev-python/louie
 dev-python/graphy
 net-analyzer/namebench
 dev-python/gdmodule
-dev-python/pythonutils
-net-nntp/sabnzbd
 dev-python/qserve
 dev-python/pyifp
 dev-python/telarchive
@@ -156,7 +154,6 @@ dev-python/RecSQL
 dev-python/pyclamav
 dev-python/pycdf
 dev-python/libnatpmp
-dev-python/sabyenc
 dev-python/weberror
 dev-python/sancho
 dev-python/jonpy



[gentoo-commits] repo/gentoo:master commit in: net-nntp/sabnzbd/

2019-12-05 Thread Thomas Deutschmann
commit: ecbc866e23de1eff158d7fbc5cd2a7ff413ce785
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:27:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:42:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecbc866e

net-nntp/sabnzbd: rescue Py2-only package

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

 net-nntp/sabnzbd/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-nntp/sabnzbd/metadata.xml b/net-nntp/sabnzbd/metadata.xml
index e00cfb11379..677378fa8b4 100644
--- a/net-nntp/sabnzbd/metadata.xml
+++ b/net-nntp/sabnzbd/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   whi...@gentoo.org
+   Thomas Deutschmann
+   

Add support for extracting 7za files
Add support for extracting rar files



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

2019-12-05 Thread Patrick McLean
commit: 7cfece03d2857795fac1847c88a64f11ebd51e48
Author: Patrick McLean  sony  com>
AuthorDate: Fri Dec  6 00:22:01 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Dec  6 00:22:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cfece03

dev-python/sqlalchemy-1.3.11: Version bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/sqlalchemy/Manifest |  1 +
 dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index 7bfab24215d..c602587833e 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -1,4 +1,5 @@
 DIST SQLAlchemy-0.7.10.tar.gz 3541639 BLAKE2B 
641532caccb6fea333198ba0c5064f7714ff75348c00dc762da24211fe6ff210c9e335a5b31ad5429e14b26804bafde6d597203aacddbd98d949d1315851d348
 SHA512 
631bc4ffb419defa531a66d82449fe48f93c88371ba0b8ab4217d900a0d1d90efe9699d8a9048d5c2ed33948c6d2f7cae46452ee45d442914018f3361e804367
 DIST SQLAlchemy-1.2.18.tar.gz 5675143 BLAKE2B 
2e0a54d16b64801cb60b619c39dfba64d3b1705ac43a89f6a3873c9fd1bb9af02d38d1026f309eb3d33ad20265da8b3731d7d7092bec8fa035e4d696d74f1d5f
 SHA512 
a3074e0f7b9a307937f02ad030811413f3c92b7edcc4f1c6eda7c94c1178708f8c920840385a9b33c7952e224fe46dc73223aee00123e863abf6d1d446aebdb2
+DIST SQLAlchemy-1.3.11.tar.gz 6007784 BLAKE2B 
c889ea28ae08fcb83d338ab01a64533142428ee91a6c11b9a7f2116f99161c066e66f49d76bdd2c7600f1a7f86a2add217f49dda4cf97566a875f28d3d4b24be
 SHA512 
c691539db4edd62af749087728dfd424010bfb3ca2cc8503a4b96c1625d059d4c2a748b9a35cc870cc99ca9df61966cce406f9b570b25e55c3632a99b8621e74
 DIST SQLAlchemy-1.3.3.tar.gz 5864870 BLAKE2B 
d109e0daf0afdeaba946c4b18d14428c108ff15041876c9a35cf8e5783f9b9a1896e69760b249c53af35e4575e66f4b59c855b4a244d7f6569fadfb52c5a400d
 SHA512 
f8e0f580ba5cc7eaed985e5a3af8cdcc2dcd64bdf02b247242eeab542b5666a93d46166b5edb4b28af3b89df44bccfa92d5bf94cc0e173dbcd369ae6487c
 DIST SQLAlchemy-1.3.4.tar.gz 5877278 BLAKE2B 
1200da89ce6ad077cc93c58a4e41f856a618b3570badf3bd8543d70659e0313e4add0ef779e98654dbd60f8445ae6839830ac15e72d9c0fa259eac328251
 SHA512 
6f29aeeceafcd996bbfc781b79dcbe0bbc681f1214cdab2d52b140bbae8492a633defa97dcc720db7a6d423b062834b0805e965e6183f88f99648a8f8f8a73dd

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
new file mode 100644
index 000..c616f812e76
--- /dev/null
+++ b/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
@@ -0,0 +1,58 @@
+# 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,8} pypy{,3} )
+PYTHON_REQ_USE="sqlite?"
+
+inherit distutils-r1 eutils flag-o-matic
+
+MY_PN="SQLAlchemy"
+MY_P="${MY_PN}-${PV/_beta/b}"
+
+DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
+HOMEPAGE="http://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/;
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris"
+IUSE="doc examples +sqlite test"
+
+REQUIRED_USE="test? ( sqlite )"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/mock[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}/${MY_P}"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Disable tests hardcoding function call counts specific to Python 
versions.
+   rm -r test/aaa_profiling || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   if ! python_is_python3; then
+   local CFLAGS=${CFLAGS}
+   append-cflags -fno-strict-aliasing
+   fi
+   distutils-r1_python_compile
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( doc/. )
+   use examples && dodoc -r examples
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   optfeature "MySQL support" dev-python/mysql-python 
dev-python/mysql-connector-python
+   optfeature "mssql support" dev-python/pymssql
+   optfeature "postgresql support" dev-python/psycopg:2
+}



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

2019-12-05 Thread Thomas Deutschmann
commit: d30a33a5971a5aacc00cf034e080a7811827b31f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:06:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:06:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30a33a5

sys-kernel/genkernel: update HOMEPAGE

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

 sys-kernel/genkernel/genkernel-4.0.0.ebuild | 2 +-
 sys-kernel/genkernel/genkernel-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/genkernel/genkernel-4.0.0.ebuild 
b/sys-kernel/genkernel/genkernel-4.0.0.ebuild
index 6723fd189ca..6f69a282d07 100644
--- a/sys-kernel/genkernel/genkernel-4.0.0.ebuild
+++ b/sys-kernel/genkernel/genkernel-4.0.0.ebuild
@@ -80,7 +80,7 @@ else
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"
-HOMEPAGE="https://www.gentoo.org;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Genkernel 
https://gitweb.gentoo.org/proj/genkernel.git/;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index 6723fd189ca..6f69a282d07 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -80,7 +80,7 @@ else
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"
-HOMEPAGE="https://www.gentoo.org;
+HOMEPAGE="https://wiki.gentoo.org/wiki/Genkernel 
https://gitweb.gentoo.org/proj/genkernel.git/;
 
 LICENSE="GPL-2"
 SLOT="0"



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

2019-12-05 Thread Thomas Deutschmann
commit: 15210b24e430dea39d33b35ed81ca22fb3aa7266
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  6 00:02:30 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:06:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15210b24

sys-kernel/genkernel: bump to v4.0.0

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

 sys-kernel/genkernel/Manifest   | 2 +-
 .../genkernel/{genkernel-4.0.0_rc3.ebuild => genkernel-4.0.0.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest
index 47b42a7dfcf..f54958ef5e6 100644
--- a/sys-kernel/genkernel/Manifest
+++ b/sys-kernel/genkernel/Manifest
@@ -25,7 +25,7 @@ DIST genkernel-3.5.2.4.tar.xz 318152 BLAKE2B 
101bd8011b73699a3d8410fcb93adca2417
 DIST genkernel-3.5.2.5.tar.xz 318652 BLAKE2B 
9b0e1b07f61b54edc1d263cc679b36d7e9062fd1e7cf11fc9442cf60b217274bc73425150ca963b6a91cd504d7817a852fa5bf4ad7634ff8d1ec3b43748ded41
 SHA512 
096aa77f4a52afefcef81ff6c7eb281e539af304854572389e38bbdd735ca723c7a5f2f7163fa9f387e3a2a78a2ba117260f1c8396ed4e51e12a91ad0fb0ff90
 DIST genkernel-3.5.3.2.tar.xz 320644 BLAKE2B 
14eaf05aab02287c3dbb98f1a596e73bcbea39ceb2c8e44c5bdbb77b656958cee666f4353a2401bad531c2a7a98ee11b2531b251c19edc86db517cf3cc2869ec
 SHA512 
1bee8ebdb8c2c30e90e0a1c573ad09b0eb79da54f0829859305eb50ffab95e69aa219ce82d4969140dea3d8788d66d3490fc03d38e190b533666e9278c7f96a6
 DIST genkernel-3.5.3.3.tar.xz 331180 BLAKE2B 
0f83b973505ccb0a92ae24e92509710bf96991f36ca55975ffefdf1bd3e835bd72bb413688468a05e6a5fff2ec16e64816f8ccfe2530c9f1e9169d19a86a2231
 SHA512 
9170731f59a1476aa597549ac55feb3583bed249e50d1697292571caf25c5ca746a1db9e811f2009d55aea21d739ef0ab3e385acd81504bbbccc8f7346205d71
-DIST genkernel-4.0.0_rc3.tar.xz 407888 BLAKE2B 
ebbd11987baaf0efcdd86de90dc89b70f44b21db58b32d87d74708c97da36414c00d62997e519b31d3ef3c7c0da903a0628cc65d4db94ea2101def9adfa666bb
 SHA512 
881edcd9867e0384b62e42924712a23be71cde2dd215b852b2d5ea8399f00e74e64887b34c91715f46b652619f34a4f2a988089b6baf800a16af82c9497d3e1e
+DIST genkernel-4.0.0.tar.xz 412900 BLAKE2B 
d7faab73557ead538f70b9295b93e56d83ced6b216fb469ad6d4161f34732710953f1f646a112f8e8992ff3d595905f375a3dc40f4098e53b8617f7e029a8a03
 SHA512 
a73ba07c11c54a1babda839398b6d87712a1e28bcb97aac74472b07d3adb765697270f3cc4442aea8514e114696328df33a06fdfa9b6cbd5e62798a0ff25
 DIST gnupg-1.4.11.tar.bz2 3407075 BLAKE2B 
85d35d2e4da65d54add1010ea0486b943b328785e28c4efcaa2b65daafd53410a355d1df79ae45c5f7767d2eb7ff1f0b9637f417e65b084d2c760a281abd317a
 SHA512 
97e7b8b0f972cc2f7cabdb0e013cbee1c33e7d48407d040cca5c2037e32abe1c2100194be7d3b569d4f05eb16b24c205a5b83f06718f0241f8d4ee174f1c37ae
 DIST gnupg-1.4.22.tar.bz2 3746546 BLAKE2B 
9a2d37eeab10f2a7353804098e865ad45db846696a00a47f5bebf47145f79e0d2bf9c01c0195e2fe79af07946a3feac0d4589656c3e698a3a548ff1dd74ce759
 SHA512 
c03acac0fa55761470bb085d78a44e2b99ebb187e8396cbb031a184b1e40bef2a40c91da07755d1a20610a3daa6aa1eefea2d12a0dbd5a79a45466166419c708
 DIST gnupg-1.4.23.tar.bz2 3749353 BLAKE2B 
ec5e6bef0c7bb2a65813d7852cebeaa24c4855f9d9d9e802070da50b89fff56b747682933aa766dd130f849efcfe28f7aa74f3153405429bcf3845ef29c6dd6e
 SHA512 
78dc52a2010202a4afc8814b29fda657a6c9fe230d5e7db11ae040edd2b0ca819e1baa4dbd6c0d04d36cd353df484e83f52d17759d2891c2cf7025c0b5d36612

diff --git a/sys-kernel/genkernel/genkernel-4.0.0_rc3.ebuild 
b/sys-kernel/genkernel/genkernel-4.0.0.ebuild
similarity index 100%
rename from sys-kernel/genkernel/genkernel-4.0.0_rc3.ebuild
rename to sys-kernel/genkernel/genkernel-4.0.0.ebuild



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

2019-12-05 Thread Ben Kohler
commit: e9726a866adfb3e9f8ade2fd892aa3bc6f1cb5eb
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec  5 23:52:59 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Dec  6 00:02:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9726a86

net-misc/trackma: revbump to remove obsolete inotifyx dep

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

 net-misc/trackma/{trackma-0.7.4.ebuild => trackma-0.7.4-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/trackma/trackma-0.7.4.ebuild 
b/net-misc/trackma/trackma-0.7.4-r1.ebuild
similarity index 96%
rename from net-misc/trackma/trackma-0.7.4.ebuild
rename to net-misc/trackma/trackma-0.7.4-r1.ebuild
index 1f5b5a79bb4..5c7cd0c5756 100644
--- a/net-misc/trackma/trackma-0.7.4.ebuild
+++ b/net-misc/trackma/trackma-0.7.4-r1.ebuild
@@ -27,7 +27,7 @@ DEPEND="ncurses? ( dev-python/urwid[${PYTHON_USEDEP}] )
dev-python/pillow[${PYTHON_USEDEP}]
)"
 RDEPEND="sys-process/lsof
-   inotify? ( || ( dev-python/inotifyx dev-python/pyinotify ) )
+   inotify? ( dev-python/pyinotify )
${DEPEND}"
 
 python_configure_all() {



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

2019-12-05 Thread Ben Kohler
commit: 7482e3279f4238e8c2d2f0ef71d773466736a991
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec  5 23:57:50 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Dec  6 00:02:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7482e327

net-misc/trackma: drop inotifyx from  as well

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

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

diff --git a/net-misc/trackma/trackma-.ebuild 
b/net-misc/trackma/trackma-.ebuild
index c267a57aade..aed3ebbc8ef 100644
--- a/net-misc/trackma/trackma-.ebuild
+++ b/net-misc/trackma/trackma-.ebuild
@@ -26,7 +26,7 @@ DEPEND="ncurses? ( dev-python/urwid[${PYTHON_USEDEP}] )
dev-python/pillow[${PYTHON_USEDEP}]
)"
 RDEPEND="sys-process/lsof
-   inotify? ( || ( dev-python/inotifyx dev-python/pyinotify ) )
+   inotify? ( dev-python/pyinotify )
${DEPEND}"
 
 python_configure_all() {



[gentoo-commits] proj/genkernel: New tag: v4.0.0

2019-12-05 Thread Thomas Deutschmann
commit: 
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  6 00:00:55 2019 +

New tag: v4.0.0




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

2019-12-05 Thread Thomas Deutschmann
commit: a4df7d5f1665151deda4b13beb9e09dfd2e7ee4d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec  5 23:55:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec  5 23:55:20 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=a4df7d5f

genkernel: bump to v4.0.0

Signed-off-by: Thomas Deutschmann  gentoo.org>

 genkernel | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/genkernel b/genkernel
index c1b49df..d26b377 100755
--- a/genkernel
+++ b/genkernel
@@ -2,7 +2,7 @@
 # $Id$
 
 PATH="${PATH}:/sbin:/usr/sbin"
-GK_V='4.0.0_rc3'
+GK_V='4.0.0'
 
 GK_TIME_START=$(date +%s)
 



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

2019-12-05 Thread Conrad Kostecki
commit: 06efa701e5e82191262d441bdce9891d8671
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec  5 23:40:54 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec  5 23:56:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06efa701

app-misc/fr24feed: New package

The package app-misc/fr24feed is used for collecting ADS-B data and
submitting to Flightradar24.

Closes: https://github.com/gentoo/gentoo/pull/12926
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-misc/fr24feed/Manifest  |  2 ++
 app-misc/fr24feed/files/fr24feed.confd  |  5 
 app-misc/fr24feed/files/fr24feed.ini|  2 ++
 app-misc/fr24feed/files/fr24feed.initd  | 25 
 app-misc/fr24feed/fr24feed-1.0.24_p5.ebuild | 44 +
 app-misc/fr24feed/metadata.xml  | 20 +
 6 files changed, 98 insertions(+)

diff --git a/app-misc/fr24feed/Manifest b/app-misc/fr24feed/Manifest
new file mode 100644
index 000..01fbbfced42
--- /dev/null
+++ b/app-misc/fr24feed/Manifest
@@ -0,0 +1,2 @@
+DIST fr24feed_1.0.24-5_amd64.tgz 3943670 BLAKE2B 
d8d7b031872c1220f2f6ba5843d0c457279d393ae78dc947fe5cbc81e5ee1d4bf629ecddee093020ed3e01937fcecd9f225dcfd5c55fc47e7a31a23007122a18
 SHA512 
9ed5391e7faf1ab3352b95d6eaab8cccd77f0759e4852c3e0283a930d8f7dff2f38c59eb00639a2be0c6decd9f4db49fcdefb6b3de3533b8453a02f66224d503
+DIST fr24feed_1.0.24-5_i386.tgz 3645172 BLAKE2B 
074d6535d09ab77baa9d954bcd9c87c3099b6938ad57ab67f16b14a6a8f865868eb3d82b49eeb6559a6929f8cb28f3591563f007490dd45782b4452cf2da12f2
 SHA512 
05d9a7ad64e047d3b2934d6421d1fcfb8aa6eb955739f9fa58726d2e45cb7141fad73ea1943ce01a071077a8155e07672acade75ce9068d5c932b0b24ff2b194

diff --git a/app-misc/fr24feed/files/fr24feed.confd 
b/app-misc/fr24feed/files/fr24feed.confd
new file mode 100644
index 000..90288849bf5
--- /dev/null
+++ b/app-misc/fr24feed/files/fr24feed.confd
@@ -0,0 +1,5 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Pass various options to the daemon.
+FR24FEED_OPTS="--log-rotate=2 --quiet"

diff --git a/app-misc/fr24feed/files/fr24feed.ini 
b/app-misc/fr24feed/files/fr24feed.ini
new file mode 100644
index 000..fdeb5adb6e4
--- /dev/null
+++ b/app-misc/fr24feed/files/fr24feed.ini
@@ -0,0 +1,2 @@
+bs=yes
+raw=yes

diff --git a/app-misc/fr24feed/files/fr24feed.initd 
b/app-misc/fr24feed/files/fr24feed.initd
new file mode 100644
index 000..a0f1b9aa6b9
--- /dev/null
+++ b/app-misc/fr24feed/files/fr24feed.initd
@@ -0,0 +1,25 @@
+#!/sbin/openrc-run
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+description="Flightradar24 data sharing software"
+name="Flightradar24 feed daemon"
+pidfile="/run/${RC_SVCNAME}.pid"
+retry="TERM/10"
+dev_shm_path="/dev/shm"
+stopsig="SIGTERM"
+
+command="/usr/bin/fr24feed"
+command_args="--monitor-file=${dev_shm_path}/${RC_SVCNAME}.txt 
--write-pid=${pidfile} ${FR24FEED_OPTS}"
+command_background="true"
+
+depend() {
+   use net
+}
+
+start_pre() {
+   if [ ! -d "${dev_shm_path}" ]; then
+   eerror "A mounted ${dev_shm_path} is needed in order to run 
fr24feed!'"
+   return 1
+   fi
+}

diff --git a/app-misc/fr24feed/fr24feed-1.0.24_p5.ebuild 
b/app-misc/fr24feed/fr24feed-1.0.24_p5.ebuild
new file mode 100644
index 000..4b625d17296
--- /dev/null
+++ b/app-misc/fr24feed/fr24feed-1.0.24_p5.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV="${PV/-/_}"
+MY_PV="${MY_PV/_p/-}"
+MY_P="${PN}_${MY_PV}"
+
+DESCRIPTION="Flightradar24 data sharing software"
+HOMEPAGE="https://www.flightradar24.com/share-your-data;
+SRC_URI="
+   amd64? ( 
https://repo-feed.flightradar24.com/linux_x86_64_binaries/${MY_P}_amd64.tgz )
+   x86? ( 
https://repo-feed.flightradar24.com/linux_x86_binaries/${MY_P}_i386.tgz )
+"
+
+LICENSE="Flightradar24"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+RDEPEND="
+   net-wireless/dump1090
+   virtual/libusb:1
+"
+
+RESTRICT="bindist mirror"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="usr/bin/fr24feed"
+
+src_install() {
+   dobin fr24feed_$(usex amd64 'amd64' 'i386')/fr24feed
+
+   insinto /etc
+   doins "${FILESDIR}"/fr24feed.ini
+
+   newinitd "${FILESDIR}"/fr24feed.initd fr24feed
+   newconfd "${FILESDIR}"/fr24feed.confd fr24feed
+}
+
+pkg_postinst() {
+   elog "Please run '/usr/bin/fr24feed --signup', to register yourself as 
a data feeder."
+}

diff --git a/app-misc/fr24feed/metadata.xml b/app-misc/fr24feed/metadata.xml
new file mode 100644
index 000..20445ea2d98
--- /dev/null
+++ b/app-misc/fr24feed/metadata.xml
@@ -0,0 +1,20 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   conik...@gentoo.org
+   Conrad Kostecki
+  

[gentoo-commits] proj/genkernel:master commit in: arch/x86_64/

2019-12-05 Thread Thomas Deutschmann
commit: 271be211e4bbdad87c6daf3906d94076bea77504
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec  2 20:15:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec  2 20:15:12 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=271be211

arch/x86_64/arch-config: Enable Intel Low Power Subsystem support in ACPI mode

Signed-off-by: Thomas Deutschmann  gentoo.org>

 arch/x86_64/arch-config | 4 
 1 file changed, 4 insertions(+)

diff --git a/arch/x86_64/arch-config b/arch/x86_64/arch-config
index 8a3e7e5..8ad62f9 100644
--- a/arch/x86_64/arch-config
+++ b/arch/x86_64/arch-config
@@ -96,6 +96,9 @@ CONFIG_XEN_MAX_DOMAIN_MEMORY=128
 CONFIG_I2C_ISMT=m
 CONFIG_LPC_SCH=m
 CONFIG_LPC_ICH=m
+CONFIG_MFD_INTEL_LPSS=m
+CONFIG_MFD_INTEL_LPSS_ACPI=m
+CONFIG_MFD_INTEL_LPSS_PCI=m
 CONFIG_GPIOLIB=y
 #CONFIG_MFD_SM501_GPIO is not set
 CONFIG_GPIO_SCH=m
@@ -125,6 +128,7 @@ CONFIG_X86_X32=y
 CONFIG_COMPAT=y
 CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
 CONFIG_X86_DEV_DMA_OPS=y
+CONFIG_X86_INTEL_LPSS=y
 CONFIG_IOSF_MBI=m
 CONFIG_COMPAT_NETLINK_MESSAGES=y
 CONFIG_X86_MSR=m



[gentoo-commits] proj/genkernel:master commit in: defaults/

2019-12-05 Thread Thomas Deutschmann
commit: c8f7a864edab44c33a6a1bbe057abb2b2b6a0f83
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Dec  3 21:33:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Dec  3 21:45:35 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c8f7a864

kernel-generic-config: Enable CONFIG_CGROUP_PIDS

Signed-off-by: Thomas Deutschmann  gentoo.org>

 defaults/kernel-generic-config | 1 +
 1 file changed, 1 insertion(+)

diff --git a/defaults/kernel-generic-config b/defaults/kernel-generic-config
index c20a84c..053a21a 100644
--- a/defaults/kernel-generic-config
+++ b/defaults/kernel-generic-config
@@ -3820,6 +3820,7 @@ CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_SCHED_OMIT_FRAME_POINTER=y
 CONFIG_GROUP_SCHED=y
 CONFIG_RT_GROUP_SCHED=y
+CONFIG_CGROUP_PIDS=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_CGROUP_MEM_RES_CTLR=y
 CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y



[gentoo-commits] proj/genkernel:master commit in: defaults/

2019-12-05 Thread Thomas Deutschmann
commit: 5c251fb662d2efc0c3c650564063b5543cbec610
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec  2 20:28:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec  2 20:32:50 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=5c251fb6

kernel-generic-config: Add Broadcom FullMAC WLAN driver support

Signed-off-by: Thomas Deutschmann  gentoo.org>

 defaults/kernel-generic-config | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/defaults/kernel-generic-config b/defaults/kernel-generic-config
index 0b7e94b..f9fa0dc 100644
--- a/defaults/kernel-generic-config
+++ b/defaults/kernel-generic-config
@@ -4745,7 +4745,13 @@ CONFIG_HERMES_PRISM=y
 # CONFIG_ORINOCO_USB is not set
 CONFIG_BRCMUTIL=m
 CONFIG_BRCMSMAC=m
+CONFIG_BRCMFMAC=m
 # CONFIG_BRCMDBG is not set
+CONFIG_BRCMFMAC_PROTO_BCDC=y
+CONFIG_BRCMFMAC_PROTO_MSGBUF=y
+CONFIG_BRCMFMAC_SDIO=y
+# CONFIG_BRCMFMAC_USB is not set
+CONFIG_BRCMFMAC_PCIE=y
 # CONFIG_LPC_SCH is not set
 # CONFIG_LPC_ICH is not set
 # CONFIG_IE6XX_WDT is not set



[gentoo-commits] proj/genkernel:master commit in: defaults/

2019-12-05 Thread Thomas Deutschmann
commit: 1bd58d5b38c46ab18af691e5994616161657f9e6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Dec  3 12:26:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Dec  3 12:26:56 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1bd58d5b

kernel-generic-config: Add Realtek 802.11ac wireless chips support

Signed-off-by: Thomas Deutschmann  gentoo.org>

 defaults/kernel-generic-config | 5 +
 1 file changed, 5 insertions(+)

diff --git a/defaults/kernel-generic-config b/defaults/kernel-generic-config
index f9fa0dc..5fe434a 100644
--- a/defaults/kernel-generic-config
+++ b/defaults/kernel-generic-config
@@ -1704,6 +1704,11 @@ CONFIG_RT73USB=m
 CONFIG_RT73USB_LEDS=y
 CONFIG_RTL8180=m
 CONFIG_RTL8187=m
+CONFIG_RTW88=m
+CONFIG_RTW88_CORE=m
+CONFIG_RTW88_PCI=m
+CONFIG_RTW88_8822BE=y
+CONFIG_RTW88_8822CE=y
 CONFIG_TMD_HERMES=m
 CONFIG_USB_ZD1201=m
 CONFIG_USB_NET_RNDIS_WLAN=m



[gentoo-commits] proj/genkernel:master commit in: /, doc/

2019-12-05 Thread Thomas Deutschmann
commit: be6974e7d7130845915e361f35d0534e6807f63d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Dec  3 23:59:25 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Dec  3 23:59:25 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=be6974e7

genkernel.conf: Disable MICROCODE_INITRAMFS option by default

Embedding microcode updates into initramfs is deprecated when
system is able to load multiple initramfs.

Signed-off-by: Thomas Deutschmann  gentoo.org>

 doc/genkernel.8.txt  | 3 +++
 gen_determineargs.sh | 2 +-
 genkernel.conf   | 8 +---
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
index cb2009f..6c4c155 100644
--- a/doc/genkernel.8.txt
+++ b/doc/genkernel.8.txt
@@ -334,6 +334,9 @@ INITIALIZATION
 But only when kernel configuration does support early microcode loading.
 See *--microcode* option to auto-update kernel configuration.
 
+NOTE: Embedding microcode updates into initramfs is *deprecated* when
+system is able to load multiple initramfs.
+
 *--*[*no-*]*dmraid*::
 Includes or excludes DMRAID support.
 When enabled, this will compile dmraid for you.

diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index a5bebd5..9e46576 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -345,7 +345,7 @@ determine_real_args() {
set_config_with_override STRING BUSYBOX_CONFIG
CMD_BUSYBOX_CONFIG
set_config_with_override BOOL   NFS   
CMD_NFS   "yes"
set_config_with_override STRING MICROCODE 
CMD_MICROCODE "all"
-   set_config_with_override BOOL   MICROCODE_INITRAMFS   
CMD_MICROCODE_INITRAMFS   "yes"
+   set_config_with_override BOOL   MICROCODE_INITRAMFS   
CMD_MICROCODE_INITRAMFS   "no"
set_config_with_override BOOL   UNIONFS   
CMD_UNIONFS   "no"
set_config_with_override BOOL   NETBOOT   
CMD_NETBOOT   "no"
set_config_with_override STRING REAL_ROOT 
CMD_REAL_ROOT

diff --git a/genkernel.conf b/genkernel.conf
index f87ae15..bdb5df4 100644
--- a/genkernel.conf
+++ b/genkernel.conf
@@ -85,9 +85,11 @@ NOCOLOR="false"
 #MICROCODE="all"
 
 # Include early microcode in generated initramfs.
-# This is enabled by default for upgrade compatability, however is obsoleted by
-# sys-boot/grub-2.02-r1, which supports multiple initramfs in the bootloader.
-#MICROCODE_INITRAMFS="yes"
+# Only needed if system cannot load multiple initramfs.
+# NOTE: >=sys-boot/grub-2 will detect and auto-load {amd,intel}-uc.img file
+#   provided by sys-firmware/intel-microcode[initramfs] or
+#   sys-kernel/linux-firmware[initramfs].
+#MICROCODE_INITRAMFS="no"
 
 # Add NFS support
 #NFS="no"



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

2019-12-05 Thread Thomas Deutschmann
commit: 6aed9147207be0b96e49d52605397a2fc594ec27
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Dec  4 15:33:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Dec  4 15:33:48 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=6aed9147

gen_determineargs.sh: determine_real_args(): Fix /etc/multipath.conf check

Using "-s" is not enough, file could be a directory.

Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_determineargs.sh | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index 0fd24d5..952b31e 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -900,9 +900,12 @@ determine_real_args() {
gen_die "${error_msg}"
fi
 
-   if [ ! -s "/etc/multipath.conf" ]
+   if [ ! -e "/etc/multipath.conf" ]
then
-   gen_die "'/etc/multipath.conf' is required for 
--multipath but file does not exist or is empty!"
+   gen_die "'/etc/multipath.conf' is required for 
--multipath but file does not exist!"
+   elif [[ -d "/etc/multipath.conf" || ! -s 
"/etc/multipath.conf" ]]
+   then
+   gen_die "'/etc/multipath.conf' is required for 
--multipath but it is either not a file or is empty!"
fi
fi
 



[gentoo-commits] proj/genkernel:master commit in: arch/arm64/

2019-12-05 Thread Thomas Deutschmann
commit: ea37782a29b5f523ecdb9c5c3e7cb7b4a736e740
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Dec  3 20:54:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Dec  3 22:18:57 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ea37782a

Add arm64 support

Signed-off-by: Thomas Deutschmann  gentoo.org>

 arch/arm64/arch-config  | 645 
 arch/arm64/config.sh|   8 +
 arch/arm64/modules_load |   5 +
 3 files changed, 658 insertions(+)

diff --git a/arch/arm64/arch-config b/arch/arm64/arch-config
new file mode 100644
index 000..a36eb3a
--- /dev/null
+++ b/arch/arm64/arch-config
@@ -0,0 +1,645 @@
+CONFIG_ACPI_AC=y
+# CONFIG_ACPI_APEI_EINJ is not set
+# CONFIG_ACPI_APEI_ERST_DEBUG is not set
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_MEMORY_FAILURE=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_APEI_SEA=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_BATTERY=y
+CONFIG_ACPI_BGRT=y
+CONFIG_ACPI_BUTTON=y
+CONFIG_ACPI_CONFIGFS=m
+CONFIG_ACPI_CONTAINER=y
+CONFIG_ACPI_CPPC_CPUFREQ=m
+CONFIG_ACPI_CUSTOM_METHOD=m
+CONFIG_ACPI_DOCK=y
+CONFIG_ACPI_EC_DEBUGFS=y
+CONFIG_ACPI_FAN=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HOTPLUG_MEMORY=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_NUMA=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_PROCFS_POWER=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_THERMAL=y
+CONFIG_ACPI_WATCHDOG=y
+CONFIG_ACPI=y
+CONFIG_AHCI_CEVA=m
+CONFIG_AHCI_QORIQ=m
+CONFIG_AHCI_XGENE=y
+CONFIG_AL_FIC=y
+# CONFIG_AMBA_PL08X is not set
+CONFIG_AMD_XGBE_DCB=y
+CONFIG_AMD_XGBE=m
+CONFIG_APQ_GCC_8084=y
+CONFIG_APQ_MMCC_8084=m
+# CONFIG_ARCH_AGILEX is not set
+# CONFIG_ARCH_ALPINE is not set
+CONFIG_ARCH_BCM2835=y
+# CONFIG_ARCH_BITMAIN is not set
+# CONFIG_ARCH_EXYNOS is not set
+CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
+CONFIG_ARCH_HISI=y
+# CONFIG_ARCH_K3 is not set
+CONFIG_ARCH_LAYERSCAPE=y
+# CONFIG_ARCH_LG1K is not set
+# CONFIG_ARCH_MEDIATEK is not set
+CONFIG_ARCH_MESON=y
+CONFIG_ARCH_MVEBU=y
+CONFIG_ARCH_MXC=y
+CONFIG_ARCH_QCOM=y
+# CONFIG_ARCH_REALTEK is not set
+CONFIG_ARCH_SEATTLE=y
+# CONFIG_ARCH_SPRD is not set
+# CONFIG_ARCH_STRATIX10 is not set
+CONFIG_ARCH_SYNQUACER=y
+CONFIG_ARCH_TEGRA_132_SOC=y
+CONFIG_ARCH_TEGRA_186_SOC=y
+CONFIG_ARCH_TEGRA_194_SOC=y
+CONFIG_ARCH_TEGRA_210_SOC=y
+CONFIG_ARCH_TEGRA=y
+CONFIG_ARCH_THUNDER2=y
+CONFIG_ARCH_THUNDER=y
+# CONFIG_ARCH_UNIPHIER is not set
+CONFIG_ARCH_VEXPRESS=y
+CONFIG_ARCH_XGENE=y
+# CONFIG_ARCH_ZX is not set
+CONFIG_ARCH_ZYNQMP=y
+CONFIG_ARM64_4K_PAGES=y
+CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y
+CONFIG_ARM64_CNP=y
+CONFIG_ARM64_CRYPTO=y
+CONFIG_ARM64_ERRATUM_1024718=y
+CONFIG_ARM64_ERRATUM_1165522=y
+CONFIG_ARM64_ERRATUM_1286807=y
+CONFIG_ARM64_ERRATUM_1319367=y
+CONFIG_ARM64_ERRATUM_1418040=y
+CONFIG_ARM64_ERRATUM_1463225=y
+CONFIG_ARM64_ERRATUM_1542419=y
+CONFIG_ARM64_ERRATUM_819472=y
+CONFIG_ARM64_ERRATUM_824069=y
+CONFIG_ARM64_ERRATUM_826319=y
+CONFIG_ARM64_ERRATUM_827319=y
+CONFIG_ARM64_ERRATUM_832075=y
+CONFIG_ARM64_ERRATUM_834220=y
+CONFIG_ARM64_ERRATUM_834220=y
+CONFIG_ARM64_ERRATUM_843419=y
+CONFIG_ARM64_ERRATUM_845719=y
+CONFIG_ARM64_HW_AFDBM=y
+CONFIG_ARM64_LSE_ATOMICS=y
+CONFIG_ARM64_PAN=y
+CONFIG_ARM64_PMEM=y
+# CONFIG_ARM64_PSEUDO_NMI is not set
+CONFIG_ARM64_PTDUMP_DEBUGFS=y
+CONFIG_ARM64_PTR_AUTH=y
+# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set
+CONFIG_ARM64_RAS_EXTN=y
+# CONFIG_ARM64_RELOC_TEST is not set
+CONFIG_ARM64_SVE=y
+CONFIG_ARM64_SW_TTBR0_PAN=y
+CONFIG_ARM64_TAGGED_ADDR_ABI=y
+CONFIG_ARM64_UAO=y
+CONFIG_ARM64_VA_BITS=48
+CONFIG_ARM64_VA_BITS_48=y
+# CONFIG_ARM64_VA_BITS_52 is not set
+CONFIG_ARM64_VHE=y
+CONFIG_ARM64=y
+CONFIG_ARMADA_37XX_WATCHDOG=m
+CONFIG_ARMADA_AP806_SYSCON=y
+CONFIG_ARM_ARMADA_8K_CPUFREQ=m
+CONFIG_ARM_CPUIDLE=y
+CONFIG_ARM_DSU_PMU=m
+CONFIG_ARM_IMX_CPUFREQ_DT=m
+CONFIG_ARM_QCOM_CPUFREQ_NVMEM=m
+CONFIG_ARM_SBSA_WATCHDOG=m
+CONFIG_ARM_SDE_INTERFACE=y
+CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT=y
+CONFIG_ARM_SMMU_V3_PMU=m
+CONFIG_ARM_SMMU_V3=y
+CONFIG_ARM_SMMU=y
+CONFIG_ARM_TEGRA124_CPUFREQ=y
+CONFIG_ARM_TEGRA186_CPUFREQ=m
+CONFIG_ARM_TEGRA20_CPUFREQ=y
+CONFIG_ARMV8_DEPRECATED=y
+CONFIG_ATA_ACPI=y
+CONFIG_AXP288_ADC=m
+CONFIG_AXP288_CHARGER=m
+CONFIG_AXP288_FUEL_GAUGE=m
+# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set
+# CONFIG_BATTERY_BQ27XXX_HDQ is not set
+CONFIG_BATTERY_BQ27XXX_I2C=m
+CONFIG_BATTERY_BQ27XXX=m
+CONFIG_BCMA_POSSIBLE=y
+CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
+CONFIG_BRCMUTIL=m
+CONFIG_BT_QCOMSMD=m
+CONFIG_BTT=y
+CONFIG_BUG=y
+CONFIG_CADENCE_TTC_TIMER=y
+CONFIG_CAVIUM_CPT=m
+CONFIG_CAVIUM_ERRATUM_22375=y
+CONFIG_CAVIUM_ERRATUM_23144=y
+CONFIG_CAVIUM_ERRATUM_23154=y
+CONFIG_CAVIUM_ERRATUM_27456=y
+CONFIG_CAVIUM_ERRATUM_30115=y
+CONFIG_CAVIUM_PTP=m
+CONFIG_CAVIUM_TX2_ERRATUM_219=y
+CONFIG_CHARGER_QCOM_SMBB=m
+CONFIG_CLKDEV_LOOKUP=y
+CONFIG_CLK_IMX8MM=y
+CONFIG_CLK_IMX8MN=y
+CONFIG_CLK_IMX8MQ=y
+CONFIG_CLK_IMX8QXP=y
+# CONFIG_CLK_QORIQ is not set

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

2019-12-05 Thread Thomas Deutschmann
commit: e1cc1a18a5e3202394cd579eaa6230b5750d84f4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Dec  4 15:33:22 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Dec  4 15:33:22 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=e1cc1a18

gen_determineargs.sh: determine_real_args(): Adjust authorized_keys file 
validation

Using "-s" is not enough, file could be a directory. Better check for
content!

Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_determineargs.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index 9e46576..0fd24d5 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -847,9 +847,9 @@ determine_real_args() {
elif [ ! -e "${ssh_authorized_keys_file}" ]
then
gen_die "authorized_keys file 
'${ssh_authorized_keys_file}' does not exist!"
-   elif [ ! -s "${ssh_authorized_keys_file}" ]
+   elif ! grep -qE '^(ecdsa|ssh)-' 
"${ssh_authorized_keys_file}" &>/dev/null
then
-   gen_die "authorized_keys file 
'${ssh_authorized_keys_file}' is empty!"
+   gen_die "authorized_keys file 
'${ssh_authorized_keys_file}' does not look like a valid authorized_keys file: 
File does not contain any entry matching regular expression '^(ecdsa|ssh)-'!"
else
declare -gr 
DROPBEAR_AUTHORIZED_KEYS_FILE="${ssh_authorized_keys_file}"
fi



[gentoo-commits] proj/genkernel:master commit in: defaults/

2019-12-05 Thread Thomas Deutschmann
commit: f1a966975156030a4167d1f96a54a5d07a061596
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Dec  3 21:33:24 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Dec  3 21:45:35 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f1a96697

kernel-generic-config: Enable CONFIG_SCHED_MC

Signed-off-by: Thomas Deutschmann  gentoo.org>

 defaults/kernel-generic-config | 1 +
 1 file changed, 1 insertion(+)

diff --git a/defaults/kernel-generic-config b/defaults/kernel-generic-config
index 5fe434a..c20a84c 100644
--- a/defaults/kernel-generic-config
+++ b/defaults/kernel-generic-config
@@ -3815,6 +3815,7 @@ CONFIG_LCD_PLATFORM=m
 
 CONFIG_SCHEDSTATS=y
 CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
 CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_SCHED_OMIT_FRAME_POINTER=y
 CONFIG_GROUP_SCHED=y



[gentoo-commits] proj/genkernel:master commit in: arch/x86_64/

2019-12-05 Thread Thomas Deutschmann
commit: 064ca8a70e9a8fc8f207fc0fe6cb43f8f2fda803
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec  2 20:10:14 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec  2 20:10:14 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=064ca8a7

arch/x86_64/arch-config: Disable HyperV by default, use --hyperv

Signed-off-by: Thomas Deutschmann  gentoo.org>

 arch/x86_64/arch-config | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/arch/x86_64/arch-config b/arch/x86_64/arch-config
index 6f09970..e8a7d8e 100644
--- a/arch/x86_64/arch-config
+++ b/arch/x86_64/arch-config
@@ -114,15 +114,8 @@ CONFIG_IE6XX_WDT=m
 # CONFIG_USB_GPIO_VBUS is not set
 # CONFIG_LEDS_GPIO is not set
 # CONFIG_LEDS_TRIGGER_GPIO is not set
-CONFIG_HYPERV=m
-CONFIG_HYPERV_UTILS=m
-CONFIG_HYPERV_MOUSE=m
-CONFIG_HYPERV_STORAGE=m
-CONFIG_HYPERV_NET=m
-CONFIG_HYPERV_BALLOON=m
 CONFIG_X86_INTEL_PSTATE=m
 CONFIG_PVPANIC=y
-CONFIG_FB_HYPERV=m
 CONFIG_BLK_DEV_NVME=m
 CONFIG_MICROCODE=y
 CONFIG_MICROCODE_EARLY=y



[gentoo-commits] proj/genkernel:master commit in: arch/x86_64/, arch/x86/

2019-12-05 Thread Thomas Deutschmann
commit: 937f6ef9d890760f1307d81f81458afe23181f0a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec  2 20:11:34 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec  2 20:11:34 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=937f6ef9

arch/*/arch-config: Remove CONFIG_MICROCODE_*, use --microcode

Signed-off-by: Thomas Deutschmann  gentoo.org>

 arch/x86/arch-config| 4 
 arch/x86_64/arch-config | 4 
 2 files changed, 8 deletions(-)

diff --git a/arch/x86/arch-config b/arch/x86/arch-config
index 9f8c4b2..da244c9 100644
--- a/arch/x86/arch-config
+++ b/arch/x86/arch-config
@@ -30,8 +30,4 @@ CONFIG_IE6XX_WDT=m
 # CONFIG_LEDS_GPIO is not set
 # CONFIG_LEDS_TRIGGER_GPIO is not set
 CONFIG_X86_INTEL_PSTATE=m
-CONFIG_MICROCODE=y
-CONFIG_MICROCODE_EARLY=y
-CONFIG_MICROCODE_INTEL=y
-CONFIG_MICROCODE_AMD=y
 CONFIG_ALX=m

diff --git a/arch/x86_64/arch-config b/arch/x86_64/arch-config
index e8a7d8e..8a3e7e5 100644
--- a/arch/x86_64/arch-config
+++ b/arch/x86_64/arch-config
@@ -117,10 +117,6 @@ CONFIG_IE6XX_WDT=m
 CONFIG_X86_INTEL_PSTATE=m
 CONFIG_PVPANIC=y
 CONFIG_BLK_DEV_NVME=m
-CONFIG_MICROCODE=y
-CONFIG_MICROCODE_EARLY=y
-CONFIG_MICROCODE_INTEL=y
-CONFIG_MICROCODE_AMD=y
 CONFIG_X86_MCE_INTEL=y
 CONFIG_X86_MCE_AMD=y
 CONFIG_IA32_EMULATION=y



[gentoo-commits] proj/genkernel:master commit in: arch/x86_64/

2019-12-05 Thread Thomas Deutschmann
commit: 0d1e3c7f3760d027081eddd4b3b088291ec3a5e9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec  2 20:16:41 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec  2 20:16:41 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=0d1e3c7f

arch/x86_64/arch-config: Enable AMD ACPI2Platform devices support

Signed-off-by: Thomas Deutschmann  gentoo.org>

 arch/x86_64/arch-config | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/x86_64/arch-config b/arch/x86_64/arch-config
index 8ad62f9..cad42d2 100644
--- a/arch/x86_64/arch-config
+++ b/arch/x86_64/arch-config
@@ -129,6 +129,7 @@ CONFIG_COMPAT=y
 CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
 CONFIG_X86_DEV_DMA_OPS=y
 CONFIG_X86_INTEL_LPSS=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
 CONFIG_IOSF_MBI=m
 CONFIG_COMPAT_NETLINK_MESSAGES=y
 CONFIG_X86_MSR=m



[gentoo-commits] repo/gentoo:master commit in: dev-tex/dot2tex/

2019-12-05 Thread Bernard Cafarelli
commit: 8c484e328c2f74cc94eb1623ea112813013013ab
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec  5 23:50:36 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec  5 23:50:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c484e32

dev-tex/dot2tex: 2.11.3 bump

Ebuild update and add python 3 support

Closes: https://bugs.gentoo.org/699956
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-tex/dot2tex/Manifest  |  1 +
 dev-tex/dot2tex/dot2tex-2.11.3.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/dev-tex/dot2tex/Manifest b/dev-tex/dot2tex/Manifest
index 017a9d34e24..132a09b856f 100644
--- a/dev-tex/dot2tex/Manifest
+++ b/dev-tex/dot2tex/Manifest
@@ -1 +1,2 @@
+DIST dot2tex-2.11.3.tar.gz 664750 BLAKE2B 
9c7effeca0d71810ce37e126df9e7df2b9df19be41393916c85e49df0dc116f42e58a2b29cce9e2bac700fa00859c63c1a4a8c41c70a9db96a5fc210960f463b
 SHA512 
1595299811461b18cff490a8a56c0215f46989dd4a46fa087b455c717ed5d5f7a5782d04acaa3e4567b4e348bca866d5f24d21663012c4cd813445804ef6f714
 DIST dot2tex-2.9.0.tar.gz 663372 BLAKE2B 
807093c5bd7304a6c315568e69c8c8387a377a8aa47790d558feb84036ca6ce2d00534823254a50af9852206d0e27b2e15f2a8ba0e8333e2bb8b20a983947e74
 SHA512 
97ba9983643254d5a3034d2fc8c454c445849ac546bd285676b854e20c8aae9a25d61e73632717da1562541ce9b3a4ae8aa4daa29e33f78105e28a34b5ebae5d

diff --git a/dev-tex/dot2tex/dot2tex-2.11.3.ebuild 
b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
new file mode 100644
index 000..2ea47959d68
--- /dev/null
+++ b/dev-tex/dot2tex/dot2tex-2.11.3.ebuild
@@ -0,0 +1,43 @@
+# 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})
+
+inherit distutils-r1
+
+DESCRIPTION="A Graphviz to LaTeX converter"
+HOMEPAGE="https://dot2tex.readthedocs.org/ https://github.com/kjellmf/dot2tex;
+SRC_URI="https://github.com/kjellmf/dot2tex/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+IUSE="doc examples"
+
+DEPEND="dev-python/pyparsing[${PYTHON_USEDEP}]"
+RDEPEND="
+   dev-python/pydot[${PYTHON_USEDEP}]
+   media-gfx/graphviz"
+DEPEND="${DEPEND}
+   doc? ( dev-python/sphinx )"
+
+python_compile_all() {
+   if use doc ; then
+   cd "${S}/docs"
+   emake html
+   fi
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use doc; then
+   dodoc -r docs/_build/html
+   fi
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



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

2019-12-05 Thread Ben Kohler
commit: 9862824eef93534697c185187c79c584fe8a41c3
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec  5 23:44:36 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Dec  5 23:44:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9862824e

package.mask: unmask trackma, no longer needs py2

Signed-off-by: Ben Kohler  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 782879a3894..f77bb7bc820 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -48,7 +48,6 @@ net-wireless/ndiswrapper
 # MAJORITY VOTE. YOU CAN REMOVE SINGLE PACKAGES
 # IF YOU PERSONALLY STEP IN TO MAINTAIN THEM (AND
 # ADD YOURSELF TO THEIR METADATA).
-net-misc/trackma
 dev-python/inotifyx
 dev-python/disqus-python
 dev-python/figleaf



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

2019-12-05 Thread Ben Kohler
commit: fee6598f45b02271a4c406e0f8475fbf0877bd2e
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec  5 23:43:37 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Dec  5 23:44:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee6598f

net-misc/trackma: bump to 0.8.2

Also eliminate optional dep on py2-only inotifyx

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

 net-misc/trackma/Manifest |  1 +
 net-misc/trackma/trackma-0.8.2.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/net-misc/trackma/Manifest b/net-misc/trackma/Manifest
index 20f2a7b7566..b4953e07ac7 100644
--- a/net-misc/trackma/Manifest
+++ b/net-misc/trackma/Manifest
@@ -1 +1,2 @@
 DIST trackma-0.7.4.tar.gz 143814 BLAKE2B 
8fafa53b4af94a1078e2343b1b309efe8caa058809309ddbdae618b2b3d85fbf001cb73c2556fd50b8946c9d61ddb32d74c3bb5be9bb2c2501b29265a587e2d4
 SHA512 
88b7eacc6a60fec5b022787337274b95d0fb972dbdd8ffa1a000806612403d8f84a2317e5903ec1ffcdbac91132a960670855991c0885f526fdbc4a1033c3364
+DIST trackma-0.8.2.tar.gz 171917 BLAKE2B 
9fedd04036d55ef8fa748e64a18a2d471cab61b71030840baf18252cb81d2ad3df72eba6d417484c2772cb81d3e0e6e2311440c77040a899152681e427408a7a
 SHA512 
6063f65fa70ee65f3b30cd2750bc1f501a6a94dc796195f11d89f4430cdae830fc5987bf6d261c77603c9cc5d32f80286aeecc05d44f766ca705e932997d46f1

diff --git a/net-misc/trackma/trackma-0.8.2.ebuild 
b/net-misc/trackma/trackma-0.8.2.ebuild
new file mode 100644
index 000..fc1e2899065
--- /dev/null
+++ b/net-misc/trackma/trackma-0.8.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_5,3_6} )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Open multi-site list manager for media tracking sites"
+HOMEPAGE="https://github.com/z411/trackma;
+SRC_URI="https://github.com/z411/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+ncurses cli gtk inotify qt5"
+REQUIRED_USE="|| ( cli gtk ncurses qt5 )"
+
+DEPEND="ncurses? ( dev-python/urwid[${PYTHON_USEDEP}] )
+   gtk? (
+   dev-python/pygobject:3[${PYTHON_USEDEP},cairo]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   )
+   qt5? (
+   dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   )"
+RDEPEND="sys-process/lsof
+   inotify? ( dev-python/pyinotify )
+   ${DEPEND}"
+
+python_configure_all() {
+   sed -i -e '/trackma-qt4/d' "${S}/setup.py" || die
+   rm "${S}/trackma/ui/qt/qt4ui.py" || die
+   if ! use qt5; then
+   sed -i -e '/trackma-qt/d' "${S}/setup.py" || die
+   rm -r "${S}/trackma/ui/qt" || die
+   fi
+   if ! use gtk; then
+   sed -i -e '/trackma-gtk/d' "${S}/setup.py" || die
+   rm -r "${S}/trackma/ui/gtk" || die
+   fi
+   if ! use ncurses; then
+   sed -i -e '/trackma-curses/d' "${S}/setup.py" || die
+   rm "${S}/trackma/ui/curses.py" || die
+   fi
+   if ! use cli; then
+   sed -i -e '/trackma.ui.cli:main/d' "${S}/setup.py" || die
+   rm "${S}/trackma/ui/cli.py" || die
+   fi
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   newicon "${S}/trackma/data/icon.png" trackma.png
+   use cli && make_desktop_entry "${PN}" "${PN^} (cli)" "${PN}" "Network" 
"Terminal=true"
+   use ncurses && make_desktop_entry "${PN}-curses" "${PN^} (ncurses)" 
"${PN}" "Network" "Terminal=true"
+   use gtk && make_desktop_entry "${PN}-gtk" "${PN^} (gtk3)" "${PN}" 
"Network" "StartupWMClass=trackma-gtk3"
+   use qt5 && make_desktop_entry "${PN}-qt" "${PN^} (qt5)" "${PN}" 
"Network" "StartupWMClass=trackma-qt5"
+}



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

2019-12-05 Thread Conrad Kostecki
commit: 89bfdd680f3ae72c40f7b654c21409f90c4f8224
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec  5 23:31:30 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec  5 23:32:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bfdd68

x11-misc/projecteur: New package

Newer presenter hardware by Logitech contains a windows software, which
provides additional software features like a virtual laser pointer.
This open source software tries to bring those features to linux.

Closes: https://github.com/gentoo/gentoo/pull/12000
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki  gentoo.org>

 x11-misc/projecteur/Manifest  |  1 +
 x11-misc/projecteur/metadata.xml  | 18 +
 x11-misc/projecteur/projecteur-0.6.ebuild | 43 +++
 3 files changed, 62 insertions(+)

diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
new file mode 100644
index 000..b9decade370
--- /dev/null
+++ b/x11-misc/projecteur/Manifest
@@ -0,0 +1 @@
+DIST projecteur-0.6.tar.gz 286242 BLAKE2B 
80385b946fbd8ba8f6f5db4c495f382252a5c644d0626c0e6f0b95c9a1785a3fdba8347115c456517da1c5627238883db7b253a98f3aa4912dc75adc54af1f82
 SHA512 
d97cd9facb0db0199ae0c569a1e4c881f30901a31966f23a94d093cab5582af1b8199d7b7d2d074d852dc2c22f4ce249b9690e99e8b4d79444d17d22bcabcbc0

diff --git a/x11-misc/projecteur/metadata.xml b/x11-misc/projecteur/metadata.xml
new file mode 100644
index 000..429e23db708
--- /dev/null
+++ b/x11-misc/projecteur/metadata.xml
@@ -0,0 +1,18 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   conik...@gentoo.org
+   Conrad Kostecki
+   
+   
+   A Linux application for the Logitech Spotlight.
+   Features: A configurable desktop spotlight,
+   configure color, opacity, cursor and the center dot,
+   multiple screen support.
+   
+   
+   https://github.com/jahnf/Projecteur/issues
+   jahnf/Projecteur
+   
+

diff --git a/x11-misc/projecteur/projecteur-0.6.ebuild 
b/x11-misc/projecteur/projecteur-0.6.ebuild
new file mode 100644
index 000..2891b3b14b8
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/p/P}"
+
+inherit cmake-utils udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur;
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5[xcb]
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   virtual/udev
+   x11-libs/libX11
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+pkg_postinst() {
+   udev_reload
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   udev_reload
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/, app-emulation/pcem/files/

2019-12-05 Thread Conrad Kostecki
commit: 58329350434880f1f0847a3bc3cc23933271a481
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Sep 21 16:17:01 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec  5 23:32:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58329350

app-emulation/pcem: New Package

PCem (an acronym for Personal Computer emulator) is an open-source,
low-level PC emulator developed for Windows and Linux by Sarah Walker.

It focuses on PC hardware from the 1980's and 1990's.
A variety of operating systems can be installed in the emulator,
which can then be used to launch programs.

https://github.com/gentoo/gentoo/pull/12988
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-emulation/pcem/Manifest|  1 +
 .../pcem/files/pcem-15-respect-cflags.patch| 13 
 app-emulation/pcem/metadata.xml| 23 +++
 app-emulation/pcem/pcem-15.ebuild  | 71 ++
 4 files changed, 108 insertions(+)

diff --git a/app-emulation/pcem/Manifest b/app-emulation/pcem/Manifest
new file mode 100644
index 000..f1ab3db7a47
--- /dev/null
+++ b/app-emulation/pcem/Manifest
@@ -0,0 +1 @@
+DIST PCemV15Linux.tar.gz 1741312 BLAKE2B 
fa8de8c98a57ac79be11921190960eaa1e5d53896db0749a7f53704362b6415544632a6f918a8f1ce57d2f75f28af52715856346421cc0a8355236a01bb7dcac
 SHA512 
c2501827689acc0f3381d785dc3b008866e82d242bea3fa5af7e786fc58fdf72f76eafda98d12ce88c59ff338bc7dc441484af9c1bc9357c7cc75d94bbe0a7b6

diff --git a/app-emulation/pcem/files/pcem-15-respect-cflags.patch 
b/app-emulation/pcem/files/pcem-15-respect-cflags.patch
new file mode 100644
index 000..734812a69da
--- /dev/null
+++ b/app-emulation/pcem/files/pcem-15-respect-cflags.patch
@@ -0,0 +1,13 @@
+--- a/configure.ac 2019-05-19 18:40:05.0 +0200
 b/configure.ac 2019-09-21 17:34:53.43726 +0200
+@@ -31,8 +31,8 @@
+CXXFLAGS="-Wall -O0 -g -D_DEBUG"
+AC_MSG_RESULT([yes])
+ else
+-   CFLAGS="-O3"
+-   CXXFLAGS="-O3"
++   CFLAGS?="-O3"
++   CXXFLAGS?="-O3"
+AC_MSG_RESULT([no])
+ fi
+ 

diff --git a/app-emulation/pcem/metadata.xml b/app-emulation/pcem/metadata.xml
new file mode 100644
index 000..d949dbdb3e6
--- /dev/null
+++ b/app-emulation/pcem/metadata.xml
@@ -0,0 +1,23 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   conik...@gentoo.org
+   Conrad Kostecki
+   
+   
+   PCem (an acronym for Personal Computer emulator) is an 
open-source,
+   low-level PC emulator developed for Windows and Linux by Sarah 
Walker.
+
+   It focuses on PC hardware from the 1980's and 1990's.
+   A variety of operating systems can be installed in the emulator,
+   which can then be used to launch programs.
+   
+   
+   Enable support for emulation of network 
cards.
+   
+   
+   
https://pcem-emulator.co.uk/phpBB3/viewforum.php?f=2
+   pcem_emulator/pcem
+   
+

diff --git a/app-emulation/pcem/pcem-15.ebuild 
b/app-emulation/pcem/pcem-15.ebuild
new file mode 100644
index 000..cf76b44d1f9
--- /dev/null
+++ b/app-emulation/pcem/pcem-15.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop wxwidgets
+
+WX_GTK_VER="3.0"
+
+DESCRIPTION="A PC emulator that specializes in running old operating systems 
and software"
+HOMEPAGE="
+   https://pcem-emulator.co.uk/
+   https://bitbucket.org/pcem_emulator/pcem/
+"
+SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="alsa networking"
+
+S="${WORKDIR}"
+
+RDEPEND="
+   alsa? ( media-libs/alsa-lib )
+   media-libs/libsdl2
+   media-libs/openal
+   x11-libs/wxGTK:${WX_GTK_VER}[X]
+"
+
+DEPEND="${DEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --enable-release-build
+   $(use_enable alsa)
+   $(use_enable networking)
+   )
+
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/pcem
+   doins -r configs nvr roms
+
+   newicon src/icons/32x32/motherboard.png pcem.png
+   make_desktop_entry "pcem" "PCem" pcem "Development;Utility"
+
+   dodoc readme.txt
+}
+
+pkg_postinst() {
+   elog "In order to use PCem, you will need some roms for various 
emulated systems."
+   elog "You can either install globally for all users or locally for 
yourself."
+   elog ""
+   elog "To install globally, put your ROM file into 
'${ROOT}/usr/share/pcem/roms/'."
+   elog "To install locally, put your ROM file into 

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

2019-12-05 Thread Conrad Kostecki
commit: 6df5d081084eee5a71f95ef97ca15d78e651cffc
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Oct 15 06:39:02 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec  5 23:32:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df5d081

net-misc/ethflop: New package

ethflop is a DOS TSR that emulates a floppy disk drive.
The emulated (virtual) floppy disk is, in fact, stored on a Linux server as a
floppy image. All the communication between ethflop (the TSR)
and ethflopd (the Linux daemon) is exchanged over raw Ethernet. No need for
any network configuration - the DOS PC only needs to have some kind of
Ethernet adapter and a suitable packet driver. The Linux server and
the DOS PC must be connected do the common Ethernet segment (same LAN).

Closes: https://github.com/gentoo/gentoo/pull/13307
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-misc/ethflop/Manifest  |  1 +
 net-misc/ethflop/ethflop-20191003.ebuild   | 46 ++
 .../ethflop/files/ethflop-20191003-makefile.patch  | 13 ++
 net-misc/ethflop/files/ethflopd.confd  |  8 
 net-misc/ethflop/files/ethflopd.initd  | 11 ++
 net-misc/ethflop/files/ethflopd.service| 10 +
 net-misc/ethflop/metadata.xml  | 26 
 7 files changed, 115 insertions(+)

diff --git a/net-misc/ethflop/Manifest b/net-misc/ethflop/Manifest
new file mode 100644
index 000..c6da51da054
--- /dev/null
+++ b/net-misc/ethflop/Manifest
@@ -0,0 +1 @@
+DIST ethflop-20191003.zip 29858 BLAKE2B 
e5a4068d45c398d6c7bfd08299b57566c3d30bea4ef79692cae065adb61f3c41fd3ed568260e82e19d90e17c7b6d92c0698bb7f7c40edea9d44804a7a61e18ae
 SHA512 
808e65d45e2ff74380bc2f1a31b7bb59fdca4acdf44eb7f60deef9aa0976462ddc64982e8a7b7c225d7f88e11a33dfcdf73fd7169f942018976d4d086e7ec477

diff --git a/net-misc/ethflop/ethflop-20191003.ebuild 
b/net-misc/ethflop/ethflop-20191003.ebuild
new file mode 100644
index 000..f0b9e708f26
--- /dev/null
+++ b/net-misc/ethflop/ethflop-20191003.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd toolchain-funcs
+
+DESCRIPTION="A network-backed floppy emulator for DOS"
+HOMEPAGE="http://ethflop.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="tsr"
+
+BDEPEND="
+   app-arch/unzip
+   tsr? ( dev-lang/nasm )
+"
+
+PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
+
+S="${WORKDIR}"
+
+src_compile() {
+   tc-export CC
+   default
+
+   use tsr && emake tsr
+}
+
+src_install() {
+   dobin ethflopd
+
+   if use tsr; then
+   insinto /usr/share/ethflop
+   doins ethflop.com
+   fi
+
+   newinitd "${FILESDIR}"/ethflopd.initd ethflopd
+   newconfd "${FILESDIR}"/ethflopd.confd ethflopd
+   systemd_dounit "${FILESDIR}"/ethflopd.service
+
+   dodoc ethflop.txt
+}

diff --git a/net-misc/ethflop/files/ethflop-20191003-makefile.patch 
b/net-misc/ethflop/files/ethflop-20191003-makefile.patch
new file mode 100644
index 000..7005dfdbb44
--- /dev/null
+++ b/net-misc/ethflop/files/ethflop-20191003-makefile.patch
@@ -0,0 +1,13 @@
+--- a/Makefile 2019-10-03 23:02:15.0 +0200
 b/Makefile 2019-10-15 08:31:49.541999473 +0200
+@@ -14,8 +14,8 @@
+ #CFLAGS = -O2 -Wall -std=gnu89 -pedantic -Wextra -Wformat-security 
-D_FORTIFY_SOURCE=1 -Weverything -Wno-padded
+ 
+ # production
+-CC = gcc
+-CFLAGS = -O2 -std=gnu89
++CC ?= gcc
++CFLAGS ?= -O2 -std=gnu89
+ 
+ all: ethflopd
+ 

diff --git a/net-misc/ethflop/files/ethflopd.confd 
b/net-misc/ethflop/files/ethflopd.confd
new file mode 100644
index 000..a727dae4c72
--- /dev/null
+++ b/net-misc/ethflop/files/ethflopd.confd
@@ -0,0 +1,8 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Network interface, which should be used for serving floppy images
+INTERFACE="lo"
+
+# Storage directory, from where floppy images are being served
+STORAGEDIR="/tmp"

diff --git a/net-misc/ethflop/files/ethflopd.initd 
b/net-misc/ethflop/files/ethflopd.initd
new file mode 100644
index 000..d00c63f980a
--- /dev/null
+++ b/net-misc/ethflop/files/ethflopd.initd
@@ -0,0 +1,11 @@
+#!/sbin/openrc-run
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+name="ethflopd daemon"
+command="/usr/bin/ethflopd"
+command_args="${INTERFACE} ${STORAGEDIR}"
+
+depend() {
+   need net
+}

diff --git a/net-misc/ethflop/files/ethflopd.service 
b/net-misc/ethflop/files/ethflopd.service
new file mode 100644
index 000..2b6c31902ec
--- /dev/null
+++ b/net-misc/ethflop/files/ethflopd.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=ethflopd daemon

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

2019-12-05 Thread Conrad Kostecki
commit: 721d8598095bcfbc3cda2726dee17fc8aa4cdc6b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec  5 22:30:02 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec  5 23:32:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=721d8598

licenses/Flightradar24: add license for app-misc/fr24feed

Signed-off-by: Conrad Kostecki  gentoo.org>

 licenses/Flightradar24 | 9 +
 1 file changed, 9 insertions(+)

diff --git a/licenses/Flightradar24 b/licenses/Flightradar24
new file mode 100644
index 000..1187512f6b7
--- /dev/null
+++ b/licenses/Flightradar24
@@ -0,0 +1,9 @@
+Copyright (c) 2014, Flightradar24 AB
+All rights reserved.
+
+Use in binary form, without modification, is permitted provided that the 
following conditions are met:
+
+* Software is only used to feed data to Flightradar24 or its other services 
and no actions
+  are taken to prevent it from sending data to Flightradar24 servers.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.



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

2019-12-05 Thread Conrad Kostecki
commit: 0ee0a1d2550b18c3f14cea0e384d17b1fb5092f4
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec  5 22:31:47 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec  5 23:32:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee0a1d2

profiles/license_groups: add Flightradar24 license to EULA group

Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/profiles/license_groups b/profiles/license_groups
index 130269eb104..10c10ed5d01 100644
--- a/profiles/license_groups
+++ b/profiles/license_groups
@@ -71,7 +71,7 @@ BINARY-REDISTRIBUTABLE @FREE Amazon Atmel bh-luxi bonnie 
Broadcom freedist intel
 
 # License agreements that try to take away your rights. These are more
 # restrictive than "all-rights-reserved" or require explicit approval.
-EULA 2dboy-EULA AdobeFlash-11.x AMD-GPU-PRO-EULA AnyDesk-TOS 
ArxFatalis-EULA-JoWooD baudline BCS bestcrypt CAPYBARA-EULA Coherent-Graphics 
CROSSOVER-2 DOOM3 ETQW f.lux FAH-EULA-2014 FraunhoferFDK GameFront 
Gameplay-Group-EULA geekbench genymotion GIMPS GOG-EULA google-chrome 
Google-TOS Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA 
Mendeley-terms Microsemi Mojang MTA-0.5 NVIDIA-CODEC-SDK NVIDIA-CUDA OPERA-2014 
Oracle-BCLA-JavaSE PAPERS-PLEASE Primate-Plunge protonmail-bridge-EULA PUEL 
Q3AEULA Q3AEULA-2111 QUAKE4 Quartus-prime-megacore RAR RTCW RTCW-ETEULA 
Sourcetrail SPS Steam supermicro teamspeak3 TeamViewer THINKTANKS TIK ubiquiti 
ut2003 ut2003-demo Vivaldi worklog-assistant zi-labone
+EULA 2dboy-EULA AdobeFlash-11.x AMD-GPU-PRO-EULA AnyDesk-TOS 
ArxFatalis-EULA-JoWooD baudline BCS bestcrypt CAPYBARA-EULA Coherent-Graphics 
CROSSOVER-2 DOOM3 ETQW f.lux FAH-EULA-2014 Flightradar24 FraunhoferFDK 
GameFront Gameplay-Group-EULA geekbench genymotion GIMPS GOG-EULA google-chrome 
Google-TOS Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA 
Mendeley-terms Microsemi Mojang MTA-0.5 NVIDIA-CODEC-SDK NVIDIA-CUDA OPERA-2014 
Oracle-BCLA-JavaSE PAPERS-PLEASE Primate-Plunge protonmail-bridge-EULA PUEL 
Q3AEULA Q3AEULA-2111 QUAKE4 Quartus-prime-megacore RAR RTCW RTCW-ETEULA 
Sourcetrail SPS Steam supermicro teamspeak3 TeamViewer THINKTANKS TIK ubiquiti 
ut2003 ut2003-demo Vivaldi worklog-assistant zi-labone
 
 # Local Variables:
 # mode: conf-space



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-renderutil/

2019-12-05 Thread Matt Turner
commit: 4f22e74abe3d320942dc8e391727b0fe6aa745d2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:15:43 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f22e74a

x11-libs/xcb-util-renderutil: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-renderutil/xcb-util-renderutil-0.3.9-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util-renderutil/xcb-util-renderutil-0.3.9-r2.ebuild 
b/x11-libs/xcb-util-renderutil/xcb-util-renderutil-0.3.9-r2.ebuild
index 4bc4fe6626e..31ea19d331c 100644
--- a/x11-libs/xcb-util-renderutil/xcb-util-renderutil-0.3.9-r2.ebuild
+++ b/x11-libs/xcb-util-renderutil/xcb-util-renderutil-0.3.9-r2.ebuild
@@ -17,6 +17,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND=">=x11-libs/libxcb-1.9.1:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}



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

2019-12-05 Thread Matt Turner
commit: 4f19a6499275cb0d3abcee525057d84af24072d2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:07:56 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f19a649

media-libs/mesa: Drop IUSE=pax_kernel

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/mesa-.ebuild | 9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 89ebb55245d..db1fd34bf9a 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -36,8 +36,8 @@ done
 
 IUSE="${IUSE_VIDEO_CARDS}
+classic d3d9 debug +dri3 +egl +gallium +gbm gles1 +gles2 libglvnd +llvm
-   lm-sensors opencl osmesa pax_kernel selinux test unwind vaapi valgrind
-   vdpau vulkan vulkan-overlay wayland +X xa xvmc"
+   lm-sensors opencl osmesa selinux test unwind vaapi valgrind vdpau vulkan
+   vulkan-overlay wayland +X xa xvmc"
 
 REQUIRED_USE="
d3d9?   ( dri3 || ( video_cards_iris video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
@@ -458,11 +458,6 @@ multilib_src_configure() {
vulkan_enable video_cards_radeonsi amd
fi
 
-   # x86 hardened pax_kernel needs glx-rts, bug 240956
-   if [[ ${ABI} == x86 ]]; then
-   emesonargs+=( $(meson_use pax_kernel glx-read-only-text) )
-   fi
-
if use gallium; then
gallium_enable -- swrast
emesonargs+=( -Dosmesa=$(usex osmesa gallium none) )



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

2019-12-05 Thread Matt Turner
commit: 656665b351ebb7a47399350b1b71069d43108ce4
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:11:16 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=656665b3

x11-base/xorg-drivers: Set No_homepage

Signed-off-by: Matt Turner  gentoo.org>

 x11-base/xorg-drivers/xorg-drivers-1.20-r1.ebuild | 2 +-
 x11-base/xorg-drivers/xorg-drivers-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-base/xorg-drivers/xorg-drivers-1.20-r1.ebuild 
b/x11-base/xorg-drivers/xorg-drivers-1.20-r1.ebuild
index e11cd07feb3..e5d78880b51 100644
--- a/x11-base/xorg-drivers/xorg-drivers-1.20-r1.ebuild
+++ b/x11-base/xorg-drivers/xorg-drivers-1.20-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DESCRIPTION="Meta package containing deps on all xorg drivers"
-HOMEPAGE="https://www.gentoo.org/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI=""
 
 LICENSE="metapackage"

diff --git a/x11-base/xorg-drivers/xorg-drivers-.ebuild 
b/x11-base/xorg-drivers/xorg-drivers-.ebuild
index cd83934c3ef..b31b5519750 100644
--- a/x11-base/xorg-drivers/xorg-drivers-.ebuild
+++ b/x11-base/xorg-drivers/xorg-drivers-.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DESCRIPTION="Meta package containing deps on all xorg drivers"
-HOMEPAGE="https://www.gentoo.org/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI=""
 
 LICENSE="metapackage"



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

2019-12-05 Thread Matt Turner
commit: 7f78ffa83f131b5da07935f0e655bbd5117dfb93
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:19:29 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f78ffa8

x11-themes/gentoo-xcursors: Set No_homepage

Signed-off-by: Matt Turner  gentoo.org>

 x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.1.ebuild 
b/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.1.ebuild
index c7e8ac8d0a2..302759ef3e4 100644
--- a/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.1.ebuild
+++ b/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DESCRIPTION="A high quality set of animated mouse cursors"
-HOMEPAGE="https://www.gentoo.org/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 SRC_URI="mirror://gentoo/${PN/xcursors/cursors}-tad-${PV}.tar.bz2"
 
 LICENSE="MIT"



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

2019-12-05 Thread Matt Turner
commit: 8b6604d92d21f3eb92052b36c504b5a943cd63ff
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:14:18 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b6604d9

x11-libs/libxkbcommon: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild 
b/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild
index f0d8c2958ec..3c8da7b7800 100644
--- a/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild
+++ b/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild
@@ -17,6 +17,7 @@ DESCRIPTION="keymap handling library for toolkits and window 
systems"
 HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/;
 LICENSE="MIT"
 IUSE="X doc test"
+RESTRICT="!test? ( test )"
 SLOT="0"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-xrm/

2019-12-05 Thread Matt Turner
commit: 3dfd1ef5229a316d997240a3b5e765d00f474024
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:16:14 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dfd1ef5

x11-libs/xcb-util-xrm: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-xrm/xcb-util-xrm-1.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util-xrm/xcb-util-xrm-1.3.ebuild 
b/x11-libs/xcb-util-xrm/xcb-util-xrm-1.3.ebuild
index 7531ec4172c..97a2a94bdd0 100644
--- a/x11-libs/xcb-util-xrm/xcb-util-xrm-1.3.ebuild
+++ b/x11-libs/xcb-util-xrm/xcb-util-xrm-1.3.ebuild
@@ -14,6 +14,7 @@ 
SRC_URI="https://github.com/Airblader/${PN}/releases/download/v${PV}/${P}.tar.bz
 
 KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND=">=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
x11-libs/xcb-util[${MULTILIB_USEDEP}]"



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

2019-12-05 Thread Matt Turner
commit: 5056275027a63b1ca8ef9eccb425cfd85106f671
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:14:04 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50562750

x11-libs/libxcb: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/libxcb/libxcb-1.13.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/libxcb/libxcb-1.13.1.ebuild 
b/x11-libs/libxcb/libxcb-1.13.1.ebuild
index 8cd3208c9f4..1eafafb3fd8 100644
--- a/x11-libs/libxcb/libxcb-1.13.1.ebuild
+++ b/x11-libs/libxcb/libxcb-1.13.1.ebuild
@@ -17,6 +17,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc selinux test xkb"
+RESTRICT="!test? ( test )"
 SLOT="0/1.12"
 
 RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-cursor/

2019-12-05 Thread Matt Turner
commit: b6decb95aad8deab42375298c8fe107f0c07e2f7
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:14:53 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6decb95

x11-libs/xcb-util-cursor: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r2.ebuild 
b/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r2.ebuild
index 1834b93a127..a7559fd27ec 100644
--- a/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r2.ebuild
+++ b/x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r2.ebuild
@@ -17,6 +17,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND=">=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
>=x11-libs/xcb-util-image-0.3.9-r1[${MULTILIB_USEDEP}]



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

2019-12-05 Thread Matt Turner
commit: f9bc98ad97a4bdaf5f28879038aaa02635221287
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:13:24 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9bc98ad

x11-libs/libX11: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/libX11/libX11-1.6.9.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/libX11/libX11-1.6.9.ebuild 
b/x11-libs/libX11/libX11-1.6.9.ebuild
index 05f8faeb8d5..432b7ef0c9e 100644
--- a/x11-libs/libX11/libX11-1.6.9.ebuild
+++ b/x11-libs/libX11/libX11-1.6.9.ebuild
@@ -11,6 +11,7 @@ DESCRIPTION="X.Org X11 library"
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="ipv6 test"
+RESTRICT="!test? ( test )"
 
 RDEPEND=">=x11-libs/libxcb-1.11.1[${MULTILIB_USEDEP}]
!

[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-wm/

2019-12-05 Thread Matt Turner
commit: 7a40affe42e3c0b7478b9ce555d0f2fced884252
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:15:55 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a40affe

x11-libs/xcb-util-wm: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-wm/xcb-util-wm-0.4.1-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util-wm/xcb-util-wm-0.4.1-r2.ebuild 
b/x11-libs/xcb-util-wm/xcb-util-wm-0.4.1-r2.ebuild
index 2514f291920..e8c75262d6b 100644
--- a/x11-libs/xcb-util-wm/xcb-util-wm-0.4.1-r2.ebuild
+++ b/x11-libs/xcb-util-wm/xcb-util-wm-0.4.1-r2.ebuild
@@ -17,6 +17,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND=">=x11-libs/libxcb-1.9.1:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-keysyms/

2019-12-05 Thread Matt Turner
commit: fd208e2e999fb1ce8284fff476409973861a1bd6
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:15:25 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd208e2e

x11-libs/xcb-util-keysyms: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-keysyms/xcb-util-keysyms-0.4.0-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util-keysyms/xcb-util-keysyms-0.4.0-r1.ebuild 
b/x11-libs/xcb-util-keysyms/xcb-util-keysyms-0.4.0-r1.ebuild
index 90590ca324e..b9a5a3e0af9 100644
--- a/x11-libs/xcb-util-keysyms/xcb-util-keysyms-0.4.0-r1.ebuild
+++ b/x11-libs/xcb-util-keysyms/xcb-util-keysyms-0.4.0-r1.ebuild
@@ -16,6 +16,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="x11-libs/libxcb:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}



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

2019-12-05 Thread Matt Turner
commit: 8f1965983229f97ff29145b34c83ee274da81a8a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:06:56 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f196598

media-libs/mesa: Drop old blocker

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/mesa/mesa-19.3.0_rc6.ebuild | 1 -
 media-libs/mesa/mesa-.ebuild   | 1 -
 2 files changed, 2 deletions(-)

diff --git a/media-libs/mesa/mesa-19.3.0_rc6.ebuild 
b/media-libs/mesa/mesa-19.3.0_rc6.ebuild
index d8de3e17e49..9c11f067fd5 100644
--- a/media-libs/mesa/mesa-19.3.0_rc6.ebuild
+++ b/media-libs/mesa/mesa-19.3.0_rc6.ebuild
@@ -104,7 +104,6 @@ RDEPEND="
)
vaapi? (
>=x11-libs/libva-1.7.3:=[${MULTILIB_USEDEP}]
-   video_cards_nouveau? ( 
!<=x11-libs/libva-vdpau-driver-0.7.4-r3 )
)
vdpau? ( >=x11-libs/libvdpau-1.1:=[${MULTILIB_USEDEP}] )
xvmc? ( >=x11-libs/libXvMC-1.0.8:=[${MULTILIB_USEDEP}] )

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 8f593918a1a..89ebb55245d 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -104,7 +104,6 @@ RDEPEND="
)
vaapi? (
>=x11-libs/libva-1.7.3:=[${MULTILIB_USEDEP}]
-   video_cards_nouveau? ( 
!<=x11-libs/libva-vdpau-driver-0.7.4-r3 )
)
vdpau? ( >=x11-libs/libvdpau-1.1:=[${MULTILIB_USEDEP}] )
xvmc? ( >=x11-libs/libXvMC-1.0.8:=[${MULTILIB_USEDEP}] )



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

2019-12-05 Thread Matt Turner
commit: e6b12e1e008ac2f4de44a7498de0d8774f53f52d
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:09:23 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b12e1e

x11-apps/xauth: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-apps/xauth/xauth-1.1.ebuild  | 1 +
 x11-apps/xauth/xauth-.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/x11-apps/xauth/xauth-1.1.ebuild b/x11-apps/xauth/xauth-1.1.ebuild
index b6b6953692d..50e1ff50ef5 100644
--- a/x11-apps/xauth/xauth-1.1.ebuild
+++ b/x11-apps/xauth/xauth-1.1.ebuild
@@ -13,6 +13,7 @@ fi
 
 DESCRIPTION="X authority file utility"
 IUSE="ipv6 test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="x11-libs/libX11
x11-libs/libXau

diff --git a/x11-apps/xauth/xauth-.ebuild b/x11-apps/xauth/xauth-.ebuild
index 0661ce38f6f..17995a9945a 100644
--- a/x11-apps/xauth/xauth-.ebuild
+++ b/x11-apps/xauth/xauth-.ebuild
@@ -13,6 +13,7 @@ fi
 
 DESCRIPTION="X authority file utility"
 IUSE="ipv6 test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="x11-libs/libX11
x11-libs/libXau



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-image/

2019-12-05 Thread Matt Turner
commit: 282ed25dcd9ec7b59b87603b71d1d2c8621b42e2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:15:10 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=282ed25d

x11-libs/xcb-util-image: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-image/xcb-util-image-0.4.0-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util-image/xcb-util-image-0.4.0-r1.ebuild 
b/x11-libs/xcb-util-image/xcb-util-image-0.4.0-r1.ebuild
index 78f7fa07930..c612777a22e 100644
--- a/x11-libs/xcb-util-image/xcb-util-image-0.4.0-r1.ebuild
+++ b/x11-libs/xcb-util-image/xcb-util-image-0.4.0-r1.ebuild
@@ -16,6 +16,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="x11-base/xorg-proto
>=x11-libs/libxcb-1.9.1:=[${MULTILIB_USEDEP}]



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

2019-12-05 Thread Matt Turner
commit: 1edee265e329c791f58fab0ab9338d5bb79e166f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:14:35 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1edee265

x11-libs/xcb-util: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util/xcb-util-0.4.0-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/xcb-util/xcb-util-0.4.0-r1.ebuild 
b/x11-libs/xcb-util/xcb-util-0.4.0-r1.ebuild
index c026a21ea9a..ae0639fcfe8 100644
--- a/x11-libs/xcb-util/xcb-util-0.4.0-r1.ebuild
+++ b/x11-libs/xcb-util/xcb-util-0.4.0-r1.ebuild
@@ -16,6 +16,7 @@ HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/lib/l
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND=">=x11-libs/libxcb-1.9.1:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/xcb-util-xrm/

2019-12-05 Thread Matt Turner
commit: 34e586836d868a94c2844201cb1dc40820fdd22e
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:16:22 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e58683

x11-libs/xcb-util-xrm: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/xcb-util-xrm/Manifest|  2 --
 x11-libs/xcb-util-xrm/xcb-util-xrm-1.0.ebuild | 25 -
 x11-libs/xcb-util-xrm/xcb-util-xrm-1.2.ebuild | 25 -
 3 files changed, 52 deletions(-)

diff --git a/x11-libs/xcb-util-xrm/Manifest b/x11-libs/xcb-util-xrm/Manifest
index ded150cc765..e6e8ed0427e 100644
--- a/x11-libs/xcb-util-xrm/Manifest
+++ b/x11-libs/xcb-util-xrm/Manifest
@@ -1,3 +1 @@
-DIST xcb-util-xrm-1.0.tar.bz2 327196 BLAKE2B 
6bba57de372371ca7829a477ddc57f86e1faa86829c7f32e46eb5667505c6b3fd0b5acd2dd74f4f1223a678234948bf5d499019b089e3abe23ffb5631843
 SHA512 
b49d97b018a231b5642bb05a287eb7720d9e1ffe15024d46a4c7ebf2f9cc37a0a4a3262d9aa963fe9554ca801ba013ad6cb5d3f87b67daf4d69efd180d7ba8fd
-DIST xcb-util-xrm-1.2.tar.bz2 324708 BLAKE2B 
ca5176fb848735b856541930f37e46ec093df6d86a981c87c910bfd64e1a8d5a7e2e20405994dd2a8b9c1200dae48bec0df3a6546be984e3ff316a271b0d84eb
 SHA512 
c6031844d3a197b234cb1b22166c02fe8d03f8a8def836b8c974324a0b6b453889680011406c7940bd04fde1389c5a2ff508f84b080f811ca69cbdb0334994e8
 DIST xcb-util-xrm-1.3.tar.bz2 327586 BLAKE2B 
06ba03ba22c9a51cad5045024b63d48f32e5ad38d2cf03035bd1132a04ef4906a71d89030141b407329bd8ec04cb131846be2cb3a95e755a57c2841a45b58fa4
 SHA512 
ebca5d92c9e2363f58485970a0c3a948b13652ce7acdd51dff918fc2e8bc7fcb69892eb3fc8b5f7eaf721ccd8dc2db42727d206bc5155481ec5e7e41d0c7f304

diff --git a/x11-libs/xcb-util-xrm/xcb-util-xrm-1.0.ebuild 
b/x11-libs/xcb-util-xrm/xcb-util-xrm-1.0.ebuild
deleted file mode 100644
index 5263c0f25ed..000
--- a/x11-libs/xcb-util-xrm/xcb-util-xrm-1.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-XORG_BASE_INDIVIDUAL_URI=""
-XORG_DOC=doc
-XORG_MULTILIB=yes
-inherit xorg-2
-
-DESCRIPTION="X C-language Bindings sample implementations"
-HOMEPAGE="https://xcb.freedesktop.org/;
-SRC_URI="https://github.com/Airblader/${PN}/releases/download/v${PV}/${P}.tar.bz2;
-
-KEYWORDS="amd64 ~arm x86"
-IUSE="test"
-
-RDEPEND=">=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
-   x11-libs/xcb-util[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-
-src_configure() {
-   xorg-2_src_configure
-}

diff --git a/x11-libs/xcb-util-xrm/xcb-util-xrm-1.2.ebuild 
b/x11-libs/xcb-util-xrm/xcb-util-xrm-1.2.ebuild
deleted file mode 100644
index 7094258a3ec..000
--- a/x11-libs/xcb-util-xrm/xcb-util-xrm-1.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-XORG_BASE_INDIVIDUAL_URI=""
-XORG_DOC=doc
-XORG_MULTILIB=yes
-inherit xorg-2
-
-DESCRIPTION="X C-language Bindings sample implementations"
-HOMEPAGE="https://xcb.freedesktop.org/;
-SRC_URI="https://github.com/Airblader/${PN}/releases/download/v${PV}/${P}.tar.bz2;
-
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-IUSE="test"
-
-RDEPEND=">=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
-   x11-libs/xcb-util[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-
-src_configure() {
-   xorg-2_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-opengl/

2019-12-05 Thread Matt Turner
commit: 47a9c1ddab9740bb497f25f6fc6cd536d8432fbb
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:11:38 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a9c1dd

app-eselect/eselect-opengl: Set No_homepage

Signed-off-by: Matt Turner  gentoo.org>

 app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild 
b/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild
index 507a5a3a0b0..72e02225410 100644
--- a/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild
+++ b/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 inherit eutils multilib
 
 DESCRIPTION="Utility to change the OpenGL interface being used"
-HOMEPAGE="https://www.gentoo.org/;
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
 
 # Source:
 # http://www.opengl.org/registry/api/glext.h



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

2019-12-05 Thread Matt Turner
commit: 2167287e4a4613f00235effa55bd135bd0ad1619
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:13:39 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2167287e

x11-libs/libXt: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/libXt/libXt-1.2.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/libXt/libXt-1.2.0.ebuild 
b/x11-libs/libXt/libXt-1.2.0.ebuild
index a3031eda5bd..9bb826b113c 100644
--- a/x11-libs/libXt/libXt-1.2.0.ebuild
+++ b/x11-libs/libXt/libXt-1.2.0.ebuild
@@ -11,6 +11,7 @@ DESCRIPTION="X.Org X Toolkit Intrinsics library"
 
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
>=x11-libs/libICE-1.0.8-r1[${MULTILIB_USEDEP}]



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

2019-12-05 Thread Matt Turner
commit: 124ebd693c63b716901bd37290f1f625267e7eaf
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:12:41 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:20:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=124ebd69

x11-drivers/xf86-video-intel: Drop outdated blocker

Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/xf86-video-intel/xf86-video-intel-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-.ebuild
index 3b4fa32db6b..ae5f7692fc8 100644
--- a/x11-drivers/xf86-video-intel/xf86-video-intel-.ebuild
+++ b/x11-drivers/xf86-video-intel/xf86-video-intel-.ebuild
@@ -30,7 +30,6 @@ RDEPEND="
>=x11-libs/pixman-0.27.1
>=x11-libs/libdrm-2.4.52[video_cards_intel]
>=x11-base/xorg-server-1.18
-   !<=media-libs/mesa-12.0.4
tools? (
x11-libs/libX11
x11-libs/libxcb



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

2019-12-05 Thread Matt Turner
commit: 2b5c7276462af3a86e1e7001df2062ff0f67af16
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 23:04:47 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 23:05:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5c7276

media-libs/libglvnd: Add RESTRICT="!test? ( test )"

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libglvnd/libglvnd-1.3.0.ebuild | 1 +
 media-libs/libglvnd/libglvnd-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/media-libs/libglvnd/libglvnd-1.3.0.ebuild 
b/media-libs/libglvnd/libglvnd-1.3.0.ebuild
index 1905bb39e78..b19c93a7923 100644
--- a/media-libs/libglvnd/libglvnd-1.3.0.ebuild
+++ b/media-libs/libglvnd/libglvnd-1.3.0.ebuild
@@ -27,6 +27,7 @@ fi
 LICENSE="MIT"
 SLOT="0"
 IUSE="test X"
+RESTRICT="!test? ( test )"
 
 BDEPEND="${PYTHON_DEPS}
test? ( X? ( ${VIRTUALX_DEPEND} ) )"

diff --git a/media-libs/libglvnd/libglvnd-.ebuild 
b/media-libs/libglvnd/libglvnd-.ebuild
index 1905bb39e78..b19c93a7923 100644
--- a/media-libs/libglvnd/libglvnd-.ebuild
+++ b/media-libs/libglvnd/libglvnd-.ebuild
@@ -27,6 +27,7 @@ fi
 LICENSE="MIT"
 SLOT="0"
 IUSE="test X"
+RESTRICT="!test? ( test )"
 
 BDEPEND="${PYTHON_DEPS}
test? ( X? ( ${VIRTUALX_DEPEND} ) )"



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

2019-12-05 Thread Ben Kohler
commit: c1009f6db22534bc5b7883f80b598b89920bebf5
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Dec  5 22:49:21 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Dec  5 22:49:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1009f6d

dev-python/paver: add test RESTRICT

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

 dev-python/paver/paver-1.3.4-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/paver/paver-1.3.4-r1.ebuild 
b/dev-python/paver/paver-1.3.4-r1.ebuild
index 7dfbcd902d8..6ac9af90abd 100644
--- a/dev-python/paver/paver-1.3.4-r1.ebuild
+++ b/dev-python/paver/paver-1.3.4-r1.ebuild
@@ -18,6 +18,7 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos 
~x86-macos"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"



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

2019-12-05 Thread Matt Turner
commit: eaeb3708a3f8da04bb6e3713c967e8a365563a5b
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 22:05:29 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 22:29:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaeb3708

profiles: Drop media-libs/libglvnd from package.mask

Bug: https://bugs.gentoo.org/692206
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 2fe39f8f08c..782879a3894 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -931,11 +931,6 @@ dev-java/eclipse-ecj:4.10
 ~app-portage/gemato-14.1m
 ~app-portage/gemato-m
 
-# Matt Turner  (2018-05-25)
-# New package. Needs to interact with media-libs/mesa and
-# x11-drivers/nvidia-drivers. Work in progress.
-media-libs/libglvnd
-
 # James Le Cuirot  (2017-12-17)
 # Java 9+ is not yet fully supported on Gentoo. Packages cannot depend
 # on it so these virtuals are not yet required. If you wish to use



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

2019-12-05 Thread Matt Turner
commit: f01a8731c52d34ca5c777992682f34768d9f0dd2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 21:37:54 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 22:29:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f01a8731

media-libs/libglvnd: Convert to Meson

Also add ~ppc ~ppc64 ~x86 keywords, for platforms where I've run the
test suite.

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libglvnd/libglvnd-.ebuild | 48 +---
 1 file changed, 26 insertions(+), 22 deletions(-)

diff --git a/media-libs/libglvnd/libglvnd-.ebuild 
b/media-libs/libglvnd/libglvnd-.ebuild
index 877b89fb309..1905bb39e78 100644
--- a/media-libs/libglvnd/libglvnd-.ebuild
+++ b/media-libs/libglvnd/libglvnd-.ebuild
@@ -9,24 +9,27 @@ if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
 fi
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+PYTHON_COMPAT=( python3_{5,6,7,8} )
+VIRTUALX_REQUIRED=manual
+
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1 virtualx
 
 DESCRIPTION="The GL Vendor-Neutral Dispatch library"
 HOMEPAGE="https://gitlab.freedesktop.org/glvnd/libglvnd;
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~amd64"
-   COMMIT=""
-   SRC_URI="https://github.com/NVIDIA/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-   S=${WORKDIR}/${PN}-${COMMIT}
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   
SRC_URI="https://gitlab.freedesktop.org/glvnd/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
 -> ${P}.tar.bz2"
+   S=${WORKDIR}/${PN}-v${PV}
 fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="X"
+IUSE="test X"
 
+BDEPEND="${PYTHON_DEPS}
+   test? ( X? ( ${VIRTUALX_DEPEND} ) )"
 RDEPEND="
!media-libs/mesa[-libglvnd(-)]
!

[gentoo-commits] repo/gentoo:master commit in: profiles/base/, profiles/arch/arm64/, profiles/arch/m68k/, profiles/arch/sh/, ...

2019-12-05 Thread Matt Turner
commit: c5a3bcfbd25b0e185169071cd08760ea0d2fcaa7
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 22:09:02 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 22:30:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a3bcfb

profiles: Move USE=libglvnd to use.stable.mask

... and to profiles for arches without keywords.

Bug: https://bugs.gentoo.org/692206
Signed-off-by: Matt Turner  gentoo.org>

 profiles/arch/alpha/use.mask  | 10 +++---
 profiles/arch/arm/use.mask|  7 +++
 profiles/arch/arm64/use.mask  |  7 +++
 profiles/arch/hppa/use.mask   | 10 +++---
 profiles/arch/ia64/use.mask   |  7 ++-
 profiles/arch/m68k/use.mask   |  4 
 profiles/arch/mips/use.mask   |  4 
 profiles/arch/riscv/use.mask  |  6 +-
 profiles/arch/s390/use.mask   |  4 
 profiles/arch/sh/use.mask |  7 +++
 profiles/arch/sparc/use.mask  |  4 +++-
 profiles/base/use.mask|  4 
 profiles/base/use.stable.mask |  4 
 13 files changed, 65 insertions(+), 13 deletions(-)

diff --git a/profiles/arch/alpha/use.mask b/profiles/arch/alpha/use.mask
index 4ed29713ab4..b53d42b2f4e 100644
--- a/profiles/arch/alpha/use.mask
+++ b/profiles/arch/alpha/use.mask
@@ -1,6 +1,13 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Unmask the flag which corresponds to ARCH.
+-alpha
+
+# Matt Turner  (2019-12-05)
+# media-libs/libglvnd is not keyworded
+libglvnd
+
 # Matt Turner  (2018-12-22)
 # net-libs/zeromq is not keyworded
 zeromq
@@ -41,9 +48,6 @@ gadu
 curl_ssl_libressl
 libressl
 
-# Unmask the flag which corresponds to ARCH.
--alpha
-
 # This file masks out USE flags that are simply NOT allowed in the default
 # profile for any architecture.  This works, for example, if a non-default
 # profile (such as the selinux profiles) have a USE flag associated with

diff --git a/profiles/arch/arm/use.mask b/profiles/arch/arm/use.mask
index abc7267ea52..9e65656492d 100644
--- a/profiles/arch/arm/use.mask
+++ b/profiles/arch/arm/use.mask
@@ -1,6 +1,13 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
 # Unmask the flag which corresponds to ARCH.
 -arm
 
+# Matt Turner  (2019-12-05)
+# media-libs/libglvnd is not keyworded
+libglvnd
+
 # Unmask arm arch specific flags
 -cpu_flags_arm_iwmmxt
 -cpu_flags_arm_iwmmxt2

diff --git a/profiles/arch/arm64/use.mask b/profiles/arch/arm64/use.mask
index 0f8bcd75b7f..8f25ea517e3 100644
--- a/profiles/arch/arm64/use.mask
+++ b/profiles/arch/arm64/use.mask
@@ -1,6 +1,13 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
 # Unmask the flag which corresponds to ARCH.
 -arm64
 
+# Matt Turner  (2019-12-05)
+# media-libs/libglvnd is not keyworded
+libglvnd
+
 # Unmask arm specific USE flags
 -cpu_flags_arm_v4
 -cpu_flags_arm_v4

diff --git a/profiles/arch/hppa/use.mask b/profiles/arch/hppa/use.mask
index 9c9ea506f8e..ad9bf7805b6 100644
--- a/profiles/arch/hppa/use.mask
+++ b/profiles/arch/hppa/use.mask
@@ -1,9 +1,16 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Unmask the flag which corresponds to ARCH.
+-hppa
+
 # NOTE: When masking a USE flag due to missing keywords, please file a keyword
 # request bug for the hppa arch.
 
+# Matt Turner  (2019-12-05)
+# media-libs/libglvnd is not keyworded
+libglvnd
+
 # Mattéo Rossillol‑‑Laruelle  (2019‑08‑31)
 # Dependency not keyworded (dev-libs/libappindicator).
 ayatana
@@ -181,9 +188,6 @@ flite
 # net-misc/wicd and sys-power/pm-utils are currently not supported (bug 
#280312)
 pm-utils
 
-# Unmask the flag which corresponds to ARCH.
--hppa
-
 # Jeroen Roovers  (2008-06-07)
 # dev-util/valgrind has not been ported to HPPA.
 valgrind

diff --git a/profiles/arch/ia64/use.mask b/profiles/arch/ia64/use.mask
index 6a9a1450fd3..67397596268 100644
--- a/profiles/arch/ia64/use.mask
+++ b/profiles/arch/ia64/use.mask
@@ -1,7 +1,12 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
 # Unmask the flag which corresponds to ARCH.
 -ia64
 
-# This is a list of USE flags that should not be used on ia64.
+# Matt Turner  (2019-12-05)
+# media-libs/libglvnd is not keyworded
+libglvnd
 
 # Mattéo Rossillol‑‑Laruelle  (2019‑08‑31)
 # Dependency not keyworded (dev-libs/libindicate).

diff --git a/profiles/arch/m68k/use.mask b/profiles/arch/m68k/use.mask
index c83a23bed8f..ace5bc6cf9c 100644
--- a/profiles/arch/m68k/use.mask
+++ b/profiles/arch/m68k/use.mask
@@ -4,6 +4,10 @@
 # Unmask the flag which corresponds to ARCH.
 -m68k
 
+# Matt Turner  (2019-12-05)
+# media-libs/libglvnd is not keyworded
+libglvnd
+
 # Mattéo Rossillol‑‑Laruelle  (2019‑08‑31)
 # Dependencies not keyworded.
 ayatana

diff --git a/profiles/arch/mips/use.mask b/profiles/arch/mips/use.mask
index 

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

2019-12-05 Thread Matt Turner
commit: 22a315e975c656d510c39bd96a1f3949bb04ff6a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 21:48:42 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 22:29:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22a315e9

media-libs/libglvnd: Version bump to 1.3.0

Closes: https://bugs.gentoo.org/698932
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libglvnd/Manifest  |  1 +
 media-libs/libglvnd/libglvnd-1.3.0.ebuild | 65 +++
 2 files changed, 66 insertions(+)

diff --git a/media-libs/libglvnd/Manifest b/media-libs/libglvnd/Manifest
index 111dfb6a2d9..c3ac0c352b1 100644
--- a/media-libs/libglvnd/Manifest
+++ b/media-libs/libglvnd/Manifest
@@ -1 +1,2 @@
 DIST libglvnd-1.2.0.tar.gz 2030275 BLAKE2B 
b6b147f431ba9a177be9eada7af0e4ffc05c412e29f3a257746d74ff99078ecf87f7e66a97f7c1ce2779b3224bf3e7d1c4ab57c437074ae754e646c9275dae7f
 SHA512 
f09a3ab3f1ba7397616cf2b0baf4385bd2127abb06817f8b383549cb21f36802be24a29598d7bfdd4c410b9ea95335b4ffc52529824dc88a719af52432c6b74c
+DIST libglvnd-1.3.0.tar.bz2 713781 BLAKE2B 
15014038e8a0f14fc29892354b282535735af0f29e244e4826b945071deec151783fc042f3588add24c31f35a5c72c53bfb1090c109117466f8b8c805cc67356
 SHA512 
d573fc4a1114be9468afd6e035b3815111f9a7e7453bc2b127c93a1b8a01c7f20440ff8872fbae8fc93aab98862dac3224ceca7f28d02e93f3b9a641d1a248e3

diff --git a/media-libs/libglvnd/libglvnd-1.3.0.ebuild 
b/media-libs/libglvnd/libglvnd-1.3.0.ebuild
new file mode 100644
index 000..1905bb39e78
--- /dev/null
+++ b/media-libs/libglvnd/libglvnd-1.3.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://gitlab.freedesktop.org/glvnd/libglvnd.git;
+
+if [[ ${PV} = * ]]; then
+   GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python3_{5,6,7,8} )
+VIRTUALX_REQUIRED=manual
+
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1 virtualx
+
+DESCRIPTION="The GL Vendor-Neutral Dispatch library"
+HOMEPAGE="https://gitlab.freedesktop.org/glvnd/libglvnd;
+if [[ ${PV} = * ]]; then
+   SRC_URI=""
+else
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   
SRC_URI="https://gitlab.freedesktop.org/glvnd/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
 -> ${P}.tar.bz2"
+   S=${WORKDIR}/${PN}-v${PV}
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test X"
+
+BDEPEND="${PYTHON_DEPS}
+   test? ( X? ( ${VIRTUALX_DEPEND} ) )"
+RDEPEND="
+   !media-libs/mesa[-libglvnd(-)]
+   !

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

2019-12-05 Thread Matt Turner
commit: 69d55d6e0713ae262274811ac5badf3d7f177825
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Dec  5 22:06:12 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec  5 22:29:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69d55d6e

media-libs/libglvnd: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libglvnd/Manifest |  1 -
 media-libs/libglvnd/libglvnd-1.2.0-r1.ebuild | 59 
 2 files changed, 60 deletions(-)

diff --git a/media-libs/libglvnd/Manifest b/media-libs/libglvnd/Manifest
index c3ac0c352b1..2eca6f17a70 100644
--- a/media-libs/libglvnd/Manifest
+++ b/media-libs/libglvnd/Manifest
@@ -1,2 +1 @@
-DIST libglvnd-1.2.0.tar.gz 2030275 BLAKE2B 
b6b147f431ba9a177be9eada7af0e4ffc05c412e29f3a257746d74ff99078ecf87f7e66a97f7c1ce2779b3224bf3e7d1c4ab57c437074ae754e646c9275dae7f
 SHA512 
f09a3ab3f1ba7397616cf2b0baf4385bd2127abb06817f8b383549cb21f36802be24a29598d7bfdd4c410b9ea95335b4ffc52529824dc88a719af52432c6b74c
 DIST libglvnd-1.3.0.tar.bz2 713781 BLAKE2B 
15014038e8a0f14fc29892354b282535735af0f29e244e4826b945071deec151783fc042f3588add24c31f35a5c72c53bfb1090c109117466f8b8c805cc67356
 SHA512 
d573fc4a1114be9468afd6e035b3815111f9a7e7453bc2b127c93a1b8a01c7f20440ff8872fbae8fc93aab98862dac3224ceca7f28d02e93f3b9a641d1a248e3

diff --git a/media-libs/libglvnd/libglvnd-1.2.0-r1.ebuild 
b/media-libs/libglvnd/libglvnd-1.2.0-r1.ebuild
deleted file mode 100644
index 42b0789af3b..000
--- a/media-libs/libglvnd/libglvnd-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 2018-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_REPO_URI="https://github.com/NVIDIA/${PN}.git;
-
-if [[ ${PV} = * ]]; then
-   GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
-
-DESCRIPTION="The GL Vendor-Neutral Dispatch library"
-HOMEPAGE="https://github.com/NVIDIA/libglvnd;
-if [[ ${PV} = * ]]; then
-   SRC_URI=""
-else
-   KEYWORDS="~amd64"
-   
SRC_URI="https://github.com/NVIDIA/${PN}/releases/download/v${PV}/${P}.tar.gz;
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="X"
-
-RDEPEND="
-   !media-libs/mesa[-libglvnd(-)]
-   !

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

2019-12-05 Thread Sergei Trofimovich
commit: ddf4bd00eca50a6d6fe4f255088bfd13fc12b7c9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:28:42 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddf4bd00

gnome-extra/libgsf: stable 1.14.45 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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>

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

diff --git a/gnome-extra/libgsf/libgsf-1.14.45.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.45.ebuild
index 40dec8292a7..4d2e27fffa0 100644
--- a/gnome-extra/libgsf/libgsf-1.14.45.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.45.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://developer.gnome.org/gsf/;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="bzip2 gtk +introspection"
 
 RDEPEND="



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

2019-12-05 Thread Sergei Trofimovich
commit: 7c5717ab6387975c0237dd4e99cd6e194b1b859d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:24:12 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5717ab

x11-libs/gtk+: stable 3.24.8 for hppa, bug #683842

Package-Manager: Portage-2.3.79, 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>

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

diff --git a/x11-libs/gtk+/gtk+-3.24.8.ebuild b/x11-libs/gtk+/gtk+-3.24.8.ebuild
index 0f01ee9831f..d767c232077 100644
--- a/x11-libs/gtk+/gtk+-3.24.8.ebuild
+++ b/x11-libs/gtk+/gtk+-3.24.8.ebuild
@@ -19,7 +19,7 @@ REQUIRED_USE="
xinerama? ( X )
 "
 
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 # Upstream wants us to do their job:
 # https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1



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

2019-12-05 Thread Sergei Trofimovich
commit: 32696114353c1d68f9d0cfd107e6e3221c83e7b2
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:27:36 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32696114

dev-util/gdbus-codegen: stable 2.60.6 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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-util/gdbus-codegen/gdbus-codegen-2.60.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.60.6.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.60.6.ebuild
index 9a2ffb6630c..518f0b5f3f9 100644
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.60.6.ebuild
+++ b/dev-util/gdbus-codegen/gdbus-codegen-2.60.6.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.gtk.org/;
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}"



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

2019-12-05 Thread Sergei Trofimovich
commit: a6673b114b9d13a35e91f99d6d5a42ae1896c5b9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:30:08 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6673b11

x11-libs/gtk+: stable 3.24.10 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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>

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

diff --git a/x11-libs/gtk+/gtk+-3.24.10.ebuild 
b/x11-libs/gtk+/gtk+-3.24.10.ebuild
index 2791a869723..68d236b8db3 100644
--- a/x11-libs/gtk+/gtk+-3.24.10.ebuild
+++ b/x11-libs/gtk+/gtk+-3.24.10.ebuild
@@ -18,7 +18,7 @@ REQUIRED_USE="
xinerama? ( X )
 "
 
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 # Upstream wants us to do their job:
 # https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1



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

2019-12-05 Thread Sergei Trofimovich
commit: b0550dfe46b7d74c93bd4e6d1088ab1f8c295252
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:28:06 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0550dfe

dev-util/glib-utils: stable 2.60.6 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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-util/glib-utils/glib-utils-2.60.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/glib-utils/glib-utils-2.60.6.ebuild 
b/dev-util/glib-utils/glib-utils-2.60.6.ebuild
index 60315e256a4..d848e41b7ef 100644
--- a/dev-util/glib-utils/glib-utils-2.60.6.ebuild
+++ b/dev-util/glib-utils/glib-utils-2.60.6.ebuild
@@ -15,7 +15,7 @@ SLOT="0" # /usr/bin utilities that can't be parallel 
installed by their nature
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-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 ~x86-winnt"
+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 ~x86-winnt"
 
 RDEPEND="${PYTHON_DEPS}
!

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

2019-12-05 Thread Sergei Trofimovich
commit: ca9e2048f56f8145f72dfde13a4aedf8f0c4c9c9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:36:55 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9e2048

dev-python/jsonpointer: keyworded 2.0-r1 for hppa, bug #700918

Package-Manager: Portage-2.3.79, 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-python/jsonpointer/jsonpointer-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/jsonpointer/jsonpointer-2.0-r1.ebuild 
b/dev-python/jsonpointer/jsonpointer-2.0-r1.ebuild
index 911cfd6a5e7..53f3cf518fe 100644
--- a/dev-python/jsonpointer/jsonpointer-2.0-r1.ebuild
+++ b/dev-python/jsonpointer/jsonpointer-2.0-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



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

2019-12-05 Thread Sergei Trofimovich
commit: e90a4a904960afcd5f1bf12072023062e06ca393
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:32:07 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90a4a90

net-mail/fetchmail: stable 6.4.1 for sparc, bug #701938

Package-Manager: Portage-2.3.79, 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-mail/fetchmail/fetchmail-6.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/fetchmail/fetchmail-6.4.1.ebuild 
b/net-mail/fetchmail/fetchmail-6.4.1.ebuild
index 07fcab99f54..3cd44feb753 100644
--- a/net-mail/fetchmail/fetchmail-6.4.1.ebuild
+++ b/net-mail/fetchmail/fetchmail-6.4.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2 public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="ssl nls kerberos tk socks libressl"
 REQUIRED_USE="tk? ( ${PYTHON_REQUIRED_USE} )"
 



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

2019-12-05 Thread Sergei Trofimovich
commit: 3667ea08b12ad661b4e9ff24c10054f67417ce38
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:29:21 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3667ea08

net-libs/glib-networking: stable 2.60.3 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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>

 net-libs/glib-networking/glib-networking-2.60.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/glib-networking/glib-networking-2.60.3.ebuild 
b/net-libs/glib-networking/glib-networking-2.60.3.ebuild
index c8650eaef36..1ef9f28fb0b 100644
--- a/net-libs/glib-networking/glib-networking-2.60.3.ebuild
+++ b/net-libs/glib-networking/glib-networking-2.60.3.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://git.gnome.org/browse/glib-networking/;
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+gnome +libproxy +ssl test"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~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 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.55.1:2[${MULTILIB_USEDEP}]



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

2019-12-05 Thread Sergei Trofimovich
commit: f402d9c05ec36a0562ae2caeff8c95c2ca050f55
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:27:05 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f402d9c0

dev-libs/gobject-introspection-common: mark 1.60.2 hppa, bug #692932

Package-Manager: Portage-2.3.79, 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>

 .../gobject-introspection-common-1.60.2.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.60.2.ebuild
 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.60.2.ebuild
index 930f9b7d4c5..9efbf2992a7 100644
--- 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.60.2.ebuild
+++ 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.60.2.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://wiki.gnome.org/Projects/GObjectIntrospection;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~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 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="!<${CATEGORY}/${PN/-common}-${PV}"



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

2019-12-05 Thread Sergei Trofimovich
commit: a3d4b0ecb882549850546c9c67e961a79156328c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:32:59 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3d4b0ec

dev-libs/newt: stable 0.52.21 for sparc, bug #701956

Package-Manager: Portage-2.3.79, 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-libs/newt/newt-0.52.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/newt/newt-0.52.21.ebuild 
b/dev-libs/newt/newt-0.52.21.ebuild
index 0b730a5f841..1a8fb3dba12 100644
--- a/dev-libs/newt/newt-0.52.21.ebuild
+++ b/dev-libs/newt/newt-0.52.21.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://releases.pagure.org/newt/${P}.tar.gz;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86"
 IUSE="gpm nls tcl"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2019-12-05 Thread Sergei Trofimovich
commit: f2487e177dd0177c0e36d15e690f33d6dddbdb87
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:31:16 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2487e17

dev-ruby/nokogiri: stable 1.10.4 for hppa, bug #691974

Package-Manager: Portage-2.3.79, 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-ruby/nokogiri/nokogiri-1.10.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/nokogiri/nokogiri-1.10.4.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.10.4.ebuild
index ca9a935f953..5a925bfc56d 100644
--- a/dev-ruby/nokogiri/nokogiri-1.10.4.ebuild
+++ b/dev-ruby/nokogiri/nokogiri-1.10.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://www.nokogiri.org/;
 LICENSE="MIT"
 SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 s390 sparc x86 
~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 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



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

2019-12-05 Thread Sergei Trofimovich
commit: 304f4a0bbb5c51f4e29fe573845b2f6e9aafc5ff
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:25:50 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=304f4a0b

dev-lang/vala: stable 0.40.16 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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-lang/vala/vala-0.40.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.40.16.ebuild 
b/dev-lang/vala/vala-0.40.16.ebuild
index fde95a1cd8f..f8c03b63981 100644
--- a/dev-lang/vala/vala-0.40.16.ebuild
+++ b/dev-lang/vala/vala-0.40.16.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.40"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x86-linux"
 IUSE="test valadoc"
 
 RDEPEND="



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

2019-12-05 Thread Sergei Trofimovich
commit: d1535351d1f78a7c854dc3a58f690c7efcbd885f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:36:25 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1535351

dev-python/rfc3339-validator: keyworded 0.1.2 for hppa, bug #700918

Package-Manager: Portage-2.3.79, 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-python/rfc3339-validator/rfc3339-validator-0.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rfc3339-validator/rfc3339-validator-0.1.2.ebuild 
b/dev-python/rfc3339-validator/rfc3339-validator-0.1.2.ebuild
index 0e5d0de49e7..9f0280e058d 100644
--- a/dev-python/rfc3339-validator/rfc3339-validator-0.1.2.ebuild
+++ b/dev-python/rfc3339-validator/rfc3339-validator-0.1.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/naimetti/rfc3339-validator/archive/v0.1.2.tar.gz ->
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~sparc ~x86"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]
dev-python/strict-rfc3339[${PYTHON_USEDEP}]"



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

2019-12-05 Thread Sergei Trofimovich
commit: 1c070da89f2d6ffce4e5a502998ac6dd44ad9aa0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:43:45 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c070da8

dev-libs/gobject-introspection: stable 1.60.2 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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/gobject-introspection/gobject-introspection-1.60.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gobject-introspection/gobject-introspection-1.60.2.ebuild 
b/dev-libs/gobject-introspection/gobject-introspection-1.60.2.ebuild
index ecde3bca4d5..a1aeb289db2 100644
--- a/dev-libs/gobject-introspection/gobject-introspection-1.60.2.ebuild
+++ b/dev-libs/gobject-introspection/gobject-introspection-1.60.2.ebuild
@@ -17,7 +17,7 @@ REQUIRED_USE="
${PYTHON_REQUIRED_USE}
test? ( cairo )
 "
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~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 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # virtual/pkgconfig needed at runtime, bug #505408
 RDEPEND="



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

2019-12-05 Thread Sergei Trofimovich
commit: b12aab5b4a7aafeda762df6e9bb8140cac44724c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:25:16 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b12aab5b

dev-lang/vala: stable 0.36.20 for hppa, bug #692932

Package-Manager: Portage-2.3.79, 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-lang/vala/vala-0.36.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.36.20.ebuild 
b/dev-lang/vala/vala-0.36.20.ebuild
index 44cd38d8560..51d63a02f96 100644
--- a/dev-lang/vala/vala-0.36.20.ebuild
+++ b/dev-lang/vala/vala-0.36.20.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.36"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2019-12-05 Thread Sergei Trofimovich
commit: b593b11246714a39ac28694440905fdd0b51632e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec  5 21:39:32 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec  5 22:14:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b593b112

dev-python/scripttest: keyworded 1.3.0 for hppa, bug #700918

Package-Manager: Portage-2.3.79, 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-python/scripttest/scripttest-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/scripttest/scripttest-1.3.0.ebuild 
b/dev-python/scripttest/scripttest-1.3.0.ebuild
index 75e52fb9d54..c2d581b8f29 100644
--- a/dev-python/scripttest/scripttest-1.3.0.ebuild
+++ b/dev-python/scripttest/scripttest-1.3.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/pypa/scripttest/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm64 ~sparc x86"
+KEYWORDS="amd64 arm64 ~hppa ~sparc x86"
 
 BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



  1   2   3   >