[gentoo-commits] proj/devmanual:master commit in: general-concepts/dependencies/

2020-01-29 Thread Ulrich Müller
commit: d25e172b16fa3c59f6868dc164bc6dcc801c4fc2
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 29 07:59:28 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jan 29 07:58:26 2020 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d25e172b

general-concepts/dependencies: Document BDEPEND

Signed-off-by: Michał Górny  gentoo.org>
Signed-off-by: Ulrich Müller  gentoo.org>

 general-concepts/dependencies/text.xml | 48 --
 1 file changed, 46 insertions(+), 2 deletions(-)

diff --git a/general-concepts/dependencies/text.xml 
b/general-concepts/dependencies/text.xml
index 32feff1..8deca1f 100644
--- a/general-concepts/dependencies/text.xml
+++ b/general-concepts/dependencies/text.xml
@@ -11,17 +11,61 @@ provided by emerge.
 
 
 
+
+CHOST vs CBUILD
+
+
+
+In order to avoid ambiguity, we use the following terms to indicate different
+systems when cross-compiling:
+
+
+
+  CBUILD
+  
+The system on which the build is performed.  Dependencies that apply
+to the CBUILD system can be executed during build time.  When
+cross-compiling, they are not installed into the system being built.
+  
+
+  CHOST
+  
+The system on which the package is going to be executed.  When
+cross-compiling, dependencies applying to CHOST can not be executed.
+  
+
+
+
+When not cross-compiling, CBUILD and CHOST have the same value and both classes
+of dependencies are merged.
+
+
+
+
+
 
 Build Dependencies
 
 
 
-The DEPEND ebuild variable should specify any dependencies which are
-required to unpack, patch, compile or install the package (but see
+Build dependencies are used to specify any dependencies that are required
+to unpack, patch, compile, test or install the package (but see
  for
 exemptions).
 
 
+
+Starting with EAPI 7, build dependencies are split into two variables:
+BDEPEND and DEPEND. BDEPEND specifies dependencies
+applicable to CBUILD, i.e. programs that need to be executed during the build,
+e.g. virtual/pkgconfig. DEPEND specifies dependencies for CHOST,
+i.e. packages that need to be found on built system, e.g. libraries and 
headers.
+
+
+
+In earlier EAPIs, all build dependencies are placed in DEPEND.
+
+
 
 
 



[gentoo-commits] proj/devmanual:master commit in: general-concepts/dependencies/

2020-01-29 Thread Ulrich Müller
commit: be7ec7f3d2965719ffb69879bd879fc9b48c6dc1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 29 08:03:11 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jan 29 07:58:26 2020 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=be7ec7f3

general-concepts/dependencies: Improve PDEPEND

Rewrite the PDEPEND description to be more focused on its purpose.
Rename to 'Post Dependencies' to match PMS. Reverse the weird backwards
logic that indicated that they might be installed before the package
into saying that they may be installed after it. Clearly indicate
that its only purpose is to resolve circular dependencies.

Signed-off-by: Michał Górny  gentoo.org>
Signed-off-by: Ulrich Müller  gentoo.org>

 general-concepts/dependencies/text.xml | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/general-concepts/dependencies/text.xml 
b/general-concepts/dependencies/text.xml
index 8deca1f..dde6cda 100644
--- a/general-concepts/dependencies/text.xml
+++ b/general-concepts/dependencies/text.xml
@@ -94,16 +94,14 @@ Items which are in RDEPEND but not DEPEND 
could in theory b
 
 
 
-Post-Merge Dependencies
+Post Dependencies
 
 
 
-The PDEPEND variable specifies dependencies that should be
-merged after the package, but which may be merged at any time,
-if the former is not possible. This is sometimes used for plugins
-that have a dependency upon the package being merged. Generally
-PDEPEND should be avoided in favour of RDEPEND except
-where this will create circular dependency chains.
+The PDEPEND variable specifies runtime dependencies that do not strictly
+require being satisfied immediately. They can be merged after
+the package. This variable is used purely to resolve circular dependencies,
+while in general case RDEPEND should be used instead.
 
 
 



[gentoo-commits] proj/devmanual:master commit in: general-concepts/dependencies/

2020-01-29 Thread Ulrich Müller
commit: a7e1e6accfd537734321ddcefcc0515fe64a25e5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 29 08:47:41 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jan 29 07:58:27 2020 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=a7e1e6ac

general-concepts/dependencies: Describe circular deps in detail

Signed-off-by: Michał Górny  gentoo.org>
Signed-off-by: Ulrich Müller  gentoo.org>

 general-concepts/dependencies/text.xml | 49 ++
 1 file changed, 49 insertions(+)

diff --git a/general-concepts/dependencies/text.xml 
b/general-concepts/dependencies/text.xml
index dde6cda..2aca289 100644
--- a/general-concepts/dependencies/text.xml
+++ b/general-concepts/dependencies/text.xml
@@ -620,6 +620,55 @@ RESTRICT="!test? ( test )"
 DEPEND="test? ( dev-util/foo )"
 
 
+
+
+
+
+Circular Dependencies
+
+
+
+Circular dependencies occur if one or more of package's (possibly indirect)
+dependencies depend on the package itself. This creates a dependency cycle 
where
+each of the packages must technically be installed before the other.
+For example, if package A depends on B, B depends on C and C depends on A, then
+the package manager cannot install A before C, and C before A.
+
+
+
+There are three kinds of circular dependencies:
+
+
+
+  
+Circular dependencies that occur if only one of the packages strictly needs
+to be installed before the other. For example, dev-python/certifi
+strictly requires dev-python/setuptools to build but the latter
+package requires the former for some runtime functionality. As a result,
+dev-python/certifi can be installed later than the other package.
+PDEPEND is used to express this and automatically resolve
+the circular dependency.
+  
+
+  
+Circular dependencies that occur if the cycle applies only to some
+combination of USE flags on one of the packages. For example, running tests
+in dev-python/setuptools requires a number of packages which require
+dev-python/setuptools to be installed first. This kind of circular
+dependency can be resolved by the user by adjusting USE flags on one
+of the packages, e.g. by disabling tests on dev-python/setuptools,
+and reenabling them once the dependency is initially installed.
+  
+
+  
+Circular dependencies that cannot be resolved using the regular means.
+For example, dev-util/cmake used to depend
+on dev-libs/jsoncpp, while the latter package used the former
+to build. Resolving this kind of dependency usually requires bundling one
+of the dependencies conditionally, or providing an alternate bootstrap 
path.
+  
+
+
 
 
 



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

2020-01-29 Thread Michał Górny
commit: 323635113e9babbfbc113c1e09b384713fb734dc
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 29 07:05:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 29 08:12:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32363511

dev-python/lxml: Bump to 4.4.3

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

 dev-python/lxml/Manifest  |  1 +
 dev-python/lxml/lxml-4.4.3.ebuild | 82 +++
 2 files changed, 83 insertions(+)

diff --git a/dev-python/lxml/Manifest b/dev-python/lxml/Manifest
index 25c84c3ecd9..289b42a9f0b 100644
--- a/dev-python/lxml/Manifest
+++ b/dev-python/lxml/Manifest
@@ -1,2 +1,3 @@
 DIST lxml-4.3.3.tar.gz 4378439 BLAKE2B 
30c2a29e58951164fbff1c9d23362d46987c86b671e0cfa6cf15cbbb3db23ead856786babe57ce553f7b8a66d8ac333410ea1bb3b8b521aac43a038b90daf488
 SHA512 
cbc1cd30bac4b9ac845d99949c8c231a7870398f942695df5a00586d70d0f6b6ebd457a1a9306806af7d0fd521a14c54d266902943263927a0d940abc3cdf5c0
 DIST lxml-4.4.2.tar.gz 940286 BLAKE2B 
28366d1673b356f980cedc64839f070e8166906705bc948af24bba369153accc0a4cea0372e87530227be88a89a0dab4d23308b75fd695f55fdb73e6326aa03b
 SHA512 
af6608df7e47513644b841ecb6291e655122927cb439bd2ae694fd344cf5dca621e3e1ce6b40accc6db9e0c4383b5b3e6c6f9ff19f35c4daf30f119a217113ca
+DIST lxml-4.4.3.tar.gz 940482 BLAKE2B 
9ece0314d7b8ef82d70e83f6b77e4abef99d486a0168497f1f97e6a93d81d58e522e259d3569373d2429ac3190a642e8d1107dbae29ca20ec56636f7576545b6
 SHA512 
7b07450a243595bd412a43e73a55fafda0e6a6e41ed47c5488ee8e6cbd04d48a93db1b06f8b646bdc6377cad063aa53781cf41e3048f9dd7a62ccecc20900298

diff --git a/dev-python/lxml/lxml-4.4.3.ebuild 
b/dev-python/lxml/lxml-4.4.3.ebuild
new file mode 100644
index 000..83107898492
--- /dev/null
+++ b/dev-python/lxml/lxml-4.4.3.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
+
+inherit distutils-r1 eutils toolchain-funcs
+
+DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries"
+HOMEPAGE="https://lxml.de/ https://pypi.org/project/lxml/ 
https://github.com/lxml/lxml";
+SRC_URI="https://github.com/lxml/lxml/archive/${P}.tar.gz";
+S=${WORKDIR}/lxml-${P}
+
+LICENSE="BSD ElementTree GPL-2 PSF-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc examples +threads test"
+RESTRICT="!test? ( test )"
+
+# Note: lib{xml2,xslt} are used as C libraries, not Python modules.
+RDEPEND="
+   >=dev-libs/libxml2-2.9.5
+   >=dev-libs/libxslt-1.1.28"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' python2_7 
'python3*')
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/cssselect[${PYTHON_USEDEP}] )
+   "
+
+DISTUTILS_IN_SOURCE_BUILD=1
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.5.0-cross-compile.patch
+   "${FILESDIR}"/${PN}-4.4.2-tests-pypy.patch
+)
+
+python_prepare_all() {
+   # avoid replacing PYTHONPATH in tests.
+   sed -i -e '/sys\.path/d' test.py || die
+
+   # don't use some random SDK on Darwin
+   sed -i -e '/_ldflags =/s/=.*isysroot.*darwin.*None/= None/' \
+   setupinfo.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   if ! python_is_python3; then
+   local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+   fi
+   tc-export PKG_CONFIG
+   distutils-r1_python_compile
+}
+
+python_test() {
+   cp -r -l src/lxml/tests "${BUILD_DIR}"/lib/lxml/ || die
+   cp -r -l src/lxml/html/tests "${BUILD_DIR}"/lib/lxml/html/ || die
+   ln -s "${S}"/doc "${BUILD_DIR}"/ || die
+
+   "${EPYTHON}" test.py -vv --all-levels -p || die "Test ${test} fails 
with ${EPYTHON}"
+}
+
+python_install_all() {
+   if use doc; then
+   local DOCS=( README.rst *.txt doc/*.txt )
+   local HTML_DOCS=( doc/html/. )
+   fi
+   if use examples; then
+   dodoc -r samples
+   fi
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   optfeature "Support for BeautifulSoup as a parser backend" 
dev-python/beautifulsoup
+   optfeature "Translates CSS selectors to XPath 1.0 expressions" 
dev-python/cssselect
+}



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

2020-01-29 Thread Michał Górny
commit: 8e283ddd7e7cfd33203278872556a5b7db34eaa1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 29 08:47:41 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 29 08:47:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e283ddd

sys-libs/compiler-rt: Fix stripping -nodefaultlibs

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

 sys-libs/compiler-rt/compiler-rt-10.0.0..ebuild | 2 +-
 sys-libs/compiler-rt/compiler-rt-11.0.0..ebuild | 2 +-
 sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild   | 2 +-
 sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild   | 2 +-
 sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-libs/compiler-rt/compiler-rt-10.0.0..ebuild 
b/sys-libs/compiler-rt/compiler-rt-10.0.0..ebuild
index b5eea1980e7..fb90bbaab7c 100644
--- a/sys-libs/compiler-rt/compiler-rt-10.0.0..ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-10.0.0..ebuild
@@ -62,9 +62,9 @@ src_configure() {
if use clang; then
local -x CC=${CHOST}-clang
local -x CXX=${CHOST}-clang++
+   strip-unsupported-flags
# ensure we can use clang before installing compiler-rt
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   strip-unsupported-flags
elif ! test_compiler; then
if test_compiler "${nolib_flags[@]}"; then
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"

diff --git a/sys-libs/compiler-rt/compiler-rt-11.0.0..ebuild 
b/sys-libs/compiler-rt/compiler-rt-11.0.0..ebuild
index b5eea1980e7..fb90bbaab7c 100644
--- a/sys-libs/compiler-rt/compiler-rt-11.0.0..ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-11.0.0..ebuild
@@ -62,9 +62,9 @@ src_configure() {
if use clang; then
local -x CC=${CHOST}-clang
local -x CXX=${CHOST}-clang++
+   strip-unsupported-flags
# ensure we can use clang before installing compiler-rt
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   strip-unsupported-flags
elif ! test_compiler; then
if test_compiler "${nolib_flags[@]}"; then
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"

diff --git a/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild 
b/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild
index 8339d3420ba..1962c02d2f2 100644
--- a/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-7.1.0.ebuild
@@ -66,9 +66,9 @@ src_configure() {
if use clang; then
local -x CC=${CHOST}-clang
local -x CXX=${CHOST}-clang++
+   strip-unsupported-flags
# ensure we can use clang before installing compiler-rt
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   strip-unsupported-flags
elif ! test_compiler; then
if test_compiler "${nolib_flags[@]}"; then
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"

diff --git a/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild 
b/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild
index 5049bf3761b..403e394f744 100644
--- a/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-8.0.1.ebuild
@@ -67,9 +67,9 @@ src_configure() {
if use clang; then
local -x CC=${CHOST}-clang
local -x CXX=${CHOST}-clang++
+   strip-unsupported-flags
# ensure we can use clang before installing compiler-rt
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   strip-unsupported-flags
elif ! test_compiler; then
if test_compiler "${nolib_flags[@]}"; then
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"

diff --git a/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild 
b/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild
index af2de6ee54e..f5ce47c037e 100644
--- a/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-9.0.1.ebuild
@@ -62,9 +62,9 @@ src_configure() {
if use clang; then
local -x CC=${CHOST}-clang
local -x CXX=${CHOST}-clang++
+   strip-unsupported-flags
# ensure we can use clang before installing compiler-rt
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   strip-unsupported-flags
elif ! test_compiler; then
if test_compiler "${nolib_flags[@]}"; then
local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"



[gentoo-commits] repo/gentoo:master commit in: mail-mta/opensmtpd/files/, mail-mta/opensmtpd/

2020-01-29 Thread Jason A. Donenfeld
commit: fabf7b6f4a9b8240f1ae4cef4dde4a2300722c9c
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Jan 29 08:51:03 2020 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Wed Jan 29 08:51:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fabf7b6f

mail-mta/opensmtpd: bump for security disaster

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 .../files/opensmtpd-6.0.3_p1-security-fixes.patch  | 91 ++
 ...3_p1-r1.ebuild => opensmtpd-6.0.3_p1-r2.ebuild} |  3 +-
 2 files changed, 93 insertions(+), 1 deletion(-)

diff --git a/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-security-fixes.patch 
b/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-security-fixes.patch
new file mode 100644
index 000..58f3ed8c38b
--- /dev/null
+++ b/mail-mta/opensmtpd/files/opensmtpd-6.0.3_p1-security-fixes.patch
@@ -0,0 +1,91 @@
+diff -ru OpenSMTPD-opensmtpd-6.0.3/smtpd/mta_session.c 
OpenSMTPD-opensmtpd-6.0.3-fixed/smtpd/mta_session.c
+--- OpenSMTPD-opensmtpd-6.0.3/smtpd/mta_session.c  2018-01-04 
23:24:01.0 +0100
 OpenSMTPD-opensmtpd-6.0.3-fixed/smtpd/mta_session.c2020-01-29 
09:47:24.607457717 +0100
+@@ -1290,40 +1290,20 @@
+   break;
+ 
+   case IO_ERROR:
++  case IO_TLSERROR:
+   log_debug("debug: mta: %p: IO error: %s", s, io_error(io));
+-  if (!s->ready) {
+-  mta_error(s, "IO Error: %s", io_error(io));
+-  mta_connect(s);
+-  break;
+-  }
+-  else if (!(s->flags & 
(MTA_FORCE_TLS|MTA_FORCE_SMTPS|MTA_FORCE_ANYSSL))) {
+-  /* error in non-strict SSL negotiation, downgrade to 
plain */
+-  if (s->flags & MTA_TLS) {
+-  log_info("smtp-out: Error on session %016"PRIx64
+-  ": opportunistic TLS failed, "
+-  "downgrading to plain", s->id);
+-  s->flags &= ~MTA_TLS;
+-  s->flags |= MTA_DOWNGRADE_PLAIN;
+-  mta_connect(s);
+-  break;
+-  }
+-  }
+-  mta_error(s, "IO Error: %s", io_error(io));
+-  mta_free(s);
+-  break;
+ 
+-  case IO_TLSERROR:
+-  log_debug("debug: mta: %p: TLS IO error: %s", s, io_error(io));
+-  if (!(s->flags & 
(MTA_FORCE_TLS|MTA_FORCE_SMTPS|MTA_FORCE_ANYSSL))) {
++  if (s->state == MTA_STARTTLS && s->use_smtp_tls) {
+   /* error in non-strict SSL negotiation, downgrade to 
plain */
+-  log_info("smtp-out: TLS Error on session %016"PRIx64
+-  ": TLS failed, "
++  log_info("smtp-out: Error on session %016"PRIx64
++  ": opportunistic TLS failed, "
+   "downgrading to plain", s->id);
+   s->flags &= ~MTA_TLS;
+   s->flags |= MTA_DOWNGRADE_PLAIN;
+   mta_connect(s);
+   break;
+   }
++
+   mta_error(s, "IO Error: %s", io_error(io));
+   mta_free(s);
+   break;
+diff -ru OpenSMTPD-opensmtpd-6.0.3/smtpd/smtp_session.c 
OpenSMTPD-opensmtpd-6.0.3-fixed/smtpd/smtp_session.c
+--- OpenSMTPD-opensmtpd-6.0.3/smtpd/smtp_session.c 2018-01-04 
23:24:01.0 +0100
 OpenSMTPD-opensmtpd-6.0.3-fixed/smtpd/smtp_session.c   2020-01-29 
09:47:24.610791335 +0100
+@@ -2004,25 +2004,23 @@
+   memmove(maddr->user, p, strlen(p) + 1);
+   }
+ 
+-  if (!valid_localpart(maddr->user) ||
+-  !valid_domainpart(maddr->domain)) {
+-  /* accept empty return-path in MAIL FROM, required for bounces 
*/
+-  if (mailfrom && maddr->user[0] == '\0' && maddr->domain[0] == 
'\0')
+-  return (1);
++  /* accept empty return-path in MAIL FROM, required for bounces */
++  if (mailfrom && maddr->user[0] == '\0' && maddr->domain[0] == '\0')
++  return (1);
+ 
+-  /* no user-part, reject */
+-  if (maddr->user[0] == '\0')
+-  return (0);
+-
+-  /* no domain, local user */
+-  if (maddr->domain[0] == '\0') {
+-  (void)strlcpy(maddr->domain, domain,
+-  sizeof(maddr->domain));
+-  return (1);
+-  }
++  /* no or invalid user-part, reject */
++  if (maddr->user[0] == '\0' || !valid_localpart(maddr->user))
+   return (0);
++
++  /* no domain part, local user */
++  if (maddr->domain[0] == '\0') {
++  (void)strlcpy(maddr->domain, domain,
++  sizeof(maddr->domain));
+   }
+ 
++  if

[gentoo-commits] repo/gentoo:master commit in: mail-mta/opensmtpd/

2020-01-29 Thread Jason A. Donenfeld
commit: 5b80fa0d1307fa714376009120c445c85220fefc
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Jan 29 08:46:18 2020 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Wed Jan 29 08:51:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b80fa0d

mail-mta/opensmtpd: remove old and never keyworded ebuild

This is old, buggy, and we never got it working properly. Revisit this
later for the 6.6 series.

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 mail-mta/opensmtpd/Manifest  |  1 -
 mail-mta/opensmtpd/opensmtpd-6.4.0_p1.ebuild | 83 
 2 files changed, 84 deletions(-)

diff --git a/mail-mta/opensmtpd/Manifest b/mail-mta/opensmtpd/Manifest
index 7ade143bda4..cef24458d90 100644
--- a/mail-mta/opensmtpd/Manifest
+++ b/mail-mta/opensmtpd/Manifest
@@ -1,2 +1 @@
 DIST opensmtpd-6.0.3p1.tar.gz 699702 BLAKE2B 
49f08e8329adc049a562b6ef7efa4c0a39cbcfe8a158cb905cfc726a7302ffe9833ccfb52041340767d55d0f2ae2087e8eac92b7359016c6c76b4d963a334558
 SHA512 
e579818a0ddbe637deb5a4e40f43eaf797783903ceac18fd89a57581b135b9e407d424e1a70ff7b4b06a0ee50bafb6e8ab2451371917887904b06ff1b55d320f
-DIST opensmtpd-6.4.0p1.tar.gz 718638 BLAKE2B 
23c1c286a865efcbd16461ec8930f5325a6e164a58ceb7bbe0feb9088bcf615b7fd7e2eb6820bcde161864c476087b39c289c75ea5ca0b18c46710f9723b3dd7
 SHA512 
c60dbac857925041769104adae33393f526a328767e19bc78d06e45a13b7dd50f3eefdaa3811b8da330c24a670e98da74e18af5ac486266dade6255a6f3b5135

diff --git a/mail-mta/opensmtpd/opensmtpd-6.4.0_p1.ebuild 
b/mail-mta/opensmtpd/opensmtpd-6.4.0_p1.ebuild
deleted file mode 100644
index 51dedcde092..000
--- a/mail-mta/opensmtpd/opensmtpd-6.4.0_p1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib user flag-o-matic eutils pam toolchain-funcs autotools systemd
-
-DESCRIPTION="Lightweight but featured SMTP daemon from OpenBSD"
-HOMEPAGE="https://www.opensmtpd.org";
-SRC_URI="https://www.opensmtpd.org/archives/${P/_}.tar.gz";
-
-LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
-SLOT="0"
-KEYWORDS="" #~amd64 ~arm ~arm64 ~x86"
-IUSE="pam +mta"
-
-DEPEND="dev-libs/libressl
-   elibc_musl? ( sys-libs/fts-standalone )
-   sys-libs/zlib
-   pam? ( sys-libs/pam )
-   sys-libs/db:=
-   dev-libs/libevent
-   app-misc/ca-certificates
-   net-mail/mailbase
-   net-libs/libasr
-   !mail-mta/courier
-   !mail-mta/esmtp
-   !mail-mta/exim
-   !mail-mta/mini-qmail
-   !mail-mta/msmtp[mta]
-   !mail-mta/netqmail
-   !mail-mta/nullmailer
-   !mail-mta/postfix
-   !mail-mta/qmail-ldap
-   !mail-mta/sendmail
-   !mail-mta/ssmtp[mta]
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P/_}
-
-src_configure() {
-   tc-export AR
-   AR="$(which "$AR")" econf \
-   --with-table-db \
-   --with-user-smtpd=smtpd \
-   --with-user-queue=smtpq \
-   --with-group-queue=smtpq \
-   --with-path-socket=/run \
-   --with-path-CAfile=/etc/ssl/certs/ca-certificates.crt \
-   --sysconfdir=/etc/opensmtpd \
-   $(use_with pam auth-pam)
-}
-
-src_install() {
-   default
-   newinitd "${FILESDIR}"/smtpd.initd smtpd
-   systemd_dounit "${FILESDIR}"/smtpd.{service,socket}
-   use pam && newpamd "${FILESDIR}"/smtpd.pam smtpd
-   dosym /usr/sbin/smtpctl /usr/sbin/makemap
-   dosym /usr/sbin/smtpctl /usr/sbin/newaliases
-   if use mta ; then
-   dodir /usr/sbin
-   dosym /usr/sbin/smtpctl /usr/sbin/sendmail
-   dosym /usr/sbin/smtpctl /usr/bin/sendmail
-   dosym /usr/sbin/smtpctl /usr/$(get_libdir)/sendmail
-   fi
-}
-
-pkg_preinst() {
-   enewgroup smtpd 25
-   enewuser smtpd 25 -1 /var/empty smtpd
-   enewgroup smtpq 252
-   enewuser smtpq 252 -1 /var/empty smtpq
-}
-
-pkg_postinst() {
-   einfo
-   einfo "Plugins for SQLite, MySQL, PostgreSQL, LDAP, socketmaps,"
-   einfo "Redis, and many other useful addons and filters are"
-   einfo "available in the mail-filter/opensmtpd-extras package."
-   einfo
-}



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

2020-01-29 Thread Agostino Sarubbo
commit: 00cfb68983a3d6159f50fe8320d5442e87bf3a9f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 10:16:51 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 10:16:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00cfb689

dev-libs/double-conversion: amd64 stable wrt bug #707054

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/double-conversion/double-conversion-3.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/double-conversion/double-conversion-3.1.5.ebuild 
b/dev-libs/double-conversion/double-conversion-3.1.5.ebuild
index f1eee185336..438ee6324f6 100644
--- a/dev-libs/double-conversion/double-conversion-3.1.5.ebuild
+++ b/dev-libs/double-conversion/double-conversion-3.1.5.ebuild
@@ -11,4 +11,4 @@ 
SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"



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

2020-01-29 Thread Agostino Sarubbo
commit: ce16ec730ad00cc59853d10594a276c7f85f1bab
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 10:16:57 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 10:16:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce16ec73

x11-libs/tslib: amd64 stable wrt bug #707056

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-libs/tslib/tslib-1.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/tslib/tslib-1.21.ebuild b/x11-libs/tslib/tslib-1.21.ebuild
index ac72cb85bb3..16ab9900fc8 100644
--- a/x11-libs/tslib/tslib-1.21.ebuild
+++ b/x11-libs/tslib/tslib-1.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/libts/tslib/releases/download/${PV}/${P}.tar.xz";
 
 LICENSE="LGPL-2 uinput? ( GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
 IUSE="evdev sdl uinput"
 
 BDEPEND="



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

2020-01-29 Thread Agostino Sarubbo
commit: c67bb307a2777da2c594c959e3999afdc4014a28
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 10:16:46 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 10:16:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c67bb307

dev-python/numpy: amd64 stable wrt bug #707048

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/numpy/numpy-1.16.5.ebuild 
b/dev-python/numpy/numpy-1.16.5.ebuild
index 8f51b01deef..bdf6984664e 100644
--- a/dev-python/numpy/numpy-1.16.5.ebuild
+++ b/dev-python/numpy/numpy-1.16.5.ebuild
@@ -22,7 +22,7 @@ SRC_URI="
)"
 LICENSE="BSD"
 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 ~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 ~x64-solaris ~x86-solaris"
 IUSE="doc lapack test"
 RESTRICT="!test? ( test )"
 



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

2020-01-29 Thread Agostino Sarubbo
commit: 16ac1a29a7218c6b20aef0b690ece9fec52623e7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 10:17:06 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 10:17:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16ac1a29

dev-python/importlib_metadata: amd64 stable wrt bug #707062

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild 
b/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild
index 6c2b6ac1325..9b98e26f08a 100644
--- a/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild
+++ b/dev-python/importlib_metadata/importlib_metadata-1.4.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 
 RDEPEND="
dev-python/zipp[${PYTHON_USEDEP}]



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

2020-01-29 Thread Agostino Sarubbo
commit: 17ef3df99a8938c6c0152172f602334d41632af3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 10:16:38 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 10:16:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17ef3df9

dev-libs/zziplib: amd64 stable wrt bug #614040

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild 
b/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild
index 582884e002c..3e739d58a64 100644
--- a/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild
+++ b/dev-libs/zziplib/zziplib-0.13.69-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/gdraheim/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
 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="doc sdl static-libs test"
 
 RESTRICT="!test? ( test )"



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

2020-01-29 Thread Agostino Sarubbo
commit: 40e70be0334d907c2bf7001204154042d76d57f6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 10:17:14 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 10:17:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e70be0

dev-python/lxml: amd64 stable wrt bug #707070

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/lxml/lxml-4.4.2.ebuild 
b/dev-python/lxml/lxml-4.4.2.ebuild
index d8a372d79f7..494b32823d6 100644
--- a/dev-python/lxml/lxml-4.4.2.ebuild
+++ b/dev-python/lxml/lxml-4.4.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/lxml/lxml/archive/${P}.tar.gz";
 
 LICENSE="BSD ElementTree GPL-2 PSF-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc examples +threads test"
 RESTRICT="!test? ( test )"
 



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

2020-01-29 Thread Christian Ruppert
commit: f9709f458f381a336d84a8a26741e0b027a58c32
Author: Christian Ruppert  gentoo  org>
AuthorDate: Wed Jan 29 10:31:33 2020 +
Commit: Christian Ruppert  gentoo  org>
CommitDate: Wed Jan 29 10:41:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9709f45

net-analyzer/nagstamon: Version bump

Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Christian Ruppert  gentoo.org>

 net-analyzer/nagstamon/Manifest   |  1 +
 net-analyzer/nagstamon/nagstamon-3.4.1.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/net-analyzer/nagstamon/Manifest b/net-analyzer/nagstamon/Manifest
index fd9080e3e67..5939b337c39 100644
--- a/net-analyzer/nagstamon/Manifest
+++ b/net-analyzer/nagstamon/Manifest
@@ -1,3 +1,4 @@
 DIST Nagstamon-2.0.1.tar.gz 535814 BLAKE2B 
f366a0b5d2f2e4c7168bbb996b68aea7f9ea2f248c25505f8e2ca553d4c275260eec8fdad27b7c1187826cca0cebc7c027491a4f7b6acb24ddf604b6b6a8a930
 SHA512 
f9c8ab928a78f289693ae58cd3dde6fa75dd66dc931dbec6a4affc35bd96f16c39a03cb441575c9ca42e810ae5962fc7226513b8cc2a17871e0365aa3a207db6
 DIST Nagstamon-3.0.2.tar.gz 542005 BLAKE2B 
090875cabbf22feea5cfe0eab0934b503d68df0f49c0a2e8056ccfed8251f278e149da5d0f8002cc5c96ffddd5b89a3ad997d90790e33c9cf1b9ffd9e32a83c0
 SHA512 
8b05b74adc7399b84cfb66d4c55ff80b2a37af7612496578bdc72ce00f712c8eae087204d00e7d7f1e1d35377f7bb8460d5cf337e315943a48a4ad5108e8d14f
 DIST Nagstamon-3.2.1.tar.gz 545190 BLAKE2B 
ce8b6624a3b1b61e307281ba193d07850bd5d104205d21e2967c1f65c0fdb217be2b2422d0312cfccaba766b814cb1f298a2ed62d07b7377530fd2ef3200a46f
 SHA512 
c3ddda8d046d08514f7633b9129abebdc039e7faee5a618ef8ef77fc2c518bad798572fb549eb9ab9ef96377cd390e159934f268d9bd97c071c4895682bff8e6
+DIST Nagstamon-3.4.1.tar.gz 563745 BLAKE2B 
3ac35c90757eb525e7e7953f63a8798a0087470e4a94161987f3c382b6be43240aa8b5c44f279d23d841dbf9e4536f38d3f5e2f63234538a00fe6b6e0ee9c680
 SHA512 
68f8a7345c606b8ad4511b34e2d76383faf8831202c9429ab24eeb215073984f00f580c83a7f5e348f7d4104d3c82bd6f4661939801444e463c3fcf64c8240bd

diff --git a/net-analyzer/nagstamon/nagstamon-3.4.1.ebuild 
b/net-analyzer/nagstamon/nagstamon-3.4.1.ebuild
new file mode 100644
index 000..bb891b8c569
--- /dev/null
+++ b/net-analyzer/nagstamon/nagstamon-3.4.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit eutils python-r1 distutils-r1
+
+MY_PN="Nagstamon"
+MY_P="${MY_PN}-${PV/_p/-}"
+
+DESCRIPTION="status monitor for the desktop"
+DESCRIPTION="systray monitor for displaying realtime status of several 
monitoring systems"
+HOMEPAGE="https://nagstamon.ifw-dresden.de";
+SRC_URI="https://nagstamon.ifw-dresden.de/files/stable/${MY_P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/PyQt5[gui,multimedia,svg,widgets,${PYTHON_USEDEP}]
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/secretstorage[${PYTHON_USEDEP}]
+   >=dev-python/python-xlib-0.19[${PYTHON_USEDEP}]
+   dev-python/requests-kerberos[${PYTHON_USEDEP}]
+   virtual/python-typing[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${MY_PN}"
+
+PATCHES="${FILESDIR}/${PN}-3.0-setup.patch"
+
+src_prepare() {
+   default_src_prepare
+
+   # pre-compressed already
+   rm Nagstamon/resources/nagstamon.1.gz || die
+   sed -i -e 's:\(nagstamon\.1\)\.gz:\1:' setup.py || die
+
+   mv ${PN}.py ${PN} || die
+
+   rm -rf "${S}/Nagstamon/thirdparty/Xlib/" || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-plugins-linux-madrisan/, ...

2020-01-29 Thread Louis Sautier
commit: 1c6d84beced12c06ae08c04955d5bb6f799a568e
Author: Louis Sautier  gentoo  org>
AuthorDate: Wed Jan 29 11:01:18 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Jan 29 11:04:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6d84be

net-analyzer/nagios-plugins-linux-madrisan: fix build w. -fno-common

Closes: https://bugs.gentoo.org/706536
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Louis Sautier  gentoo.org>

 ...-plugins-linux-madrisan-25-fix-fno-common.patch | 37 ++
 .../nagios-plugins-linux-madrisan-25-r1.ebuild |  6 +++-
 2 files changed, 42 insertions(+), 1 deletion(-)

diff --git 
a/net-analyzer/nagios-plugins-linux-madrisan/files/nagios-plugins-linux-madrisan-25-fix-fno-common.patch
 
b/net-analyzer/nagios-plugins-linux-madrisan/files/nagios-plugins-linux-madrisan-25-fix-fno-common.patch
new file mode 100644
index 000..74bddd66e74
--- /dev/null
+++ 
b/net-analyzer/nagios-plugins-linux-madrisan/files/nagios-plugins-linux-madrisan-25-fix-fno-common.patch
@@ -0,0 +1,37 @@
+From 4936ca25f3e9a2875ce063033e5e8f3a3590dab2 Mon Sep 17 00:00:00 2001
+From: Davide Madrisan 
+Date: Mon, 27 Jan 2020 22:00:41 +0100
+Subject: [PATCH] The build fails when '-fno-common' is added to CFLAGS
+
+As reported by 'sbraz', the build stops with the error message:
+
+   (.bss+0x8): multiple definition of `program_name'
+   (.bss+0x0): multiple definition of `program_name_short'
+
+This flag will be apparently enabled by default in gcc 10.
+
+Fix this build problem by correctly referencing as extern both
+the variables in the header file.
+
+Signed-off-by: Davide Madrisan 
+---
+ include/progname.h | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/include/progname.h b/include/progname.h
+index 576ed16..847122a 100644
+--- a/include/progname.h
 b/include/progname.h
+@@ -25,10 +25,10 @@ extern "C" {
+ #endif
+ 
+   /* String containing name the program is called with.  */
+-  const char *program_name;
++  extern const char *program_name;
+ 
+   /* String containing a short version of 'program_name'.  */
+-  const char *program_name_short;
++  extern const char *program_name_short;
+ 
+   /* Set program_name, based on argv[0].
+  argv0 must be a string allocated with indefinite extent, and must not be

diff --git 
a/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-25-r1.ebuild
 
b/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-25-r1.ebuild
index 6367fdc2f4e..284d0d9d1a8 100644
--- 
a/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-25-r1.ebuild
+++ 
b/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-25-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,6 +20,10 @@ IUSE="curl"
 DEPEND="curl? ( net-misc/curl:0= )"
 RDEPEND="${DEPEND}"
 
+# https://github.com/madrisan/nagios-plugins-linux/issues/48
+# Will be in the next release
+PATCHES=( "${FILESDIR}/${P}-fix-fno-common.patch" )
+
 S="${WORKDIR}/${MY_P}"
 
 src_prepare() {



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

2020-01-29 Thread Louis Sautier
commit: 3414aec8a12689c444e79ff6fb79b9f4bb796eb8
Author: Louis Sautier  gentoo  org>
AuthorDate: Mon Jan 27 13:17:59 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Jan 29 11:02:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3414aec8

dev-python/zipp: remove old

Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/zipp/Manifest  |  1 -
 dev-python/zipp/zipp-0.5.2.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/dev-python/zipp/Manifest b/dev-python/zipp/Manifest
index 5c0187528c2..e72fa1dc338 100644
--- a/dev-python/zipp/Manifest
+++ b/dev-python/zipp/Manifest
@@ -1,4 +1,3 @@
-DIST zipp-0.5.2.tar.gz 10875 BLAKE2B 
97e56b8e1cbff2344ee6b385085e6c821d61bd2c2510ac54e50a3f706515f1e22789168c97599787787b47f09dabe55abb594f5724d1d540f62d8d68fc32e36f
 SHA512 
8c84b620844315ab1f1aa3c5bb29dcdf1271a0139198b5c3d6aa31ecb9a86f0dcef963819403d971ae0461c737312c064572c57ecf32d73dc973a5f69cf0375c
 DIST zipp-0.6.0.tar.gz 10778 BLAKE2B 
165ae85f51fe0c0232f6cf2dde70e2d7f8064413c15616d15e1ebd65cfe3c345bbd5b1b9713fa1171cad18015b605862509790bedd734edf5a7d8c80c5378af3
 SHA512 
18bef5aa3388ab3901bf0127fc9cc17d8972a52f23ccf9a8035f09ee5598e17ddff833a10b81b2118461e0c517e88413518736763425a728cd0b19cc2052
 DIST zipp-1.0.0.tar.gz 10821 BLAKE2B 
f5e0476cb0ca01054abc0c56f1a9581a6f537c002791c4a363238555ce9a211fe13114041374c1bfef426544545e3c654e5b0a7e0541c30b775757c43df6d756
 SHA512 
dbfadfedd30ca4cb31ac4163f367134d96e57405ef00d5f4c19c0af7a141f78487dec29a0ba94975584fcb462d22c8b536bf29c67b7e298368072e897b0e9d82
 DIST zipp-2.0.1.tar.gz 12790 BLAKE2B 
107079d2cbe73c4d0d7053696181d99636192374eac4598a8f2007b8197c007e90ef39a56d193052d484b36247d73d5712d878ea35d222895e5b3ff21963ba13
 SHA512 
ac49f0c0aa83398ad0892932b1f067df94e2108691338c80400235053834bcbcb1a58b2b7b5807f398088a09e9d1cb591d94153a2a44ef3ef96506271d817e05

diff --git a/dev-python/zipp/zipp-0.5.2.ebuild 
b/dev-python/zipp/zipp-0.5.2.ebuild
deleted file mode 100644
index 5bfbbf4ef3a..000
--- a/dev-python/zipp/zipp-0.5.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files"
-HOMEPAGE="https://github.com/jaraco/zipp";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
-   test? (
-   dev-python/contextlib2[${PYTHON_USEDEP}]
-   dev-python/pathlib2[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/unittest2[${PYTHON_USEDEP}]
-   )
-   doc? (
-   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
-   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   )
-"
-
-python_compile_all() {
-   if use doc; then
-   sphinx-build docs docs/_build/html || die
-   HTML_DOCS=( docs/_build/html/. )
-   fi
-}
-
-python_test() {
-   pytest -vv || die "tests failed with ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-wapd/files/

2020-01-29 Thread Joonas Niilola
commit: d3a6e26a0b9943daf31d282948288d76d50d1b87
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Jan  6 17:12:32 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 11:13:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a6e26a

media-plugins/vdr-wapd: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14269
Signed-off-by: Joonas Niilola  gentoo.org>

 .../vdr-wapd/files/vdr-wapd-0.9-as-needed.patch  | 16 
 1 file changed, 16 deletions(-)

diff --git a/media-plugins/vdr-wapd/files/vdr-wapd-0.9-as-needed.patch 
b/media-plugins/vdr-wapd/files/vdr-wapd-0.9-as-needed.patch
deleted file mode 100644
index f37032064ab..000
--- a/media-plugins/vdr-wapd/files/vdr-wapd-0.9-as-needed.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 wapd-0.9.orig/Makefile 2008-01-16 16:29:10.0 +0100
-+++ wapd-0.9/Makefile  2009-10-20 11:32:24.494591965 +0200
-@@ -76,11 +76,11 @@
- all: libvdr-$(PLUGIN).so wappasswd
- 
- libvdr-$(PLUGIN).so: $(OBJS)
--  $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@
-+  $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
-   @cp $@ $(LIBDIR)/$@.$(APIVERSION)
- 
- wappasswd: wappasswd.c
--  $(CXX) $(CXXFLAGS) $(LIBS) -o wappasswd wappasswd.c
-+  $(CXX) $(CXXFLAGS) $(LDFLAGS) -o wappasswd wappasswd.c $(LIBS)
- 
- dist: clean
-   @-rm -rf $(TMPDIR)/$(ARCHIVE)



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

2020-01-29 Thread Joonas Niilola
commit: 58b2b04ba4f4ce5864869a075af042f9c50f5544
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Jan 14 15:16:11 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 11:13:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b2b04b

mail-client/thunderbird: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14335
Signed-off-by: Joonas Niilola  gentoo.org>

 .../files/thunderbird-68.2.2-rust-1.39+.patch  | 170 -
 1 file changed, 170 deletions(-)

diff --git a/mail-client/thunderbird/files/thunderbird-68.2.2-rust-1.39+.patch 
b/mail-client/thunderbird/files/thunderbird-68.2.2-rust-1.39+.patch
deleted file mode 100644
index bfb71cbb788..000
--- a/mail-client/thunderbird/files/thunderbird-68.2.2-rust-1.39+.patch
+++ /dev/null
@@ -1,170 +0,0 @@
-Based on https://github.com/rust-lang/rust/issues/64710
-
 a/third_party/rust/bindgen/.cargo-checksum.json
-+++ b/third_party/rust/bindgen/.cargo-checksum.json
-@@ -1 +1 @@
--{"files":{"Cargo.toml":"9af635e7bad9021a49742a312faf6178b757dbd48aabc998931d6f491f14c179","LICENSE":"c23953d9deb0a3312dbeaf6c128a657f3591acee45067612fa68405eaa4525db","README.md":"5a1f556c6a57c0a6ccc65e19c27718e0f4b32381a8efcc80f6601b33c58c5d59","build.rs":"a9f6915c54d75f357ce32f96327bf4df53dc81a505b70831978f9dac6f43841d","src/callbacks.rs":"b24d7982332c6a35928f134184ddf4072fe4545a45546b97b9b0e0c1fbb77c08","src/clang.rs":"e9203eb5a1b432efebafcd011896e35e8c9145037bf99e7bb3709dc1b8e8e783","src/codegen/bitfield_unit.rs":"88b0604322dc449fc9284850eadc1f5d14b42fa747d4258bae0b6b9535f52dfd","src/codegen/bitfield_unit_tests.rs":"2073ac6a36e0bc9afaef5b1207966817c8fb7a1a9f6368c3b1b8f79822efbfba","src/codegen/error.rs":"2613af1d833377fd4a70719f4a09951d9d45dc9227827b9a2a938a1bcaaea2dd","src/codegen/helpers.rs":"fbd23e68dd51ccaddeb9761394d5df2db49baded0e2dccf6bbc52a2d6de502eb","src/codegen/impl_debug.rs":"f82969461d522fb758eca552ceaf189122a404cbb47fcc16008bfe52fc62aefa","src/codegen/impl_partial
 
eq.rs":"d40d9ee2849c4d3d557b033c4d3af5e6de4a44347f67c0f016198086338811af","src/codegen/mod.rs":"238d989e13b7556e5d120a2bfe85b43332fba56cbe8df886d4c32e650fff1247","src/codegen/struct_layout.rs":"3fa5524aff82365ce292b0cc85080514c85a6dbd31bce90f001773b995dda28e","src/extra_assertions.rs":"494534bd4f18b80d89b180c8a93733e6617edcf7deac413e9a73fd6e7bc9ced7","src/features.rs":"c5fd7149f4a3b41fd4f89ade08505170942f4bc791bcb6a34f3ae61856f8","src/ir/analysis/derive.rs":"325d4c1c1e6194e743f42a2316f1501b0ef852fe309f2e9cac3434825ad235f0","src/ir/analysis/has_destructor.rs":"63644f479738df35e531d3324ff892614083c3656e0747aa34d9f20dada878ec","src/ir/analysis/has_float.rs":"76162a309e4285a806755a08c687a3e7bc894a100a63da4e88584035e215b11d","src/ir/analysis/has_type_param_in_array.rs":"fdbc0af28a144c88ea2de83e6e6da5e1ffb40e3dd63fd7a708095d085bb06f94","src/ir/analysis/has_vtable.rs":"5788372d27bdbaaf0454bc17be31a5480918bc41a8a1c4832e8c61185c07f9cd","src/ir/analysis/mod.rs":"1f218e15c19f512908abc8
 
53fa7ff9ca5d0fafd94f026d9e4b0ce287ec3c","src/ir/analysis/sizedness.rs":"8dc10043d872e68e660ef96edca4d9733f95be45cdad4893462fa929b335014f","src/ir/analysis/template_params.rs":"6312c008bbc80f50e72a766756c8daddea0b6eeb31ec924b83a231df931e170e","src/ir/annotations.rs":"39a5ab19f4d5dfa617577e4a0d0d2b67b5369d480c7cca4b14d172458c9843f0","src/ir/comment.rs":"c48abe01c5af0f09f583a89f1394bc6c161b40f6c8f0f600bbfe3c907b47969b","src/ir/comp.rs":"ca439407faefbe3a198246f0a1dbdf4e40307e45eaaad317e85d1aab37bb31fc","src/ir/context.rs":"599226eb04d337a1b1b13af91af91bdb02dbd5f26f274cbc0ebc4489eb144fc0","src/ir/derive.rs":"34f9aa76b6c9c05136bb69dcd6455397faef571a567254d2c541d50a962994db","src/ir/dot.rs":"95ed2968fc3239d87892e9f1edf1ed6dd18630d949564961765967ea1d16960c","src/ir/enum_ty.rs":"9cc242d6b3c185594e8b306860ee39c0ea42d22198d46b7fded473fe3e84","src/ir/function.rs":"2d41d9df19f42b0c383f338be4c026c005853a8d1caf5f3e5a2f3a8dad202232","src/ir/int.rs":"07e0c7dbd2dd977177fae3acd2a14adf271c6cf9ff4b5
 
7cddc11d50734fd4801","src/ir/item.rs":"3bcdb69b793350e5744aec3577cdbb1e5068ece5220c38763cecd82dfb5e8f03","src/ir/item_kind.rs":"dbeae8c4fd0e5c9485d325aea040e056a1f2cd6d43fc927dee8fe1c0c59a7197","src/ir/layout.rs":"d49582081f5f86f7595afbe4845f38fb3b969a840b568f4a49b265e7d790bb5b","src/ir/mod.rs":"2eae90f207fad2e45957ec9287064992a419e3fc916aba84faff2ea25cbeb5ee","src/ir/module.rs":"c4d90bf38fe3672e01923734ccbdb7951ea929949d5f413a9c2aee12395a5094","src/ir/objc.rs":"758aa955a0c5d6ad82606c88a1f4cd1d93e666b71e82d43b18b1aaae96cf888a","src/ir/template.rs":"c0f8570b927dfd6a421fc4ce3094ec837a3ed936445225dbfac961e8e0842ae5","src/ir/traversal.rs":"ea751379a5aec02f93f8d2c61e18232776b1f000dbeae64b9a7195ba21a19dd6","src/ir/ty.rs":"952fb04cd6a71a2bca5c509aecacb42a1de0cae75824941541a38dc589f0993a","src/ir/var.rs":"8bdafb6d02f2c55ae11c28d88b19fb7a65ba8466da12ff039ae4c16c790b291e","src/lib.rs":"d5c8b404c51

[gentoo-commits] repo/gentoo:master commit in: sys-fs/mac-fdisk/files/

2020-01-29 Thread Joonas Niilola
commit: 9f0e75e841221467840d5533120cb826f842c1ad
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Jan 25 18:25:56 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 11:13:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f0e75e8

sys-fs/mac-fdisk: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/1
Signed-off-by: Joonas Niilola  gentoo.org>

 .../mac-fdisk/files/mac-fdisk-0.1-r6-ppc64.patch   | 481 -
 1 file changed, 481 deletions(-)

diff --git a/sys-fs/mac-fdisk/files/mac-fdisk-0.1-r6-ppc64.patch 
b/sys-fs/mac-fdisk/files/mac-fdisk-0.1-r6-ppc64.patch
deleted file mode 100644
index 4fb1617eec8..000
--- a/sys-fs/mac-fdisk/files/mac-fdisk-0.1-r6-ppc64.patch
+++ /dev/null
@@ -1,481 +0,0 @@
 a/bitfield.c
-+++ b/bitfield.c
-@@ -67,13 +67,12 @@
- //
- // Routines
- //
--unsigned long
--bitfield_set(unsigned long *bf, int base, int length, unsigned long value)
-+unsigned int
-+bitfield_set(unsigned int *bf, int base, int length, unsigned int value)
- {
--unsigned long t;
--unsigned long m;
-+unsigned int t;
-+unsigned int m;
- int s;
--int i;
- 
- // compute shift & mask, coerce value to correct number of bits,
- // zap the old bits and stuff the new value
-@@ -86,12 +85,11 @@
- }
- 
- 
--unsigned long
--bitfield_get(unsigned long bf, int base, int length)
-+unsigned int
-+bitfield_get(unsigned int bf, int base, int length)
- {
--unsigned long m;
-+unsigned int m;
- int s;
--int i;
- 
- // compute shift & mask
- // return the correct number of bits (shifted to low end)
 a/bitfield.h
-+++ b/bitfield.h
-@@ -63,5 +63,5 @@
- //
- // Forward declarations
- //
--unsigned long bitfield_set(unsigned long *bf, int base, int length, unsigned 
long value);
--unsigned long bitfield_get(unsigned long bf, int base, int length);
-+unsigned int bitfield_set(unsigned int *bf, int base, int length, unsigned 
int value);
-+unsigned int bitfield_get(unsigned int bf, int base, int length);
 a/dpme.h
-+++ b/dpme.h
-@@ -61,7 +61,7 @@
- //
- typedef   unsigned char   u8;
- typedef   unsigned short  u16;
--typedef   unsigned long   u32;
-+typedef   unsigned intu32;
- 
- 
- // Physical block zero of the disk has this format
-@@ -113,10 +113,10 @@
- #endif
- u32 dpme_boot_block ;
- u32 dpme_boot_bytes ;
--u8 *dpme_load_addr  ;
--u8 *dpme_load_addr_2;
--u8 *dpme_goto_addr  ;
--u8 *dpme_goto_addr_2;
-+u32 dpme_load_addr  ;
-+u32 dpme_load_addr_2;
-+u32 dpme_goto_addr  ;
-+u32 dpme_goto_addr_2;
- u32 dpme_checksum   ;
- chardpme_process_id[16] ;
- u32 dpme_boot_args[32]  ;
 a/dump.c
-+++ b/dump.c
-@@ -61,16 +61,16 @@
- // Global Constants
- //
- NAMES plist[] = {
--"Drvr", "Apple_Driver",
--"Dr43", "Apple_Driver43",
--"Free", "Apple_Free",
--" HFS", "Apple_HFS",
--" MFS", "Apple_MFS",
--"PDOS", "Apple_PRODOS",
--"junk", "Apple_Scratch",
--"unix", "Apple_UNIX_SVR2",
--" map", "Apple_partition_map",
--0,0
-+{"Drvr"}, {"Apple_Driver"},
-+{"Dr43"}, {"Apple_Driver43"},
-+{"Free"}, {"Apple_Free"},
-+{" HFS"}, {"Apple_HFS"},
-+{" MFS"}, {"Apple_MFS"},
-+{"PDOS"}, {"Apple_PRODOS"},
-+{"junk"}, {"Apple_Scratch"},
-+{"unix"}, {"Apple_UNIX_SVR2"},
-+{" map"}, {"Apple_partition_map"},
-+{0},  {0}
- };
- 
- const char * kStringEmpty = "";
-@@ -162,10 +162,10 @@
- }
- #ifdef __mc68000__
- printf("%*s  type name "
--  "%*s   %-*s ( size )  system\n", strlen(map->name)+1, "#", j, 
"length", j, "base");
-+  "%*s   %-*s ( size )  system\n", (int)strlen(map->name)+1, "#", j, 
"length", j, "base");
- #else
- printf("%*stype name   "
--  "%*s   %-*s ( size )  system\n", strlen(map->name)+1, "#", j, 
"length", j, "base");
-+  "%*s   %-*s ( size )  system\n", (int)strlen(map->name)+1, "#", j, 
"length", j, "base");
- #endif
- 
- /* Grok devfs names. (courtesy Colin Walters)*/
-@@ -199,7 +199,6 @@
- partition_map_header *map;
- int j;
- DPME *p;
--BZB *bp;
- char *s;
- #ifdef __mc68000__
- int aflag = 1;
-@@ -222,13 +221,13 @@
-   }
-   }
- #ifdef __mc68000__
--  printf("%s%-2d %.4s %-12.12s ", dev, entry->disk_address, s, 
p->dpme_name);
-+  printf("%s%-2d %.4s %-12.12s ", dev, (int)entry->disk_address, s, 
p->dpme_name);
- #else
--  printf("%s%-4d  %.4s %-18.32s ", dev, entry->disk_address, s, 
p->dpme_name);
-+  printf("%s%-4d  %.4s %-18.32s ", dev, (int)entry->disk_address, s, 
p->dpme_name);
- #endif
- } else {
-   printf("%s%-4d %20.32s %-18.32s ", dev, 
--  

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

2020-01-29 Thread Joonas Niilola
commit: 066225aa048d5ddf92885ac910a6842143d08cf5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Jan 29 10:46:17 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 11:13:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=066225aa

dev-lang/teyjus/files: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lang/teyjus/files/teyjus-2.0.2-flags.patch | 14 --
 1 file changed, 14 deletions(-)

diff --git a/dev-lang/teyjus/files/teyjus-2.0.2-flags.patch 
b/dev-lang/teyjus/files/teyjus-2.0.2-flags.patch
deleted file mode 100644
index dcccd25f9fe..000
--- a/dev-lang/teyjus/files/teyjus-2.0.2-flags.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 teyjus-orig/source/OMakefile   2008-11-17 07:52:31.0 +1100
-+++ teyjus/source/OMakefile2012-12-12 21:24:24.318557107 +1100
-@@ -19,7 +19,10 @@
- #
- 
- OCAMLINCLUDES += $(CMP) $(DIS) $(SIM) $(LOD)
--CFLAGS += -g
-+CFLAGS +=
-+LDFLAGS +=
-+OCAMLFLAGS += -g
-+OCAML_LINK_FLAGS +=
- 
- 
- # Compilation files



[gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/files/

2020-01-29 Thread Joonas Niilola
commit: 80433fc760993095487951e1162e349c94765210
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Jan  7 14:50:23 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 11:13:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80433fc7

media-tv/v4l-utils: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14277
Signed-off-by: Joonas Niilola  gentoo.org>

 .../files/v4l-utils-1.14.1-sysmacros.patch | 26 --
 1 file changed, 26 deletions(-)

diff --git a/media-tv/v4l-utils/files/v4l-utils-1.14.1-sysmacros.patch 
b/media-tv/v4l-utils/files/v4l-utils-1.14.1-sysmacros.patch
deleted file mode 100644
index b8190507fc7..000
--- a/media-tv/v4l-utils/files/v4l-utils-1.14.1-sysmacros.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Index: v4l-utils-1.14.1/lib/libv4lconvert/control/libv4lcontrol.c
-===
 v4l-utils-1.14.1.orig/lib/libv4lconvert/control/libv4lcontrol.c
-+++ v4l-utils-1.14.1/lib/libv4lconvert/control/libv4lcontrol.c
-@@ -20,9 +20,7 @@
-  */
- 
- #include 
--#if defined(MAJOR_IN_SYSMACROS)
- #include 
--#endif
- #include 
- #include 
- #include 
-Index: v4l-utils-1.14.1/utils/v4l2-ctl/v4l2-ctl.cpp
-===
 v4l-utils-1.14.1.orig/utils/v4l2-ctl/v4l2-ctl.cpp
-+++ v4l-utils-1.14.1/utils/v4l2-ctl/v4l2-ctl.cpp
-@@ -21,6 +21,7 @@
-  */
- 
- #include 
-+#include 
- #include 
- #include 
- #include 



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

2020-01-29 Thread Joonas Niilola
commit: 9fbe2fa9868c92176f2ef4bf47dcd07c6ca4d5ab
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Jan 10 08:47:35 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 11:13:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fbe2fa9

www-client/firefox: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14296
Signed-off-by: Joonas Niilola  gentoo.org>

 .../firefox/files/firefox-70.0.1-rust-1.39+.patch  | 163 -
 1 file changed, 163 deletions(-)

diff --git a/www-client/firefox/files/firefox-70.0.1-rust-1.39+.patch 
b/www-client/firefox/files/firefox-70.0.1-rust-1.39+.patch
deleted file mode 100644
index eb44c03daca..000
--- a/www-client/firefox/files/firefox-70.0.1-rust-1.39+.patch
+++ /dev/null
@@ -1,163 +0,0 @@
-Based on https://github.com/rust-lang/rust/issues/64710
-
 a/third_party/rust/bindgen/.cargo-checksum.json.orig
-+++ b/third_party/rust/bindgen/.cargo-checksum.json
-@@ -1 +1 @@
--{"files":{"Cargo.toml":"a970d1a9e47f029fe3e3ce43ae4292054ad60c4490e035b86b669fcf32015624","LICENSE":"c23953d9deb0a3312dbeaf6c128a657f3591acee45067612fa68405eaa4525db","README.md":"5a1f556c6a57c0a6ccc65e19c27718e0f4b32381a8efcc80f6601b33c58c5d59","build.rs":"a9f6915c54d75f357ce32f96327bf4df53dc81a505b70831978f9dac6f43841d","csmith-fuzzing/README.md":"7107b70fedb0c0a0cadb3c439a49c1bd0119a6d38dc63b1aecc74d1942256ef2","src/callbacks.rs":"b24d7982332c6a35928f134184ddf4072fe4545a45546b97b9b0e0c1fbb77c08","src/clang.rs":"0009b8b6e3f6c33ec2776ec4cb8de2625ae8be22c9f0433c39b06bdd9fc7db4d","src/codegen/bitfield_unit.rs":"87be2d7f7774327a1608c2c4d64df869e17fb34b7efdacb4030b6794d98e40f3","src/codegen/bitfield_unit_tests.rs":"2073ac6a36e0bc9afaef5b1207966817c8fb7a1a9f6368c3b1b8f79822efbfba","src/codegen/error.rs":"2613af1d833377fd4a70719f4a09951d9d45dc9227827b9a2a938a1bcaaea2dd","src/codegen/helpers.rs":"aa0daff2061c6de31acfbd113190889e0f7ca2d2b8d4f46740bfd5832c33e4d2","src/codegen/impl_debug.rs
 
":"f82969461d522fb758eca552ceaf189122a404cbb47fcc16008bfe52fc62aefa","src/codegen/impl_partialeq.rs":"d40d9ee2849c4d3d557b033c4d3af5e6de4a44347f67c0f016198086338811af","src/codegen/mod.rs":"ad116e2af755219bd556e8ee00ca48562f64a161d0b2c94846ae01297446ea0d","src/codegen/struct_layout.rs":"3fa5524aff82365ce292b0cc85080514c85a6dbd31bce90f001773b995dda28e","src/extra_assertions.rs":"494534bd4f18b80d89b180c8a93733e6617edcf7deac413e9a73fd6e7bc9ced7","src/features.rs":"82511f1bb8cbd04d98f57b000903b0264237962af93a72a58220437213eba1ef","src/ir/analysis/derive.rs":"325d4c1c1e6194e743f42a2316f1501b0ef852fe309f2e9cac3434825ad235f0","src/ir/analysis/has_destructor.rs":"63644f479738df35e531d3324ff892614083c3656e0747aa34d9f20dada878ec","src/ir/analysis/has_float.rs":"76162a309e4285a806755a08c687a3e7bc894a100a63da4e88584035e215b11d","src/ir/analysis/has_type_param_in_array.rs":"fdbc0af28a144c88ea2de83e6e6da5e1ffb40e3dd63fd7a708095d085bb06f94","src/ir/analysis/has_vtable.rs":"5788372d27bdbaaf0454bc17
 
be31a5480918bc41a8a1c4832e8c61185c07f9cd","src/ir/analysis/mod.rs":"1f218e15c19f512908abc853fa7ff9ca5d0fafd94f026d9e4b0ce287ec3c","src/ir/analysis/sizedness.rs":"b73865b6689d4f3546edd91909a47c329c4ae630ea97715d29bc683ae1dc17ad","src/ir/analysis/template_params.rs":"6312c008bbc80f50e72a766756c8daddea0b6eeb31ec924b83a231df931e170e","src/ir/annotations.rs":"39a5ab19f4d5dfa617577e4a0d0d2b67b5369d480c7cca4b14d172458c9843f0","src/ir/comment.rs":"c48abe01c5af0f09f583a89f1394bc6c161b40f6c8f0f600bbfe3c907b47969b","src/ir/comp.rs":"78e245835efcd22b5cc878a8a7031171116c708408bdb48b0c9284a067041e56","src/ir/context.rs":"8fd64654343295e0e4a43efe5db6f64315dcd50a5015c3d86e90aae992e2fa9f","src/ir/derive.rs":"34f9aa76b6c9c05136bb69dcd6455397faef571a567254d2c541d50a962994db","src/ir/dot.rs":"95ed2968fc3239d87892e9f1edf1ed6dd18630d949564961765967ea1d16960c","src/ir/enum_ty.rs":"7658cf68c00b1732dfa599c2d6b6a93a82de8401142591c3afe5fcb27d901a66","src/ir/function.rs":"c2feb2e26d47aa96a74af9912ada26be07
 
7e2b0c36d46fa10167da7109590500","src/ir/int.rs":"5b8d5bcedb04f39dc2d7e571bc04114b1f1e09cf294afe944c2e7879451c4378","src/ir/item.rs":"3bcdb69b793350e5744aec3577cdbb1e5068ece5220c38763cecd82dfb5e8f03","src/ir/item_kind.rs":"dbeae8c4fd0e5c9485d325aea040e056a1f2cd6d43fc927dee8fe1c0c59a7197","src/ir/layout.rs":"d49582081f5f86f7595afbe4845f38fb3b969a840b568f4a49b265e7d790bb5b","src/ir/mod.rs":"2eae90f207fad2e45957ec9287064992a419e3fc916aba84faff2ea25cbeb5ee","src/ir/module.rs":"c4d90bf38fe3672e01923734ccbdb7951ea929949d5f413a9c2aee12395a5094","src/ir/objc.rs":"758aa955a0c5d6ad82606c88a1f4cd1d93e666b71e82d43b18b1aaae96cf888a","src/ir/template.rs":"c0f8570b927dfd6a421fc4ce3094ec837a3ed936445225dbfac961e8e0842ae5","src/ir/traversal.rs":"ea751379a5aec02f93f8d2c61e18232776b1f000dbeae64b9a7195ba21a19dd6","src/ir/ty.rs":"e6771c8102b9f01b0c4b664bf1151b4773b599634a83895376ce122ca9f74f8b","src/ir/var.rs":"8bdafb6d02f2c55ae11c28d8

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

2020-01-29 Thread Agostino Sarubbo
commit: 4776c4e87c7f5e06f8725bba351dd83ab5266734
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 29 11:25:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 29 11:25:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4776c4e8

sys-kernel/vanilla-sources: Automated version bump to {4.4.212,4.9.212} - 
remove old.

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-kernel/vanilla-sources/Manifest   | 4 ++--
 ...{vanilla-sources-4.4.211.ebuild => vanilla-sources-4.4.212.ebuild} | 0
 ...{vanilla-sources-4.9.211.ebuild => vanilla-sources-4.9.212.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 41eedad1ba5..c25179cfc5d 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -8,6 +8,6 @@ DIST linux-5.5.tar.xz 110713660 BLAKE2B 
36b990d3650c409652206c319c93c0cf68885334
 DIST patch-3.16.81.xz 2602860 BLAKE2B 
dfb1c1a879da2ba3f39b63622d64374387edd3aaf8ce5457f2d106104e17940f93471aa2ee8ba8181ff51ef793254fe741e0df2b77726b286f2982612ca86467
 SHA512 
d3499d777ae544a0dbd87bf7f2201b5dd3cf5e8196cbb0f9e240b4e333ed9f323b307aa9377a27148479d6d8d0d7b71ff473c9c4d21a22bfbc85f7e9633a402d
 DIST patch-4.14.168.xz 3400520 BLAKE2B 
70fc702459cfdf6d440b54645df156c7f899e6b1414acdab3b904966ba53c9b182baab4e48fe031476c21f5eb2284cfef58f9080e6e8b194e3d03419114fdba3
 SHA512 
fccaf41213057430aa05315d1fe6df08ee5a05c5bd3db123ab2b597cb5f2d70ce50324d2459c7e56f3368cdd3299d63821b8b5fbce7ea3f4033893ada5170ea8
 DIST patch-4.19.99.xz 2691224 BLAKE2B 
482350d47e320ad0513e25796a038f6562ce6262ef976834858e03c8d43fca3b075d2a762f30f674b14fb7f96e0d5e4ae42661d1dfbe29f5cb8dd0cb209b46c3
 SHA512 
de2496266be7e5bc62ab914b8d0aa931e90f31db0558974b351a2e2e69a6412182ffda75259123bb78e6b46339c3d91946e6fa3e84ad04e351f0d5e51e369e9f
-DIST patch-4.4.211.xz 2954576 BLAKE2B 
43d92dadbbd447dbbaa236154ebfb71b33bd3677cea7b3620bc5ce4b5b82dd1c02f273038b2659efd79ab850116ee3e8e3836d80db553fb6a91b926871b24333
 SHA512 
0e853ec0412ad9beac4f1ca4ffcb70fc059ec1e992f0bb26b4f0ee07d6bfe738913430a66fcc66c2df0511515acea4d1242a5a1e171614f48f40c12aa8d97fa4
-DIST patch-4.9.211.xz 3269588 BLAKE2B 
7929cea187af293810e7d28103982fe65a7f4f00224aae39224d51450718e5bddf2e0fea13827d0d91f6776eb676ef7f621736a7ea82fb917fce02bebdc22321
 SHA512 
090e5b0b2e79e33da623f89c4eb4407cef974b7a3cd581f65d24b3e294656d767857b31cb7d27bc776759a5a6263f615347c0b9a29545578242e5f114edd3c13
+DIST patch-4.4.212.xz 2983340 BLAKE2B 
81968902c8d202b6fb7f2aed1091cc0a0a45a0828ffe571586b211cab39a5d5b06df761c37391f4bcd706ea37d0b649ce2f39618600ffe8e5a90e4548f35287c
 SHA512 
f59a431ecae0fc3d24f6478bae7318d1b35b6c605296baeb931095f740c8346a755e687cb11d8ebe28c958fe098631428c75e321025ac786e48b95d2fdb5d5de
+DIST patch-4.9.212.xz 3308584 BLAKE2B 
2e61a6fef2f321477141c665001568bef6b9c41d0f92ce8aec2d725b9b66b2002040829eeebc2ad43bf7e2ca1b20ef9d0626378d5f73c30cb74bf51cc6ef3e2a
 SHA512 
27392fb6a972bfb754894a3b275a6a6a2038a9e6a89a6e9aea2eb35ea7b20aa124786cd0f4e64debcb88febd78bdbbdf00da0becff590c69fe43755197ea0218
 DIST patch-5.4.15.xz 566252 BLAKE2B 
b2f1c09db97aaddd9990f5cb6031b6684c180805adefa1b81d7a060e5ace43dbee0e35a795c9e3508860952d60f42d2628cf5ffc731f207d534f8f618f49cbbf
 SHA512 
fef7a688b455719441b968e217f82e819ea57f1e3f850f677910305810522fb8553e265641d950cb19240bd5e01e79912ad7a246a1513fca27b722e76efb0385

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.211.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.212.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.211.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.212.ebuild

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.211.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.9.212.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.211.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.212.ebuild



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

2020-01-29 Thread Jeroen Roovers
commit: bb42a76d3b9526ec1e72c78134baffdc0489e41f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 11:28:38 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 11:32:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb42a76d

x11-misc/xcave: Version 2.5.1

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

 x11-misc/xcave/Manifest   |  1 +
 x11-misc/xcave/xcave-2.5.1.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/x11-misc/xcave/Manifest b/x11-misc/xcave/Manifest
index 317902ec1ca..ca3e7da9cff 100644
--- a/x11-misc/xcave/Manifest
+++ b/x11-misc/xcave/Manifest
@@ -1 +1,2 @@
 DIST xcave-2.4.0.tar.gz 817356 BLAKE2B 
2a80eb20d484fe37ee5871e4bbf443fb87170adf8a02d4ebc059bcc4f907b2b4442a0b9858719e1c656d0293e55c470aba1bcf83c899ba079a2f201d93b84cb2
 SHA512 
cdba5ad8b7634004a9439fd87a8eb8ed45137e78cb119310c6b7df9352aa979682edaae6440200804e23953c822d377c95cf459cc37ce227d1a41885a91afba4
+DIST xcave-2.5.1.tar.gz 786853 BLAKE2B 
e3b2290b01c16bff4dbe8d5167b4bed75fbe422e3ee3856115302329878550cbb4c35286c717eb46c3fd12b4d66323895cdbb292cc6f054360b53c3f9c1a
 SHA512 
6095c06d75f7c5d87a6d0f1c4c3a52071ffc1912d60ba07c95d9b8d84f0027ba24476f941828c4eecf801d7ca7f0bc168ddd2d162b3e863fc31ee6b4c9144cd4

diff --git a/x11-misc/xcave/xcave-2.5.1.ebuild 
b/x11-misc/xcave/xcave-2.5.1.ebuild
new file mode 100644
index 000..21223817b37
--- /dev/null
+++ b/x11-misc/xcave/xcave-2.5.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit flag-o-matic
+
+DESCRIPTION="View and manage contents of your wine cellar"
+HOMEPAGE="http://xcave.free.fr/index-en.php";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test"
+
+RDEPEND="
+   dev-libs/libxml2:2
+   gnome-base/libglade
+   x11-libs/gtk+:2
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   append-cflags -fcommon
+   default
+}
+src_install() {
+   default
+   rm -rv "${ED}"/usr/doc || die
+}



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

2020-01-29 Thread Jeroen Roovers
commit: 19ccf51b5c79a78516470d81b4232ae7f96a4433
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 10:42:49 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 11:32:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ccf51b

dev-python/pyparted: Set CFLAGS=-fcommon

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Closes: https://bugs.gentoo.org/show_bug.cgi?id=706904
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-python/pyparted/pyparted-3.11.3.ebuild | 7 ++-
 dev-python/pyparted/pyparted-99.ebuild | 7 ++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyparted/pyparted-3.11.3.ebuild 
b/dev-python/pyparted/pyparted-3.11.3.ebuild
index 53553209b62..a058461368a 100644
--- a/dev-python/pyparted/pyparted-3.11.3.ebuild
+++ b/dev-python/pyparted/pyparted-3.11.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 PYTHON_COMPAT=( python{2_7,3_6} )
-inherit distutils-r1
+inherit distutils-r1 flag-o-matic
 
 DESCRIPTION="Python bindings for sys-block/parted"
 HOMEPAGE="https://github.com/rhinstaller/pyparted/";
@@ -22,3 +22,8 @@ DEPEND="
virtual/pkgconfig
 "
 RESTRICT="test"
+
+src_configure() {
+   append-cflags -fcommon
+   default
+}

diff --git a/dev-python/pyparted/pyparted-99.ebuild 
b/dev-python/pyparted/pyparted-99.ebuild
index c31f8041199..b34350ec163 100644
--- a/dev-python/pyparted/pyparted-99.ebuild
+++ b/dev-python/pyparted/pyparted-99.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 PYTHON_COMPAT=( python{2_7,3_6} )
-inherit distutils-r1 git-r3
+inherit distutils-r1 flag-o-matic git-r3
 
 DESCRIPTION="Python bindings for sys-block/parted"
 HOMEPAGE="https://github.com/rhinstaller/pyparted/";
@@ -22,3 +22,8 @@ DEPEND="
virtual/pkgconfig
 "
 RESTRICT="test"
+
+src_configure() {
+   append-cflags -fcommon
+   default
+}



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

2020-01-29 Thread Jeroen Roovers
commit: 353a59910102231bbb60fe5735251d57c64782f0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 10:50:26 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 11:32:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=353a5991

x11-misc/read-edid: Set CFLAGS=-fcommon

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Closes: https://bugs.gentoo.org/show_bug.cgi?id=706878
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-misc/read-edid/read-edid-3.0.2.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/x11-misc/read-edid/read-edid-3.0.2.ebuild 
b/x11-misc/read-edid/read-edid-3.0.2.ebuild
index f55ccb264aa..cef6d33015a 100644
--- a/x11-misc/read-edid/read-edid-3.0.2.ebuild
+++ b/x11-misc/read-edid/read-edid-3.0.2.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-
-inherit cmake-utils
+inherit cmake-utils flag-o-matic
 
 DESCRIPTION="Program that can get information from a PnP monitor"
 HOMEPAGE="http://www.polypux.org/projects/read-edid/";
@@ -21,3 +20,8 @@ src_prepare() {
CMakeLists.txt || die
cmake-utils_src_prepare
 }
+
+src_configure() {
+   append-cflags -fcommon
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xcave/, x11-misc/xcave/files/

2020-01-29 Thread Jeroen Roovers
commit: 5ffe68d79d60fd194ab2faaf997de5104a4ede68
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 11:16:47 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 11:32:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ffe68d7

x11-misc/xcave: Set CFLAGS=-fcommon

Also fix pkg-config variable prefix in configure.ac:
./configure: line 1425: ac_env_libxml-2.0_CFLAGS_set=2.0_CFLAGS+set:
command not found
(etc.)

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Closes: https://bugs.gentoo.org/show_bug.cgi?id=706928
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-misc/xcave/files/xcave-2.4.0-pkg-config.patch | 13 
 x11-misc/xcave/xcave-2.4.0.ebuild | 26 +++
 2 files changed, 35 insertions(+), 4 deletions(-)

diff --git a/x11-misc/xcave/files/xcave-2.4.0-pkg-config.patch 
b/x11-misc/xcave/files/xcave-2.4.0-pkg-config.patch
new file mode 100644
index 000..f0e331dccfe
--- /dev/null
+++ b/x11-misc/xcave/files/xcave-2.4.0-pkg-config.patch
@@ -0,0 +1,13 @@
+--- a/configure.ac
 b/configure.ac
+@@ -49,10 +49,6 @@
+ 
+ 
+ 
+-PKG_CHECK_MODULES(libxml-2.0, libxml-2.0)
+-AC_SUBST(libxml-2.0_CFLAGS)
+-AC_SUBST(libxml-2.0_LIBS)
+-
+ AC_OUTPUT([
+ Makefile
+ src/Makefile

diff --git a/x11-misc/xcave/xcave-2.4.0.ebuild 
b/x11-misc/xcave/xcave-2.4.0.ebuild
index 3e6245d4498..96c74893f67 100644
--- a/x11-misc/xcave/xcave-2.4.0.ebuild
+++ b/x11-misc/xcave/xcave-2.4.0.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+inherit autotools flag-o-matic
 
 DESCRIPTION="View and manage contents of your wine cellar"
 HOMEPAGE="http://xcave.free.fr/index-en.php";
@@ -14,13 +15,30 @@ RESTRICT="test"
 
 RDEPEND="
x11-libs/gtk+:2
-   dev-libs/libxml2:2"
-DEPEND="${RDEPEND}"
+   dev-libs/libxml2:2
+"
+DEPEND="
+   ${RDEPEND}
+"
 BDEPEND="
dev-util/intltool
sys-devel/gettext
-   virtual/pkgconfig"
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.4.0-pkg-config.patch
+)
 
+src_prepare() {
+   mkdir m4 || die
+   default
+   eautoreconf
+}
+
+src_configure() {
+   append-cflags -fcommon
+   default
+}
 src_install() {
default
 



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

2020-01-29 Thread Jeroen Roovers
commit: c10ce9aacc9ffcf1be2c9789ab03e21a59f6c5aa
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 11:02:20 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 11:32:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c10ce9aa

x11-misc/xnee: Set CFLAGS=-fcommon

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Closes: https://bugs.gentoo.org/show_bug.cgi?id=706868
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-misc/xnee/xnee-3.19-r1.ebuild | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xnee/xnee-3.19-r1.ebuild 
b/x11-misc/xnee/xnee-3.19-r1.ebuild
index 9e2f128b15f..7b673eb0484 100644
--- a/x11-misc/xnee/xnee-3.19-r1.ebuild
+++ b/x11-misc/xnee/xnee-3.19-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit autotools eutils
+EAPI=7
+inherit autotools desktop flag-o-matic
 
 DESCRIPTION="Program suite to record, replay and distribute user actions"
-HOMEPAGE="http://www.sandklef.com/xnee/";
+HOMEPAGE="https://xnee.wordpress.com/";
 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
@@ -27,7 +27,8 @@ RDEPEND="
>=gnome-base/gconf-2
)
 "
-DEPEND="${RDEPEND}
+DEPEND="
+   ${RDEPEND}
x11-base/xorg-proto
virtual/pkgconfig
sys-devel/gettext
@@ -37,13 +38,17 @@ DEPEND="${RDEPEND}
 # This needs RECORD extension from X.org server which isn't necessarily
 # enabled. Xlib: extension "RECORD" missing on display ":0.0".
 RESTRICT="test"
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.18-linker.patch
+)
 
 src_prepare() {
-   epatch "${FILESDIR}"/${PN}-3.18-linker.patch
+   default
eautoreconf
 }
 
 src_configure() {
+   append-cflags -fcommon
econf \
$(use_enable gnome gui) \
$(use_enable static-libs static) \



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

2020-01-29 Thread Jeroen Roovers
commit: 7d32f5c45d63ea43b2f7f13b9a346846be762063
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 12:16:47 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 12:20:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d32f5c4

x11-misc/xnee: Prune libtool files

Subject: "BROKEN: repository became broken!"

Looks like someone just broke Gentoo!

Fix this by fixing Gentoo.

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Toxicity-level: you could start by getting jer to fix his crap instead of 
ignoring ci mail
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-misc/xnee/xnee-3.19-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xnee/xnee-3.19-r1.ebuild 
b/x11-misc/xnee/xnee-3.19-r1.ebuild
index 7b673eb0484..0d71add730d 100644
--- a/x11-misc/xnee/xnee-3.19-r1.ebuild
+++ b/x11-misc/xnee/xnee-3.19-r1.ebuild
@@ -69,5 +69,5 @@ src_install() {
default
dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
-   use static-libs || rm -f "${ED}"usr/lib*/lib*.la
+   find "${ED}" -name '*.la' -delete || die
 }



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

2020-01-29 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 12:51:14 2020 +

New tag: 4.4-213




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

2020-01-29 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 12:56:31 2020 +

New tag: 4.9-216




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

2020-01-29 Thread Mike Pagano
commit: 1e0f53a4d07cb7e9868324bd4e43614aaaedeef3
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 13:14:18 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 13:14:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0f53a4

sys-kernel/gentoo-sources: Linux patch 4.9.212

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 20205f51a20..067dc1f01d1 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -46,6 +46,9 @@ DIST genpatches-4.4-211.extras.tar.xz 16480 BLAKE2B 
2647f19ecef02f0b965a832cedf6
 DIST genpatches-4.4-212.base.tar.xz 3345684 BLAKE2B 
5486a295f2e06c69c201e12559730fb56fabea217d04d489384e790297204725b13d08ca64d212ed86c224a98094d545db2756f0d8b2a7e3bc6a5647fc1a76c4
 SHA512 
119a929ef5d9873044671ac6afea946f2b04e41577a8e9ce758c4380260afa240db2a35b610a698e39fed69c25fbe99f39523e3481f78e721ba2da1c4935aad1
 DIST genpatches-4.4-212.experimental.tar.xz 83276 BLAKE2B 
5364d8e77dacac7bec1fc823790e346f14472d2a193675f187be7ff9a72a3284fb0d08d49f8e08e1573ee44909035293c4c0bbcdb5a7ac3ab21f466f56f7196c
 SHA512 
1e68efe6329a7a4beada69bcd08cc74a35c0fd62da84d84ad3da88374459b13a1505fa090fed643ef7393b6522bbf31cee19b41ee3df1cdccc8c5dfd62bfb514
 DIST genpatches-4.4-212.extras.tar.xz 16476 BLAKE2B 
233b42e2d5ac1c7544e5322b163abfe27626dc928c9f2d10d84212eb8957a2f703a9f0c464c1244a6175b81779715583b6a6bda56761deeb6e37270e22212298
 SHA512 
2ae268c7d4d5e1940535ffaa1641e24eefde7bd7ee49952f27ad4fd08b5eaee9916c1b658079d005467740d085ebc425049e987b970f4dcba443434c2835af3d
+DIST genpatches-4.4-213.base.tar.xz 3379100 BLAKE2B 
799610a8603683b70e5f686616dd59a0c23bde3ebc8c5b47cb83b52ca6fe859584172a3aaa7bd464a2e1de6b31ccf7d313abae6ec602ffec4417c030084f38d9
 SHA512 
15e44669b4ed2dc3f12a5092d20c008b7d18e5a987851e2cec4ec1f385402a51a9b578183afee7973647628aafab3705066de44cabda0270a53fd2e1eb116260
+DIST genpatches-4.4-213.experimental.tar.xz 83304 BLAKE2B 
ff00ecabf547ae0bbbfd902d1e26495573e33088240db066837d5edfdb0fe9dc41ef8717d8ea36da0690d08c87ed720a3838b266066b5bda7538006972c65b7b
 SHA512 
ec6779c30c16a09ea09132e7ab57dbe9f5eb9dd3df47be9f108b2ad3d9fb321ca528f3e273e55ca832fde01af2d142730c045f79a989e4e35ec6316affa3b5e3
+DIST genpatches-4.4-213.extras.tar.xz 16472 BLAKE2B 
83607dd79f8e2fb24f65fb96a7de54fbd0bd3b3d2eacb83b5ac915273b85d69fd959ffefe13b5ba1ed260d091a13eba9e9ed172a2c968ea74088906807c0a48e
 SHA512 
a8e3e9591b98b90483be59024da96d8594e9ca7838e1fb0127c2952360217a17bf5468b65db1285733755339362216e6d289bde77f9345758b7413b3814edef0
 DIST genpatches-4.9-208.base.tar.xz 3556800 BLAKE2B 
e2b1669a938b4283a1a2f10f21ca7420b5d9195124e19ee07fa797b174b5ca8f6fb82fa11763f6dc9278cee248c62ea7dd6a53917746165b26312d3848fe28ee
 SHA512 
bd71eed8091e2329af51d06535b544a807b11f03512b4d94cf063021e007a1a5ce982b056d4667268a1fb8a0b86aab8b29854161002d89ba05445e1fdb6c2b88
 DIST genpatches-4.9-208.experimental.tar.xz 106404 BLAKE2B 
44fdfc1fcaa908d7a3be59e2d6778322af8a72c7a475fa02548a4eabe13e5ad1fab275b7de8c1e766f4c1d9f0258ebf0062864b8e29acbe79e637054fa5009c7
 SHA512 
bd2e0bfb5be072fe5e2535aabb50b51e0ac522f6d22e6c48afdc4af4eab411bf5596c5ec4cd70de005eac2124b88bbf9041937bc4191693d9c5bdfeb222bf038
 DIST genpatches-4.9-208.extras.tar.xz 17360 BLAKE2B 
95edefd4d14829086b477b1c8995b19a1a5a801c357f7736688eb28ef1e12788b6ba0d5c7fa592fae378348c718779b0f85dc04f963d98cd47833c9433d74637
 SHA512 
44caaefb6836314b2f5db4723726415d5ab9254d5aad54aa1f72fbd3adfa055c77aa9c0494ab87468c55223704f161b4b73f4ac23b57793f0e4b2028a35c3442

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



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

2020-01-29 Thread Mike Pagano
commit: b0fbc93b3ef8659de67a566f15c69bed38f2abb1
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 13:17:00 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 13:17:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0fbc93b

sys-kernel/gentoo-sources: Linux patch 4.9.212

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 067dc1f01d1..bffc436f300 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -61,6 +61,9 @@ DIST genpatches-4.9-214.extras.tar.xz 17360 BLAKE2B 
cd305ac635faf0c167e3ba0f31df
 DIST genpatches-4.9-215.base.tar.xz 3734768 BLAKE2B 
9031c48f2182824f5a210c82012cef514ab71c85bbcf1315e65070d312d9913579c4f05584c0270642b9c387169d91930a8aa9764f01ad422ad6972db50f687c
 SHA512 
cfefe6690a479922fe8ddc72b03a3e722bd397b226571a74c43b3442f9384a855b9e4c0627dc7c2362b18e76259f29b65f1e90486b57e03c6eed0894e24a78ac
 DIST genpatches-4.9-215.experimental.tar.xz 106400 BLAKE2B 
5eee70874a97540f86fd44d61b385445c781e8391584bee5e8f48bbcf1651903946b1c4e6ac6ec863896bc07c06d86dde5de9cb9a036f3bcb1e80d97d66d12de
 SHA512 
dedb43022a31f12ec874086ab3dacbefde2d3962870a8d07659e258cbb0abedba4b79bd4e508b3e0e07e3e6b17b9094973bcccd40b2d26dcf85029b5af52c92d
 DIST genpatches-4.9-215.extras.tar.xz 17368 BLAKE2B 
1e4319bec42e7f81af6462874921ff025b6941ddf79edbeb3cbb02cae7cb2fd0020bea4a87e3542c602886ee6c03a7ae5fd77ae720b5edfcd24c4411e554bc45
 SHA512 
95ddd274f341aee50b555af4b23520337a2c0f4dc5f25423f8a54e859765674b27f5c7a0dfcf8a4df9b5da4d6d5193304aa82969931bff4bfcf48c28013475bb
+DIST genpatches-4.9-216.base.tar.xz 3781496 BLAKE2B 
a9d08d0c2d3db9836ec53f4c8b79f20e3f1d0e7e16e519f50943cb577bee9605e3a11dd48e07b0a4e3289c16e13d932cbeb0813b3f636ac70c506b59542a3936
 SHA512 
6aa6357d39a1c5d1c95097c7657dcc425718cbd7d8840dfecb5a1a59fd46c2a235e23991bfb940cc662edce69f46ec11b7d2284aa4279e6823ecdf3245fe36a4
+DIST genpatches-4.9-216.experimental.tar.xz 106368 BLAKE2B 
69727d4d466ef4f9ad051642c38cb4eb76a7fe8a072963af4439fc774f85f3713f7bbf677c8729108be09316416710ddcd74cb5155d22e8a6ae84216718a290e
 SHA512 
5b1a5d02063ae062a750b25184ff900c56c362467436681812451d012b22306776294cf3373022cf95c21b8e0862659b8a6c499fecbcb89d243d22506b173eab
+DIST genpatches-4.9-216.extras.tar.xz 17368 BLAKE2B 
2af0868cf6d2f9ed844de71c901d63eb5b8112547a632c25f0ee7b97aa92611496cf47220142427a104657021f4e59d67a380c58b0ce9fbef4ee5c7a00302486
 SHA512 
e21775a488f0217da00d3407a7913340e263c8dd5ff2464d8027edc8ee7139968fac36f4b70635e688095823dffcbeff78397c67e87396f7ed1ab917068cc271
 DIST genpatches-5.4-10.base.tar.xz 391596 BLAKE2B 
8ee4da95c032e586bd72f7147f76e2423486a96dc69c8251e5913ffd9c22f31daf66a134f65bf11ed4feb7fd8e3c7cbb7ee93752dd5cff81787dffb87d294ccb
 SHA512 
dff22f648a27c46fe5500186ad780d106a37bbd3bff37020947dd9e2661a0f24954347ca93f526a963ab4993bee4e0a14aad06870cce82479fc0987c621f0e50
 DIST genpatches-5.4-10.experimental.tar.xz 6144 BLAKE2B 
e438dd352b39385b57e6757822c6a1cc1e199d4c5c3627b140588f864d86dbb94efd4e153207325d48e98d86c58b4bdaa6727ebc3f597507a0e381d9686fa5b2
 SHA512 
e6c565e2870eb6e620e16350486360585c95ef08ca9096d7ed0bb55aaa33cdadc5d76151bf2564647b80cc9b4310e87d71f067a04d847fbfb007d0a306daa88f
 DIST genpatches-5.4-10.extras.tar.xz 1740 BLAKE2B 
804259c95725a2366baf8254e518c11077efbf207612b58193748983e10a0e0270bcd2fa8270a7a7321f49a04112ed9688788c922fba77dced3cb704d2645d1c
 SHA512 
abb1e10bf19fffeb66c93f6dc8b8dcdef8a6b0d6c2b3f00e97cf42258de1c441ae1455750275bc4c311de9fd7b0905990bc842d837890738665341d75918

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



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

2020-01-29 Thread Thomas Deutschmann
commit: 50363351561b2fe2778fcefb911767246eaf32f8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 27 21:09:55 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan 29 14:00:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50363351

media-libs/libvpx: security cleanup

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

 media-libs/libvpx/Manifest|   2 -
 media-libs/libvpx/libvpx-1.8.1.ebuild | 119 --
 2 files changed, 121 deletions(-)

diff --git a/media-libs/libvpx/Manifest b/media-libs/libvpx/Manifest
index 36c3a45b659..f5c42caece1 100644
--- a/media-libs/libvpx/Manifest
+++ b/media-libs/libvpx/Manifest
@@ -1,6 +1,4 @@
 DIST libvpx-1.7.0.tar.gz 2679797 BLAKE2B 
de7992adb517e375c5be2a9facf2b4a73174adcaef11185ed6d3102c2f6b73f378b0d415c5e3a4d915b3a6889bd8b31ba3e8c007a87a433a345ef7696a1dd899
 SHA512 
8b3b766b550f8d86907628d7ed88035f9a2612aac21542e0fd5ad35b905eb82cbe1be02a1a24afce7a3bcc4766f62611971f72724761996b392136c40a1e7ff0
-DIST libvpx-1.8.1.tar.gz 2922587 BLAKE2B 
c9526616f81b6b343c9597f1f0b368f76f8f6b2b5a9e207b2e8f0a2b5e14a49b7e4f61cc88ce8f9b78e04f82149f46de4bd09baa0d45b26942a3e5ca821e8e10
 SHA512 
615476a929e46befdd4782a39345ce55cd30176ecb2fcd8a875c31694ae2334b395dcab9c5ba58d53ceb572ed0c022d2a3748ca4bbd36092e22b01cf3c9b2e8e
 DIST libvpx-1.8.2.tar.gz 5312988 BLAKE2B 
4d27eb457c20e70f5b68b589962692d4938cf69e889009cd6aa74cbefb3afd53ba2733420e5a8feb1388558969d95d5a26e1fc60b9b8ef6a0be8dade7d54ee0b
 SHA512 
da2ab0775a28ddd78654bbe46886e833d4ef7ba91867fc1427dceced735b6177eff06b24f204c075c50c3a5cadc5be6a1fb213c44df189218a543b52554f3a38
 DIST libvpx-testdata-1.7.0.tar.xz 238790100 BLAKE2B 
1d14e794341d35402eaf54d398ebed56b0983908e397ae677737e0f313ea0bfc9c4a39be91765b02a07a8eb9b55529d5f998efcc87b1b493b0e326e02193d982
 SHA512 
1556345e41674f0846a7419828972ec27c3c37fe270fa1deb45e03665f60ec088d79134aee0d2e27003b130636eeed4a15ea3f701c9d7014f3ca2785467767a8
-DIST libvpx-testdata-1.8.0.tar.xz 418337232 BLAKE2B 
1336e522f18a8f7812b4e7e4de7b27d32778c38fe902c62a4415a17e857868bfcdcbdcab528617db89e9f57449a486333feccffc4a250bfe79fc460c790071ed
 SHA512 
991066467121614106455522b3651f194b45a37125c1b4e6bade59044756f26d914c95388e3c0bd3dc22159525aa6478df36801767bb7506fa7e77b93c6c2ede
 DIST libvpx-testdata-1.8.2.tar.xz 422945340 BLAKE2B 
117c26e77b9cda30ca083382981fd88139905fec756e362c6c8497adee26796cd9adab752b197b1eedb9f5e26970100c08fd0e3bd42184fd3e12afe927acad3e
 SHA512 
a1616d1c199983d47157c2e99b409e781df86804048f9a7345f2e682ffc2c6d79ab95f5cf3ccb01c0db498e79686086d9c7aa2c2c07e53cb7f642afd1e38ea35

diff --git a/media-libs/libvpx/libvpx-1.8.1.ebuild 
b/media-libs/libvpx/libvpx-1.8.1.ebuild
deleted file mode 100644
index 6c41b598eb9..000
--- a/media-libs/libvpx/libvpx-1.8.1.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-inherit toolchain-funcs multilib-minimal
-
-# To create a new testdata tarball:
-# 1. Unpack source tarbll or checkout git tag
-# 2. export LIBVPX_TEST_DATA_PATH=libvpx-testdata
-# 3. configure --enable-unit-tests --enable-vp9-highbitdepth
-# 4. make testdata
-# 5. tar -cjf libvpx-testdata-${MY_PV}.tar.xz libvpx-testdata
-
-LIBVPX_TESTDATA_VER=1.8.0
-
-DESCRIPTION="WebM VP8 and VP9 Codec SDK"
-HOMEPAGE="https://www.webmproject.org";
-SRC_URI="https://github.com/webmproject/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   test? ( mirror://gentoo/${PN}-testdata-${LIBVPX_TESTDATA_VER}.tar.xz )"
-
-LICENSE="BSD"
-SLOT="0/6"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux 
~x86-linux"
-IUSE="doc +highbitdepth postproc static-libs svc test +threads"
-
-REQUIRED_USE="test? ( threads )"
-
-# Disable test phase when USE="-test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=""
-DEPEND="abi_x86_32? ( dev-lang/yasm )
-   abi_x86_64? ( dev-lang/yasm )
-   abi_x86_x32? ( dev-lang/yasm )
-   x86-fbsd? ( dev-lang/yasm )
-   amd64-fbsd? ( dev-lang/yasm )
-   doc? (
-   app-doc/doxygen
-   dev-lang/php
-   )
-"
-
-PATCHES=(
-   "${FILESDIR}/libvpx-1.3.0-sparc-configure.patch" # 501010
-)
-
-src_configure() {
-   # https://bugs.gentoo.org/show_bug.cgi?id=384585
-   # https://bugs.gentoo.org/show_bug.cgi?id=465988
-   # copied from php-pear-r1.eclass
-   addpredict /usr/share/snmp/mibs/.index
-   addpredict /var/lib/net-snmp/
-   addpredict /var/lib/net-snmp/mib_indexes
-   addpredict /session_mm_cli0.sem
-   multilib-minimal_src_configure
-}
-
-multilib_src_configure() {
-   unset CODECS #357487
-
-   # #498364: sse doesn't work without sse2 enabled,
-   local myconfargs=(
-   --prefix="${EPREFIX}"/usr
-   --libdir="${EPREFIX}"/usr/$(get_libdir)
-   --enable-pic
-   --enable-vp8
-  

[gentoo-commits] repo/gentoo:master commit in: sci-misc/netlogo-bin/files/

2020-01-29 Thread Ben Kohler
commit: 1097798b051f67ab259f8b11853cb37582543b44
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jan 29 14:08:00 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jan 29 14:19:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1097798b

sci-misc/netlogo-bin: fix minor QA issues

Closes: https://bugs.gentoo.org/694850
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Ben Kohler  gentoo.org>

 sci-misc/netlogo-bin/files/behaviorsearch-6.0.2.sh | 0
 sci-misc/netlogo-bin/files/hubnetclient-6.0.2.sh   | 0
 sci-misc/netlogo-bin/files/netlogo-6.0.2.sh| 0
 sci-misc/netlogo-bin/files/netlogo3d-6.0.2.sh  | 0
 4 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/sci-misc/netlogo-bin/files/behaviorsearch-6.0.2.sh 
b/sci-misc/netlogo-bin/files/behaviorsearch-6.0.2.sh
old mode 100755
new mode 100644

diff --git a/sci-misc/netlogo-bin/files/hubnetclient-6.0.2.sh 
b/sci-misc/netlogo-bin/files/hubnetclient-6.0.2.sh
old mode 100755
new mode 100644

diff --git a/sci-misc/netlogo-bin/files/netlogo-6.0.2.sh 
b/sci-misc/netlogo-bin/files/netlogo-6.0.2.sh
old mode 100755
new mode 100644

diff --git a/sci-misc/netlogo-bin/files/netlogo3d-6.0.2.sh 
b/sci-misc/netlogo-bin/files/netlogo3d-6.0.2.sh
old mode 100755
new mode 100644



[gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu-init-scripts/files/, app-emulation/qemu-init-scripts/

2020-01-29 Thread Ben Kohler
commit: a28ecf7280fdf5c09509c3af2c8b467131f0d209
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jan 29 14:19:00 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jan 29 14:19:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a28ecf72

app-emulation/qemu-init-scripts: revbump for EAPI & misc QA fixes

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

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

 .../qemu-init-scripts/files/openrc-run.patch   | 10 +++
 .../qemu-init-scripts-0.3.0-r1.ebuild  | 35 ++
 2 files changed, 45 insertions(+)

diff --git a/app-emulation/qemu-init-scripts/files/openrc-run.patch 
b/app-emulation/qemu-init-scripts/files/openrc-run.patch
new file mode 100644
index 000..5592ff2e115
--- /dev/null
+++ b/app-emulation/qemu-init-scripts/files/openrc-run.patch
@@ -0,0 +1,10 @@
+diff --git a/qemu-init-script b/qemu-init-script
+index 937ddfe..b2c060f 100755
+--- a/qemu-init-script
 b/qemu-init-script
+@@ -1,4 +1,4 @@
+-#!/sbin/runscript
++#!/sbin/openrc-run
+ # Copyright 2009-2013 Gentoo Foundation
+ # Distributed under the terms of the GNU General Public License v2
+ 

diff --git a/app-emulation/qemu-init-scripts/qemu-init-scripts-0.3.0-r1.ebuild 
b/app-emulation/qemu-init-scripts/qemu-init-scripts-0.3.0-r1.ebuild
new file mode 100644
index 000..b953a36d13c
--- /dev/null
+++ b/app-emulation/qemu-init-scripts/qemu-init-scripts-0.3.0-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Kvm and qemu init scripts"
+HOMEPAGE="https://gitweb.gentoo.org/proj/kvm-tools.git/";
+
+SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/${P}.tar.xz";
+LICENSE="GPL-2"
+SLOT=0
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-emulation/qemu
+   net-misc/socat"
+
+S="${WORKDIR}/${PN}"
+PATCHES=( "${FILESDIR}"/openrc-run.patch )
+
+src_install() {
+   newinitd "${S}/"qemu-init-script qemu
+   newconfd "${S}/"qemu-conf.example qemu.conf.example
+   newsbin "${S}/"qtap-manipulate qtap-manipulate
+   dosym qemu /etc/init.d/kvm
+}
+
+pkg_postinst() {
+   elog "For bridging networking systems, you need these run time 
utilities:"
+   elog "net-misc/bridge-utils"
+   elog "sys-apps/usermode-utilities"
+   elog ""
+   elog "We will be updating these scripts to use"
+   elog "iptables exclusively in the future"
+}



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

2020-01-29 Thread Anthony G. Basile
commit: 9bdff0e5ea288b745e38ef08914fe141a127902c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jan 29 14:21:46 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jan 29 14:22:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bdff0e5

net-libs/mbedtls: fix wrong headers, bug #705038

Closes: https://bugs.gentoo.org/705038
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Anthony G. Basile  gentoo.org>

 .../mbedtls-un-pebcak-705038-wrong-file.patch  | 50 ++
 net-libs/mbedtls/mbedtls-2.18.1-r1.ebuild  |  1 +
 net-libs/mbedtls/mbedtls-2.19.1-r1.ebuild  |  1 +
 3 files changed, 52 insertions(+)

diff --git a/net-libs/mbedtls/files/mbedtls-un-pebcak-705038-wrong-file.patch 
b/net-libs/mbedtls/files/mbedtls-un-pebcak-705038-wrong-file.patch
new file mode 100644
index 000..73e870fa1e4
--- /dev/null
+++ b/net-libs/mbedtls/files/mbedtls-un-pebcak-705038-wrong-file.patch
@@ -0,0 +1,50 @@
+Fix https://bugs.gentoo.org/705038
+
+Thanks Greg Turner 
+
+diff -urpN mbedtls-mbedtls-2.19.1.orig/crypto/include/CMakeLists.txt 
mbedtls-mbedtls-2.19.1/crypto/include/CMakeLists.txt
+--- mbedtls-mbedtls-2.19.1.orig/crypto/include/CMakeLists.txt  2020-01-26 
09:01:50.324231295 -0800
 mbedtls-mbedtls-2.19.1/crypto/include/CMakeLists.txt   2020-01-26 
09:04:26.498880873 -0800
+@@ -5,6 +5,19 @@ if(INSTALL_MBEDTLS_HEADERS)
+ file(GLOB headers "mbedtls/*.h")
+ file(GLOB psa_headers "psa/*.h")
+ 
++if(USE_CRYPTO_SUBMODULE)
++# Don't overwrite mbedtls's header files!
++# config.h is supposed to be automatically checked for compatibility
++# in automatic builds, while the other files should not just be
++# compatible, but also identical in theory.
++# Practically, we don't check that in crypto but just assume that the
++# submodule configuration is sane and trust tls's headers.
++list(REMOVE_ITEM headers
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/compat-1.3.h"
++
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/config.h"
++
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/error.h"
++
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/version.h")
++endif(USE_CRYPTO_SUBMODULE)
++
+ install(FILES ${headers}
+ DESTINATION include/mbedtls
+ PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
+diff -urpN mbedtls-mbedtls-2.19.1.orig/include/CMakeLists.txt 
mbedtls-mbedtls-2.19.1/include/CMakeLists.txt
+--- mbedtls-mbedtls-2.19.1.orig/include/CMakeLists.txt 2020-01-26 
09:01:50.320231227 -0800
 mbedtls-mbedtls-2.19.1/include/CMakeLists.txt  2020-01-26 
09:03:45.761189288 -0800
+@@ -4,19 +4,6 @@ if(INSTALL_MBEDTLS_HEADERS)
+ 
+ file(GLOB headers "mbedtls/*.h")
+ 
+-if(USE_CRYPTO_SUBMODULE)
+-# Don't overwrite mbedtls's header files!
+-# config.h is supposed to be automatically checked for compatibility
+-# in automatic builds, while the other files should not just be
+-# compatible, but also identical in theory.
+-# Practically, we don't check that in crypto but just assume that the
+-# submodule configuration is sane and trust tls's headers.
+-list(REMOVE_ITEM headers
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/compat-1.3.h"
+-
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/config.h"
+-
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/error.h"
+-
"${CMAKE_CURRENT_SOURCE_DIR}/mbedtls/version.h")
+-endif(USE_CRYPTO_SUBMODULE)
+-
+ install(FILES ${headers}
+ DESTINATION include/mbedtls
+ PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)

diff --git a/net-libs/mbedtls/mbedtls-2.18.1-r1.ebuild 
b/net-libs/mbedtls/mbedtls-2.18.1-r1.ebuild
index b11f2794a35..dfb900ea4c6 100644
--- a/net-libs/mbedtls/mbedtls-2.18.1-r1.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.18.1-r1.ebuild
@@ -38,6 +38,7 @@ enable_mbedtls_option() {
 
 PATCHES=(
"${FILESDIR}"/${PN}-dont-overwrite-headers.patch
+   "${FILESDIR}"/${PN}-un-pebcak-705038-wrong-file.patch
 )
 
 src_prepare() {

diff --git a/net-libs/mbedtls/mbedtls-2.19.1-r1.ebuild 
b/net-libs/mbedtls/mbedtls-2.19.1-r1.ebuild
index 1a73d20f220..a18fc891988 100644
--- a/net-libs/mbedtls/mbedtls-2.19.1-r1.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.19.1-r1.ebuild
@@ -38,6 +38,7 @@ enable_mbedtls_option() {
 
 PATCHES=(
"${FILESDIR}"/${PN}-dont-overwrite-headers.patch
+   "${FILESDIR}"/${PN}-un-pebcak-705038-wrong-file.patch
 )
 
 src_prepare() {



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

2020-01-29 Thread Miroslav Šulc
commit: bc8a1661e165a7be90cab0b71a97f028f89301de
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jan 29 14:29:12 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jan 29 14:29:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8a1661

media-sound/guitarix: bump to 0.39.0

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

 media-sound/guitarix/Manifest   |  1 +
 media-sound/guitarix/guitarix-0.39.0.ebuild | 76 +
 2 files changed, 77 insertions(+)

diff --git a/media-sound/guitarix/Manifest b/media-sound/guitarix/Manifest
index 52c41818c5c..8f09d50afc4 100644
--- a/media-sound/guitarix/Manifest
+++ b/media-sound/guitarix/Manifest
@@ -1 +1,2 @@
 DIST guitarix2-0.38.1.tar.xz 80768608 BLAKE2B 
fd745955d8b44da72c669e69c36294d4a2131f2b5868e7e254a0b33768852ba9fcf9302f2a7ebd962c8a6dc02a543f70574466c51341a371c9fb988989123e50
 SHA512 
54d08b4ed20b9df4c69d0c86e4d668c53fffde8919f5570f376cee903926bd01945169d177d0d45976569ea55b28f8dca7884ac6dfe2f063df6583467559c5b7
+DIST guitarix2-0.39.0.tar.xz 80769472 BLAKE2B 
a699545b7e4a9992ed11a17ee9f82170c1891a95a0543c3b847ff2a02ab4e6597c28cbb4708f85022b1e94f0184b6dc712c271729bdda07373101ea9e8a1323f
 SHA512 
5eb799498385ab9aa865e3f5a7e79d77f7f62c9bd7ad6875ec32bdec85829ed5b84bed3b0eab786ce74088fe2e1d53080f70afcb25ab1ef8d8f78a676b4947df

diff --git a/media-sound/guitarix/guitarix-0.39.0.ebuild 
b/media-sound/guitarix/guitarix-0.39.0.ebuild
new file mode 100644
index 000..275c99ec794
--- /dev/null
+++ b/media-sound/guitarix/guitarix-0.39.0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-any-r1 waf-utils xdg
+
+MY_P="${PN}2-${PV}"
+
+DESCRIPTION="Virtual guitar amplifier for Linux"
+HOMEPAGE="http://guitarix.org/";
+SRC_URI="mirror://sourceforge/guitarix/guitarix/${MY_P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="bluetooth debug lv2 nls +standalone zeroconf"
+REQUIRED_USE="|| ( lv2 standalone )"
+
+COMMON_DEPEND="dev-cpp/eigen:3
+   dev-cpp/glibmm:2
+   dev-cpp/gtkmm:2.4
+   dev-libs/glib:2
+   >=media-libs/libsndfile-1.0.17
+   >=media-libs/zita-convolver-3:=
+   media-libs/zita-resampler
+   >=net-misc/curl-7.26.0
+   >=sci-libs/fftw-3.1.2:3.0=
+   x11-libs/gtk+:2
+   lv2? ( media-libs/lv2 )
+   standalone? (
+   dev-libs/boost:=
+   media-libs/liblrdf
+   media-libs/lilv
+   virtual/jack
+   bluetooth? ( net-wireless/bluez )
+   zeroconf? ( net-dns/avahi )
+   )
+"
+# clearlooks gtk engine and roboto fonts are required for correct ui rendering
+RDEPEND="${COMMON_DEPEND}
+   x11-themes/gtk-engines
+   standalone? (
+   media-fonts/roboto
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   ${PYTHON_DEPS}
+   virtual/pkgconfig
+   nls? ( dev-util/intltool )
+"
+
+DOCS=( changelog README )
+
+src_configure() {
+   local myconf=(
+   --cxxflags-debug=""
+   --cxxflags-release="-DNDEBUG"
+   --ldflags="${LDFLAGS}"
+   --enable-lfs
+   --lib-dev
+   --no-desktop-update
+   --no-faust
+   --no-ldconfig
+   --shared-lib
+   $(use_enable nls)
+   $(usex bluetooth "" "--no-bluez")
+   $(usex debug "--debug" "")
+   $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" 
"--no-lv2 --no-lv2-gui")
+   $(usex standalone "" "--no-standalone")
+   $(usex zeroconf "" "--no-avahi")
+   )
+   waf-utils_src_configure "${myconf[@]}"
+}



[gentoo-commits] proj/gentoo-bugzilla:bugstest commit in: /

2020-01-29 Thread Robin H. Johnson
commit: 8a223623572cb66ba5d1bcd6621dad64095f5483
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Jan 29 14:39:10 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Jan 29 14:39:43 2020 +
URL:
https://gitweb.gentoo.org/proj/gentoo-bugzilla.git/commit/?id=8a223623

Merge remote-tracking branch 'origin/master' into bugstest

Master gained some changes that didn't stage in bugstest first.

Signed-off-by: Robin H. Johnson  gentoo.org>

 .../en/default/hook/bug/create/create-after_cc_field.html.tmpl| 4 ++--
 .../Gentoo/template/en/default/hook/bug/edit-after_cc_field.html.tmpl | 2 +-
 template/en/default/attachment/createformcontents.html.tmpl   | 1 +
 3 files changed, 4 insertions(+), 3 deletions(-)



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

2020-01-29 Thread Michał Górny
commit: 5f58bab4f7c0b17b8750eca39f20cf2f0788292d
Author: Jan Ziak <0xe2.0x9a.0x9b  gmail  com>
AuthorDate: Wed Jan 29 13:45:12 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 29 14:58:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f58bab4

dev-python/lxml: pull cython[pypy3]

Building lxml with pypy3 compatibility requires the pypy3 version of cython.

Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14497
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/lxml/lxml-4.4.2.ebuild | 2 +-
 dev-python/lxml/lxml-4.4.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/lxml/lxml-4.4.2.ebuild 
b/dev-python/lxml/lxml-4.4.2.ebuild
index 494b32823d6..a1977b72205 100644
--- a/dev-python/lxml/lxml-4.4.2.ebuild
+++ b/dev-python/lxml/lxml-4.4.2.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="
virtual/pkgconfig
-   $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' python2_7 
'python3*')
+   dev-python/cython[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/cssselect[${PYTHON_USEDEP}] )
"

diff --git a/dev-python/lxml/lxml-4.4.3.ebuild 
b/dev-python/lxml/lxml-4.4.3.ebuild
index 83107898492..8e5f5c5c548 100644
--- a/dev-python/lxml/lxml-4.4.3.ebuild
+++ b/dev-python/lxml/lxml-4.4.3.ebuild
@@ -25,7 +25,7 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="
virtual/pkgconfig
-   $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' python2_7 
'python3*')
+   dev-python/cython[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/cssselect[${PYTHON_USEDEP}] )
"



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

2020-01-29 Thread Jeroen Roovers
commit: c07139b78c93f628b98dc43ddb0541242aa0b4e0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 15:02:02 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 15:04:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c07139b7

net-libs/libtrace: Update doxygen configuration

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

 net-libs/libtrace/libtrace-9.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-libs/libtrace/libtrace-9.ebuild 
b/net-libs/libtrace/libtrace-9.ebuild
index f9a910c5b3a..6f692e15713 100644
--- a/net-libs/libtrace/libtrace-9.ebuild
+++ b/net-libs/libtrace/libtrace-9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,8 +16,8 @@ IUSE="doc ncurses numa static-libs"
 RDEPEND="
>=net-libs/libpcap-0.8
dev-libs/openssl:0=
-   ncurses? ( sys-libs/ncurses:0= )
net-libs/wandio
+   ncurses? ( sys-libs/ncurses:0= )
numa? ( sys-process/numactl )
 "
 DEPEND="
@@ -40,6 +40,8 @@ src_prepare() {
default
 
eautoreconf
+
+   doxygen -u docs/libtrace.doxygen.in || die
 }
 
 src_configure() {



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

2020-01-29 Thread Jeroen Roovers
commit: 35a6a034048ba6c10c65fec9434e73158401419c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 14:22:19 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 15:04:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35a6a034

www-client/vivaldi-snapshot: Version 2.11.1805.3_p1

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

 www-client/vivaldi-snapshot/Manifest   |   4 +
 .../vivaldi-snapshot-2.11.1805.3_p1.ebuild | 115 +
 2 files changed, 119 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index ef480829f48..1ea99dc323f 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -6,3 +6,7 @@ DIST vivaldi-snapshot-2.11.1800.5_p1-amd64.deb 67523480 BLAKE2B 
a076cbfe6c94149e
 DIST vivaldi-snapshot-2.11.1800.5_p1-arm64.deb 60563292 BLAKE2B 
7699f2f907a0848c33ba7e9bf4d3122b600d58492c407d85207dd443c2a252e5a6571c22adf1d5f6ce85c442ac00e5874441d8a0a5890829b5bacf177b5f3100
 SHA512 
e0192520324ef1f22ccb555d126ea336aa68f08efd1521715522722439a96c52ffdbc122d77ab8cca0bdb25ff61cadbdf19ce9542e8fbd2a0edc4bb29a687a9c
 DIST vivaldi-snapshot-2.11.1800.5_p1-armhf.deb 59947460 BLAKE2B 
21a20e54e4a5f7f4c52bc015c01a171b5de4a079ebf1486b3e5aa0ae34dcddefbf23a16ae3b73471e6b2b1035fbf751e29e94200146240f0885a7868bc7fecf7
 SHA512 
87690b1875dfd6edd902a97235d8810d84f2cbc798654c04470b7cc43d5e06cf1f34f85f811b07ea54dac04122f0d0e9e751e7ecc1718147fecea37866794d8c
 DIST vivaldi-snapshot-2.11.1800.5_p1-i386.deb 66346624 BLAKE2B 
2fdee4fcb0a28da2b996a293316eebf4de16d53bdae8e882818e8249b4f7ba74bf16edb140843b3aada485da91755ad71135e4f899eca941c3b34071ca2383f0
 SHA512 
b39324c6f28520051f9e222c33df6de8ad8b6cd4d9e2f937063cc3a307e6e8a47e59e69b35014ee0749520c69a78d02f8a2a0786769e06f530b02b4fb2123304
+DIST vivaldi-snapshot-2.11.1805.3_p1-amd64.deb 67518936 BLAKE2B 
63cad6603717f14c93275095e9370ab35c3818a16bc911fc33bcf53f7a46bc7549ade8c86bfab1c14157dbaffb8242f60c5d80d7732d286ccec6a89a6b658ef4
 SHA512 
bfa939f794e691c65a5f1c9671e058e517063f0fba92ef2e2aee94b58badd3a50d6368afcf0c54d50068088e5fc9a2954903dea8ce75126700848d2b2920cb5d
+DIST vivaldi-snapshot-2.11.1805.3_p1-arm64.deb 60592608 BLAKE2B 
159648be6f45d1980c273fc15958cf57a7cfa6b46d2353068dd2adf11cf7d5f3d7f45d27f8c0a6c0988067a7f0959c8039e5c3d20a881258e25719dc1d4c0ae7
 SHA512 
aec9a0170d0a875fee33891c9f5760573185b065a8700c6086d0168d22203ba4ab48c0040d86df9967ff3808ae0eda280030ecc478e0a61c6aa900629b4cfe1c
+DIST vivaldi-snapshot-2.11.1805.3_p1-armhf.deb 59942876 BLAKE2B 
e01aaa37f8327fecc27d1e626761502fcd13bf3479604fbec5ccfd2e77d0becc888b01c4232a3b3c2db40dd130bda3734ca15d291e9f762fd173db6aa65a2070
 SHA512 
44485b65ff509ff11a24c2a22c15b3df606c7df872dcf617440b4f0ee65a330273bad1196d7372f6a3038d7f15e759d1f818828125e244ac4676e64261a33b19
+DIST vivaldi-snapshot-2.11.1805.3_p1-i386.deb 66348980 BLAKE2B 
01d8cd9f9b58732a12db30c650b72dd5233bdb6288e4794548ec2788d6ffd9b9fff9f4a9ff1b57c7b767c135b2ff8df2afcf92b2144ea77b56ad4fb86f3ca279
 SHA512 
c3817a0a4f81059618f09c7d1cf9c86a936bba3fad4446ed3582bef18836b95620113dc7f001c2c425001a59dc7b20f1e7d0289e1d6c8942cbd7aea204a3fdf6

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.11.1805.3_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.11.1805.3_p1.ebuild
new file mode 100644
index 000..23aeb880ad5
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.11.1805.3_p1.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE 
et eu
+   fa fi fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku 
lt
+   lv mk ml mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te 
th
+   tr uk vi zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker toolchain-funcs xdg-utils
+
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/";
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_";
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb )
+   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
+RESTRICT="bindist mirror"
+
+DEPEND="
+   virtual/libiconv
+"
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   media-libs/speex
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   

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

2020-01-29 Thread Jeroen Roovers
commit: 182dc072b43dd62b98fcd65161ad287fbd6d8e66
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 29 14:35:14 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 29 15:04:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=182dc072

www-client/vivaldi-snapshot: Old

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

 www-client/vivaldi-snapshot/Manifest   |   4 -
 .../vivaldi-snapshot-2.11.1792.3_p1.ebuild | 115 -
 2 files changed, 119 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 1ea99dc323f..a95fc86d0d1 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,7 +1,3 @@
-DIST vivaldi-snapshot-2.11.1792.3_p1-amd64.deb 66784692 BLAKE2B 
3a73c5e118c55d2a11398b1e3e53f97f6920768559e5e5845fa7932b0d807214f985ad3c284e6f88a0b15ae0d04858e1683b95c5d416869bcf2021fd4bd6e8bb
 SHA512 
d068606cb30696235877082f1d8ca18cc901eeb32bb1a787fbf4833b3ea44acee0b450047077c6afdc55aa8a62dd6a2c7cde7d811caadd102b6c9057a64d2877
-DIST vivaldi-snapshot-2.11.1792.3_p1-arm64.deb 59657680 BLAKE2B 
234926d7065e97c4570fbbf5f501428d221dfd85d2d2ead8535980215d1a99a2ecb3558e85a61bd0acd8729a2cd81130ca0b23301a7728c716e746acea65e03b
 SHA512 
959962de75e789ff1c7852a11888e00d3528640584e59ed303c7787192e6db4f448450a0c98386c16557ec4dedda953bbdda90541f1b2ae7d74877f9827681f1
-DIST vivaldi-snapshot-2.11.1792.3_p1-armhf.deb 58939352 BLAKE2B 
cc85395aa9972f60ec3b7abb795ba7043f1c389c216d487d39ee401f4fad0087730352efd24e43662f3262d78bb62cd34da3a1d18c6b1f0c49ce2ad61883ba8d
 SHA512 
09666e226ef68a9551aa1c74c9386e8d94b2c59ad8c51dd208b597721285b5d22a2211b6e189f448665b387223b65f6b4a6e292953662aaa8bbdeebbb0711523
-DIST vivaldi-snapshot-2.11.1792.3_p1-i386.deb 65234280 BLAKE2B 
98e57d37fa66f00dbedaa5fdb7a4d13d9648cc12f44992622d4773b066fd02b69c908676461b709bc0af44a50b076bc3d701b5a3d7fced61ad751543b4da5c84
 SHA512 
ce90f6cb484ef33261a8ddd872731eb35d1fdad5b24dcee24752712e0d84b08408a386f11f378fc7d5afd369be56a03674620493b4460e312e9e8c2a692ab3a5
 DIST vivaldi-snapshot-2.11.1800.5_p1-amd64.deb 67523480 BLAKE2B 
a076cbfe6c94149e772f4bd99bd564bb6bf2fc2c1e95874340a85e28ec394bc567a21d67c20359b7aa4034fa345111e5aac7159abf72e169ca8e5849fe8b2164
 SHA512 
4822fdecb1335fcd217c9edd6f183dc73735c74e504978a0fa7ff0742cf91c5b50b8fe979960f7a4e041d2353f7b44562adf1e6f1a67564145871488324b32bb
 DIST vivaldi-snapshot-2.11.1800.5_p1-arm64.deb 60563292 BLAKE2B 
7699f2f907a0848c33ba7e9bf4d3122b600d58492c407d85207dd443c2a252e5a6571c22adf1d5f6ce85c442ac00e5874441d8a0a5890829b5bacf177b5f3100
 SHA512 
e0192520324ef1f22ccb555d126ea336aa68f08efd1521715522722439a96c52ffdbc122d77ab8cca0bdb25ff61cadbdf19ce9542e8fbd2a0edc4bb29a687a9c
 DIST vivaldi-snapshot-2.11.1800.5_p1-armhf.deb 59947460 BLAKE2B 
21a20e54e4a5f7f4c52bc015c01a171b5de4a079ebf1486b3e5aa0ae34dcddefbf23a16ae3b73471e6b2b1035fbf751e29e94200146240f0885a7868bc7fecf7
 SHA512 
87690b1875dfd6edd902a97235d8810d84f2cbc798654c04470b7cc43d5e06cf1f34f85f811b07ea54dac04122f0d0e9e751e7ecc1718147fecea37866794d8c

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.11.1792.3_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.11.1792.3_p1.ebuild
deleted file mode 100644
index 23aeb880ad5..000
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.11.1792.3_p1.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE 
et eu
-   fa fi fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku 
lt
-   lv mk ml mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te 
th
-   tr uk vi zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker toolchain-funcs xdg-utils
-
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/";
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_";
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-lib

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

2020-01-29 Thread Jory Pratt
commit: 5918dd02cb8261e938e7db58805caae6c668219b
Author: Jory Pratt  gentoo  org>
AuthorDate: Wed Jan 29 15:16:48 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Wed Jan 29 15:16:48 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=5918dd02

media-libs/mesa: Version bump 19.3.3

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

 media-libs/mesa/Manifest   | 2 +-
 media-libs/mesa/{mesa-19.3.2.ebuild => mesa-19.3.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 274410d..64eb34b 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -1,2 +1,2 @@
 DIST mesa-19.2.8.tar.xz 11462168 BLAKE2B 
c49d6d3d10b4c85534a75e4bea29fc8b7526c784af5068764de623d40cbb59ecb96beb1969fa1a13815b6bd259bb98faaf42e4969792c6a75ce702d4b2e57155
 SHA512 
9bedc2f1a5296da96c1a2a491edaea701e70f683b26eac076e8cbef2230156d5d5ddb2330c3a2530afd4982a9893d76ded8d54bc73a98c846de0c3dfa3634c43
-DIST mesa-19.3.2.tar.xz 11834324 BLAKE2B 
114912816a08424da1d55c65d8ff4fb97d58022f5968d37938055e0b0fcdfeeebdbdca3c28d187fd85aaf6385d3a1bfbfe3f011f410e9a991519d34cb81697b5
 SHA512 
fb6fa7a15cd6f2c254fb6e8fe635e56dc49a5c2c762a96c77815cbad77060b8f81a02e67ac9ec58092ab866e080fb928086a5ac1e61c3efe882e5825cd28
+DIST mesa-19.3.3.tar.xz 11938700 BLAKE2B 
a2fd88e8c2d8b189ddf4fcebe324d2f6c00e0c101a565eeb783f50ecc7b2b85f3fe698822788807ab9aaf0403a4d27b7c469bd73c891f535e220b9a0204059f9
 SHA512 
1f792fbde71132afd4a43d6abe6a3d640f375e83641c6144c82312774434c9588ffba65a3ba38394947bd753656aa85213b6cd9f745cec0040c0559eb41f0dc9

diff --git a/media-libs/mesa/mesa-19.3.2.ebuild 
b/media-libs/mesa/mesa-19.3.3.ebuild
similarity index 100%
rename from media-libs/mesa/mesa-19.3.2.ebuild
rename to media-libs/mesa/mesa-19.3.3.ebuild



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

2020-01-29 Thread Ben Kohler
commit: d00e22160ec694b1efc95bbcfe598cc8dec18ac7
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jan 29 16:03:43 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jan 29 16:04:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d00e2216

media-gfx/pencil: take pkg, bump to 0.6.4, fix missing deps, EAPI=7

Closes: https://bugs.gentoo.org/681576
Closes: https://bugs.gentoo.org/684356
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Ben Kohler  gentoo.org>

 media-gfx/pencil/Manifest|  1 +
 media-gfx/pencil/metadata.xml|  5 ++-
 media-gfx/pencil/pencil-0.6.4.ebuild | 63 
 3 files changed, 68 insertions(+), 1 deletion(-)

diff --git a/media-gfx/pencil/Manifest b/media-gfx/pencil/Manifest
index 05e5b6ece13..7f57cc457c2 100644
--- a/media-gfx/pencil/Manifest
+++ b/media-gfx/pencil/Manifest
@@ -1 +1,2 @@
 DIST pencil-0.6.1.1.tar.gz 2987266 BLAKE2B 
ae97364178e62535c17941c6c4a3ad507f5883628cbce59635a2c86cf3485ebd85a5815f28516315dabc30bd791c723805078d47f36b1409d545a769b78d90c4
 SHA512 
e84330da70091414a9fca8f0be8c8ca82272d89777cd0e5a33d30e4a53449eca20cfc175c84cbbe063dd1017be5b263ddf490f69771d9931c9d31261ebe46354
+DIST pencil-0.6.4.tar.gz 3397891 BLAKE2B 
cb3fc754cd9abc2944fd184ea61b057a784a5b9e3c42724ef50b117a933cad0b72456a32e849c2de3ae6a7eb8bc6bdeee3ed751e8a6c8c68a74130d03ba6f1de
 SHA512 
da28bd6bcdb0336c81e0735bec261373cd1e5db06feb012d4bba098c9df2ebea6f5b763e9c5e5e17c1518efdd6b9cde634ecf2152b49c25cde6c93da63e6fde8

diff --git a/media-gfx/pencil/metadata.xml b/media-gfx/pencil/metadata.xml
index eac6c670643..9fb96e2736a 100644
--- a/media-gfx/pencil/metadata.xml
+++ b/media-gfx/pencil/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
+   
+   bkoh...@gentoo.org
+   Ben Kohler
+   

pencil-planner


diff --git a/media-gfx/pencil/pencil-0.6.4.ebuild 
b/media-gfx/pencil/pencil-0.6.4.ebuild
new file mode 100644
index 000..7a7001dd26d
--- /dev/null
+++ b/media-gfx/pencil/pencil-0.6.4.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg-utils
+
+DESCRIPTION="2D animation and drawing program based on Qt5"
+HOMEPAGE="https://www.pencil2d.org/";
+SRC_URI="https://github.com/pencil2d/${PN}/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+"
+DEPEND="${RDEPEND}
+   test? ( dev-qt/qttest:5 )
+"
+
+S="${WORKDIR}/${P/_/-}"
+
+src_prepare() {
+   default
+   sed -e "/^QT/s/xmlpatterns //" \
+   -i core_lib/core_lib.pro tests/tests.pro || die
+}
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   einstalldocs
+
+   # install target not yet provided
+   # emake INSTALL_ROOT="${D}" install
+   newbin bin/pencil2d ${PN}
+
+   newicon app/data/icons/icon.png ${PN}.png
+   make_desktop_entry ${PN} pencil2d ${PN} Graphics
+
+   insinto /usr/share/mime/packages/
+   doins app/data/pencil2d.xml
+
+   # TODO: Install l10n files
+}
+
+pkg_postinst() {
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}



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

2020-01-29 Thread Mike Pagano
commit: bfc45014998185f009ebc0ac2fb653866cf02793
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 16:14:09 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 16:14:09 2020 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=bfc45014

Linux patch 4.14.169

Signed-off-by: Mike Pagano  gentoo.org>

 _README   |4 +
 1168_linux-4.14.169.patch | 1600 +
 2 files changed, 1604 insertions(+)

diff --git a/_README b/_README
index ea6db7d..0793c3f 100644
--- a/_README
+++ b/_README
@@ -715,6 +715,10 @@ Patch:  1167_linux-4.14.168.patch
 From:   https://www.kernel.org
 Desc:   Linux 4.14.168
 
+Patch:  1168_linux-4.14.169.patch
+From:   https://www.kernel.org
+Desc:   Linux 4.14.169
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1168_linux-4.14.169.patch b/1168_linux-4.14.169.patch
new file mode 100644
index 000..c563312
--- /dev/null
+++ b/1168_linux-4.14.169.patch
@@ -0,0 +1,1600 @@
+diff --git a/Documentation/admin-guide/kernel-parameters.txt 
b/Documentation/admin-guide/kernel-parameters.txt
+index 933465eff40e..7e0a4be3503d 100644
+--- a/Documentation/admin-guide/kernel-parameters.txt
 b/Documentation/admin-guide/kernel-parameters.txt
+@@ -1845,6 +1845,12 @@
+   Built with CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y,
+   the default is off.
+ 
++  kpti=   [ARM64] Control page table isolation of user
++  and kernel address spaces.
++  Default: enabled on cores which need mitigation.
++  0: force disabled
++  1: force enabled
++
+   kvm.ignore_msrs=[KVM] Ignore guest accesses to unhandled MSRs.
+   Default is 0 (don't ignore, but inject #GP)
+ 
+diff --git a/Makefile b/Makefile
+index 1e74ba09cdda..795d93bfe156 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 14
+-SUBLEVEL = 168
++SUBLEVEL = 169
+ EXTRAVERSION =
+ NAME = Petit Gorille
+ 
+diff --git a/drivers/atm/firestream.c b/drivers/atm/firestream.c
+index 6b6368a56526..0e449ee11ac7 100644
+--- a/drivers/atm/firestream.c
 b/drivers/atm/firestream.c
+@@ -927,6 +927,7 @@ static int fs_open(struct atm_vcc *atm_vcc)
+   }
+   if (!to) {
+   printk ("No more free channels for FS50..\n");
++  kfree(vcc);
+   return -EBUSY;
+   }
+   vcc->channo = dev->channo;
+@@ -937,6 +938,7 @@ static int fs_open(struct atm_vcc *atm_vcc)
+   if (((DO_DIRECTION(rxtp) && 
dev->atm_vccs[vcc->channo])) ||
+   ( DO_DIRECTION(txtp) && test_bit (vcc->channo, 
dev->tx_inuse))) {
+   printk ("Channel is in use for FS155.\n");
++  kfree(vcc);
+   return -EBUSY;
+   }
+   }
+@@ -950,6 +952,7 @@ static int fs_open(struct atm_vcc *atm_vcc)
+   tc, sizeof (struct fs_transmit_config));
+   if (!tc) {
+   fs_dprintk (FS_DEBUG_OPEN, "fs: can't alloc 
transmit_config.\n");
++  kfree(vcc);
+   return -ENOMEM;
+   }
+ 
+diff --git a/drivers/hwmon/adt7475.c b/drivers/hwmon/adt7475.c
+index 37db2eb66ed7..d7d1f2467100 100644
+--- a/drivers/hwmon/adt7475.c
 b/drivers/hwmon/adt7475.c
+@@ -297,9 +297,10 @@ static inline u16 volt2reg(int channel, long volt, u8 
bypass_attn)
+   long reg;
+ 
+   if (bypass_attn & (1 << channel))
+-  reg = (volt * 1024) / 2250;
++  reg = DIV_ROUND_CLOSEST(volt * 1024, 2250);
+   else
+-  reg = (volt * r[1] * 1024) / ((r[0] + r[1]) * 2250);
++  reg = DIV_ROUND_CLOSEST(volt * r[1] * 1024,
++  (r[0] + r[1]) * 2250);
+   return clamp_val(reg, 0, 1023) & (0xff << 2);
+ }
+ 
+diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c
+index 7b53065e9882..652973d83a07 100644
+--- a/drivers/hwmon/hwmon.c
 b/drivers/hwmon/hwmon.c
+@@ -51,6 +51,7 @@ struct hwmon_device_attribute {
+ 
+ #define to_hwmon_attr(d) \
+   container_of(d, struct hwmon_device_attribute, dev_attr)
++#define to_dev_attr(a) container_of(a, struct device_attribute, attr)
+ 
+ /*
+  * Thermal zone information
+@@ -58,7 +59,7 @@ struct hwmon_device_attribute {
+  * also provides the sensor index.
+  */
+ struct hwmon_thermal_data {
+-  struct hwmon_device *hwdev; /* Reference to hwmon device */
++  struct device *dev; /* Reference to hwmon device */
+   int index;

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

2020-01-29 Thread Mike Pagano
commit: a237553df3d9872194b04bb1688fb0ec658cf944
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 16:15:47 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 16:15:47 2020 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=a237553d

Linux patch 4.19.100

Signed-off-by: Mike Pagano  gentoo.org>

 _README   |4 +
 1099_linux-4.19.100.patch | 4278 +
 2 files changed, 4282 insertions(+)

diff --git a/_README b/_README
index cae3438..7c99cc6 100644
--- a/_README
+++ b/_README
@@ -435,6 +435,10 @@ Patch:  1098_linux-4.19.99.patch
 From:   https://www.kernel.org
 Desc:   Linux 4.19.99
 
+Patch:  1099_linux-4.19.100.patch
+From:   https://www.kernel.org
+Desc:   Linux 4.19.100
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1099_linux-4.19.100.patch b/1099_linux-4.19.100.patch
new file mode 100644
index 000..1e9d910
--- /dev/null
+++ b/1099_linux-4.19.100.patch
@@ -0,0 +1,4278 @@
+diff --git a/Documentation/admin-guide/kernel-parameters.txt 
b/Documentation/admin-guide/kernel-parameters.txt
+index e6b6ec974eeb..8bf0c0532046 100644
+--- a/Documentation/admin-guide/kernel-parameters.txt
 b/Documentation/admin-guide/kernel-parameters.txt
+@@ -1946,6 +1946,12 @@
+   Built with CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y,
+   the default is off.
+ 
++  kpti=   [ARM64] Control page table isolation of user
++  and kernel address spaces.
++  Default: enabled on cores which need mitigation.
++  0: force disabled
++  1: force enabled
++
+   kvm.ignore_msrs=[KVM] Ignore guest accesses to unhandled MSRs.
+   Default is 0 (don't ignore, but inject #GP)
+ 
+diff --git a/Makefile b/Makefile
+index a2be0c79eeb8..f1e428271abf 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 19
+-SUBLEVEL = 99
++SUBLEVEL = 100
+ EXTRAVERSION =
+ NAME = "People's Front"
+ 
+diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
+index 3b85c3ecac38..79e5cc70f1fd 100644
+--- a/arch/ia64/mm/init.c
 b/arch/ia64/mm/init.c
+@@ -661,21 +661,12 @@ int arch_add_memory(int nid, u64 start, u64 size, struct 
vmem_altmap *altmap,
+   return ret;
+ }
+ 
+-#ifdef CONFIG_MEMORY_HOTREMOVE
+-int arch_remove_memory(u64 start, u64 size, struct vmem_altmap *altmap)
++void arch_remove_memory(int nid, u64 start, u64 size,
++  struct vmem_altmap *altmap)
+ {
+   unsigned long start_pfn = start >> PAGE_SHIFT;
+   unsigned long nr_pages = size >> PAGE_SHIFT;
+-  struct zone *zone;
+-  int ret;
+-
+-  zone = page_zone(pfn_to_page(start_pfn));
+-  ret = __remove_pages(zone, start_pfn, nr_pages, altmap);
+-  if (ret)
+-  pr_warn("%s: Problem encountered in __remove_pages() as"
+-  " ret=%d\n", __func__,  ret);
+ 
+-  return ret;
++  __remove_pages(start_pfn, nr_pages, altmap);
+ }
+ #endif
+-#endif
+diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c
+index 9a6afd9f3f9b..84a012e42a7e 100644
+--- a/arch/powerpc/mm/mem.c
 b/arch/powerpc/mm/mem.c
+@@ -118,8 +118,8 @@ int __weak remove_section_mapping(unsigned long start, 
unsigned long end)
+   return -ENODEV;
+ }
+ 
+-int __meminit arch_add_memory(int nid, u64 start, u64 size, struct 
vmem_altmap *altmap,
+-  bool want_memblock)
++int __ref arch_add_memory(int nid, u64 start, u64 size, struct vmem_altmap 
*altmap,
++bool want_memblock)
+ {
+   unsigned long start_pfn = start >> PAGE_SHIFT;
+   unsigned long nr_pages = size >> PAGE_SHIFT;
+@@ -139,30 +139,20 @@ int __meminit arch_add_memory(int nid, u64 start, u64 
size, struct vmem_altmap *
+   return __add_pages(nid, start_pfn, nr_pages, altmap, want_memblock);
+ }
+ 
+-#ifdef CONFIG_MEMORY_HOTREMOVE
+-int __meminit arch_remove_memory(u64 start, u64 size, struct vmem_altmap 
*altmap)
++void __ref arch_remove_memory(int nid, u64 start, u64 size,
++   struct vmem_altmap *altmap)
+ {
+   unsigned long start_pfn = start >> PAGE_SHIFT;
+   unsigned long nr_pages = size >> PAGE_SHIFT;
+-  struct page *page;
+   int ret;
+ 
+-  /*
+-   * If we have an altmap then we need to skip over any reserved PFNs
+-   * when querying the zone.
+-   */
+-  page = pfn_to_page(start_pfn);
+-  if (altmap)
+-  page += vmem_altmap_offset(altmap);
+-
+-  ret = __remove_pages(page_zone(page), start_pfn, nr_pages, altmap);
+-  if (ret)
+-  return ret;
++  __remove_pages(start_pfn, nr_pages, altmap);
+ 
+   /* Remove htab bolted mappings for this section of memory */
+

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

2020-01-29 Thread Michał Górny
commit: 994c12238596aec77b72c24778495b60cd19bbf6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 29 16:15:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 29 16:15:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=994c1223

profiles/base: Use-mask doc where numpydoc/py2 is required

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

 profiles/base/package.use.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 09fe6fa5aa3..d7cf3ed6120 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -6,6 +6,11 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Michał Górny  (2020-01-29)
+# Require Python 2 support in numpydoc.
+ (2020-01-29)
 # Require dev-python/epydoc which is being removed.
 <=app-admin/system-config-printer-1.5.12 doc



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

2020-01-29 Thread Michał Górny
commit: 67204999263635d877dc50e4483ad8d004742179
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 29 16:16:43 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 29 16:16:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67204999

dev-python/numpydoc: Remove py2

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

 dev-python/numpydoc/numpydoc-0.6.0.ebuild | 2 +-
 dev-python/numpydoc/numpydoc-0.8.0.ebuild | 2 +-
 dev-python/numpydoc/numpydoc-0.9.1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/numpydoc/numpydoc-0.6.0.ebuild 
b/dev-python/numpydoc/numpydoc-0.6.0.ebuild
index f361a74250f..e80e7c9d27b 100644
--- a/dev-python/numpydoc/numpydoc-0.6.0.ebuild
+++ b/dev-python/numpydoc/numpydoc-0.6.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 

diff --git a/dev-python/numpydoc/numpydoc-0.8.0.ebuild 
b/dev-python/numpydoc/numpydoc-0.8.0.ebuild
index bbdbcdc8785..4af5a76d045 100644
--- a/dev-python/numpydoc/numpydoc-0.8.0.ebuild
+++ b/dev-python/numpydoc/numpydoc-0.8.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 

diff --git a/dev-python/numpydoc/numpydoc-0.9.1.ebuild 
b/dev-python/numpydoc/numpydoc-0.9.1.ebuild
index 14c536f66ac..bae859555ad 100644
--- a/dev-python/numpydoc/numpydoc-0.9.1.ebuild
+++ b/dev-python/numpydoc/numpydoc-0.9.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 



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

2020-01-29 Thread Ian Whyman
commit: dc3f7541667cf0ab1cd1b2f445042d4268f4d08d
Author: Ian Whyman  gentoo  org>
AuthorDate: Wed Jan 29 17:45:01 2020 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Wed Jan 29 17:45:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc3f7541

net-libs/libupnp: 1.12.0: Fix C++ compat

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

 .../libupnp/files/libupnp-1.12.0-cxx-compat.patch  | 33 ++
 ...upnp-1.12.0.ebuild => libupnp-1.12.0-r1.ebuild} |  1 +
 2 files changed, 34 insertions(+)

diff --git a/net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch 
b/net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch
new file mode 100644
index 000..cbb844952be
--- /dev/null
+++ b/net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch
@@ -0,0 +1,33 @@
+From 5a8e93f1a57cce5cead5c8c566a75f7c7c294c97 Mon Sep 17 00:00:00 2001
+From: Ian Whyman 
+Date: Mon, 27 Jan 2020 21:46:47 +
+Subject: [PATCH] List: Add extern C for C++ users
+
+---
+ upnp/inc/list.h | 8 
+ 1 file changed, 8 insertions(+)
+
+diff --git a/upnp/inc/list.h b/upnp/inc/list.h
+index 214a53e5..0fbe7efc 100644
+--- a/upnp/inc/list.h
 b/upnp/inc/list.h
+@@ -40,6 +40,10 @@
+ 
+ #include "UpnpGlobal.h"
+ 
++#ifdef __cplusplus
++extern "C" {
++#endif /* __cplusplus */
++
+ /** List anchor structure. This should be the *first* entry in list
+  *  member objects, except if you want to do member offset arithmetic
+  *  instead of simple casts (look up "containerof"). The list code itself 
+@@ -71,4 +75,8 @@ EXPORT_SPEC UpnpListIter UpnpListInsert(UpnpListHead *list, 
UpnpListIter pos,
+ /** Erase element at pos, return next one, or end()*/
+ EXPORT_SPEC UpnpListIter UpnpListErase(UpnpListHead *list, UpnpListIter pos);
+ 
++#ifdef __cplusplus
++}
++#endif /* __cplusplus */
++
+ #endif /* _UPNPLISTH_ */

diff --git a/net-libs/libupnp/libupnp-1.12.0.ebuild 
b/net-libs/libupnp/libupnp-1.12.0-r1.ebuild
similarity index 96%
rename from net-libs/libupnp/libupnp-1.12.0.ebuild
rename to net-libs/libupnp/libupnp-1.12.0-r1.ebuild
index 14fc805526f..70a82fc72df 100644
--- a/net-libs/libupnp/libupnp-1.12.0.ebuild
+++ b/net-libs/libupnp/libupnp-1.12.0-r1.ebuild
@@ -18,6 +18,7 @@ DOCS="ChangeLog"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.6.21-cflags.patch
+   "${FILESDIR}"/${P}-cxx-compat.patch
 )
 
 src_prepare() {



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

2020-01-29 Thread Ben Kohler
commit: 782156e886fb0d76fa2831b36ec0c7f48f6278a4
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jan 29 17:47:37 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jan 29 17:48:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782156e8

net-misc/wput: bump to 0.6.2 w/ crash fix

Closes: https://bugs.gentoo.org/647848
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Ben Kohler  gentoo.org>

 net-misc/wput/Manifest |  1 +
 .../wput/files/wput-0.6.2-respect-destdir.patch| 23 +++
 net-misc/wput/files/wput-fix-crash.patch   | 47 ++
 net-misc/wput/wput-0.6.2.ebuild| 36 +
 4 files changed, 107 insertions(+)

diff --git a/net-misc/wput/Manifest b/net-misc/wput/Manifest
index 31766c93b6c..5e669fa06ef 100644
--- a/net-misc/wput/Manifest
+++ b/net-misc/wput/Manifest
@@ -1 +1,2 @@
 DIST wput-0.6.1.tgz 312342 BLAKE2B 
67053f71307e9fbb3f085e9347c7843f4bcaf951858164fa228f9cfd80898192efc344f1f9cbf65a3db286fae5b514da64ed3599627f264586c9242ac753f62b
 SHA512 
f5eb5e343c77cec0f3370e8d73679e3c720a848a963c2cdc64e6c52f30b47d76e0de9ccde965da9af97d2e5f23f45dd894f26371f56ead498d28fadffe65fc4b
+DIST wput-0.6.2.tgz 368510 BLAKE2B 
bf59720e220d837354aff7d90bf06dcf54df4adf10c53ca844cb18dc6f327793ebd5dce7beecc76b43ddccfe273435a1eca918ab2272145dc8bf47293f601004
 SHA512 
e1d0fb8570cbda44c97215ee1a021a9867f2e91323b3d7f7df1d7fd68a1b2aba40a7f3068e5e85e8c736b1dba1fba62df375af99e3fb96cd0fd414b139c641bd

diff --git a/net-misc/wput/files/wput-0.6.2-respect-destdir.patch 
b/net-misc/wput/files/wput-0.6.2-respect-destdir.patch
new file mode 100644
index 000..f0cbfcdebd6
--- /dev/null
+++ b/net-misc/wput/files/wput-0.6.2-respect-destdir.patch
@@ -0,0 +1,23 @@
+diff --git a/Makefile.in b/Makefile.in
+index 6756cd2..6debea8 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -16,12 +16,12 @@ win-clean:
+ 
+ install: all
+   cd po && $(MAKE) $(MAKEDEFS) $@
+-  mkdir -p $(bindir) 
+-  mkdir -p $(mandir) 
+-  install -m0755 wput $(bindir)
+-  install -m0644 doc/wput.1.gz $(mandir)
+-  ln -s $(bindir)/wput $(bindir)/wdel
+-  install -m0644 doc/wdel.1.gz $(mandir)
++  install -d $(DESTDIR)/$(bindir)
++  install -d $(DESTDIR)/$(mandir)
++  install -m0755 wput $(DESTDIR)/$(bindir)
++  install -m0644 doc/wput.1 $(DESTDIR)/$(mandir)
++  ln -s wput $(DESTDIR)/$(bindir)/wdel
++  install -m0644 doc/wdel.1 $(DESTDIR)/$(mandir)
+   @echo ""
+   @echo "Wput and Wdel installed. See 'wput/wdel -h' or 'man wput/wdel' 
for"
+   @echo "usage information."

diff --git a/net-misc/wput/files/wput-fix-crash.patch 
b/net-misc/wput/files/wput-fix-crash.patch
new file mode 100644
index 000..2afab8e5991
--- /dev/null
+++ b/net-misc/wput/files/wput-fix-crash.patch
@@ -0,0 +1,47 @@
+diff -ur wput-0.6.2+git20130413.orig/src/progress.c 
wput-0.6.2+git20130413/src/progress.c
+--- wput-0.6.2+git20130413.orig/src/progress.c 2013-07-15 00:05:50.0 
+0200
 wput-0.6.2+git20130413/src/progress.c  2016-10-25 16:48:05.909105000 
+0200
+@@ -181,7 +181,7 @@
+   static char output[15];
+   time_t secs = time (NULL);
+   struct tm *ptm = localtime (&secs);
+-  sprintf (output, "%02d:%02d:%02d", ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
++  snprintf (output, sizeof(output), "%02d:%02d:%02d", ptm->tm_hour, 
ptm->tm_min, ptm->tm_sec);
+   return output;
+ }
+ 
+@@ -261,11 +261,11 @@
+   unit = 3, trate = trate / (1024 * 1024 * 1024);
+   
+ if(trate < 100) 
+-  sprintf(buf, "%s%.2f%s", (trate < 10) ? " " : "", trate, 
units[sp][unit]);
++  snprintf(buf, sizeof(buf), "%s%.2f%s", (trate < 10) ? " " : "", 
trate, units[sp][unit]);
+   else if(trate < 1000)
+-  sprintf(buf, "%.1f%s", trate, units[sp][unit]);
++  snprintf(buf, sizeof(buf), "%.1f%s", trate, units[sp][unit]);
+   else
+-  sprintf(buf, " %d%s", (int) trate, units[sp][unit]);
++  snprintf(buf, sizeof(buf), " %d%s", (int) trate, 
units[sp][unit]);
+ return buf;
+ }
+ /* wrapper for our progress_bar */
+@@ -303,13 +303,15 @@
+   remain = (int) (WINCONV (fsession->local_fsize - transfered) * 
((double) time_diff * 1000)
+   / (double) WINCONV tbytes / 1000);
+ if(remain < 60)
+-  sprintf(buf, "ETA%02ds", remain);
++  snprintf(buf, sizeof(buf), "ETA%02ds", remain);
+   else if(remain < 3600)
+-  sprintf(buf, "ETA %2d:%02dm", remain / 60, remain % 60);
++  snprintf(buf, sizeof(buf), "ETA %2d:%02dm", remain / 60, remain 
% 60);
+   else if(remain < 3600 * 24)
+-  sprintf(buf, "ETA %2d:%02dh", remain / 3600, (remain % 3600) / 
60);
++  snprintf(buf, sizeof(buf), "ETA %2d:%02dh", remain / 3600, 
(remain % 3600) / 60);
++  else if(remain < 3600 * 24 * 100)
++   

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

2020-01-29 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 17:58:51 2020 +

New tag: 4.14-178




[gentoo-commits] repo/gentoo:master commit in: sys-devel/multilib-gcc-wrapper/

2020-01-29 Thread Michał Górny
commit: 6d5f14e9ee65c52cfdfc6537da4043c6f4149246
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 29 17:51:40 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 29 17:59:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d5f14e9

sys-devel/multilib-gcc-wrapper: Mark amd64 stable

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

 sys-devel/multilib-gcc-wrapper/multilib-gcc-wrapper-0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/multilib-gcc-wrapper/multilib-gcc-wrapper-0-r2.ebuild 
b/sys-devel/multilib-gcc-wrapper/multilib-gcc-wrapper-0-r2.ebuild
index c12a4c8cfac..2dfb32856eb 100644
--- a/sys-devel/multilib-gcc-wrapper/multilib-gcc-wrapper-0-r2.ebuild
+++ b/sys-devel/multilib-gcc-wrapper/multilib-gcc-wrapper-0-r2.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 RDEPEND="sys-devel/gcc:="



[gentoo-commits] proj/devmanual:master commit in: bin/

2020-01-29 Thread Ulrich Müller
commit: d71cc8025960c1676a42ecc7f5efdc8252c8923b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jan 29 17:59:50 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jan 29 17:59:50 2020 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d71cc802

bin/gen-eclass-html.sh: Prevent removal of dirs.

Updating a file doesn't change the modification time of its directory,
therefore scanning for "old directories" produced false positives.
Work around the problem by touching the directory.

Signed-off-by: Ulrich Müller  gentoo.org>

 bin/gen-eclass-html.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/bin/gen-eclass-html.sh b/bin/gen-eclass-html.sh
index fc37f03..efa7f12 100755
--- a/bin/gen-eclass-html.sh
+++ b/bin/gen-eclass-html.sh
@@ -102,6 +102,8 @@ for i in $(/usr/bin/qlist eclass-manpages) 
/usr/share/man/man5/ebuild.5*; do
FINAL="${DIRNAME}/index.html"
DECOMPRESS=$(guesscompress "${i}")
[[ -d ${DIRNAME} ]] || mkdir -p ${DIRNAME}
+   # update the dir's mtime to prevent its removal below
+   touch ${DIRNAME}
# rebuild the man page each time
echo -n "${HEADER//@TITLE@/${BASENAME}}" > "${FINAL}"
# generate html pages and fix hyperlinks for eclass and ebuild man pages



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

2020-01-29 Thread Joonas Niilola
commit: 54d0c264698f9ba8df0c3c32c0b5d1f4d6db876e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jan 29 17:59:45 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 29 18:00:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d0c264

dev-libs/efl: 'examples' IUSE needs 'eet + svg'

Closes: https://bugs.gentoo.org/706592
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/efl/efl-1.23.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-libs/efl/efl-1.23.3.ebuild b/dev-libs/efl/efl-1.23.3.ebuild
index 822a2a5b0ca..982a3b498ff 100644
--- a/dev-libs/efl/efl-1.23.3.ebuild
+++ b/dev-libs/efl/efl-1.23.3.ebuild
@@ -25,6 +25,7 @@ REQUIRED_USE="
^^ ( lua luajit )
ssl
drm? ( gles2 )
+   examples? ( eet svg )
gles2? ( || ( wayland X ) )
pulseaudio? ( sound )
wayland? ( gles2 !opengl )



[gentoo-commits] proj/linux-patches: New tag: 4.19-99

2020-01-29 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 18:06:47 2020 +

New tag: 4.19-99




[gentoo-commits] proj/linux-patches: New tag: 5.4-16

2020-01-29 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 18:15:21 2020 +

New tag: 5.4-16




[gentoo-commits] repo/gentoo:master commit in: app-misc/geneweb/

2020-01-29 Thread Alfredo Tupone
commit: 4f86890bf41c3b86f907d851c78900bec0827378
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Wed Jan 29 18:23:01 2020 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Jan 29 18:23:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f86890b

app-misc/geneweb: fix patch path

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

 app-misc/geneweb/geneweb-6.08-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/geneweb/geneweb-6.08-r2.ebuild 
b/app-misc/geneweb/geneweb-6.08-r2.ebuild
index cab25ce0668..a962e673485 100644
--- a/app-misc/geneweb/geneweb-6.08-r2.ebuild
+++ b/app-misc/geneweb/geneweb-6.08-r2.ebuild
@@ -23,7 +23,7 @@ DEPEND="${RDEPEND}"
 
 PATCHES=(
"${WORKDIR}"/${P}-ocaml-4.patch
-   "${FILESDIR}"/${PF}-gentoo.patch
+   "${FILESDIR}"/${P}-r1-gentoo.patch
"${FILESDIR}"/${P}-parallellbuild.patch )
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpop3lb/files/, x11-plugins/wmpop3lb/

2020-01-29 Thread Bernard Cafarelli
commit: 5749ea57c106309a71d79ad589e1e964b0953a07
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 17:49:53 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:26:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5749ea57

x11-plugins/wmpop3lb: fix build with -fno-common

Closes: https://bugs.gentoo.org/706550
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../wmpop3lb/files/wmpop3lb-2.4.2-gcc-10.patch  | 21 +
 x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild   |  5 +++--
 2 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmpop3lb/files/wmpop3lb-2.4.2-gcc-10.patch 
b/x11-plugins/wmpop3lb/files/wmpop3lb-2.4.2-gcc-10.patch
new file mode 100644
index 000..5beb4155256
--- /dev/null
+++ b/x11-plugins/wmpop3lb/files/wmpop3lb-2.4.2-gcc-10.patch
@@ -0,0 +1,21 @@
+--- a/wmgeneral/wmgeneral.c
 b/wmgeneral/wmgeneral.c
+@@ -45,6 +45,7 @@ Window   iconwin, win;
+ GCNormalGC;
+ XpmIcon   wmgen;
+ Pixmappixmask;
++Display   *display;
+ 
+   /*/
+  /* Mouse Regions */
+--- a/wmgeneral/wmgeneral.h
 b/wmgeneral/wmgeneral.h
+@@ -21,7 +21,7 @@ typedef struct {
+  /* Global variable */
+ /***/
+ 
+-Display   *display;
++extern Display*display;
+ 
+   /***/
+  /* Function Prototypes */

diff --git a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild 
b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild
index 99e7ab4db58..05a951236c0 100644
--- a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild
+++ b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,8 @@ DEPEND="${RDEPEND}"
 S=${WORKDIR}/${P/-}
 
 PATCHES=( "${FILESDIR}"/${P}-fix-RECV-and-try-STAT-if-LAST-wont-work.patch
-   "${FILESDIR}"/${P}-list.patch )
+   "${FILESDIR}"/${P}-list.patch
+   "${FILESDIR}"/${P}-gcc-10.patch )
 
 src_prepare() {
#Honour Gentoo CFLAGS



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmwork/files/, x11-plugins/wmwork/

2020-01-29 Thread Bernard Cafarelli
commit: ba94180ee142466df4de1c45f9b2f15fe6428b67
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 18:00:10 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:26:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba94180e

x11-plugins/wmwork: fix build with -fno-common

Closes: https://bugs.gentoo.org/706688
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmwork/files/wmwork-0.2.5-gcc-10.patch | 21 +
 x11-plugins/wmwork/wmwork-0.2.5-r1.ebuild  |  3 ++-
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmwork/files/wmwork-0.2.5-gcc-10.patch 
b/x11-plugins/wmwork/files/wmwork-0.2.5-gcc-10.patch
new file mode 100644
index 000..3ed8b82f29e
--- /dev/null
+++ b/x11-plugins/wmwork/files/wmwork-0.2.5-gcc-10.patch
@@ -0,0 +1,21 @@
+--- a/wmgeneral.c
 b/wmgeneral.c
+@@ -45,6 +45,7 @@ Window   iconwin, win;
+ GCNormalGC;
+ XpmIcon   wmgen;
+ Pixmappixmask;
++Display   *display;
+ 
+   /*/
+  /* Mouse Regions */
+--- a/wmgeneral.h
 b/wmgeneral.h
+@@ -21,7 +21,7 @@ typedef struct {
+  /* Global variable */
+ /***/
+ 
+-Display   *display;
++extern Display*display;
+ 
+   /***/
+  /* Function Prototypes */

diff --git a/x11-plugins/wmwork/wmwork-0.2.5-r1.ebuild 
b/x11-plugins/wmwork/wmwork-0.2.5-r1.ebuild
index a7d81d4d1ae..e8fd4e681e8 100644
--- a/x11-plugins/wmwork/wmwork-0.2.5-r1.ebuild
+++ b/x11-plugins/wmwork/wmwork-0.2.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,3 +20,4 @@ DEPEND="${RDEPEND}
 S="${WORKDIR}/${P}/src"
 
 DOCS=( ../{CHANGES,README} )
+PATCHES=( ${FILESDIR}/${P}-gcc-10.patch )



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmxres/files/, x11-plugins/wmxres/

2020-01-29 Thread Bernard Cafarelli
commit: 33bd5a1471ad32f607d7b90a9207de21fd4019f6
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 17:47:33 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:26:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bd5a14

x11-plugins/wmxres: fix build with -fno-common

Thanks slyfox for patch

Closes: https://bugs.gentoo.org/706444
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmxres/files/wmxres-1.2-gcc-10.patch | 21 +
 x11-plugins/wmxres/wmxres-1.2-r1.ebuild  |  3 ++-
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmxres/files/wmxres-1.2-gcc-10.patch 
b/x11-plugins/wmxres/files/wmxres-1.2-gcc-10.patch
new file mode 100644
index 000..5beb4155256
--- /dev/null
+++ b/x11-plugins/wmxres/files/wmxres-1.2-gcc-10.patch
@@ -0,0 +1,21 @@
+--- a/wmgeneral/wmgeneral.c
 b/wmgeneral/wmgeneral.c
+@@ -45,6 +45,7 @@ Window   iconwin, win;
+ GCNormalGC;
+ XpmIcon   wmgen;
+ Pixmappixmask;
++Display   *display;
+ 
+   /*/
+  /* Mouse Regions */
+--- a/wmgeneral/wmgeneral.h
 b/wmgeneral/wmgeneral.h
+@@ -21,7 +21,7 @@ typedef struct {
+  /* Global variable */
+ /***/
+ 
+-Display   *display;
++extern Display*display;
+ 
+   /***/
+  /* Function Prototypes */

diff --git a/x11-plugins/wmxres/wmxres-1.2-r1.ebuild 
b/x11-plugins/wmxres/wmxres-1.2-r1.ebuild
index 993a4f040d4..763a7d022d4 100644
--- a/x11-plugins/wmxres/wmxres-1.2-r1.ebuild
+++ b/x11-plugins/wmxres/wmxres-1.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -25,6 +25,7 @@ S="${WORKDIR}/${PN}.app"
 PATCHES=(
"${FILESDIR}"/${PN}-debian-1.1-1.2.patch
"${FILESDIR}"/${PN}-1.2-r1-fix-build-system.patch
+   "${FILESDIR}"/${P}-gcc-10.patch
 )
 
 src_configure() {



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

2020-01-29 Thread Bernard Cafarelli
commit: a23829176f60ffb6b6d979eff118898d5389848e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 18:01:25 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:27:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2382917

x11-plugins/wmix: drop old

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmix/Manifest   |  1 -
 x11-plugins/wmix/wmix-3.3-r2.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/x11-plugins/wmix/Manifest b/x11-plugins/wmix/Manifest
index 70002433c58..849491af636 100644
--- a/x11-plugins/wmix/Manifest
+++ b/x11-plugins/wmix/Manifest
@@ -1,3 +1,2 @@
 DIST wmix-3.2.tar.gz 33504 BLAKE2B 
cafc6d4d1d52094edc459db8ab82b46ea0a216ca8035a2882be7ab2dba6945c155a73c2fc3601e9697076f8cf032b7943617680fd70ef889590a9976c2b147a8
 SHA512 
8382ab849aeacfc88d28cd094c0d9a3218f8aa26b763d9fb4fd8b9837c275a835cc3e29df0659c244fa94b884ebc36b571fe824eaa785a736e630dc2e0081417
-DIST wmix-3.3.tar.gz 118037 BLAKE2B 
b219f607ea31132b7753ba7e92e7ff3ce1ddbb992a3f0295ca68001ee81c55ed347196b2d864058f09763e6cf438865060a768c466f3f647474382a9434f76e8
 SHA512 
5bca1ca70ba8e76e66d70dd01e2198d85d7ac57a5180740c453f349458ba38291bbb7a87697a25c36b79722a1ada5edd1ff3f1c9021998cdf33d248a1f554d4e
 DIST wmix-3.4.tar.gz 116220 BLAKE2B 
01aac1603c34298d9b4aa45ec3425ec52e75965634f6c64ae554c44b95a9bea08021527519fe15729f103d2b8aa93757d6dbabbc2223b35cbb37520554fdfa2b
 SHA512 
791e0f22c73d48fd97ce59a0a8d740a2647626fd6d5f172238ae41abac700fb40d7cd95e28463199fd20d14eae3807428949b78c095ee5bd0a347c26aaed1e75

diff --git a/x11-plugins/wmix/wmix-3.3-r2.ebuild 
b/x11-plugins/wmix/wmix-3.3-r2.ebuild
deleted file mode 100644
index c3f80938b61..000
--- a/x11-plugins/wmix/wmix-3.3-r2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit toolchain-funcs
-
-DESCRIPTION="Dockapp mixer for OSS or ALSA"
-HOMEPAGE="https://www.dockapps.net/wmix";
-SRC_URI="https://www.dockapps.net/download/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-RDEPEND="media-libs/alsa-lib
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXpm
-   x11-libs/libXrandr"
-DEPEND="${RDEPEND}
-   x11-base/xorg-proto"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmix/, x11-plugins/wmix/files/

2020-01-29 Thread Bernard Cafarelli
commit: ca77453ab4c49bb3edcf20213d431159bcad7de9
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 18:07:55 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:27:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca77453a

x11-plugins/wmix: fix build with -fno-common

Closes: https://bugs.gentoo.org/706720
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-plugins/wmix/files/wmix-3.4-gcc-10.patch | 89 
 x11-plugins/wmix/wmix-3.4.ebuild |  4 +-
 2 files changed, 92 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmix/files/wmix-3.4-gcc-10.patch 
b/x11-plugins/wmix/files/wmix-3.4-gcc-10.patch
new file mode 100644
index 000..4e91a1a53d7
--- /dev/null
+++ b/x11-plugins/wmix/files/wmix-3.4-gcc-10.patch
@@ -0,0 +1,89 @@
+diff -Naur wmix-3.4.orig/include/mixer.h wmix-3.4/include/mixer.h
+--- wmix-3.4.orig/include/mixer.h  2018-04-30 14:17:50.0 +0200
 wmix-3.4/include/mixer.h   2020-01-29 19:07:14.932404252 +0100
+@@ -55,28 +55,28 @@
+  * - Muting must occur independently of the volume level.
+  */
+ 
+-void (*mixer_init)(const char *mixer_device,
++extern void (*mixer_init)(const char *mixer_device,
+bool verbose,
+const char *exclude[]);
+-bool (*mixer_is_changed)(void);
+-int (*mixer_get_channel_count)(void);
+-int (*mixer_get_channel)(void);
+-const char *(*mixer_get_channel_name)(void);
+-const char *(*mixer_get_short_name)(void);
+-void (*mixer_set_channel)(int channel);
+-void (*mixer_set_channel_rel)(int delta_channel);
+-float (*mixer_get_volume)(void);
+-void (*mixer_set_volume)(float volume);
+-void (*mixer_set_volume_rel)(float delta_volume);
+-float (*mixer_get_balance)(void);
+-void (*mixer_set_balance)(float balance);
+-void (*mixer_set_balance_rel)(float delta_balance);
+-void (*mixer_toggle_mute)(void);
+-void (*mixer_toggle_rec)(void);
+-bool (*mixer_is_muted)(void);
+-bool (*mixer_is_stereo)(void);
+-bool (*mixer_is_rec)(void);
+-bool (*mixer_can_rec)(void);
+-bool (*is_exclude)(const char *short_name,
++extern bool (*mixer_is_changed)(void);
++extern int (*mixer_get_channel_count)(void);
++extern int (*mixer_get_channel)(void);
++extern const char *(*mixer_get_channel_name)(void);
++extern const char *(*mixer_get_short_name)(void);
++extern void (*mixer_set_channel)(int channel);
++extern void (*mixer_set_channel_rel)(int delta_channel);
++extern float (*mixer_get_volume)(void);
++extern void (*mixer_set_volume)(float volume);
++extern void (*mixer_set_volume_rel)(float delta_volume);
++extern float (*mixer_get_balance)(void);
++extern void (*mixer_set_balance)(float balance);
++extern void (*mixer_set_balance_rel)(float delta_balance);
++extern void (*mixer_toggle_mute)(void);
++extern void (*mixer_toggle_rec)(void);
++extern bool (*mixer_is_muted)(void);
++extern bool (*mixer_is_stereo)(void);
++extern bool (*mixer_is_rec)(void);
++extern bool (*mixer_can_rec)(void);
++extern bool (*is_exclude)(const char *short_name,
+const char *exclude[]);
+-void (*mixer_tick)(void);
++extern void (*mixer_tick)(void);
+diff -Naur wmix-3.4.orig/wmix.c wmix-3.4/wmix.c
+--- wmix-3.4.orig/wmix.c   2019-07-12 18:44:38.0 +0200
 wmix-3.4/wmix.c2020-01-29 19:06:52.685402994 +0100
+@@ -53,6 +53,31 @@
+ static int mouse_drag_home_y;
+ static int idle_loop;
+ 
++void (*mixer_init)(const char *mixer_device,
++   bool verbose,
++   const char *exclude[]);
++bool (*mixer_is_changed)(void);
++int (*mixer_get_channel_count)(void);
++int (*mixer_get_channel)(void);
++const char *(*mixer_get_channel_name)(void);
++const char *(*mixer_get_short_name)(void);
++void (*mixer_set_channel)(int channel);
++void (*mixer_set_channel_rel)(int delta_channel);
++float (*mixer_get_volume)(void);
++void (*mixer_set_volume)(float volume);
++void (*mixer_set_volume_rel)(float delta_volume);
++float (*mixer_get_balance)(void);
++void (*mixer_set_balance)(float balance);
++void (*mixer_set_balance_rel)(float delta_balance);
++void (*mixer_toggle_mute)(void);
++void (*mixer_toggle_rec)(void);
++bool (*mixer_is_muted)(void);
++bool (*mixer_is_stereo)(void);
++bool (*mixer_is_rec)(void);
++bool (*mixer_can_rec)(void);
++bool (*is_exclude)(const char *short_name,
++   const char *exclude[]);
++void (*mixer_tick)(void);
+ /* local stuff */
+ static void signal_catch(int sig);
+ static void button_press_event(XButtonEvent *event);

diff --git a/x11-plugins/wmix/wmix-3.4.ebuild b/x11-plugins/wmix/wmix-3.4.ebuild
index 55507ef664a..5f69dde7b3a 100644
--- a/x11-plugins/wmix/wmix-3.4.ebuild
+++ b/x11-plugins/wmix/wmix-3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,3 +20,5 @@ RDEPEND="media-li

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmCalClock/files/, x11-plugins/wmCalClock/

2020-01-29 Thread Bernard Cafarelli
commit: 66edbfc31b168de0d42a813e0c810d558b437a2c
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 17:57:29 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:26:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66edbfc3

x11-plugins/wmCalClock: fix build with -fno-common

Closes: https://bugs.gentoo.org/706686
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../wmCalClock/files/wmCalClock-1.25-gcc-10.patch  | 35 ++
 x11-plugins/wmCalClock/wmCalClock-1.25-r3.ebuild   |  7 +++--
 2 files changed, 40 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmCalClock/files/wmCalClock-1.25-gcc-10.patch 
b/x11-plugins/wmCalClock/files/wmCalClock-1.25-gcc-10.patch
new file mode 100644
index 000..c6a737e6b44
--- /dev/null
+++ b/x11-plugins/wmCalClock/files/wmCalClock-1.25-gcc-10.patch
@@ -0,0 +1,35 @@
+diff -Naur wmCalClock-1.25.orig/Src/xutils.c wmCalClock-1.25/Src/xutils.c
+--- a/xutils.c 1999-03-27 07:46:38.0 +0100
 b/xutils.c 2020-01-29 18:55:05.062360592 +0100
+@@ -52,6 +52,11 @@
+ GCNormalGC;
+ XpmIcon   wmgen;
+ Pixmappixmask;
++Display   *display;
++Window  Root;
++Window  iconwin, win;
++int screen; 
++int DisplayDepth;
+ 
+ 
+ /*
+diff -Naur wmCalClock-1.25.orig/Src/xutils.h wmCalClock-1.25/Src/xutils.h
+--- a/xutils.h 1999-03-27 07:46:38.0 +0100
 b/xutils.h 2020-01-29 18:54:54.360359886 +0100
+@@ -18,11 +18,11 @@
+ /*
+  *   Global variable
+  */
+-Display   *display;
+-Window  Root;
+-Window  iconwin, win;
+-int screen; 
+-int DisplayDepth;
++extern Display*display;
++extern Window   Root;
++extern Window   iconwin, win;
++extern int  screen; 
++extern int  DisplayDepth;
+ 
+ 
+ 

diff --git a/x11-plugins/wmCalClock/wmCalClock-1.25-r3.ebuild 
b/x11-plugins/wmCalClock/wmCalClock-1.25-r3.ebuild
index 3ace8130324..c7508ab5e8e 100644
--- a/x11-plugins/wmCalClock/wmCalClock-1.25-r3.ebuild
+++ b/x11-plugins/wmCalClock/wmCalClock-1.25-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,10 @@ S="${WORKDIR}/${P}/Src"
 
 DOCS=( ../{BUGS,CHANGES,HINTS,README,TODO} )
 
-PATCHES=( "${FILESDIR}"/${P}-makefile.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-makefile.patch
+   "${FILESDIR}"/${P}-gcc-10.patch
+   )
 
 src_compile() {
emake CC="$(tc-getCC)" LIBDIR="-L/usr/$(get_libdir)/"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpower/, x11-plugins/wmpower/files/

2020-01-29 Thread Bernard Cafarelli
commit: f5291a8c09ea41b32a46c42349dcb9bfedf3ab77
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 18:22:48 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:27:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5291a8c

x11-plugins/wmpower: fix build with -fno-common

Closes: https://bugs.gentoo.org/706754
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../wmpower/files/wmpower-0.4.3-gcc-10.patch   | 148 +
 x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild|   4 +-
 2 files changed, 151 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmpower/files/wmpower-0.4.3-gcc-10.patch 
b/x11-plugins/wmpower/files/wmpower-0.4.3-gcc-10.patch
new file mode 100644
index 000..bdc28a16341
--- /dev/null
+++ b/x11-plugins/wmpower/files/wmpower-0.4.3-gcc-10.patch
@@ -0,0 +1,148 @@
+diff -Naur wmpower-0.4.3.orig/src/dockapp/dockapp.c 
wmpower-0.4.3/src/dockapp/dockapp.c
+--- wmpower-0.4.3.orig/src/dockapp/dockapp.c   2003-09-18 18:53:27.0 
+0200
 wmpower-0.4.3/src/dockapp/dockapp.c2020-01-29 19:15:58.062434728 
+0100
+@@ -50,6 +50,7 @@
+ GC NormalGC;
+ XpmIconwmgen;
+ Pixmap pixmask;
++Display*display;
+ 
+   /*/
+  /* Mouse Regions */
+diff -Naur wmpower-0.4.3.orig/src/dockapp/dockapp.h 
wmpower-0.4.3/src/dockapp/dockapp.h
+--- wmpower-0.4.3.orig/src/dockapp/dockapp.h   2003-09-18 18:29:17.0 
+0200
 wmpower-0.4.3/src/dockapp/dockapp.h2020-01-29 19:15:58.062434728 
+0100
+@@ -28,7 +28,7 @@
+  /* Global variable */
+ /***/
+ 
+-Display   *display;
++extern Display*display;
+ 
+   /***/
+  /* Function Prototypes */
+diff -Naur wmpower-0.4.3.orig/src/power_management/acpi/libacpi.c 
wmpower-0.4.3/src/power_management/acpi/libacpi.c
+--- wmpower-0.4.3.orig/src/power_management/acpi/libacpi.c 2005-09-06 
12:09:10.0 +0200
 wmpower-0.4.3/src/power_management/acpi/libacpi.c  2020-01-29 
19:20:44.031452047 +0100
+@@ -46,6 +46,8 @@
+ #include "power_management.h"
+ #include "lib_utils.h"
+ 
++char battery_type;
++int batt_count;
+ 
+ /* here we put temp stuff read from proc files */
+ char buf[512];
+diff -Naur wmpower-0.4.3.orig/src/power_management/acpi/libacpi.h 
wmpower-0.4.3/src/power_management/acpi/libacpi.h
+--- wmpower-0.4.3.orig/src/power_management/acpi/libacpi.h 2004-07-16 
20:13:19.0 +0200
 wmpower-0.4.3/src/power_management/acpi/libacpi.h  2020-01-29 
19:20:48.717452334 +0100
+@@ -67,7 +67,7 @@
+ }
+ ACPIinfo;
+ 
+-char battery_type;
++extern char battery_type;
+ 
+ typedef struct
+ {
+@@ -76,7 +76,7 @@
+ ACADstate;
+ 
+ /* number of batteries detected */
+-int batt_count;
++extern int batt_count;
+ 
+ int  check_acpi (void);
+ void read_acad_state (ACADstate *acadstate);
+diff -Naur wmpower-0.4.3.orig/src/power_management/compal/compal_lib.c 
wmpower-0.4.3/src/power_management/compal/compal_lib.c
+--- wmpower-0.4.3.orig/src/power_management/compal/compal_lib.c
2005-09-12 18:13:32.0 +0200
 wmpower-0.4.3/src/power_management/compal/compal_lib.c 2020-01-29 
19:21:14.455453915 +0100
+@@ -40,6 +40,7 @@
+ #include "lib_utils.h"
+ #include "power_management.h"
+ 
++char  compal_model[COMPAL_MAX_MODEL_INFO];
+ 
+ 
+ /* gets a value from a strtok-ed buffer; for reading from /proc */
+diff -Naur wmpower-0.4.3.orig/src/power_management/compal/compal_lib.h 
wmpower-0.4.3/src/power_management/compal/compal_lib.h
+--- wmpower-0.4.3.orig/src/power_management/compal/compal_lib.h
2005-09-12 18:13:23.0 +0200
 wmpower-0.4.3/src/power_management/compal/compal_lib.h 2020-01-29 
19:21:09.180453591 +0100
+@@ -44,7 +44,7 @@
+ #define COMPAL_PROC_FILE_BATT "/proc/omnibook/battery"
+ 
+ 
+-char  compal_model[COMPAL_MAX_MODEL_INFO];
++extern char  compal_model[COMPAL_MAX_MODEL_INFO];
+ 
+ char *getvaluefromhash (char *key, char *hash);
+ 
+diff -Naur wmpower-0.4.3.orig/src/power_management/power_management.c 
wmpower-0.4.3/src/power_management/power_management.c
+--- wmpower-0.4.3.orig/src/power_management/power_management.c 2005-12-15 
12:54:59.0 +0100
 wmpower-0.4.3/src/power_management/power_management.c  2020-01-29 
19:18:36.031444239 +0100
+@@ -55,6 +55,13 @@
+ int use_noflushd=1;
+ int use_cpufreq=1;
+ 
++kernel_versions kernel_version;
++int minBrightness;
++int maxBrightness;
++int waittime; /* /proc polling time */
++char *cpufreq_online_governor;
++char *cpufreq_offline_governor;
++
+ /* Battery to monitor */
+ int Battery;
+ 
+diff -Naur wmpower-0.4.3.orig/src/power_management/power_management.h 
wmpower-0.4.3/src/power_management/power_management.h
+--- wmpower-0.4.3.orig/src/power_management/power_management.h 2005-12-15 
12:54:12.0 +0100
 wmpower-0.4.3/src/power_management/power_management.h  2020-01-29 
19:18:29.941443

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

2020-01-29 Thread Bernard Cafarelli
commit: bc9b86c732208adfb737b9431a2bb02289f44f1f
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 18:26:47 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 18:27:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc9b86c7

net-misc/dibbler: fix build with -fno-common

Thanks jer for patch

Closes: https://bugs.gentoo.org/706806
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 net-misc/dibbler/dibbler-1.0.1.ebuild  |  3 ++-
 .../dibbler/files/dibbler-1.0.1-fno-common.patch   | 25 ++
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/net-misc/dibbler/dibbler-1.0.1.ebuild 
b/net-misc/dibbler/dibbler-1.0.1.ebuild
index 6e7824899da..e4bbf048284 100644
--- a/net-misc/dibbler/dibbler-1.0.1.ebuild
+++ b/net-misc/dibbler/dibbler-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -23,6 +23,7 @@ DOC_CONTENTS="Make sure that you modify client.conf, 
server.conf and/or relay.co
 to suit your needs. They are stored in /etc/dibbler"
 
 src_prepare() {
+   epatch "${FILESDIR}"/${P}-fno-common.patch
epatch_user
 }
 

diff --git a/net-misc/dibbler/files/dibbler-1.0.1-fno-common.patch 
b/net-misc/dibbler/files/dibbler-1.0.1-fno-common.patch
new file mode 100644
index 000..d08b6bbd212
--- /dev/null
+++ b/net-misc/dibbler/files/dibbler-1.0.1-fno-common.patch
@@ -0,0 +1,25 @@
+--- a/Port-linux/interface.c
 b/Port-linux/interface.c
+@@ -43,6 +43,9 @@
+ #include 
+ #include 
+ 
++int interface_auto_up;
++int interface_do_message;
++
+ void daemon_log(int loglevel, const char *fmt,...)
+ {
+ char buf[255];
+--- a/Port-linux/interface.h
 b/Port-linux/interface.h
+@@ -23,8 +23,8 @@
+ extern "C" {
+ #endif
+ 
+-int interface_auto_up;
+-int interface_do_message;
++extern int interface_auto_up;
++extern int interface_do_message;
+ 
+ typedef enum { IFSTATUS_UP, IFSTATUS_DOWN, IFSTATUS_ERR } interface_status_t;
+ 



[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2020-01-29 Thread Andreas Sturmlechner
commit: d3a0416977dac07eaa079ab5ea2e7979b6ec54f5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 18:14:50 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 18:38:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a04169

net-print/epson-inkjet-printer-escpr: Drop 1.6.33

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

 net-print/epson-inkjet-printer-escpr/Manifest  |  1 -
 .../epson-inkjet-printer-escpr-1.6.33.ebuild   | 33 --
 2 files changed, 34 deletions(-)

diff --git a/net-print/epson-inkjet-printer-escpr/Manifest 
b/net-print/epson-inkjet-printer-escpr/Manifest
index e8ce49d2627..625d8a08075 100644
--- a/net-print/epson-inkjet-printer-escpr/Manifest
+++ b/net-print/epson-inkjet-printer-escpr/Manifest
@@ -1,2 +1 @@
-DIST epson-inkjet-printer-escpr-1.6.33-1lsb3.2.tar.gz 4402012 BLAKE2B 
a200ebb94460ff5d6b8731d66ccaa8d7423d8f249871183d3e8e321e2fba84dfca3d72638901c7d81344de8713e765de59ff6e6d579599ec9c565b10bb9e4a0c
 SHA512 
b7af8c69cff0869410a3dfad3204bb908f42070fc2721e1037631d5d5da972a800e195df27ef8e62418a9b927adcbedb2dfe77a6d189d34841f20789aa41eca1
 DIST epson-inkjet-printer-escpr-1.7.2-1lsb3.2.tar.gz 4667086 BLAKE2B 
f01790daca7b80e0d1258a6736f1b6edf0db1d5899941174b75b7ea40dd7e75bfa0504511403a1301018ca20273410d5afc28c3b2768e6e2af93c15c032d9b97
 SHA512 
ae8d965c3325e89b428c53a4037566f0b786e0109ac521623c6a6ada66717487c82eeb9147de01f6a14a6e0afc6ed60045ff8b9526f91bf2995b3c3cd66c548d

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.33.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.33.ebuild
deleted file mode 100644
index 6b72b2b615d..000
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.33.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
-HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX";
-SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/08/70/14/e33b7a89e843b3ac97dcab773f03fbac7769f147/epson-inkjet-printer-escpr-1.6.33-1lsb3.2.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
-IUSE=""
-
-DEPEND="net-print/cups"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/1.6.5-warnings.patch" )
-
-src_configure() {
-   econf --disable-shared
-
-   # Makefile calls ls to generate a file list which is included in 
Makefile.am
-   # Set the collation to C to avoid automake being called automatically
-   unset LC_ALL
-   export LC_COLLATE=C
-}
-
-src_install() {
-   emake -C ppd DESTDIR="${D}" install
-   emake -C src DESTDIR="${D}" install
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: kde-misc/latte-dock/

2020-01-29 Thread Andreas Sturmlechner
commit: e3d1af535f57cbef1ab91dd9278e9a7ee46bc25e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 17:57:33 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 18:38:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d1af53

kde-misc/latte-dock: Drop 0.9.8

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

 kde-misc/latte-dock/Manifest|  1 -
 kde-misc/latte-dock/latte-dock-0.9.8.ebuild | 60 -
 2 files changed, 61 deletions(-)

diff --git a/kde-misc/latte-dock/Manifest b/kde-misc/latte-dock/Manifest
index 28a64b7851d..2f0f5bf74b3 100644
--- a/kde-misc/latte-dock/Manifest
+++ b/kde-misc/latte-dock/Manifest
@@ -1,3 +1,2 @@
 DIST latte-dock-0.9.7.tar.xz 716716 BLAKE2B 
9ed220be28632d547ed310264f3778dea1dfd1b04c6bd006dd8eea41edee7272384632db33ec3ab16375dcbec92c4f07674df64d72985dbc9a80e71c9ce4cfef
 SHA512 
921e1b49bf802fe1dc57e3c7fa24e115ea12f10eaf4d731cc22c4d4ece6370964b0009f130c1836891a5d866f895814592774af35eb0c76900586e5a98de7bd8
 DIST latte-dock-0.9.8.1.tar.xz 719156 BLAKE2B 
e893f7daad8b1fdac6f9a203d5cdf9ab0afc4a98cfa4b86a27cce9be158170e291861a32bb1b7e28d23dc01ebc343ac68651b5254ae058cad9aa0b66f0597431
 SHA512 
64676084edb930a5e325a5b41a9d909111dee3cdfd6416ecc7909e8837620bfd578988d586882040097d09655c8dd021fadccee859179b98193de23344d5b7b3
-DIST latte-dock-0.9.8.tar.xz 719160 BLAKE2B 
03dcf660ccaa4c660ab6ca8433eb7e41eb7dd2a4ef9989f945ffe2e753d47d7e7ca71aa1c8bc4db7aeebf408c5d8ad562fa9d3c7fa73d21d87f735497b383552
 SHA512 
8b9b093ba03899954da9b032a3d681d66207d80563b635f8571989cc8ea3118cd999a1bc572fb0a8c26e2a8bf6154e4c8d1a9dd9903d9099d3d9ab20d1639f32

diff --git a/kde-misc/latte-dock/latte-dock-0.9.8.ebuild 
b/kde-misc/latte-dock/latte-dock-0.9.8.ebuild
deleted file mode 100644
index 32a017d5dda..000
--- a/kde-misc/latte-dock/latte-dock-0.9.8.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KFMIN=5.64.0
-QTMIN=5.12.3
-inherit ecm kde.org
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~ppc64 ~x86"
-fi
-
-DESCRIPTION="Elegant dock, based on KDE Frameworks"
-HOMEPAGE="https://kde.org/applications/utilities/org.kde.latte-dock";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-
-# drop qtdeclarative subslot operator when QT_MINIMAL >= 5.14.0
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5=
-   >=dev-qt/qtgraphicaleffects-${QTMIN}:5
-   || (
-   >=dev-qt/qtgui-${QTMIN}:5[X(-)]
-   >=dev-qt/qtgui-${QTMIN}:5[xcb(-)]
-   )
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   >=kde-frameworks/kactivities-${KFMIN}:5
-   >=kde-frameworks/karchive-${KFMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kcrash-${KFMIN}:5
-   >=kde-frameworks/kdbusaddons-${KFMIN}:5
-   >=kde-frameworks/kdeclarative-${KFMIN}:5
-   >=kde-frameworks/kglobalaccel-${KFMIN}:5
-   >=kde-frameworks/kguiaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kiconthemes-${KFMIN}:5
-   >=kde-frameworks/knewstuff-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kpackage-${KFMIN}:5
-   >=kde-frameworks/kwayland-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-   >=kde-frameworks/plasma-${KFMIN}:5[X]
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libxcb
-"
-RDEPEND="${DEPEND}
-   >=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-"
-
-DOCS=( CHANGELOG.md README.md )



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

2020-01-29 Thread Andreas Sturmlechner
commit: bf2b26c033d56bcd88beb1fcd3d57afd84145ace
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 00:13:58 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 18:38:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf2b26c0

app-text/qpdfview: Drop 0.4.16

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

 app-text/qpdfview/Manifest   |  1 -
 app-text/qpdfview/qpdfview-0.4.16.ebuild | 86 
 2 files changed, 87 deletions(-)

diff --git a/app-text/qpdfview/Manifest b/app-text/qpdfview/Manifest
index c673e02a6ac..c4ba32684ed 100644
--- a/app-text/qpdfview/Manifest
+++ b/app-text/qpdfview/Manifest
@@ -1,2 +1 @@
-DIST qpdfview-0.4.16.tar.gz 636095 BLAKE2B 
b25da3ed1b4bacc02701f6cd2c4e282fd1c7b1fcac8faa1687c5089baefa328854c520ba803a333ea107e7b423a004f6476eb9a7adf67287d4d0807146094fed
 SHA512 
d3ac05fc51d48533e44e58cd19e5d222a8bfbc9da4df02ece6a405d2fdd3346eb4614816ae91e89facf28e107b920ff3ce7b2ccc8c9b7832ae2595ef70d65584
 DIST qpdfview-0.4.18.tar.gz 786577 BLAKE2B 
07ef444ba39435578481e549fcbbd2d97362c6bda3092a17f1daa8b8437febf50cd2f145cd5e80cc1be565c5a658e85a428314a1bcd2a5a38efce0830f1cffba
 SHA512 
38741520b20e3ed7100e52982930abac26e994a69df68c54dfa7180be8b2a4f377b91ba03993bab67b0a505ad79d62164f0f168a6715f4306b635ceba6840d66

diff --git a/app-text/qpdfview/qpdfview-0.4.16.ebuild 
b/app-text/qpdfview/qpdfview-0.4.16.ebuild
deleted file mode 100644
index 8ae9621ec5d..000
--- a/app-text/qpdfview/qpdfview-0.4.16.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PLOCALES="ast az be bg bs ca cs da de el en_GB eo es eu fi fr gl he hr hu id 
it kk ko ky lt ms my pl pt pt_BR ro ru sk sv th tr ug uk vi zh_CN"
-
-inherit l10n qmake-utils
-
-DESCRIPTION="A tabbed document viewer"
-HOMEPAGE="https://launchpad.net/qpdfview";
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
-IUSE="cups +dbus djvu fitz +pdf postscript +sqlite +svg synctex"
-
-REQUIRED_USE="?? ( fitz pdf )"
-
-RDEPEND="
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwidgets:5
-   cups? ( net-print/cups )
-   dbus? ( dev-qt/qtdbus:5 )
-   djvu? ( app-text/djvu )
-   fitz? ( >=app-text/mupdf-1.7:= )
-   pdf? (
-   >=app-text/poppler-0.35[qt5]
-   dev-qt/qtxml:5
-   )
-   postscript? ( app-text/libspectre )
-   sqlite? ( dev-qt/qtsql:5[sqlite] )
-   svg? ( dev-qt/qtsvg:5 )
-   !svg? ( virtual/freedesktop-icon-theme )
-   synctex? ( app-text/texlive-core )"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-   virtual/pkgconfig"
-
-DOCS=( CHANGES CONTRIBUTORS README TODO )
-
-src_prepare() {
-   local mylrelease="$(qt5_get_bindir)"/lrelease
-
-   prepare_locale() {
-   "${mylrelease}" "translations/${PN}_${1}.ts" || die "preparing 
${1} locale failed"
-   }
-
-   rm_help() {
-   rm -f "help/help_${1}.html" || die "removing ${1} help file 
failed"
-   }
-
-   l10n_find_plocales_changes translations ${PN}_ .ts
-   l10n_for_each_locale_do prepare_locale
-   l10n_for_each_disabled_locale_do rm_help
-
-   # adapt for prefix
-   sed -i -e "s:/usr:${EPREFIX}/usr:g" qpdfview.pri || die
-
-   default
-}
-
-src_configure() {
-   local myconfig=() i=
-   for i in cups dbus djvu pdf svg synctex; do
-   use ${i} || myconfig+=(without_${i})
-   done
-   use fitz && myconfig+=(with_fitz)
-   use postscript || myconfig+=(without_ps)
-   use sqlite || myconfig+=(without_sql)
-
-   local myqmakeargs=(
-   qpdfview.pro
-   CONFIG+="${myconfig[@]}"
-   PLUGIN_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${PN}"
-   )
-   eqmake5 "${myqmakeargs[@]}"
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: kde-misc/latte-dock/

2020-01-29 Thread Andreas Sturmlechner
commit: 35c9d03cf856187b5451ecf472c22b6aaf164981
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 17:56:59 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 18:38:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c9d03c

kde-misc/latte-dock: 0.9.8.1 version bump

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

 kde-misc/latte-dock/Manifest  |  1 +
 kde-misc/latte-dock/latte-dock-0.9.8.1.ebuild | 60 +++
 2 files changed, 61 insertions(+)

diff --git a/kde-misc/latte-dock/Manifest b/kde-misc/latte-dock/Manifest
index d08dda82210..28a64b7851d 100644
--- a/kde-misc/latte-dock/Manifest
+++ b/kde-misc/latte-dock/Manifest
@@ -1,2 +1,3 @@
 DIST latte-dock-0.9.7.tar.xz 716716 BLAKE2B 
9ed220be28632d547ed310264f3778dea1dfd1b04c6bd006dd8eea41edee7272384632db33ec3ab16375dcbec92c4f07674df64d72985dbc9a80e71c9ce4cfef
 SHA512 
921e1b49bf802fe1dc57e3c7fa24e115ea12f10eaf4d731cc22c4d4ece6370964b0009f130c1836891a5d866f895814592774af35eb0c76900586e5a98de7bd8
+DIST latte-dock-0.9.8.1.tar.xz 719156 BLAKE2B 
e893f7daad8b1fdac6f9a203d5cdf9ab0afc4a98cfa4b86a27cce9be158170e291861a32bb1b7e28d23dc01ebc343ac68651b5254ae058cad9aa0b66f0597431
 SHA512 
64676084edb930a5e325a5b41a9d909111dee3cdfd6416ecc7909e8837620bfd578988d586882040097d09655c8dd021fadccee859179b98193de23344d5b7b3
 DIST latte-dock-0.9.8.tar.xz 719160 BLAKE2B 
03dcf660ccaa4c660ab6ca8433eb7e41eb7dd2a4ef9989f945ffe2e753d47d7e7ca71aa1c8bc4db7aeebf408c5d8ad562fa9d3c7fa73d21d87f735497b383552
 SHA512 
8b9b093ba03899954da9b032a3d681d66207d80563b635f8571989cc8ea3118cd999a1bc572fb0a8c26e2a8bf6154e4c8d1a9dd9903d9099d3d9ab20d1639f32

diff --git a/kde-misc/latte-dock/latte-dock-0.9.8.1.ebuild 
b/kde-misc/latte-dock/latte-dock-0.9.8.1.ebuild
new file mode 100644
index 000..32a017d5dda
--- /dev/null
+++ b/kde-misc/latte-dock/latte-dock-0.9.8.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KFMIN=5.64.0
+QTMIN=5.12.3
+inherit ecm kde.org
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Elegant dock, based on KDE Frameworks"
+HOMEPAGE="https://kde.org/applications/utilities/org.kde.latte-dock";
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE=""
+
+# drop qtdeclarative subslot operator when QT_MINIMAL >= 5.14.0
+DEPEND="
+   >=dev-qt/qtdbus-${QTMIN}:5
+   >=dev-qt/qtdeclarative-${QTMIN}:5=
+   >=dev-qt/qtgraphicaleffects-${QTMIN}:5
+   || (
+   >=dev-qt/qtgui-${QTMIN}:5[X(-)]
+   >=dev-qt/qtgui-${QTMIN}:5[xcb(-)]
+   )
+   >=dev-qt/qtwidgets-${QTMIN}:5
+   >=dev-qt/qtx11extras-${QTMIN}:5
+   >=kde-frameworks/kactivities-${KFMIN}:5
+   >=kde-frameworks/karchive-${KFMIN}:5
+   >=kde-frameworks/kconfig-${KFMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/kcrash-${KFMIN}:5
+   >=kde-frameworks/kdbusaddons-${KFMIN}:5
+   >=kde-frameworks/kdeclarative-${KFMIN}:5
+   >=kde-frameworks/kglobalaccel-${KFMIN}:5
+   >=kde-frameworks/kguiaddons-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-frameworks/kiconthemes-${KFMIN}:5
+   >=kde-frameworks/knewstuff-${KFMIN}:5
+   >=kde-frameworks/knotifications-${KFMIN}:5
+   >=kde-frameworks/kpackage-${KFMIN}:5
+   >=kde-frameworks/kwayland-${KFMIN}:5
+   >=kde-frameworks/kwindowsystem-${KFMIN}:5
+   >=kde-frameworks/kxmlgui-${KFMIN}:5
+   >=kde-frameworks/plasma-${KFMIN}:5[X]
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libxcb
+"
+RDEPEND="${DEPEND}
+   >=dev-qt/qtquickcontrols-${QTMIN}:5
+   >=dev-qt/qtquickcontrols2-${QTMIN}:5
+"
+
+DOCS=( CHANGELOG.md README.md )



[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2020-01-29 Thread Andreas Sturmlechner
commit: ea7a53ceda94912f0bb49f5e9c5b3f5106f6f885
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 18:19:37 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 18:38:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7a53ce

net-print/epson-inkjet-printer-escpr: 1.7.7 version bump

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

 net-print/epson-inkjet-printer-escpr/Manifest  |  1 +
 .../epson-inkjet-printer-escpr-1.7.7.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/net-print/epson-inkjet-printer-escpr/Manifest 
b/net-print/epson-inkjet-printer-escpr/Manifest
index 625d8a08075..0ed0c0ee6e0 100644
--- a/net-print/epson-inkjet-printer-escpr/Manifest
+++ b/net-print/epson-inkjet-printer-escpr/Manifest
@@ -1 +1,2 @@
 DIST epson-inkjet-printer-escpr-1.7.2-1lsb3.2.tar.gz 4667086 BLAKE2B 
f01790daca7b80e0d1258a6736f1b6edf0db1d5899941174b75b7ea40dd7e75bfa0504511403a1301018ca20273410d5afc28c3b2768e6e2af93c15c032d9b97
 SHA512 
ae8d965c3325e89b428c53a4037566f0b786e0109ac521623c6a6ada66717487c82eeb9147de01f6a14a6e0afc6ed60045ff8b9526f91bf2995b3c3cd66c548d
+DIST epson-inkjet-printer-escpr-1.7.7-1lsb3.2.tar.gz 4767015 BLAKE2B 
a50be3f9975183c64a55225d81cb607ffbb018843aab682b077e7ab236e02b20d0d2aecbdb6fed58daab78d8d2382745f434d7dfec6098c2d8c111d2b4e4fabd
 SHA512 
9663b9ed425fbe5d3f2b6f85f036cdbd230665919e2cc9d62a33ebae85a0068513417209dae97ce55e406124b92c96c455cdc204d3d2335f4215f57b79f9d2a9

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.7.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.7.ebuild
new file mode 100644
index 000..67ec9eb95e4
--- /dev/null
+++ 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.7.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
+HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX";
+SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/10/49/18/f3016be6120a7271a6d9cb64872f817bce1920b8/epson-inkjet-printer-escpr-${PV}-1lsb3.2.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+
+DEPEND="net-print/cups"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/1.6.5-warnings.patch" )
+
+src_configure() {
+   econf --disable-shared
+
+   # Makefile calls ls to generate a file list which is included in 
Makefile.am
+   # Set the collation to C to avoid automake being called automatically
+   unset LC_ALL
+   export LC_COLLATE=C
+}
+
+src_install() {
+   emake -C ppd DESTDIR="${D}" install
+   emake -C src DESTDIR="${D}" install
+   einstalldocs
+}



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

2020-01-29 Thread Andreas Sturmlechner
commit: b763b545669941cc74fe4a5ff50b01be92be83fd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 00:40:08 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 18:38:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b763b545

media-libs/zxing-cpp: 1.0.8 version bump

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

 media-libs/zxing-cpp/Manifest   |  1 +
 media-libs/zxing-cpp/zxing-cpp-1.0.8.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/media-libs/zxing-cpp/Manifest b/media-libs/zxing-cpp/Manifest
index efbcb031afc..eeb9158f257 100644
--- a/media-libs/zxing-cpp/Manifest
+++ b/media-libs/zxing-cpp/Manifest
@@ -1 +1,2 @@
 DIST zxing-cpp-1.0.7.tar.gz 128659323 BLAKE2B 
3b5d27136fe0d25ff27ed7aa8ca7d15e91a2f4c99c145143789b5795bb4af1f0a501697201307779b315af4417008123f076debb6178f51542ac3495405fed01
 SHA512 
e6597157099e478c2afad413e8dc3347369aef6e1a76cff331c4d71f178be97dde23e8fe89c7147eab034e2aecf1660a66e2a951f60c32d2fb67635033c1a0c8
+DIST zxing-cpp-1.0.8.tar.gz 128506816 BLAKE2B 
5f9e70c5cd123c27ee779a955cc112449094069c5be3defac57a906ea6a301e8f04886c7cb51b79007456e517db06f9f61c39228f8d8bb6a520602cac70aa7a4
 SHA512 
0749b3bd4d810ef024f2d8045ecf3024bba6d1816be3f5baeb3325724ac5a7359bec72b4070f8e34fbc1bc5ba2636e488b17cc8b35578b0703352d448c9d22f6

diff --git a/media-libs/zxing-cpp/zxing-cpp-1.0.8.ebuild 
b/media-libs/zxing-cpp/zxing-cpp-1.0.8.ebuild
new file mode 100644
index 000..ecc4935d72c
--- /dev/null
+++ b/media-libs/zxing-cpp/zxing-cpp-1.0.8.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++ Multi-format 1D/2D barcode image processing library"
+HOMEPAGE="https://github.com/nu-book/zxing-cpp";
+SRC_URI="https://github.com/nu-book/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+DEPEND=""



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

2020-01-29 Thread Mike Pagano
commit: ef71e77210beac019ada96924d53e24347a07d43
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 18:42:06 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 18:42:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef71e772

sys-kernel/gentoo-sources: Linux patch 4.14.169

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index bffc436f300..c4feacc0e2c 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -16,6 +16,9 @@ DIST genpatches-4.14-176.extras.tar.xz 17508 BLAKE2B 
ff2f177c65400597e8a928e2244
 DIST genpatches-4.14-177.base.tar.xz 3877508 BLAKE2B 
1db6edae7c23881399a7ba854aa9dbc6c9d63a70d56035cb43bbd0b83809d9758de4bf40ad2657eb140c2e8f4be44617e563206fe16bd2ab242183362f99aac1
 SHA512 
76f8b81b354bc5dfd108d87bf8a9e354139f7df784fde04634a20fa8f4ae62393886ccdbea380eadfa509ef463bd58465dcbbc1af79f06cd07ebc7fbf7227299
 DIST genpatches-4.14-177.experimental.tar.xz 5936 BLAKE2B 
bbea7036f07417b1a497bd6e1f241a5b7903fa2f8db9868ea114869c28826aea01ef1836797874580fbb61ae1561b13b65b38d2cdb1638b5024f4620ef3cec21
 SHA512 
e96a70027d817eeeae9d7a8ca28ff48d4066962b4962bd476c87bfd475dbf5242b20d5615870f36f2726ec65653922c5e4b9fa50e81382642b1ee897fd599bac
 DIST genpatches-4.14-177.extras.tar.xz 17508 BLAKE2B 
53875f70491ff11afad110cdc0f3e3c0263ba5530c427843fab2844e3c47dc50f5dd9cfa2dd9a17501fbfe18480fe912c003fd1f6a740a5b0e014503164b4293
 SHA512 
1ff044484eedf62a606f8c67e2dbf79ac265a3ad0b12d8616a0ba8c469286bbade3eaf64bc3fc40ed1cfea9ad62e83e2845fc139728d0b0a861dded32d32ea1f
+DIST genpatches-4.14-178.base.tar.xz 3887468 BLAKE2B 
c196f08891302450fae0d8741f8310c3b45b402373f94c186be44c7dc26d9f21c4b13266ba13d6863465bae1a506bc2907dc73b55502631c5d206b0578d44eea
 SHA512 
53d956f1d4fb7139764ae2c8dde7bcbafa62832af816b87127b5d615108d3f22290204c98adfde7038bbcf6a5c8b709715cdaa68a6c5814cb4de4d16d53a7637
+DIST genpatches-4.14-178.experimental.tar.xz 5932 BLAKE2B 
c763412516091591f59b4831fdc24507324454b9043a0ba1bf8224603ea28a7a31c16a4ab8cb5785912fdbd89001cb96e777ad4a72c75642e0b1778d314fe167
 SHA512 
be3ddb34813b6599842a5e812309ad2aec7c03fac949391cf98c4fad3aadc30f69f29fdc6c5e17ca8cbe8a7507e209072881521de96241136f4900d04e847231
+DIST genpatches-4.14-178.extras.tar.xz 17496 BLAKE2B 
138589165064eeeab106668aca8fe2fe263fe2f66e56fcb74d8bfbe2f70a05f53e7851df03bfb80a0c2dc8fc90f3e69066fd11cfc52cde03fc3a3aefc46e7e30
 SHA512 
4f96a5ba435d45e28d136e2b5317327e1df78f9e105c7b9dff5beecbdfe7fc32fb4c166c05922fc2c12a469287a28d37d9f2357c3ccf83875abe92a1870a45ec
 DIST genpatches-4.19-85.base.tar.xz 2403008 BLAKE2B 
ed31488bc37aff8e5a7e0491f9b4ac2d70689c9d47c219f001d6900b0c79792cc0dd82e5e368924193be93d747e8a17931aa462cd263e6c517ed8ae1fc070ddb
 SHA512 
6218d1fb01617544f3218b451fbf0ff2b166c861621bb782d00dd01a28a51c97685b44d19f1a2e8da0b8d4178eb38adfc8047a98a2931558f1ff4f26288b8323
 DIST genpatches-4.19-85.experimental.tar.xz 6428 BLAKE2B 
e1f94a7fbb0b72c9d43d0785f212a4d739e086eb6338e7fdf3979c9055c69908a388e9c2f5669eaae6ac8a9adce14dad11d450878b0dbeffa8b5316513f92b16
 SHA512 
ca204d8ca75278e72648b8e79609b533de9de7635e3602476773f7040ae493c6e356de08a60588defe9491960b4ac046aee5813a25dfcb3eae9779b720a341d0
 DIST genpatches-4.19-85.extras.tar.xz 17500 BLAKE2B 
869534152df10ea77feb65211729acb49d98a6cf28cdbfe8f4faf0c6a14f788ba1f7fcd868da5571195a8a083c7257e9dcea628708cb8dd370cb9af6165f
 SHA512 
9931dc1de3062ab85a14bcbe20007d5bc1b15cf1a77570076637df0311615adc763ca91e5d13052f812237f489d7e4c9a376395c547a926be770f787740d9581

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



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

2020-01-29 Thread Mike Pagano
commit: efd8260c0e7e87f14da61a2c8d71af3d82e1d2c1
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 18:47:18 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 18:47:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efd8260c

sys-kernel/gentoo-sources: Linux patch 4.19.100

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index c4feacc0e2c..a07eaee4417 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -37,6 +37,9 @@ DIST genpatches-4.19-97.extras.tar.xz 17488 BLAKE2B 
a96cac0a53187a9b05216e66122e
 DIST genpatches-4.19-98.base.tar.xz 2954268 BLAKE2B 
e96dfdcebaadb6f503e22017ed29a655c0e48fcc31f05743a968e6cc397fb90f4d644f75a520cf54f3178a59e59812344693ac799d87c9b1232782112ce506bb
 SHA512 
c9a6a0d31e527a3e8001cecdd41c11b5fe147fdafe9dc9c4c852e1e4f87ded61f319051a0434036821d1e872c83a00d1b744df3cfbda2a1758a0ac08a0a7ef95
 DIST genpatches-4.19-98.experimental.tar.xz 6428 BLAKE2B 
eb84db5e6331ffde97a9524122f9fa7b236f3f3d37c9c2b6230127458b87f2375b30aaea51a7861b946384210675db11a330870307ccd5701330192b7129f404
 SHA512 
0b100a68585a1383b6f97fd638c41e3121b595aa6ee66940d22b35b0f6009fcd6f8c1491de712db49a05b5d3a53d00b3123d864b1e310e53afd962db2ef828d4
 DIST genpatches-4.19-98.extras.tar.xz 17492 BLAKE2B 
93240a4e143b61666ccff5e7de74834e2e88b7e56808e284b3d10295463d74a3e55ed0547bd5fdad8d885531cea249e2a1f6da915d0b83b66c870f38778364bd
 SHA512 
088b33a9c145496fcdf62f9b6dd3dad4f4f7f45b272c91dd3b58dfa51fad5f5a8da3462e07afcd97fd77395d54b2480f4cc17165dae57e4212dbe352d1442836
+DIST genpatches-4.19-99.base.tar.xz 2980172 BLAKE2B 
2da82ccc1a3a9f874f30046c4d7ea01730398d27c34be741b3fa64ca7e05972a4ef33f76e28383c488d71489c1eabd33e462c2fbbc8248e6d53486eabb1956e6
 SHA512 
481042c47ca0f56a3262e9920a1e245197672c51ac32624668974a8af5273d3ff5930476476b741de611c83c19ad6e4a09e1c1331baaf67c1998ef64bade
+DIST genpatches-4.19-99.experimental.tar.xz 6436 BLAKE2B 
d49e8a2750068a64c49caa463e9741334f328feae1f98f9d9d23e28b6afbf7e6d13e22b12dea66f80b2314fae6b2ddfc9541fbae9502ff5cd0568ed8d930f4dc
 SHA512 
d902acf18c255776edd5144340aa1b2a6d43329ce6772ad75cf2d124197a15268b4170f6e444c3c33401d932ebf73e368f6d0460465313ee89efcc5a93f817e6
+DIST genpatches-4.19-99.extras.tar.xz 17488 BLAKE2B 
d57f278109d3ea0cbe324e15666f119e2a9ef4ebfe6f9581dffdd6e9f4c11fca47dc08f2375da62928076647352772cedad41a8ab97b312b59a03956dd4a3954
 SHA512 
ae1f8f8fd8f9da3860e82d8838714248983014257386bab802ec3adf86d694db50db8d6cc9a9d01a2a6936e2ceb740a4f4732e48b1c40eebc8ffd523745d5dca
 DIST genpatches-4.4-204.base.tar.xz 3212208 BLAKE2B 
355e515cacbf4b2631efd132c32885a302a084bc7bab7b0dcd08abc8865b0321344a2b44cf4c5bc05630639b776a855ec271597b07cbe8b8a9fe4f6029b9a638
 SHA512 
46b05ad6b29f0dd0f612a36e20b1aae2c09b1946e74dd4aef3912938fa95c48cfedd9087ed2b857f7989b39fc1fc035a2f0f477b9bf46d72ea55e15565b364ac
 DIST genpatches-4.4-204.experimental.tar.xz 83300 BLAKE2B 
8f3327cc2d92b43eb1b3df801a46af54719b160c577962998d61d53d6f4564b8178ac37f867e7b7799bd86fe5a35494c81ef73fc639317f7499dc9f16aac
 SHA512 
dcb1663a0703e1e3b3271e32219603d6f6963b9518ac538fb99309ce60ef09136a755ab4a0ec5a09d163cb22eb5dc7aeecdf4e3d658c3423eff51ef2ac68090b
 DIST genpatches-4.4-204.extras.tar.xz 16476 BLAKE2B 
e65878f489a4d0bb03ca6cc34c35e075e2fbbdb79fe08d8012f99b0678383828dd0edb9fd409adba705285e16d6d0fd37cf3a82c1447c76d8eadfe4e2207e26c
 SHA512 
1c7d6ddb0a5c3b23a62bee6b96d193c4c38d24665228bfd12395ac9ecc8fac38100dec9f85ad7a13f3de6c33fc53b703e2b8d4fceb61857a21ac5630fa6e

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



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

2020-01-29 Thread Mike Pagano
commit: 6dc2b5ccdc9a93a94bc41c8b0703d30919550348
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Jan 29 18:50:03 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Jan 29 18:50:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc2b5cc

sys-kernel/gentoo-sources: Linux patch 5.4.16

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a07eaee4417..8b78b5084aa 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -88,6 +88,9 @@ DIST genpatches-5.4-14.extras.tar.xz 1744 BLAKE2B 
f7b13f3e5dacea7f4342d5dab2ebac
 DIST genpatches-5.4-15.base.tar.xz 586668 BLAKE2B 
6e363fc484e94c2903ea94d5966d311f7bc99dba2395b47075f4e553dcb437184036b4651f97d943d3ddb6016a74d9692723fd4b86c4b0272f2c9dd3ae657cfd
 SHA512 
ff31fbb8e71b2bccb4e99a15127b2392d4e4f3452a522cd49b1b9aaa0916e35e32ae41c62a2cb896951312d756cda89533b2a4c79da8bff53a8d448919fb9ecd
 DIST genpatches-5.4-15.experimental.tar.xz 6140 BLAKE2B 
03408c287c90b7e77ee132ae7d0dbbbc6791bc26ed75dd1eb88009e7892c02db5621b98b40013c9da420577b5a6eada7b4cd49b43a4d41c0bb69bbd15b34ce8a
 SHA512 
8039f604515a57207a69464d9dd12d4481daeb089532208cbce0fb9d0722e67ba940433af52d6ebe0e5b701ddff964f03fc142b273d29626afe87233e40db6dc
 DIST genpatches-5.4-15.extras.tar.xz 1744 BLAKE2B 
bca6af0367819405e5d11c46bcd45187ea16b0de7793e546d4be294a3c87e5e00313873d356c3139881f619fa6e64da0c99f8a8b788ec14e17c1ca192276c543
 SHA512 
2f783d62403997d724ff4e124f9365dbddd3f139438b6bec608829762a3b2ef29dc8c488b10a4069a501de70512cff15dbb187d44c8ec90ff0604bc63a713420
+DIST genpatches-5.4-16.base.tar.xz 622844 BLAKE2B 
c9b71a945733efde4ef1c3f4e5929573c4b338d7dfa2cd589ad64c567865eb7d1448f2e32a59548ba2d738aee5219467727fa68a3572a50ffade1cd574ddfd87
 SHA512 
3a1ad8e9f44076fe00f5fee586d53f3b028e7c2086dfc2a30659415ae6a5f8463623890d0a26965eb9fe33da31b1b03652097a0814602862145d047dc9977b33
+DIST genpatches-5.4-16.experimental.tar.xz 6140 BLAKE2B 
cd734c3531a1aeb05d050281ea965a23ea3074dd7d34259852e3217e4a67644a0bb89a9a6831b405dbfc45a9112ebd4f96e01814764c8bff495293c538df1762
 SHA512 
fe83fdfe2be4585c5800f4b4eaf7f16665324ef56f9ddf7e9cd8e14586e5927766a79e9eec1b6c70037d44452a83afcb097351268d850d6fcdbd14cfa4ecfd70
+DIST genpatches-5.4-16.extras.tar.xz 1740 BLAKE2B 
acd4fd5705617564442e44326f5d5c6f0bab8ce1950cfda56d9db03ca1b0adfc3f0d8770a659010c8db4f4d6114adf667ffeefe636f353c9acc51c9ba07bdd0c
 SHA512 
b44523a6da21eef1f547c0cfab9e2aaa2bde929dc2727d9ae748a55b6735e78d304dc66ebd1e97b57ed988936e91ad49e205dce10b745a8fded3b08e13dd1ce4
 DIST genpatches-5.5-1.base.tar.xz 3984 BLAKE2B 
aed3662231f2863f234ebdc3c615c8c7fa32c3b1301659388facef4354b148bd31a9978917dcced2081f157afa176df5cda2e11fa085e3599f68af65f8edfaec
 SHA512 
bdbe3d72620418ad0245f7e7f4fec7960d302be4842c6a090440f8ffccc5f6a67fdf11e51da5a14b659ec7a003410f1374b70ece128455ffd8eaf13177a427ff
 DIST genpatches-5.5-1.experimental.tar.xz 6168 BLAKE2B 
22b8602963c9a601da950a86b242116f4885065087e751d7371d914b2077434ba4dfb54ed03be26bb6951dfef49bc587c39c9b5065df2585b25e6c116bac7261
 SHA512 
9bbfa35b13e4d994a426fc623fd8fed56b722f4ff9e3d2ff330f8b8dab454e9d5b5da205ea64385377685bd319663fed27612b7c9122b752ce8d4be5bdde3e8c
 DIST genpatches-5.5-1.extras.tar.xz 1744 BLAKE2B 
78353a253969918f5c054768df01bf7d0a0887f5686f6b84a78f28a0c1ef49101f278c5140367a4547cce9932ec9e7dcff4b4fd8519bb9e9dd9b7d4764461877
 SHA512 
84815483c7c30e2258c1d246080c460177b8e3b6c49592a78c2a5d83798b703da845ee3f1f939da1e947dddced42fc83434ca162f8e5135c838877304e3a80cf

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



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kdeconnect/

2020-01-29 Thread Andreas Sturmlechner
commit: c66186b855f88e44df08dedaa8fcec856196a837
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 19:12:22 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 19:12:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66186b8

kde-misc/kdeconnect: Update pkg_postinst message

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

 kde-misc/kdeconnect/kdeconnect-1.4.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/kde-misc/kdeconnect/kdeconnect-1.4.ebuild 
b/kde-misc/kdeconnect/kdeconnect-1.4.ebuild
index b5cc9e83194..0cb1488d677 100644
--- a/kde-misc/kdeconnect/kdeconnect-1.4.ebuild
+++ b/kde-misc/kdeconnect/kdeconnect-1.4.ebuild
@@ -81,8 +81,7 @@ pkg_postinst(){
ecm_pkg_postinst
 
elog "In case you are missing 'pause music' plugin, this now requires"
-   elog "media-libs/pulseaudio-qt. It is available in KDE overlay for 
testing,"
-   elog "please test and report back."
+   elog "enabling USE pulseaudio."
elog
elog "The Android .apk file is available via"
elog 
"https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp";



[gentoo-commits] proj/kde:master commit in: media-libs/pulseaudio-qt/

2020-01-29 Thread Andreas Sturmlechner
commit: f140a8a6e487eda3a63c7455dea4f22716e14bef
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 19:13:03 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 19:13:03 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f140a8a6

media-libs/pulseaudio-qt: Drop 1.2

Moved to Gentoo ebuild repository.

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

 media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild | 34 ---
 1 file changed, 34 deletions(-)

diff --git a/media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild 
b/media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild
deleted file mode 100644
index 50296eb8dd..00
--- a/media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-ECM_HANDBOOK="forceoptional"
-ECM_QTHELP="true"
-ECM_TEST="optional"
-QTMIN=5.12.3
-inherit ecm kde.org
-
-DESCRIPTION="Qt bindings for libpulse"
-HOMEPAGE="https://cgit.kde.org/pulseaudio-qt.git/";
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-
-RDEPEND="
-   dev-libs/glib:2
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   media-sound/pulseaudio
-"
-DEPEND="${RDEPEND}
-   test? (
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   )
-"



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

2020-01-29 Thread Andreas Sturmlechner
commit: 6cf252f6fa5c40b36b993ed4cc61e58d91d89f86
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 19:06:45 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 19:12:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf252f6

media-libs/pulseaudio-qt: New package

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

 media-libs/pulseaudio-qt/Manifest |  1 +
 media-libs/pulseaudio-qt/metadata.xml |  8 ++
 media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild | 34 +++
 3 files changed, 43 insertions(+)

diff --git a/media-libs/pulseaudio-qt/Manifest 
b/media-libs/pulseaudio-qt/Manifest
new file mode 100644
index 000..f56d6c16743
--- /dev/null
+++ b/media-libs/pulseaudio-qt/Manifest
@@ -0,0 +1 @@
+DIST pulseaudio-qt-1.2.tar.xz 30748 BLAKE2B 
f6f61eaad122795d6833934edd69e2c9b2f79b458b61a240f07f80b17e2f02fd46bfa639932e2824f2d19c782dc394d6b9e30b69c75f9c0da0c2d9ce3530c3c2
 SHA512 
20bddc4db80310bf46b37a1a386f714bfa3dc2a58871bdd0c0085675c43b42e24792d05cbe5543135a341588e17738525f03ccb08adbc73e1c65967039b35dc7

diff --git a/media-libs/pulseaudio-qt/metadata.xml 
b/media-libs/pulseaudio-qt/metadata.xml
new file mode 100644
index 000..2fdbf33d963
--- /dev/null
+++ b/media-libs/pulseaudio-qt/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+

diff --git a/media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild 
b/media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild
new file mode 100644
index 000..50296eb8ddc
--- /dev/null
+++ b/media-libs/pulseaudio-qt/pulseaudio-qt-1.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ECM_HANDBOOK="forceoptional"
+ECM_QTHELP="true"
+ECM_TEST="optional"
+QTMIN=5.12.3
+inherit ecm kde.org
+
+DESCRIPTION="Qt bindings for libpulse"
+HOMEPAGE="https://cgit.kde.org/pulseaudio-qt.git/";
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+RDEPEND="
+   dev-libs/glib:2
+   >=dev-qt/qtdbus-${QTMIN}:5
+   >=dev-qt/qtgui-${QTMIN}:5
+   media-sound/pulseaudio
+"
+DEPEND="${RDEPEND}
+   test? (
+   >=dev-qt/qtdeclarative-${QTMIN}:5
+   >=dev-qt/qtquickcontrols2-${QTMIN}:5
+   )
+"



[gentoo-commits] repo/gentoo:master commit in: profiles/base/, profiles/arch/x86/

2020-01-29 Thread Andreas Sturmlechner
commit: 2bc2a8809e2b746b4b87969b1b1a730bea862e22
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 19:10:12 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 19:12:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bc2a880

profiles: x86: Move kde-misc/kdeconnect[pulseaudio] mask from base

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

 profiles/arch/x86/package.use.mask | 6 +-
 profiles/base/package.use.mask | 4 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/profiles/arch/x86/package.use.mask 
b/profiles/arch/x86/package.use.mask
index 27e3302fde5..01bd5c47796 100644
--- a/profiles/arch/x86/package.use.mask
+++ b/profiles/arch/x86/package.use.mask
@@ -1,6 +1,10 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Andreas Sturmlechner  (2020-01-29)
+# media-libs/pulseaudio-qt is not keyworded
+kde-misc/kdeconnect pulseaudio
+
 # Georgy Yakovlev  (2020-01-19)
-# media-libs/pulseaudio-qt is not keyworded
-kde-misc/kdeconnect pulseaudio
-
 # Michał Górny  (2020-01-12)
 # libcxxrt is unmaintained and it's going to be removed.
 sys-libs/libcxx libcxxrt



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

2020-01-29 Thread Patrick McLean
commit: 06a54d7f4d312eb44ca519cb895643d8e5b7c712
Author: Patrick McLean  sony  com>
AuthorDate: Wed Jan 29 02:28:22 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jan 29 19:53:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a54d7f

dev-python/reno-2.11.3: Version bump, add py38

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

 dev-python/reno/Manifest   |  1 +
 dev-python/reno/reno-2.11.3.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/reno/Manifest b/dev-python/reno/Manifest
index 60b1aef1924..c185cace079 100644
--- a/dev-python/reno/Manifest
+++ b/dev-python/reno/Manifest
@@ -1,2 +1,3 @@
 DIST reno-2.11.2.tar.gz 74623 BLAKE2B 
5c985a81fb6ef7926eadfd1b096f1a1358cb814100b75c6175b6507c2d9ce64f5a06799164a7593cc40f00695cf538c9a49bee1a4d0f78c115519d660681b315
 SHA512 
b2ef0d9112e327d3a581bfe9b4d6e47b7b4edaa3fe463716772438aab0dcee445d94aaa93bfc7036ead297206353ade73a34d148521ef5d25abe9ca5e655a13f
+DIST reno-2.11.3.tar.gz 73296 BLAKE2B 
a09c79c12945396425f2d3a45259e15e1fe8909df107de90884a51c87a5f4ac9f425907c1f9f401417d979e8762f80f188d2e783a7ff36541c107a9497a12746
 SHA512 
8d5bfe30c7a886d295d77b3d38e7fde09a8febacfacbf984f919bd5c813d81999870684f7da5b3e77a95436c912ea8e275b68548622462218356e23ad084140c
 DIST reno-2.7.0.tar.gz 65269 BLAKE2B 
f3ba0e33246d40f7f16739f367ad313ce440cd33c6f03de268f2e02293446e0d3a043287c36492d8cae44b65c682c09d13ab0e2c86beffc23a85184ef27a751b
 SHA512 
daf32dd7c08f9f75a9a334db8aa9e8c4fdad266bd5e68a43a87920751cf57549fba7906da26dc6c8f79b97bfaf51ad481f80ce99168cd65cfbd62848cb3d0cab

diff --git a/dev-python/reno/reno-2.11.3.ebuild 
b/dev-python/reno/reno-2.11.3.ebuild
new file mode 100644
index 000..d0f96e1bc5e
--- /dev/null
+++ b/dev-python/reno/reno-2.11.3.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Release notes manager, storing release notes in a git repo and 
building docs"
+HOMEPAGE="https://pypi.org/project/reno/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE=""
+
+BDEPEND=">=dev-python/pbr-1.4[${PYTHON_USEDEP}]"
+RDEPEND="${BDEPEND}
+   >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/dulwich-0.15.0[${PYTHON_USEDEP}]"



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

2020-01-29 Thread Patrick McLean
commit: d3a0d892d73cd69def5df1463cb649903aa805dc
Author: Patrick McLean  sony  com>
AuthorDate: Tue Jan 28 19:54:56 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jan 29 19:53:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a0d892

dev-python/dulwich-0.19.15: Version bump, add py38

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

 dev-python/dulwich/Manifest   |  1 +
 dev-python/dulwich/dulwich-0.19.15.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/dev-python/dulwich/Manifest b/dev-python/dulwich/Manifest
index ca27387acaf..68b575e1c41 100644
--- a/dev-python/dulwich/Manifest
+++ b/dev-python/dulwich/Manifest
@@ -1,4 +1,5 @@
 DIST dulwich-0.18.5.tar.gz 330097 BLAKE2B 
c29f3016ab63082051c8c4fc42301c12ca752008a317afc41defceee2db47e50efb69b9a21b3d50c241b3b51c3c1e9cf35eedaf2811f66cec2330ce7865a
 SHA512 
4ba0f70ebddf4c7f4e71721812e228f820226d4ea42bda4d5f06a0720a029d4dddb800cfc05b2610525922c5fcef1020edd1485105706d9ef3fcf810e6381035
 DIST dulwich-0.18.6.tar.gz 331325 BLAKE2B 
781227bf91d8df8f941dd2eddb1682fb8c358d37f35671b08334ef197355e33dbbd09d18b43a179f9200cd6abca563a2fc833da68bd860859a52d951fe679ac0
 SHA512 
2d2120e23dd4bc2c9dcfe601f21ac757ee3fe2a343923c50b32c067f4d329ac89cdf0894bff450bf52c69e99759bb8692f0f14ed73d01be6bc3b0402d58d1148
+DIST dulwich-0.19.15.tar.gz 369491 BLAKE2B 
ffaabbd68ee228e771b8a56c9a5b70498e49a4547f3f0ff87225ca4ee0a222fca5cd75a36293fb0d111615f4fe9550acd2825732a178f67d9f6b538abf9fc37f
 SHA512 
ae56cf4748ea5f9d275f2d1456bf9fce77859ad2eeba6b7d8f34283e212404ba385f377f4fb86b88dc40982649ec8cfb12ea407dd25ada7cb2b0e862568ac7da
 DIST dulwich-0.19.4.tar.gz 349813 BLAKE2B 
a14dc2dccdb68df639a6a4bbf3aa8314fe831f7086573d7cd194f7426eb0021b2faa1663edf318b37031be90121e64a1186c381bfb2cd32a3824abac2a3aa52b
 SHA512 
42aa7d35a491f2d98a8afae6e0afc68089f9d37dbd706961359f1d624a47c627dceb73bb614b608d29dd28faf87406f2e81b1ddcec607aeb0fabc9744b733232
 DIST dulwich-0.19.6.tar.gz 349939 BLAKE2B 
a88836c8a6fa3f732643f88cb94ec37c138146336709651f7fbc604fe80ff3dcf88b24ffca5e5d14c3c947b847a9678fa8b431ef6be0b78e6046bcd3f7ed29bc
 SHA512 
7e13b465672c5eee4f6d14f28e9cba63ceddf1ad119822fabd17b01ad6b89c6dd8c0bbf562bdf50e0ada5ce17bcad531549054417d744e5cf64a610e8a1740bc

diff --git a/dev-python/dulwich/dulwich-0.19.15.ebuild 
b/dev-python/dulwich/dulwich-0.19.15.ebuild
new file mode 100644
index 000..98efcfd48ea
--- /dev/null
+++ b/dev-python/dulwich/dulwich-0.19.15.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure-Python implementation of the Git file formats and protocols"
+HOMEPAGE="https://github.com/jelmer/dulwich/ https://pypi.org/project/dulwich/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/certifi[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.23[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? (
+   ${RDEPEND}
+   dev-python/gevent[${PYTHON_USEDEP}]
+   dev-python/geventhttpclient[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/python-fastimport[${PYTHON_USEDEP}]
+   )"
+
+DISTUTILS_IN_SOURCE_BUILD=1
+
+# One test sometimes fails
+# https://github.com/jelmer/dulwich/issues/541
+PATCHES=( "${FILESDIR}/${PN}-0.18.3-skip-failing-test.patch" )
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   # Do not use make check which rebuilds the extension and uses -Werror,
+   # causing unexpected failures.
+   "${EPYTHON}" -m unittest -v dulwich.tests.test_suite \
+   || die "tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+   if use examples; then
+   docompress -x "/usr/share/doc/${PF}/examples"
+   dodoc -r examples
+   fi
+   distutils-r1_python_install_all
+}



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

2020-01-29 Thread Patrick McLean
commit: 5f31d265e9b5c492a2ac4504251daa3365cbcf7b
Author: Patrick McLean  sony  com>
AuthorDate: Tue Jan 28 19:43:09 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jan 29 19:53:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f31d265

dev-python/geventhttpclient-1.3.1-r1: Add py38

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

 dev-python/geventhttpclient/geventhttpclient-1.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/geventhttpclient/geventhttpclient-1.3.1-r1.ebuild 
b/dev-python/geventhttpclient/geventhttpclient-1.3.1-r1.ebuild
index e8b00c55db8..730bd48ff87 100644
--- a/dev-python/geventhttpclient/geventhttpclient-1.3.1-r1.ebuild
+++ b/dev-python/geventhttpclient/geventhttpclient-1.3.1-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_{6,7}} )
+PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
 
 inherit distutils-r1
 



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

2020-01-29 Thread Patrick McLean
commit: 166a37f390d4278385775f66b12fd98e914ef456
Author: Patrick McLean  sony  com>
AuthorDate: Tue Jan 28 19:31:11 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jan 29 19:52:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166a37f3

dev-python/unicodecsv-0.14.1-r1: Revbump, EAPI=7, add py38

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

 dev-python/unicodecsv/unicodecsv-0.14.1-r1.ebuild | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/dev-python/unicodecsv/unicodecsv-0.14.1-r1.ebuild 
b/dev-python/unicodecsv/unicodecsv-0.14.1-r1.ebuild
new file mode 100644
index 000..0f7d93e57eb
--- /dev/null
+++ b/dev-python/unicodecsv/unicodecsv-0.14.1-r1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Drop-in replacement for python stdlib csv module supporting 
unicode"
+HOMEPAGE="https://pypi.org/project/unicodecsv/ 
https://github.com/jdunck/python-unicodecsv";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+
+distutils_enable_tests unittest



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

2020-01-29 Thread Patrick McLean
commit: 41e267420d69b0600dfcc6bb74fb92943fd60bcd
Author: Patrick McLean  sony  com>
AuthorDate: Tue Jan 28 21:37:23 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jan 29 19:53:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e26742

dev-python/wrapt-1.11.2-r1: Revbump, add py38, use new eclass funcs

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

 dev-python/wrapt/wrapt-1.11.2-r1.ebuild | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/dev-python/wrapt/wrapt-1.11.2-r1.ebuild 
b/dev-python/wrapt/wrapt-1.11.2-r1.ebuild
new file mode 100644
index 000..46b0288179f
--- /dev/null
+++ b/dev-python/wrapt/wrapt-1.11.2-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Module for decorators, wrappers and monkey patching"
+HOMEPAGE="https://github.com/GrahamDumpleton/wrapt";
+SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme
+
+python_compile() {
+   local WRAPT_EXTENSIONS=true
+
+   distutils-r1_python_compile
+}



[gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: 5.5/

2020-01-29 Thread Sergei Trofimovich
commit: ae54f935ea29636c98aa987d15829a38a96b886c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jan 29 08:30:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jan 29 08:30:14 2020 +
URL:
https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=ae54f935

5.5: base on 5.4 patches

5.4. patches copied as-is with exception of
00_all_0008-uapi-fix-System-V-buf-header-includes.patch.

There a few hunks are dropped as upstream adapted a fix.

Signed-off-by: Sergei Trofimovich  gentoo.org>

 ...0001-linux-stat.h-remove-__GLIBC__-checks.patch | 28 +++
 5.5/00_all_0002-netfilter-pull-in-limits.h.patch   | 28 +++
 5.5/00_all_0003-convert-PAGE_SIZE-usage.patch  | 54 ++
 ...ric-fcntl.h-namespace-kernel-file-structs.patch | 54 ++
 ..._0005-unifdef-drop-unused-errno.h-include.patch | 32 +
 ...build-relocs-tool-when-installing-headers.patch | 33 +
 ...k-drop-int-cast-on-length-arg-in-NLMSG_OK.patch | 43 +
 ...008-uapi-fix-System-V-buf-header-includes.patch | 28 +++
 ...ecific-inclusion-of-sysinfo.h-in-kernel.h.patch | 46 ++
 9 files changed, 346 insertions(+)

diff --git a/5.5/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch 
b/5.5/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch
new file mode 100644
index 000..24a4199
--- /dev/null
+++ b/5.5/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch
@@ -0,0 +1,28 @@
+From 1f4498530090a5fe7f6b2c46f2beb8818d7cb27b Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Mon, 29 Dec 2008 06:52:59 -0500
+Subject: [PATCH] linux/stat.h: remove __GLIBC__ checks
+
+Only check __KERNEL__ so we don't assume the C library is glibc.
+
+Signed-off-by: Mike Frysinger 
+---
+ include/uapi/linux/stat.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/include/uapi/linux/stat.h b/include/uapi/linux/stat.h
+index 7b35e98d3c58..eb7474652d27 100644
+--- a/include/uapi/linux/stat.h
 b/include/uapi/linux/stat.h
+@@ -4,7 +4,7 @@
+ 
+ #include 
+ 
+-#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)
++#if defined(__KERNEL__)
+ 
+ #define S_IFMT  0017
+ #define S_IFSOCK 014
+-- 
+2.16.1
+

diff --git a/5.5/00_all_0002-netfilter-pull-in-limits.h.patch 
b/5.5/00_all_0002-netfilter-pull-in-limits.h.patch
new file mode 100644
index 000..9b5b2c0
--- /dev/null
+++ b/5.5/00_all_0002-netfilter-pull-in-limits.h.patch
@@ -0,0 +1,28 @@
+From 0e43763b07e10e2c3cb517349ac2d541bcb62e5a Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Sat, 9 May 2009 17:30:35 -0400
+Subject: [PATCH] netfilter: pull in limits.h
+
+A few netfilter sub-headers use INT_MAX which is in limits.h.
+
+URL: http://bugs.gentoo.org/246160
+Signed-off-by: Mike Frysinger 
+---
+ include/uapi/linux/netfilter.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/uapi/linux/netfilter.h b/include/uapi/linux/netfilter.h
+index cca10e767cd8..de6d76399cd7 100644
+--- a/include/uapi/linux/netfilter.h
 b/include/uapi/linux/netfilter.h
+@@ -6,6 +6,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ /* Responses from hook functions. */
+ #define NF_DROP 0
+-- 
+2.16.1
+

diff --git a/5.5/00_all_0003-convert-PAGE_SIZE-usage.patch 
b/5.5/00_all_0003-convert-PAGE_SIZE-usage.patch
new file mode 100644
index 000..fbc2c45
--- /dev/null
+++ b/5.5/00_all_0003-convert-PAGE_SIZE-usage.patch
@@ -0,0 +1,54 @@
+From 25f2bcfa6c8a9e7cee2b92a823495479fe0ccc92 Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Sat, 13 Feb 2010 03:09:23 -0500
+Subject: [PATCH] convert PAGE_SIZE usage
+
+The size of a page may change at runtime or based on kernel settings, so
+a static value at compile time doesn't work.  More importantly, no one
+exports PAGE_SIZE to user space anymore.
+
+URL: http://bugs.gentoo.org/301431
+Signed-off-by: Mike Frysinger 
+---
+ include/uapi/linux/binfmts.h  | 3 ++-
+ include/uapi/linux/resource.h | 3 ++-
+ 2 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/include/uapi/linux/binfmts.h b/include/uapi/linux/binfmts.h
+index 4abad03a8853..3e98cfc84d1c 100644
+--- a/include/uapi/linux/binfmts.h
 b/include/uapi/linux/binfmts.h
+@@ -2,6 +2,7 @@
+ #ifndef _UAPI_LINUX_BINFMTS_H
+ #define _UAPI_LINUX_BINFMTS_H
+ 
++#include 
+ #include 
+ 
+ struct pt_regs;
+@@ -12,7 +13,7 @@ struct pt_regs;
+  * prevent the kernel from being unduly impacted by misaddressed pointers.
+  * MAX_ARG_STRINGS is chosen to fit in a signed 32-bit integer.
+  */
+-#define MAX_ARG_STRLEN (PAGE_SIZE * 32)
++#define MAX_ARG_STRLEN (sysconf(_SC_PAGESIZE) * 32)
+ #define MAX_ARG_STRINGS 0x7FFF
+ 
+ /* sizeof(linux_binprm->buf) */
+diff --git a/include/uapi/linux/resource.h b/include/uapi/linux/resource.h
+index cc00fd079631..6f9e76f513b5 100644
+--- a/include/uapi/linux/resource.h
 b/include/uapi/linux/resource.h
+@@ -69,7 +69,8 @@ struct rlimit64 {
+  * GPG2 wants 64kB of

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

2020-01-29 Thread Sergei Trofimovich
commit: 3d9a4a3f855adbff9b32e246963b9aa485fe0d28
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jan 29 20:15:19 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jan 29 20:16:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9a4a3f

sys-kernel/linux-headers: bump up to 5.5

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-kernel/linux-headers/Manifest |  2 +
 sys-kernel/linux-headers/linux-headers-5.5.ebuild | 46 +++
 2 files changed, 48 insertions(+)

diff --git a/sys-kernel/linux-headers/Manifest 
b/sys-kernel/linux-headers/Manifest
index e5fb9e2ace0..ddf99c8ff10 100644
--- a/sys-kernel/linux-headers/Manifest
+++ b/sys-kernel/linux-headers/Manifest
@@ -15,6 +15,7 @@ DIST gentoo-headers-5.2-1.tar.xz 4036 BLAKE2B 
ea4016c03e44782c6c49f0453da1242b0f
 DIST gentoo-headers-5.3-1.tar.xz 4044 BLAKE2B 
b1e28749c1b5b46ccc401a12fe94c97a7e07aec62723bf4ebd8e1e08419ad50685f762a645fdeea2c89153ea422fe82e20ee344fcd4cbb1b7381774bdd00de4b
 SHA512 
36ad4685188ce989572cb5f717cd3526019047100af613b9cfe2e9dde311f3429f6f0c1cced36faa52617b1e12e75c6a094db0671eff557ef661df7716889d93
 DIST gentoo-headers-5.3-2.tar.xz 4724 BLAKE2B 
ece54c015c43e8c8e4cc80214fdc31436458ecd7539f2abd699389b581d125b4ebe0a5a1ec8a8bfb04b2dd531f20307c5b3620f471a66c0f6643f9d9cbc9b847
 SHA512 
e182970aa7adc3ac0f7da120803613c855db79bb2599231e5ffac081166ff4da0a28a001da2ad5d956b2cadc49cc37c13ae1239c03feca97a1d37cb9e2014785
 DIST gentoo-headers-5.4-1.tar.xz 4720 BLAKE2B 
74c1f47d8ad77a2df36db005adb25f81ba6128037357dfc1b6d65deb2a5d3e53d2f3b5af60098c3f3f514f85e53bef4c906fb182101d35ae32d73a5af417a583
 SHA512 
9d83a68c6e9a463bc27efd469a79d58690bdd0fd93d77c1de29938d7192bb546b63d9acad9633e6e043d0089638e67ee39382e987d7403c43d3f3edc83c5ccba
+DIST gentoo-headers-5.5-1.tar.xz 4504 BLAKE2B 
3bc7f115c5a92d027683f7958543eaa3ff64e62d5474596b4fb77f51b616335127a567d809e1c2155c3089944b512e416401d6530f8589db6c42b20e6073
 SHA512 
dd4f47eecccaeff4a248b826c452aedc7fa145f614236c60d33e0837c1c62fb95bc91a2b238a6906d7a060db488e2d9da8c6f19b4f51337b26bdecc9bdbb92c0
 DIST gentoo-headers-base-3.18.tar.xz 3776668 BLAKE2B 
837a675ecf05ec270549d0ba6b9dcb98fb0e40f22007ebfa3e430152b7149dcfa29c8bbe38c737add07f75642234f1633c1d5ae0170788e8d4f765faf00bbdbe
 SHA512 
6615c604e5e618d26fff5a61691f7827bb05be9790db6c9f8e16e3842bce8f056f9928f85ae5714710b75743b0d0804faba4ba9c76e934e1de22dc03ef6d5535
 DIST gentoo-headers-base-4.13.tar.xz 7951980 BLAKE2B 
8b3b5d9152455b08bf06c275a69168f8a2418584058e23f784d3ab956d72b100b89d398bfeb351d8faa8285cd9ae8942726099ce9aa3fd94b8e0e92b8de1c217
 SHA512 
3b528e18199d43db3f51c8fb9a5a4c67b9317ea7e9b9fd82fe2cb4d704bbc1253f2af64dc79377ee8ec26511d0893409e3dddbb9a6ae11e8bb7f4ca4d8d3ac9a
 DIST gentoo-headers-base-4.14.tar.xz 8017944 BLAKE2B 
e967a3f26fa002f62af72c165cf960e855f5d84dd105b3f136e5ae24f4cdfc9e5f8b217a83955b325ca4bd6bda0a9d4c4de02d8d79fd4aa72191bc63db96183a
 SHA512 
2a4e83a9ee36ffa85b59ebac1e12f4f1c572825b767928a42c4748d924d04f0536bab4d9375ca68c11ad867c226f386c40c7c4d0158d1ab00c838eb5b2f9f21a
@@ -33,3 +34,4 @@ DIST linux-5.1.tar.xz 106244476 BLAKE2B 
ae3c63ced819737e34f8ec3a78138f87704a2f29
 DIST linux-5.2.tar.xz 107029708 BLAKE2B 
f0cf6e3a15a4bd019edbfa33cb4556d0672e807f7d139eff3ab053d0ad7649198b229475955a1f51eb90d0e9f8268cafb782f6312793fdf38472f3c6d7c2d7ee
 SHA512 
5a28f8a34c4e0470617f5638b7112e6252109b78f23b1eed484a228530970c7ef5c130d6e5a09cf25ea2f6a0329602dcc1ec66ce893182e15b27d99bd228789c
 DIST linux-5.3.tar.xz 108558876 BLAKE2B 
0d08eed879d05734e4542f0c93823d43f8dc042a54ba5268064c4bbebd7a9d59c03abf3ad5dee8280e784ae148a3b0c56181eaf2d5b3c079b6fe9f5191544df6
 SHA512 
6b5edef47c319a3fa7f6c20a3e0903a5acd89ec75e32dc5f99adcb60c9fe118ea312722d9c3d27e2e3900afa2455afb86e83a8b6bb131009bc79ddbe6fb0595d
 DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f
+DIST linux-5.5.tar.xz 110713660 BLAKE2B 
36b990d3650c409652206c319c93c0cf68885334050bc286b479c8b844bc47354547e19eebb58caafb026b96d134f39f0c7ce38b4eebe9da7ea6d1610a1e2af2
 SHA512 
fa74fdabb5e63384a39e54da05b86a9ae9ea16179524b041fbbdffc7177e80b53600ae98d76be127ba216148f9dc55fe07ab20637e22c6d6030cb4aa09eb2f86

diff --git a/sys-kernel/linux-headers/linux-headers-5.5.ebuild 
b/sys-kernel/linux-headers/linux-headers-5.5.ebuild
new file mode 100644
index 000..72eea6bf7d3
--- /dev/null
+++ b/sys-kernel/linux-headers/linux-headers-5.5.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+ETYPE="headers"
+H_SUPPORTEDARCH="alpha amd64 arc arm arm64 avr32 cris frv hexagon hppa ia64 
m32r m68k metag microblaze mips mn10300 nios2 op

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

2020-01-29 Thread Sergei Trofimovich
commit: 8c07d209f2974a24906f4ac9b48e0dc3b063
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jan 29 20:15:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jan 29 20:16:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c07d209

app-emulation/ski: tweak for gcc-10

Reported-by: Toralf Förster
Closes: https://bugs.gentoo.org/707144
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/ski/files/ski-1.3.2-gcc-10.patch | 22 ++
 app-emulation/ski/ski-1.3.2-r3.ebuild  |  3 ++-
 2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/app-emulation/ski/files/ski-1.3.2-gcc-10.patch 
b/app-emulation/ski/files/ski-1.3.2-gcc-10.patch
new file mode 100644
index 000..bfe5de33acb
--- /dev/null
+++ b/app-emulation/ski/files/ski-1.3.2-gcc-10.patch
@@ -0,0 +1,22 @@
+--- a/src/linux/syscall-linux.c
 b/src/linux/syscall-linux.c
+@@ -538,7 +538,7 @@ pid_t cons_pid = -1;
+ static int cfd = -1;
+ BOOL trace_syscalls;
+ char *consLog = NULL;
+-extern BOOL noConsole;
++BOOL noConsole;
+ extern BOOL userint;
+ static struct termios sane_ttyIos;
+ 
+--- a/src/platform.c
 b/src/platform.c
+@@ -29,7 +29,7 @@
+ #include "platform.h"
+ #include "state.h"
+ 
+-BOOL autoAlloc, noConsole;
++extern BOOL autoAlloc, noConsole;
+ extern char *consLog;
+ extern unsigned va_len, pa_len, rid_len, key_len;
+ extern unsigned mips;

diff --git a/app-emulation/ski/ski-1.3.2-r3.ebuild 
b/app-emulation/ski/ski-1.3.2-r3.ebuild
index 1063017aad0..e64df45c125 100644
--- a/app-emulation/ski/ski-1.3.2-r3.ebuild
+++ b/app-emulation/ski/ski-1.3.2-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -38,6 +38,7 @@ PATCHES=(
"${FILESDIR}"/${P}-ncurses-config.patch
"${FILESDIR}"/${P}-prototypes.patch
"${FILESDIR}"/${P}-glibc-2.28.patch
+   "${FILESDIR}"/${P}-gcc-10.patch #707144
 )
 
 src_prepare() {



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

2020-01-29 Thread Sergei Trofimovich
commit: 24352db7942671fe8cd17b7723b11b5657be965c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jan 29 20:05:30 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jan 29 20:16:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24352db7

app-emulation/ski: add slyfox@ as a maintainer

Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/ski/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-emulation/ski/metadata.xml b/app-emulation/ski/metadata.xml
index a82c03848dd..36a9f93ec0b 100644
--- a/app-emulation/ski/metadata.xml
+++ b/app-emulation/ski/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
+   
+   sly...@gentoo.org
+   Sergei Trofimovich
+   

i...@gentoo.org
Gentoo Linux IA-64 Development



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsensors/, dev-qt/qtgraphicaleffects/, dev-qt/qtpaths/, dev-qt/qtopengl/, ...

2020-01-29 Thread Andreas Sturmlechner
commit: 6c9dcbf7daa0604622d9a8b642ac27426135be83
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan 25 23:50:40 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 20:27:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c9dcbf7

dev-qt: Drop all KEYWORDS from 5.12.3 except arm, x86

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

 dev-qt/assistant/assistant-5.12.3.ebuild|  4 ++--
 dev-qt/designer/designer-5.12.3.ebuild  |  4 ++--
 dev-qt/linguist-tools/linguist-tools-5.12.3.ebuild  |  4 ++--
 dev-qt/linguist/linguist-5.12.3.ebuild  |  4 ++--
 dev-qt/pixeltool/pixeltool-5.12.3.ebuild|  4 ++--
 dev-qt/qdbus/qdbus-5.12.3.ebuild|  4 ++--
 dev-qt/qdbusviewer/qdbusviewer-5.12.3.ebuild|  4 ++--
 dev-qt/qdoc/qdoc-5.12.3.ebuild  |  4 ++--
 dev-qt/qt-docs/qt-docs-5.12.3_p201904161302.ebuild  |  4 ++--
 dev-qt/qt3d/qt3d-5.12.3.ebuild  |  4 ++--
 dev-qt/qtbluetooth/qtbluetooth-5.12.3.ebuild|  4 ++--
 dev-qt/qtcharts/qtcharts-5.12.3.ebuild  |  4 ++--
 dev-qt/qtconcurrent/qtconcurrent-5.12.3.ebuild  |  4 ++--
 dev-qt/qtcore/qtcore-5.12.3.ebuild  |  4 ++--
 dev-qt/qtdatavis3d/qtdatavis3d-5.12.3.ebuild|  4 ++--
 dev-qt/qtdbus/qtdbus-5.12.3.ebuild  |  4 ++--
 dev-qt/qtdeclarative/qtdeclarative-5.12.3.ebuild|  2 +-
 dev-qt/qtdiag/qtdiag-5.12.3.ebuild  |  4 ++--
 .../qtgraphicaleffects-5.12.3.ebuild|  4 ++--
 dev-qt/qtgui/qtgui-5.12.3-r1.ebuild |  4 ++--
 dev-qt/qthelp/qthelp-5.12.3.ebuild  |  4 ++--
 dev-qt/qtimageformats/qtimageformats-5.12.3.ebuild  |  4 ++--
 dev-qt/qtlocation/qtlocation-5.12.3.ebuild  |  4 ++--
 dev-qt/qtmultimedia/qtmultimedia-5.12.3.ebuild  |  4 ++--
 dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild|  4 ++--
 dev-qt/qtnetworkauth/qtnetworkauth-5.12.3.ebuild|  4 ++--
 dev-qt/qtopengl/qtopengl-5.12.3.ebuild  |  4 ++--
 dev-qt/qtpaths/qtpaths-5.12.3.ebuild|  4 ++--
 dev-qt/qtplugininfo/qtplugininfo-5.12.3.ebuild  |  4 ++--
 dev-qt/qtpositioning/qtpositioning-5.12.3.ebuild|  4 ++--
 dev-qt/qtprintsupport/qtprintsupport-5.12.3.ebuild  |  4 ++--
 .../qtquickcontrols/qtquickcontrols-5.12.3.ebuild   |  4 ++--
 .../qtquickcontrols2/qtquickcontrols2-5.12.3.ebuild |  4 ++--
 dev-qt/qtscript/qtscript-5.12.3.ebuild  |  4 ++--
 dev-qt/qtscxml/qtscxml-5.12.3.ebuild|  4 ++--
 dev-qt/qtsensors/qtsensors-5.12.3.ebuild|  4 ++--
 dev-qt/qtserialbus/qtserialbus-5.12.3.ebuild|  4 ++--
 dev-qt/qtserialport/qtserialport-5.12.3.ebuild  |  4 ++--
 dev-qt/qtspeech/qtspeech-5.12.3.ebuild  |  4 ++--
 dev-qt/qtsql/qtsql-5.12.3.ebuild|  4 ++--
 dev-qt/qtsvg/qtsvg-5.12.3.ebuild|  4 ++--
 dev-qt/qttest/qttest-5.12.3.ebuild  |  4 ++--
 dev-qt/qttranslations/qttranslations-5.12.3.ebuild  |  4 ++--
 .../qtvirtualkeyboard-5.12.3.ebuild |  4 ++--
 dev-qt/qtwayland/qtwayland-5.12.3.ebuild|  4 ++--
 dev-qt/qtwebchannel/qtwebchannel-5.12.3.ebuild  |  4 ++--
 dev-qt/qtwebengine/qtwebengine-5.12.3.ebuild|  2 +-
 dev-qt/qtwebsockets/qtwebsockets-5.12.3.ebuild  |  4 ++--
 dev-qt/qtwebview/Manifest   |  1 -
 dev-qt/qtwebview/qtwebview-5.12.3.ebuild| 21 -
 dev-qt/qtwidgets/qtwidgets-5.12.3.ebuild|  4 ++--
 dev-qt/qtx11extras/qtx11extras-5.12.3.ebuild|  4 ++--
 dev-qt/qtxml/qtxml-5.12.3.ebuild|  4 ++--
 dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.3.ebuild|  4 ++--
 54 files changed, 102 insertions(+), 124 deletions(-)

diff --git a/dev-qt/assistant/assistant-5.12.3.ebuild 
b/dev-qt/assistant/assistant-5.12.3.ebuild
index 88f985ea3db..5a9d7abbba9 100644
--- a/dev-qt/assistant/assistant-5.12.3.ebuild
+++ b/dev-qt/assistant/assistant-5.12.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ inherit desktop gnome2-utils qt5-build
 DESCRIPTION="Tool for viewing on-line documentation in Qt help file format"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="amd64 ~arm arm64 ~hppa ppc64 ~sparc x86"
+   KEYWORDS="~arm x86"
 fi
 
 IUSE="webkit"

diff --git a/dev-qt/designer/designer-5.12.3.ebuild 
b/dev-qt/designer/designer-5.12.3.ebuild
index afa520688ec..6770d674cda 100644
--- a/dev-qt/designer/designer-5.12.3.ebuild
+++ b/dev-qt/designer/designer-5.12.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2

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

2020-01-29 Thread Andreas Sturmlechner
commit: c87e6b815222baf8914ae58f8b65122cbfd3f6bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 20:17:58 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 20:27:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87e6b81

dev-qt/qtcore: Security cleanup

Bug: https://bugs.gentoo.org/699226
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtcore/qtcore-5.12.3.ebuild | 84 --
 1 file changed, 84 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-5.12.3.ebuild 
b/dev-qt/qtcore/qtcore-5.12.3.ebuild
deleted file mode 100644
index e952fc2cc0c..000
--- a/dev-qt/qtcore/qtcore-5.12.3.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="Cross-platform application development framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="arm x86"
-fi
-
-IUSE="icu systemd"
-
-DEPEND="
-   dev-libs/double-conversion:=
-   dev-libs/glib:2
-   dev-libs/libpcre2[pcre16,unicode]
-   sys-libs/zlib:=
-   icu? ( dev-libs/icu:= )
-   !icu? ( virtual/libiconv )
-   systemd? ( sys-apps/systemd:= )
-"
-RDEPEND="${DEPEND}
-   !> "${D%/}"/${QT5_HEADERDIR}/QtCore/qconfig.h <<- _EOF_ || 
die
-
-   #if defined(QT_NO_${flag}) && defined(QT_${flag})
-   # undef QT_NO_${flag}
-   #elif !defined(QT_NO_${flag}) && !defined(QT_${flag})
-   # define QT_NO_${flag}
-   #endif
-   _EOF_
-   done
-}



[gentoo-commits] data/api:master commit in: files/

2020-01-29 Thread Ian Whyman
commit: 2adb02cf60594337314bf1078e1236a18f2c8d59
Author: Ian Whyman  gentoo  org>
AuthorDate: Wed Jan 29 20:49:53 2020 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Wed Jan 29 20:49:53 2020 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=2adb02cf

uid-gid.txt: Add Gerbera (429/429)

Signed-off-by: Ian Whyman  gentoo.org>

 files/uid-gid.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index 381f3ab..a1077a1 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -227,6 +227,7 @@ guest   405 -   historical  
Removed from baselayout in [r889](https://sources.gento
 utmp   -   406 acct
 utmp   -   406 baselayout
 davfs2 420 420 acctUsed by net-fs/davfs2
+gerbera429 429 acct
 prometheus 430 430 acct
 netbox 431 431 acct
 kube-apiserver 432 432 acct



[gentoo-commits] repo/gentoo:master commit in: acct-group/gerbera/

2020-01-29 Thread Ian Whyman
commit: d4139ee67e349e4203eac746f134448ac75163bf
Author: Ian Whyman  gentoo  org>
AuthorDate: Wed Jan 29 20:58:16 2020 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Wed Jan 29 20:58:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4139ee6

acct-group/gerbera: Initial commit

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

 acct-group/gerbera/gerbera-0.ebuild | 9 +
 acct-group/gerbera/metadata.xml | 8 
 2 files changed, 17 insertions(+)

diff --git a/acct-group/gerbera/gerbera-0.ebuild 
b/acct-group/gerbera/gerbera-0.ebuild
new file mode 100644
index 000..f23b0d54461
--- /dev/null
+++ b/acct-group/gerbera/gerbera-0.ebuild
@@ -0,0 +1,9 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+DESCRIPTION="Gerbera UPnP Media Server group"
+ACCT_GROUP_ID=429

diff --git a/acct-group/gerbera/metadata.xml b/acct-group/gerbera/metadata.xml
new file mode 100644
index 000..7901a7caabc
--- /dev/null
+++ b/acct-group/gerbera/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   thev00...@gentoo.org
+   Ian Whyman
+   
+



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

2020-01-29 Thread Ian Whyman
commit: 3e3e3229d341e1b41102a305d2acf9ce627caa7c
Author: Ian Whyman  gentoo  org>
AuthorDate: Wed Jan 29 20:58:59 2020 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Wed Jan 29 20:58:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e3e3229

acct-user/gerbera: Initial commit

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

 acct-user/gerbera/gerbera-0.ebuild | 13 +
 acct-user/gerbera/metadata.xml |  8 
 2 files changed, 21 insertions(+)

diff --git a/acct-user/gerbera/gerbera-0.ebuild 
b/acct-user/gerbera/gerbera-0.ebuild
new file mode 100644
index 000..ded9049718c
--- /dev/null
+++ b/acct-user/gerbera/gerbera-0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="Gerbera UPnP Media Server user"
+ACCT_USER_ID=429
+ACCT_USER_HOME=/var/lib/gerbera
+ACCT_USER_GROUPS=( gerbera video )
+
+acct-user_add_deps

diff --git a/acct-user/gerbera/metadata.xml b/acct-user/gerbera/metadata.xml
new file mode 100644
index 000..7901a7caabc
--- /dev/null
+++ b/acct-user/gerbera/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   thev00...@gentoo.org
+   Ian Whyman
+   
+



[gentoo-commits] repo/gentoo:master commit in: app-editors/teco/files/, app-editors/teco/

2020-01-29 Thread Ulrich Müller
commit: aec2ea4dc24605b4f334e04aad81f9a2976ea012
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Jan 29 21:05:27 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Jan 29 21:05:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aec2ea4d

app-editors/teco: Fix compilation with -fno-common.

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

Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Ulrich Müller  gentoo.org>

 app-editors/teco/files/teco-no-common.patch | 13 +
 app-editors/teco/teco-36_p19940820.ebuild   |  3 ++-
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/app-editors/teco/files/teco-no-common.patch 
b/app-editors/teco/files/teco-no-common.patch
new file mode 100644
index 000..18880579e37
--- /dev/null
+++ b/app-editors/teco/files/teco-no-common.patch
@@ -0,0 +1,13 @@
+https://bugs.gentoo.org/707300
+
+--- teco-orig/te_subs.c
 teco/te_subs.c
+@@ -249,8 +249,6 @@
+ /* leaves bb pointing to end of that text */
+ /* insert2() copies rest of buffer */
+ 
+-struct buffcell *insert_p;
+-
+ insert1()
+ {
+ int nchars; /* number of chars in cell */

diff --git a/app-editors/teco/teco-36_p19940820.ebuild 
b/app-editors/teco/teco-36_p19940820.ebuild
index 4f297c28958..4dd048a4f2d 100644
--- a/app-editors/teco/teco-36_p19940820.ebuild
+++ b/app-editors/teco/teco-36_p19940820.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -25,6 +25,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-double-free.patch
"${FILESDIR}"/${PN}-gcc4.patch
"${FILESDIR}"/${PN}-warnings.patch
+   "${FILESDIR}"/${PN}-no-common.patch
 )
 
 src_prepare() {



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

2020-01-29 Thread Ian Whyman
commit: 62161903c542cbd02fa42f84cd640d50e5b039ec
Author: Ian Whyman  gentoo  org>
AuthorDate: Wed Jan 29 21:22:35 2020 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Wed Jan 29 21:22:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62161903

net-misc/gerbera: Version Bump, EAPI 7, GLEP 81

Closes: https://bugs.gentoo.org/701236
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Ian Whyman  gentoo.org>

 net-misc/gerbera/Manifest  |   3 +-
 net-misc/gerbera/gerbera-1.2.0-r1.ebuild   | 101 -
 .../{gerbera-1.3.5.ebuild => gerbera-1.4.0.ebuild} |  33 +++
 net-misc/gerbera/gerbera-.ebuild   |  33 +++
 net-misc/gerbera/metadata.xml  |   3 +-
 5 files changed, 26 insertions(+), 147 deletions(-)

diff --git a/net-misc/gerbera/Manifest b/net-misc/gerbera/Manifest
index ce9babc8219..d49cd27e01d 100644
--- a/net-misc/gerbera/Manifest
+++ b/net-misc/gerbera/Manifest
@@ -1,2 +1 @@
-DIST gerbera-1.2.0.tar.gz 2910704 BLAKE2B 
b0d0f52dcfbcefe09d96e6b63a73005fb069176fb42af16cf9a4729742988d5c5a0b68109ab50b93ba65ec604c3ced7a827fb75300d6c3409bdde77e18346589
 SHA512 
5472136b0605e4cc9645219ab9fbe9ae4240a4b80f52fc611456cef0336a7eac8136448132f30fab04655d4bdb0f85f5a37e92e2830ec976f71c6b294935e1dc
-DIST gerbera-1.3.5.tar.gz 2893767 BLAKE2B 
eb4be515a4a2a3d1f10b8bff5737272355403faf6ed1fc8243c7d199e022e9c1bb7e756d6dc2c93a1730f48347d0c1f0ab05e0d3dca7eed7ba7bcbf1c16ac794
 SHA512 
8a5809684cd4997da8b5cf2db644f220e3688bcb0ba3bfa6c358e74fc950caec9ddafa78eab4369c64d39d8b7512f49a58954643790a8e4c40c54cccb2680a80
+DIST gerbera-1.4.0.tar.gz 2896853 BLAKE2B 
52271c67170a1dd20a35959dd24f52bdef1fbb4653ecf8b77e9b2aea6c7943249bc4c7c633312129e8318fd7d249c8513f2f808b68309518d5ba78cc8e3569e5
 SHA512 
989716bc60bc7e171448e18aff58d8f17dbbed28ca31cfeaa7dc0e6f1cb646da88041deff6481e15ba398090a01f07e00f74b12e84c423b7ca5b82eb97b918cd

diff --git a/net-misc/gerbera/gerbera-1.2.0-r1.ebuild 
b/net-misc/gerbera/gerbera-1.2.0-r1.ebuild
deleted file mode 100644
index c3f775019bb..000
--- a/net-misc/gerbera/gerbera-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils linux-info systemd tmpfiles user
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/gerbera/${PN}.git";
-   KEYWORDS=""
-   SRC_URI=""
-   inherit git-r3
-else
-   SRC_URI="https://github.com/gerbera/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/${P}"
-fi
-
-DESCRIPTION="UPnP Media Server (Based on MediaTomb)"
-HOMEPAGE="https://github.com/gerbera/gerbera";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="curl debug +exif exiv2 +ffmpeg ffmpegthumbnailer +javascript lastfm 
libav +magic mysql protocol-extensions systemd +taglib"
-
-DEPEND="
-   !!net-misc/mediatomb
-   >=net-libs/libupnp-1.8.3[ipv6,reuseaddr]
-   >=dev-db/sqlite-3
-   dev-libs/expat
-   mysql? ( dev-db/mysql-connector-c )
-   javascript? ( dev-lang/duktape )
-   taglib? ( >=media-libs/taglib-1.11 )
-   lastfm? ( >=media-libs/lastfmlib-0.4 )
-   exif? ( media-libs/libexif )
-   exiv2? ( media-gfx/exiv2 )
-   ffmpeg? (
-   libav? ( >=media-video/libav-10:0= )
-   !libav? ( >=media-video/ffmpeg-2.2:0= )
-   )
-   ffmpegthumbnailer? ( media-video/ffmpegthumbnailer )
-   curl? ( net-misc/curl net-misc/youtube-dl )
-   magic? ( sys-apps/file )
-   sys-apps/util-linux
-   sys-libs/zlib
-   virtual/libiconv
-"
-RDEPEND="${DEPEND}"
-
-CONFIG_CHECK="~INOTIFY_USER"
-
-pkg_setup() {
-   linux-info_pkg_setup
-
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /dev/null ${PN}
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_CURL="$(usex curl)" \
-   -DWITH_DEBUG="$(usex debug)" \
-   -DWITH_EXIF="$(usex exif)" \
-   -DWITH_EXIV2="$(usex exiv2)" \
-   -DWITH_AVCODEC="$(usex ffmpeg)" \
-   -DWITH_FFMPEGTHUMBNAILER="$(usex ffmpegthumbnailer)" \
-   -DWITH_JS="$(usex javascript)" \
-   -DWITH_LASTFM="$(usex lastfm)" \
-   -DWITH_MAGIC="$(usex magic)" \
-   -DWITH_MYSQL="$(usex mysql)"
-   -DWITH_PROTOCOL_EXTENSIONS="$(usex protocol-extensions)" \
-   -DWITH_SYSTEMD="$(usex systemd)" \
-   -DWITH_TAGLIB="$(usex taglib)" \
-   -DWITH_INOTIFY=1
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   newinitd "${FILESDIR}/${PN}-1.0.0.initd" "${PN}"
-   newconfd "${FILESDIR}/${PN}-1.0.0.confd" "${PN}"
-
-   insinto /etc/${PN}
-   newins "${FILESDIR}/${PN}-1.0.0.config" config.xml
-   fperms 0640 /etc/${PN}/config.xml
-   fowners roo

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

2020-01-29 Thread Brian Evans
commit: 36934aef878bee12006b506faf2037b7563a1280
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jan 29 21:27:59 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jan 29 21:27:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36934aef

dev-db/mariadb: Version bump for 10.2.31

Signed-off-by: Brian Evans  gentoo.org>

 dev-db/mariadb/Manifest   |   1 +
 dev-db/mariadb/mariadb-10.2.31.ebuild | 986 ++
 2 files changed, 987 insertions(+)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 5fee34d8ec2..54d301febbd 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -2,6 +2,7 @@ DIST mariadb-10.1.38.tar.gz 63535685 BLAKE2B 
c179ea2f60287c2bc1c0d1c47ae989ac265
 DIST mariadb-10.1.43.tar.gz 63635313 BLAKE2B 
60617d3021bb478633a995b93a3659a287ecab49bb1997efc430e2f453a8145307f0db02799b43560a51c92ef528060f93fb82fd0362ea34052f68590144bff0
 SHA512 
47e9693c6c1d25d2c3541efe001569c17e70721edcbfc3d0ccc96f3638820123436c18d2cbc3c2ad252adf1eda446feff0370eb97f9e57b6711757ac899b47e8
 DIST mariadb-10.2.22.tar.gz 71907765 BLAKE2B 
e7781a9e1bb0becca543ebb0b9e03912fbafa9de45bbd5c7232f92d29b934148dd124ad462bf8aa5aec2e4ee0bf75a03fae5e5fe97a77e1d93095052a577c14b
 SHA512 
cd61d0c2d528b23b975e6ea142560d9b9ebff7ecda6fa9b3659b25b3406e8cc925918f4c3bb0e200ddb8d0520bcaa4d4f70d245b4731896f9ba2f1bdf0a817b2
 DIST mariadb-10.2.29.tar.gz 73087972 BLAKE2B 
aa3fe880f00b02846b26f16fcd37d18ebe217a2c9680c8c535042d2759852c929cd649d662c6a2bc603d934a6ba770ef945752c99d150f539e1fdd0d9be0ad51
 SHA512 
cee4e0d1a2b203cadaaa5678c5ce17302f18ffa55d07c8329392b1ea84740340c006eb9ab5920beef80835c2a399d5fffca409b8288e10ae62d290af62ec4ab8
+DIST mariadb-10.2.31.tar.gz 73134720 BLAKE2B 
a410f71cffd7ff904cb16d9d00bbb4b1d6d17a4931de1635a14dce7c7c66d8dfd097b0c261959809cf2f327d196b11f3196129c2894efb5bab0141aca10ea3c7
 SHA512 
2cf28e4e049618f633470e7a4cd4f3bc8c2a74bf9796bfd026da7c75812e6d4962323785fdbca7a5b505c2e4fe95e3b47cd2e24e4dec2dcd230ac8a25f49b9b9
 DIST mariadb-10.3.20.tar.gz 71990355 BLAKE2B 
f950f0eb836751d0eebb9ae561fe3b5aefade04a0d389465918aa2a887e4f717ab4e6bd835dea8f9a88aacfe10c0b091fc2a59882a1781a3f2903ef07a759f5d
 SHA512 
8080cb6db85c587f39f128e98b00c3e6428bf3e828271a227bb2c61c97683c965802baa6e5f825317f7e2963683c0f81699642853deeca6977faa2b6932044a3
 DIST mariadb-10.4.10.tar.gz 78352896 BLAKE2B 
c0e448fba455feb9385b7d57e1a727e84eaf4cfa52ce0dbd6ff062aa0b5abc42005680fb185416d04fbd7bb62d9bbd6c93e4cb77b145418cf6be92747f8b1c2a
 SHA512 
4a9b9a37bc3a273de4bd781dac3636256364dae6efbba45765d6b28995da3d64e180422cd10418d1c7acd7fd8843fe2a2638c07e0f56b0c09170c58812cc6b71
 DIST mariadb-5.5.66.tar.gz 45962591 BLAKE2B 
41befba24abec2af876168a11fc205d328c137baa49e5e521787898e4b973d1dc548ef459228811caa99fa3c2b7a9fe96f3eb7a04bf62f0bb20966e4ffd2ea9b
 SHA512 
403f3bc67018e01eb2277a88d3a7ac673d50df8f7a67607f9d14e3167d1bdd4ca202983df69c97688ff51edbd6d6b43af3541c75e968d1d01713a7b6495e4c8c

diff --git a/dev-db/mariadb/mariadb-10.2.31.ebuild 
b/dev-db/mariadb/mariadb-10.2.31.ebuild
new file mode 100644
index 000..e779a0f1775
--- /dev/null
+++ b/dev-db/mariadb/mariadb-10.2.31.ebuild
@@ -0,0 +1,986 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+MY_EXTRAS_VER="20190305-2052Z"
+SUBSLOT="18"
+
+JAVA_PKG_OPT_USE="jdbc"
+
+# Keeping eutils in EAPI=6 for emktemp in pkg_config
+
+inherit eutils systemd flag-o-matic prefix toolchain-funcs \
+   java-pkg-opt-2 user cmake-utils
+
+SRC_URI="https://downloads.mariadb.org/interstitial/${P}/source/${P}.tar.gz "
+
+# Gentoo patches to MySQL
+if [[ "${MY_EXTRAS_VER}" != "live" && "${MY_EXTRAS_VER}" != "none" ]]; then
+   SRC_URI="${SRC_URI}
+   mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://gitweb.gentoo.org/proj/mysql-extras.git/snapshot/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2";
+fi
+
+HOMEPAGE="https://mariadb.org/";
+DESCRIPTION="An enhanced, drop-in replacement for MySQL"
+LICENSE="GPL-2 LGPL-2.1+"
+SLOT="0/${SUBSLOT:-0}"
+IUSE="+backup bindist client-libs cracklib debug extraengine galera innodb-lz4
+   innodb-lzo innodb-snappy jdbc jemalloc kerberos latin1 libressl mroonga
+   numa odbc oqgraph pam +perl profiling rocksdb selinux +server sphinx
+   sst-rsync sst-mariabackup sst-xtrabackup static systemd systemtap 
tcmalloc
+   test tokudb xml yassl"
+
+# Tests always fail when libressl is enabled due to hard-coded ciphers in the 
tests
+RESTRICT="!bindist? ( bindist ) libressl? ( test ) !test? ( test )"
+
+REQUIRED_USE="jdbc? ( extraengine server !static )
+   server? ( tokudb? (

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

2020-01-29 Thread Andreas Sturmlechner
commit: 1ae8b7c7c3790f0a866e57eb44b06a8c014c3c51
Author: Chris Mayo  gmail  com>
AuthorDate: Fri Jan 10 19:38:40 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 21:32:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ae8b7c7

sci-libs/gdal: version bump 3.0.2

Bug: https://bugs.gentoo.org/686732
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Chris Mayo  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14061
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/gdal/Manifest|   1 +
 sci-libs/gdal/files/gdal-3.0.2-complete.patch |  84 +++
 sci-libs/gdal/files/gdal-3.0.2-datadir.patch  |  69 ++
 sci-libs/gdal/gdal-3.0.2.ebuild   | 305 ++
 4 files changed, 459 insertions(+)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index a3f4832ec81..06a7010fbf8 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1,2 +1,3 @@
 DIST gdal-2.4.1.tar.gz 14546610 BLAKE2B 
92404336339c6f46877f3e6599af6fc67a53714888ff66fc0142efa8ddf185ad34d9ec337dcbad67f059041da31e70073a9e41872a7332fd9977552d79fcbc61
 SHA512 
b25e49f343986af6f37e0bec6dc3084cbcf1a0080da5cfd91d1a58c1d9ffd2ac355299d66534e63e89358cbb15ecd0f2ae934d91bbd2a3749889dadaf266e483
 DIST gdal-2.4.3.tar.gz 14726748 BLAKE2B 
104c29912a96b03d0913be40f91a844b2f04f1e972b1ae8764bd277e7d51960b45d4a67a8f9240130de7ce8752f69f4172ca9a54bb11e70635aa55b6c6924cb5
 SHA512 
e532ce86c92724300ab443c42dd8cec0e74e41411a54d30222f98faa10623b31e616eda44da8f406ed01f3fc3c72c76e8ceb80c1dff733f8efcaa2e2e18132f6
+DIST gdal-3.0.2.tar.gz 14348856 BLAKE2B 
a52b3c5f1177b85ca991fd5dd27e4238a6ff066fa28842ffbddea8617a3f897d9525035a1cf9237365dbc4657037b3eb0a740cd0e65fe4c83b0c76ffe23c0e56
 SHA512 
eb35e28106f2f422fd5021261ef44864574f6a6be23e679cc5ae44be910f978769fc24fa15367ad4058fb3170cdd2985a6c4caedc3510dde8a6d163091cf3ab0

diff --git a/sci-libs/gdal/files/gdal-3.0.2-complete.patch 
b/sci-libs/gdal/files/gdal-3.0.2-complete.patch
new file mode 100644
index 000..5d6716c7280
--- /dev/null
+++ b/sci-libs/gdal/files/gdal-3.0.2-complete.patch
@@ -0,0 +1,84 @@
+diff --git a/GDALmake.opt.in b/GDALmake.opt.in
+index fd8e8f374d..655c004c56 100644
+--- a/GDALmake.opt.in
 b/GDALmake.opt.in
+@@ -63,6 +63,7 @@ INST_INCLUDE =   @includedir@
+ INST_DATA =   @datadir@
+ INST_LIB  =   @libdir@
+ INST_BIN  =   @bindir@
++INST_BASH_COMPLETION  =   @bashcompdir@
+ INST_PYMOD  =   @pymoddir@
+ INST_DOCS =   @exec_prefix@/doc
+ INST_MAN  =   @mandir@
+diff --git a/GNUmakefile b/GNUmakefile
+index 92467d6cf6..6d5e7d9fc0 100644
+--- a/GNUmakefile
 b/GNUmakefile
+@@ -229,7 +229,9 @@ endif
+ ifneq ($(BINDINGS),)
+   (cd swig; $(MAKE) install)
+ endif
++ifdef INST_BASH_COMPLETION
+   (cd scripts; $(MAKE) install)
++endif
+   for f in LICENSE.TXT data/*.* ; do $(INSTALL_DATA) $$f 
$(DESTDIR)$(INST_DATA) ; done
+   $(LIBTOOL_FINISH) $(DESTDIR)$(INST_LIB)
+   $(INSTALL_DIR) $(DESTDIR)$(INST_LIB)/pkgconfig
+diff --git a/configure.ac b/configure.ac
+index 93ddca84d9..5d0e7ab8be 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1187,6 +1187,24 @@ if test "$am_func_iconv" = "yes"; then
+ AC_DEFINE_UNQUOTED(ICONV_CPP_CONST,$ICONV_CPP_CONST, [For.cpp files, 
define as const if the declaration of iconv() needs const.])
+ fi
+ 
++dnl 
---
++dnl Bash completions
++dnl 
---
++
++AC_ARG_WITH([bash-completion],
++  AS_HELP_STRING([--with-bash-completion[=ARG]],
++[Install Bash completions (ARG=yes or path)]),,)
++
++if test "x$with_bash_completion" = "xno" -o "x$with_bash_completion" = "x"; 
then
++  AC_MSG_NOTICE([Bash completions not requested])
++elif test "x$with_bash_completion" = "xyes"; then
++  PKG_CHECK_VAR(bashcompdir, [bash-completion], [completionsdir], ,
++bashcompdir="${sysconfdir}/bash_completion.d")
++  AC_SUBST(bashcompdir)
++else
++  AC_SUBST(bashcompdir, $with_bash_completion)
++fi
++
+ dnl 
---
+ dnl PROJ.6 related stuff
+ dnl 
---
+diff --git a/scripts/GNUmakefile b/scripts/GNUmakefile
+index 8f039e469a..511fbb499c 100644
+--- a/scripts/GNUmakefile
 b/scripts/GNUmakefile
+@@ -1,10 +1,20 @@
+ include  ../GDALmake.opt
+ 
++PROGRAMS := gdal2tiles.py gdal2xyz.py gdaladdo gdalbuildvrt gdal_calc.py \
++gdalchksum.py gdalcompare.py gdal-config gdal_contour gdaldem \
++gdal_edit.py gdalenhance gdal_fillnodata.py gdal_grid \
++gdalident.py gdalimport.py gdallocationinfo gdalmanage \
++gdal_merge.py gdalmove.py gdal_polygonize.py gdal_proximity.py \
++gdal_rasterize gdal_retile.py gdalserver gda

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/

2020-01-29 Thread Andreas Sturmlechner
commit: a5e7a7223e0556cdfd77086755389ecf1f2ad1ca
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 21:26:50 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 21:32:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5e7a722

sci-libs/gdal: local HTML_DOCS, some slot ops

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

 sci-libs/gdal/gdal-3.0.2.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sci-libs/gdal/gdal-3.0.2.ebuild b/sci-libs/gdal/gdal-3.0.2.ebuild
index bfeb01ef6ac..bc202255ebd 100644
--- a/sci-libs/gdal/gdal-3.0.2.ebuild
+++ b/sci-libs/gdal/gdal-3.0.2.ebuild
@@ -41,11 +41,11 @@ DEPEND="
dev-libs/expat
dev-libs/json-c:=
dev-libs/libpcre
-   dev-libs/libxml2:=
-   media-libs/tiff:0=
+   dev-libs/libxml2:2
+   media-libs/tiff
>=sci-libs/libgeotiff-1.5.1-r1:=
-   >=sci-libs/proj-6.0.0
-   sys-libs/zlib:=[minizip(+)]
+   >=sci-libs/proj-6.0.0:=
+   sys-libs/zlib[minizip(+)]
armadillo? ( sci-libs/armadillo:=[lapack] )
curl? ( net-misc/curl )
fits? ( sci-libs/cfitsio:= )
@@ -267,7 +267,7 @@ src_compile() {
 
 src_install() {
local DOCS=( NEWS )
-   use doc && HTML_DOCS=( html/. )
+   use doc && local HTML_DOCS=( html/. )
 
default
 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/

2020-01-29 Thread Andreas Sturmlechner
commit: 9e3b902b0ad374efaeb3714d43d2adaae966d739
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 29 21:32:07 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 29 21:32:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e3b902b

sci-libs/gdal: Drop 2.4.1-r2

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

 sci-libs/gdal/gdal-2.4.1-r2.ebuild | 322 -
 1 file changed, 322 deletions(-)

diff --git a/sci-libs/gdal/gdal-2.4.1-r2.ebuild 
b/sci-libs/gdal/gdal-2.4.1-r2.ebuild
deleted file mode 100644
index ef434fe5b01..000
--- a/sci-libs/gdal/gdal-2.4.1-r2.ebuild
+++ /dev/null
@@ -1,322 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-GENTOO_DEPEND_ON_PERL="no"
-PYTHON_COMPAT=( python3_{6,7,8} )
-DISTUTILS_OPTIONAL=1
-inherit autotools perl-module distutils-r1 flag-o-matic java-pkg-opt-2 
toolchain-funcs
-
-DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
-HOMEPAGE="https://gdal.org/";
-SRC_URI="https://download.osgeo.org/${PN}/${PV}/${P}.tar.gz";
-
-SLOT="0/2.3"
-LICENSE="BSD Info-ZIP MIT"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
-IUSE="armadillo +aux-xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k lzma mdb mysql netcdf odbc ogdi opencl oracle pdf perl png postgres 
python spatialite sqlite threads webp xls zstd"
-
-REQUIRED_USE="
-   mdb? ( java )
-   python? ( ${PYTHON_REQUIRED_USE} )
-   spatialite? ( sqlite )
-"
-
-BDEPEND="
-   doc? ( app-doc/doxygen )
-   java? ( >=virtual/jdk-1.7:* )
-   perl? ( dev-lang/swig:0 )
-   python? (
-   dev-lang/swig:0
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   )"
-
-DEPEND="
-   dev-libs/expat
-   dev-libs/json-c:=
-   dev-libs/libpcre
-   dev-libs/libxml2:=
-   media-libs/tiff:0=
-   sci-libs/libgeotiff:=
-   sys-libs/zlib:=[minizip(+)]
-   armadillo? ( sci-libs/armadillo:=[lapack] )
-   curl? ( net-misc/curl )
-   fits? ( sci-libs/cfitsio:= )
-   geos? ( >=sci-libs/geos-2.2.1 )
-   gif? ( media-libs/giflib:= )
-   gml? ( >=dev-libs/xerces-c-3.1 )
-   hdf5? ( >=sci-libs/hdf5-1.6.4:=[szip] )
-   jpeg? ( virtual/jpeg:0= )
-   jpeg2k? ( media-libs/openjpeg:2= )
-   lzma? ( || (
-   app-arch/xz-utils
-   app-arch/lzma
-   ) )
-   mdb? ( dev-java/jackcess:1 )
-   mysql? ( virtual/mysql )
-   netcdf? ( sci-libs/netcdf:= )
-   odbc? ( dev-db/unixODBC )
-   ogdi? ( sci-libs/ogdi )
-   opencl? ( virtual/opencl )
-   oracle? ( dev-db/oracle-instantclient:= )
-   pdf? ( app-text/poppler:= )
-   perl? ( dev-lang/perl:= )
-   png? ( media-libs/libpng:0= )
-   postgres? ( >=dev-db/postgresql-8.4:= )
-   python? (
-   ${PYTHON_DEPS}
-   dev-python/numpy[${PYTHON_USEDEP}]
-   )
-   spatialite? ( dev-db/spatialite )
-   sqlite? ( dev-db/sqlite:3 )
-   webp? ( media-libs/libwebp:= )
-   xls? ( dev-libs/freexl )
-   zstd? ( app-arch/zstd:= )"
-
-RDEPEND="${DEPEND}
-   java? ( >=virtual/jre-1.7:* )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2.2.3-soname.patch"
-   "${FILESDIR}/${PN}-2.2.3-bashcomp-path.patch" # bug 641866
-   "${FILESDIR}/${PN}-2.3.0-curl.patch" # bug 659840
-   "${FILESDIR}/${P}-poppler-0.75.patch"
-   "${FILESDIR}/${P}-poppler-0.76.patch"
-   "${FILESDIR}/${P}-swig-4.patch" # bug 689110
-   "${FILESDIR}/${P}-poppler-0.82.patch"
-   "${FILESDIR}"/${P}-poppler-0.83-{1,2}.patch # bug 703790
-)
-
-src_prepare() {
-   # fix datadir and docdir placement
-   sed -e "s:@datadir@:@datadir@/gdal:" \
-   -e "s:@exec_prefix@/doc:@exec_prefix@/share/doc/${PF}/html:g" \
-   -i "${S}"/GDALmake.opt.in || die
-
-   # the second sed expression should fix bug 371075
-   sed -e "s:setup.py install:setup.py install --root=\$(DESTDIR):" \
-   -e "s:--prefix=\$(DESTDIR):--prefix=:" \
-   -i "${S}"/swig/python/GNUmakefile || die
-
-   # Fix spatialite/sqlite include issue
-   sed -e 's:spatialite/sqlite3.h:sqlite3.h:g' \
-   -i ogr/ogrsf_frmts/sqlite/ogr_sqlite.h || die
-
-   # Fix freexl configure check
-   sed -e 's:FREEXL_LIBS=missing):FREEXL_LIBS=missing,-lm):g' \
-   -i configure.ac || die
-
-   sed -e "s: /usr/: \"${EPREFIX}\"/usr/:g" \
-   -i configure.ac || die
-
-   sed -e 's:^ar:$(AR):g' \
-   -i ogr/ogrsf_frmts/sdts/install-libs.sh || die
-
-   # updated for newer swig (must specify the path to input files)
-   sed -e "s: gdal_array.i: ../include/gdal_array.i:" \
-   -e "s:\$(DESTDIR)\$(prefix):\$(DEST

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

2020-01-29 Thread Bernard Cafarelli
commit: fb5b26d018a97862abb5d839627d773797bc0458
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 29 21:42:44 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 29 21:43:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5b26d0

net-misc/dibbler: ebuild enhancements, add resolvconf support

EAPI bump, use new eclass for README, use keepdir for /var/lib/dibbler

Closes: https://bugs.gentoo.org/670516
Closes: https://bugs.gentoo.org/693874
Closes: https://bugs.gentoo.org/706808
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 net-misc/dibbler/dibbler-1.0.1-r1.ebuild | 61 
 net-misc/dibbler/metadata.xml|  3 ++
 2 files changed, 64 insertions(+)

diff --git a/net-misc/dibbler/dibbler-1.0.1-r1.ebuild 
b/net-misc/dibbler/dibbler-1.0.1-r1.ebuild
new file mode 100644
index 000..bf028c2ee5e
--- /dev/null
+++ b/net-misc/dibbler/dibbler-1.0.1-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Portable DHCPv6 implementation (server, client and relay)"
+HOMEPAGE="http://klub.com.pl/dhcpv6/";
+SRC_URI="http://klub.com.pl/dhcpv6/dibbler/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~x86"
+IUSE="doc resolvconf"
+
+RDEPEND="virtual/resolvconf"
+DEPEND="${RDEPEND}
+   doc? (
+   || (
+   dev-texlive/texlive-latexextra
+   dev-tex/floatflt
+   )
+   )"
+
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
+DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or 
relay.conf
+to suit your needs. They are stored in /etc/dibbler"
+
+src_configure() {
+   econf $(use_enable resolvconf)
+}
+
+src_compile() {
+   default
+   # devel documentation is broken and users should consult the online 
version
+   # http://klub.com.pl/dhcpv6/doxygen/
+   use doc && emake -C doc/ user
+}
+
+src_install() {
+   default
+   readme.gentoo_create_doc
+
+   dosbin dibbler-{client,relay,server}
+   doman doc/man/*.8
+
+   insinto /etc/dibbler
+   doins doc/examples/*.conf
+   keepdir /var/lib/dibbler
+
+   dodoc AUTHORS CHANGELOG RELNOTES TODO
+   use doc && dodoc doc/dibbler-user.pdf
+
+   doinitd "${FILESDIR}"/dibbler-{client,relay,server}
+   systemd_dounit "${FILESDIR}"/dibbler-client.service
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+}

diff --git a/net-misc/dibbler/metadata.xml b/net-misc/dibbler/metadata.xml
index 7d273a80ff6..d88cf30d7ac 100644
--- a/net-misc/dibbler/metadata.xml
+++ b/net-misc/dibbler/metadata.xml
@@ -5,4 +5,7 @@
voyag...@gentoo.org
Bernard Cafarelli

+   
+   Use resolvconf to handle 
/etc/resolv.conf updates
+   
 



  1   2   >