[gentoo-commits] repo/gentoo:master commit in: profiles/, sys-apps/modutils/files/, sys-apps/modutils/

2020-09-07 Thread Michał Górny
commit: 7e69b0876ef077dfed37d5593e2d7e9fdaf7e240
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 06:15:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 06:17:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e69b087

sys-apps/modutils: Remove last-rited pkg

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

 profiles/package.mask  |   1 -
 sys-apps/modutils/Manifest |   1 -
 sys-apps/modutils/files/modutils-2.4.27-flex.patch |  37 ---
 sys-apps/modutils/files/modutils-2.4.27-gcc.patch  | 280 -
 .../files/modutils-2.4.27-no-nested-function.patch |  43 
 sys-apps/modutils/metadata.xml |   8 -
 sys-apps/modutils/modutils-2.4.27-r2.ebuild|  35 ---
 7 files changed, 405 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index f05fd6fe818..7e8c31948a7 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -569,7 +569,6 @@ dev-vcs/git-bz
 # modutils is obsolete and does not build.
 # No consumers in the tree.
 # Removal in 30 days.
-sys-apps/modutils
 virtual/modutils
 
 # Hans de Graaff  (2020-08-07)

diff --git a/sys-apps/modutils/Manifest b/sys-apps/modutils/Manifest
deleted file mode 100644
index c6a8acbfedc..000
--- a/sys-apps/modutils/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST modutils-2.4.27.tar.bz2 234963 BLAKE2B 
bc5d91554906d15c258bf27f9b3f28bcc1fdc13413ebcece0f763d28d70f61cc27243fc20eb72e2f28d90cac8f19fccdfd633ea978a0f6c809d10eaea83c24d1
 SHA512 
5a638ea757f9d2cd7e91a8711eadfc6c723ca3b75757363620c8128772b9c00ddeb46af853711ce4c845096ad322a1dd2e8429be3d2e0a371ca93b1c81aa089d

diff --git a/sys-apps/modutils/files/modutils-2.4.27-flex.patch 
b/sys-apps/modutils/files/modutils-2.4.27-flex.patch
deleted file mode 100644
index c07e929b8b4..000
--- a/sys-apps/modutils/files/modutils-2.4.27-flex.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Taken from Debian.
-
-Build with newer flex versions.
-
 modutils-2.4.27.0.orig/genksyms/lex.l
-+++ modutils-2.4.27.0/genksyms/lex.l
-@@ -130,6 +130,7 @@
- 
-   static int suppress_type_lookup, dont_want_brace_phrase;
-   static struct string_list *next_node;
-+  static int next_token = 0;
- 
-   int token, count = 0;
-   struct string_list *cur_node;
-@@ -144,7 +145,12 @@
- }
- 
- repeat:
--  token = yylex1();
-+  if (next_token != 0) {
-+token = next_token;
-+next_token = 0;
-+  }
-+  else
-+token = yylex1();
- 
-   if (token == 0)
- return 0;
-@@ -425,7 +431,7 @@
-   {
- /* Put back the token we just read so's we can find it again
-after registering the expression.  */
--unput(token);
-+next_token = token;
- 
- lexstate = ST_NORMAL;
- token = EXPRESSION_PHRASE;

diff --git a/sys-apps/modutils/files/modutils-2.4.27-gcc.patch 
b/sys-apps/modutils/files/modutils-2.4.27-gcc.patch
deleted file mode 100644
index e2d5a37e89f..000
--- a/sys-apps/modutils/files/modutils-2.4.27-gcc.patch
+++ /dev/null
@@ -1,280 +0,0 @@
-Fix building with newer gcc versions.
-
-Most changes taken from Debian.
-
 a/obj/obj_ia64.c
-+++ b/obj/obj_ia64.c
-@@ -127,6 +127,7 @@
-   return (*(bundle + 1) >> 23) & 0x1ff;
- 
- default:
-+  ;
- }
- return (-1);
- }
 a/depmod/depmod.c
-+++ b/depmod/depmod.c
-@@ -1133,7 +1133,7 @@
- 
-   for (ksym = ksyms; so_far < nksyms; ++so_far, ksym++) {
-   if (strncmp((char *)ksym->name, "GPLONLY_", 8) == 0)
--  ((char *)ksym->name) += 8;
-+  ksym->name = ((char *)ksym->name) + 8;
-   assert(n_syms < MAX_MAP_SYM);
-   symtab[n_syms++] = addsym((char *)ksym->name, mod, 
SYM_DEFINED, 0);
-   }
-@@ -1265,7 +1265,7 @@
-* error.  Use the error() routine but do not 
count
-* any errors.  Remove in 2.5.
-*/
--  int save_errors = errors;
-+  int save_errors = error_count;
-   if (!quiet && nberr == 0)
-   error("*** Unresolved symbols in %s",
- ptmod->name);
-@@ -1274,7 +1274,7 @@
-   nberr++;
-   if (flag_unresolved_error)
-   ret = 1;
--  errors = save_errors;
-+  error_count = save_errors;
-   }
-   }
-   verbose("%s\n", ptmod->name + skipchars);
-@@ -1675,6 +1675,6 @@
- #else
- int main(int argc, char **argv)
- {
--  return depmod_main(argc, argv) || errors;
-+  return depmod_main(argc, argv) || error_count;
- }
- #endif

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

2020-09-07 Thread Michał Górny
commit: 77016787000ea7ea2e672713ea025b12cd3db4be
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 06:13:56 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 06:17:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77016787

media-sound/jackbeat: Remove last-rited pkg

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

 media-sound/jackbeat/Manifest  |  1 -
 .../files/jackbeat-0.7.6-automagic-pulse.patch | 36 
 .../files/jackbeat-0.7.6-underlinking.patch| 17 
 media-sound/jackbeat/jackbeat-0.7.6.ebuild | 48 --
 media-sound/jackbeat/metadata.xml  |  8 
 profiles/package.mask  |  5 ---
 6 files changed, 115 deletions(-)

diff --git a/media-sound/jackbeat/Manifest b/media-sound/jackbeat/Manifest
deleted file mode 100644
index 7ab21526b4b..000
--- a/media-sound/jackbeat/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST jackbeat-0.7.6.tar.gz 455771 BLAKE2B 
0509ae815b72945313edf0db52661f65167f06c1fb3e31232f56c79595789f78669cdc453a2bebc2a408aedf569a256dc4372405f2f4e068977c6823c31673ca
 SHA512 
878cd545cd4d53b2e3ab6e4a8b60d81a94fba22cfaab3b694046b8d47d23ca5a87eaa31a242f76449a1ee647bc20b218563261ae37f5bfe291da2e31c63124bc

diff --git a/media-sound/jackbeat/files/jackbeat-0.7.6-automagic-pulse.patch 
b/media-sound/jackbeat/files/jackbeat-0.7.6-automagic-pulse.patch
deleted file mode 100644
index 5f1aca5d3a3..000
--- a/media-sound/jackbeat/files/jackbeat-0.7.6-automagic-pulse.patch
+++ /dev/null
@@ -1,36 +0,0 @@
 jackbeat-0.7.6/configure.ac.orig
-+++ jackbeat-0.7.6/configure.ac
-@@ -67,20 +67,25 @@
- AC_SUBST(JACK_LIBS)
- AM_CONDITIONAL(HAVE_JACK, [test "$have_jack" = "1"])
- 
--PKG_CHECK_MODULES(PULSE, libpulse-simple >= 0.9.10, [have_pulse=1], true)
--AC_SUBST(PULSE_CFLAGS)
--AC_SUBST(PULSE_LIBS)
--if test "$have_pulse" = "1"
-+AC_ARG_WITH([pulse], [AS_HELP_STRING([--without-pulse], [disable PulseAudio 
support])], [], [with_pulse=yes])
-+
-+if test "x$with_pulse" != xno
- then
--  AC_DEFINE(HAVE_PULSE, [1], [PulseAudio support])
-+  PKG_CHECK_MODULES(PULSE, libpulse-simple >= 0.9.10, [have_pulse=1], true)
-+else
-+  AC_MSG_CHECKING([for PULSE])
-+  AC_MSG_RESULT([disabled])
- fi
--AM_CONDITIONAL(HAVE_PULSE, [test "$have_pulse" = "1"])
- 
--if test "$have_pulse" = "" && test "$is_linux" = "1"
-+if test "$have_pulse" != ""
- then
--  AC_MSG_WARN([Can't find libpulse, PulseAudio will not be supported])
-+  AC_DEFINE(HAVE_PULSE, [1], [PulseAudio support])
- fi
- 
-+AC_SUBST(PULSE_CFLAGS)
-+AC_SUBST(PULSE_LIBS)
-+AM_CONDITIONAL(HAVE_PULSE, [test "$have_pulse" = "1"])
-+
- PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.12, [have_pkg_gtk=true], true)
- 
- if test x$have_pkg_gtk = xtrue

diff --git a/media-sound/jackbeat/files/jackbeat-0.7.6-underlinking.patch 
b/media-sound/jackbeat/files/jackbeat-0.7.6-underlinking.patch
deleted file mode 100644
index 878929c3669..000
--- a/media-sound/jackbeat/files/jackbeat-0.7.6-underlinking.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-http://bugs.gentoo.org/508988
-
-jackbeat-builder.o:builder.c:function gui_builder_connect_func: error: 
undefined reference to 'g_module_symbol'
-jackbeat-builder.o:builder.c:function gui_builder_connect_func: error: 
undefined reference to 'g_module_supported'
-jackbeat-builder.o:builder.c:function gui_builder_connect_func: error: 
undefined reference to 'g_module_open'
-
 configure.ac
-+++ configure.ac
-@@ -86,7 +86,7 @@
- AC_SUBST(PULSE_LIBS)
- AM_CONDITIONAL(HAVE_PULSE, [test "$have_pulse" = "1"])
- 
--PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.12, [have_pkg_gtk=true], true)
-+PKG_CHECK_MODULES(GTK, gmodule-2.0 gtk+-2.0 >= 2.12, [have_pkg_gtk=true], 
true)
- 
- if test x$have_pkg_gtk = xtrue
- then

diff --git a/media-sound/jackbeat/jackbeat-0.7.6.ebuild 
b/media-sound/jackbeat/jackbeat-0.7.6.ebuild
deleted file mode 100644
index eb5ed5f99db..000
--- a/media-sound/jackbeat/jackbeat-0.7.6.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils
-
-DESCRIPTION="An audio sequencer for Linux"
-HOMEPAGE="http://www.samalyse.com/jackbeat/;
-SRC_URI="http://www.samalyse.com/${PN}/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="jack pulseaudio"
-
-RDEPEND="dev-libs/glib:2
-   >=dev-libs/libxml2-2.6:2
-   gnome-base/libglade:2.0
-   >=media-libs/liblo-0.22
-   >=media-libs/libsamplerate-0.1.2
-   >=media-libs/libsndfile-1.0.15
-   media-libs/alsa-lib
-   media-libs/portaudio
-   jack? ( >=media-sound/jack-audio-connection-kit-0.101 )
-   pulseaudio? ( >=media-sound/pulseaudio-0.9.10 )
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-2.12:2
-   x11-libs/pango"
-DEPEND="${RDEPEND}
-   

[gentoo-commits] repo/gentoo:master commit in: virtual/modutils/, profiles/, profiles/features/prefix/

2020-09-07 Thread Michał Górny
commit: 340f6f937c409f6fb7b8a0e95a69b63123303176
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 06:15:54 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 06:17:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=340f6f93

virtual/modutils: Remove last-rited pkg

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

 profiles/features/prefix/packages  |  1 -
 profiles/package.mask  |  6 --
 virtual/modutils/metadata.xml  | 11 ---
 virtual/modutils/modutils-0.ebuild | 10 --
 4 files changed, 28 deletions(-)

diff --git a/profiles/features/prefix/packages 
b/profiles/features/prefix/packages
index 3bc6e7c91b4..5dc0b1f7430 100644
--- a/profiles/features/prefix/packages
+++ b/profiles/features/prefix/packages
@@ -18,7 +18,6 @@
 -*sys-apps/kbd
 -*sys-fs/e2fsprogs
 -*virtual/dev-manager
--*virtual/modutils
 -*sys-apps/shadow
 
 # we don't want this either (as baselayout-prefix provides the functions.sh

diff --git a/profiles/package.mask b/profiles/package.mask
index 7e8c31948a7..681f364af2f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -565,12 +565,6 @@ dev-python/paver
 # Removal in 30 days.  Bug #735334.
 dev-vcs/git-bz
 
-# Mikle Kolyada  (2020-08-08)
-# modutils is obsolete and does not build.
-# No consumers in the tree.
-# Removal in 30 days.
-virtual/modutils
-
 # Hans de Graaff  (2020-08-07)
 # Slot with known security issues. Please use a newer slot
 # instead. Removal in 30 days. Bug #713478.

diff --git a/virtual/modutils/metadata.xml b/virtual/modutils/metadata.xml
deleted file mode 100644
index 79552732cd7..000
--- a/virtual/modutils/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   udev-b...@gentoo.org
-   
-   
-   base-sys...@gentoo.org
-   Gentoo Base System
-   
-   

diff --git a/virtual/modutils/modutils-0.ebuild 
b/virtual/modutils/modutils-0.ebuild
deleted file mode 100644
index bddeffa25a4..000
--- a/virtual/modutils/modutils-0.ebuild
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Virtual for utilities to manage Linux kernel modules"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
-
-RDEPEND="|| ( sys-apps/kmod[tools] sys-apps/modutils )"



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

2020-09-07 Thread Michał Górny
commit: 9ebf766a029933bde6e58c7056d0d4b5f655790c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 05:49:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 06:17:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ebf766a

dev-python/psycopg: Bump to 2.8.6

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

 dev-python/psycopg/Manifest |  1 +
 dev-python/psycopg/psycopg-2.8.6.ebuild | 65 +
 2 files changed, 66 insertions(+)

diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
index 4c2172a1c62..de875fad3b6 100644
--- a/dev-python/psycopg/Manifest
+++ b/dev-python/psycopg/Manifest
@@ -1,2 +1,3 @@
 DIST psycopg2-2.7.7.tar.gz 427474 BLAKE2B 
bc721b721693bc5f560a4829e84715d15e8c14523ada00109c7d7ba916c91928082fff286bd3c2ff5987c0436443128d1408ac9de073ad538b1e356fc73aaf8f
 SHA512 
032344957c00bf659ca5e46f54f827a6d79809e370d661cd349e2ce935873359bcc4f440b74c6f14658bf1cd9598b6d884abae507fd33db9e07b01fc87967fb0
 DIST psycopg2-2.8.5.tar.gz 380874 BLAKE2B 
843321175499bf00b080d3e58ce0d586e674585af4be5a08866b5dbb68256ff9232d3c25e2603a3a0920a6c91927eb9fbb5942acd429be5dab9177c65da0c32e
 SHA512 
d4cf9b94573b90fe56555ea5cf841aa0c4c806770f92f35a7ef2531999bb50f98eb1276e56f1540b5f2695e443bac7e9cb8bbfbd24ed82164f99663259d2da3e
+DIST psycopg2-2.8.6.tar.gz 383797 BLAKE2B 
da0e3f1e143c51c940ba1f51d3e457b492d880ab71267dacd4747444bc767711ccd6c2f54d9e10ce5ad8fae0c3206fb4b6199f267e9bbaf12eb654227f59c2b0
 SHA512 
1e1d5d8755c6d1a153d84210bf29902afafe853659d709e13abc6bc5772def13779d2394690af1c544384c9c607edc0fe5cf2763244fb346febf9a9e0032b45f

diff --git a/dev-python/psycopg/psycopg-2.8.6.ebuild 
b/dev-python/psycopg/psycopg-2.8.6.ebuild
new file mode 100644
index 000..eab79881aa4
--- /dev/null
+++ b/dev-python/psycopg/psycopg-2.8.6.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{6..9} )
+
+inherit distutils-r1 flag-o-matic
+
+MY_PN="${PN}2"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="PostgreSQL database adapter for Python"
+HOMEPAGE="https://www.psycopg.org https://pypi.org/project/psycopg2/;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="LGPL-3+"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="debug test"
+RESTRICT="!test? ( test )"
+
+# automagic dep on mxdatetime (from egenix-mx-base)
+# the package was removed, so let's just make sure it's gone
+RDEPEND=">=dev-db/postgresql-8.1:*"
+DEPEND="${RDEPEND}
+   test? ( >=dev-db/postgresql-8.1[server] )
+   !!dev-python/egenix-mx-base"
+
+python_compile() {
+   local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS}
+
+   ! python_is_python3 && append-flags -fno-strict-aliasing
+
+   distutils-r1_python_compile
+}
+
+python_prepare_all() {
+   if use debug; then
+   sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die
+   fi
+
+   distutils-r1_python_prepare_all
+}
+
+src_test() {
+   initdb -D "${T}"/pgsql || die
+   # TODO: random port
+   pg_ctl -w -D "${T}"/pgsql start \
+   -o "-h '' -k '${T}'" || die
+   createdb -h "${T}" psycopg2_test || die
+
+   local -x PSYCOPG2_TESTDB_HOST="${T}"
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${T}"/pgsql stop || die
+}
+
+python_test() {
+   "${EPYTHON}" -c "
+import tests
+tests.unittest.main(defaultTest='tests.test_suite')
+" --verbose || die "Tests fail with ${EPYTHON}"
+}



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

2020-09-07 Thread Michał Górny
commit: 8bf69c6ded032c0ed410d179481c5eefc9210d34
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 06:15:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 06:17:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bf69c6d

media-sound/tapiir: Remove last-rited pkg

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

 media-sound/tapiir/Manifest|   1 -
 .../tapiir/files/tapiir-0.7.2-ldflags.patch|  15 --
 media-sound/tapiir/files/tapiir-0.7.3-acinclude.m4 | 173 -
 media-sound/tapiir/metadata.xml|   8 -
 media-sound/tapiir/tapiir-0.7.3.ebuild |  41 -
 profiles/package.mask  |   5 -
 6 files changed, 243 deletions(-)

diff --git a/media-sound/tapiir/Manifest b/media-sound/tapiir/Manifest
deleted file mode 100644
index 0464996fb1c..000
--- a/media-sound/tapiir/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tapiir-0.7.3.tgz 168651 BLAKE2B 
28f8617fa19b5591d5d2bb4b10e36064907b8c5c7f195030ce87064ba5596a41ee98407a88e76835d3df5decec01fa72fdeaab473ae419717f7d876f085eeea7
 SHA512 
e9b935f775ddcaf9d6a2b963a1d002d400fc34220845122188b82f1d6075176afc195ae4320679d8990b57f71d0a44fb6ba0cee8a74cb732b92957596c13f4b3

diff --git a/media-sound/tapiir/files/tapiir-0.7.2-ldflags.patch 
b/media-sound/tapiir/files/tapiir-0.7.2-ldflags.patch
deleted file mode 100644
index 27b616e9b26..000
--- a/media-sound/tapiir/files/tapiir-0.7.2-ldflags.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: tapiir-0.7.2/configure
-===
 tapiir-0.7.2.orig/configure
-+++ tapiir-0.7.2/configure
-@@ -3667,8 +3667,8 @@ See \`config.log' for more details." >&2
-{ (exit 1); exit 1; }; }
- fi
- 
--CXXFLAGS=`fltk-config --cxxflags`
--LDFLAGS=`fltk-config --ldflags`
-+CXXFLAGS="$CXXFLAGS `fltk-config --cxxflags`"
-+LIBS="$LIBS `fltk-config --ldflags`"
- 
- 
- ac_ext=c

diff --git a/media-sound/tapiir/files/tapiir-0.7.3-acinclude.m4 
b/media-sound/tapiir/files/tapiir-0.7.3-acinclude.m4
deleted file mode 100644
index 9442a32c856..000
--- a/media-sound/tapiir/files/tapiir-0.7.3-acinclude.m4
+++ /dev/null
@@ -1,173 +0,0 @@
-AC_DEFUN([AM_PATH_ALSA],
-[dnl Save the original CFLAGS, LDFLAGS, and LIBS
-alsa_save_CFLAGS="$CFLAGS"
-alsa_save_LDFLAGS="$LDFLAGS"
-alsa_save_LIBS="$LIBS"
-alsa_found=yes
-
-dnl
-dnl Get the cflags and libraries for alsa
-dnl
-AC_ARG_WITH(alsa-prefix,
-[  --with-alsa-prefix=PFX  Prefix where Alsa library is installed(optional)],
-[alsa_prefix="$withval"], [alsa_prefix=""])
-
-AC_ARG_WITH(alsa-inc-prefix,
-[  --with-alsa-inc-prefix=PFX  Prefix where include libraries are (optional)],
-[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""])
-
-dnl FIXME: this is not yet implemented
-AC_ARG_ENABLE(alsatest,
-[  --disable-alsatest  Do not try to compile and run a test Alsa program],
-[enable_alsatest="$enableval"],
-[enable_alsatest=yes])
-
-dnl Add any special include directories
-AC_MSG_CHECKING(for ALSA CFLAGS)
-if test "$alsa_inc_prefix" != "" ; then
-   ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix"
-   CFLAGS="$CFLAGS -I$alsa_inc_prefix"
-fi
-AC_MSG_RESULT($ALSA_CFLAGS)
-
-dnl add any special lib dirs
-AC_MSG_CHECKING(for ALSA LDFLAGS)
-if test "$alsa_prefix" != "" ; then
-   ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix"
-   LDFLAGS="$LDFLAGS $ALSA_LIBS"
-fi
-
-dnl add the alsa library
-ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread"
-LIBS="$ALSA_LIBS $LIBS"
-AC_MSG_RESULT($ALSA_LIBS)
-
-dnl Check for a working version of libasound that is of the right version.
-min_alsa_version=ifelse([$1], ,0.1.1,$1)
-AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version)
-no_alsa=""
-alsa_min_major_version=`echo $min_alsa_version | \
-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
-alsa_min_minor_version=`echo $min_alsa_version | \
-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
-alsa_min_micro_version=`echo $min_alsa_version | \
-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
-
-AC_LANG_SAVE
-AC_LANG_C
-AC_TRY_COMPILE([
-#include 
-], [
-/* ensure backward compatibility */
-#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
-#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
-#endif
-#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
-#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
-#endif
-#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
-#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
-#endif
-
-#  if(SND_LIB_MAJOR > $alsa_min_major_version)
-  exit(0);
-#  else
-#if(SND_LIB_MAJOR < $alsa_min_major_version)
-#   error not present
-#endif
-
-#   if(SND_LIB_MINOR > $alsa_min_minor_version)
-  exit(0);
-#   else
-# if(SND_LIB_MINOR < $alsa_min_minor_version)
-#  error not present
-#  endif
-
-#  

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

2020-09-07 Thread Michał Górny
commit: f974ba0c4f5e8f22e06da075e8dcb180256b2a56
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 06:14:24 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 06:17:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f974ba0c

media-sound/specimen: Remove last-rited pkg

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

 media-sound/specimen/Manifest  |  1 -
 .../files/specimen-0.5.2_rc3-jackmidi.patch| 22 -
 .../files/specimen-0.5.2_rc3-underlinking.patch| 93 --
 media-sound/specimen/metadata.xml  | 13 ---
 media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild  | 55 -
 profiles/package.mask  |  5 --
 6 files changed, 189 deletions(-)

diff --git a/media-sound/specimen/Manifest b/media-sound/specimen/Manifest
deleted file mode 100644
index 9e3e700f5f2..000
--- a/media-sound/specimen/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST specimen-0.5.2-rc3.tar.gz 267948 BLAKE2B 
f7a19c80cfe03730a9eae56ad213ed79555bf0da80bafdc55b29a9316e2cf37e6178d0c452d13f6c6a3cdf700ec8e844c21b86dff32f4eeec305534cd00f8dd8
 SHA512 
0fbe298ef9652b8f8535fc4382ec71457c882a7fb05412cb1621e7aa566a293b71f4a2600eaaa4336093ec73b9dd6bb53371565ef0f02d7e400d497718c384f4

diff --git a/media-sound/specimen/files/specimen-0.5.2_rc3-jackmidi.patch 
b/media-sound/specimen/files/specimen-0.5.2_rc3-jackmidi.patch
deleted file mode 100644
index 2e3cf2ba912..000
--- a/media-sound/specimen/files/specimen-0.5.2_rc3-jackmidi.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: specimen-0.5.2-rc3/src/jackdriver.c
-===
 specimen-0.5.2-rc3.orig/src/jackdriver.c
-+++ specimen-0.5.2-rc3/src/jackdriver.c
-@@ -81,7 +81,7 @@ static int process (jack_nframes_t frame
-  jack_midi_event_t jack_midi_event;
-  jack_nframes_t event_index = 0;
- #ifdef HAVE_JACK_MIDI
-- jack_nframes_t event_count = jack_midi_get_event_count(midi_buf, frames);
-+ jack_nframes_t event_count = jack_midi_get_event_count(midi_buf);
- #endif /* HAVE_JACK_MIDI */
- #ifdef HAVE_OLD_JACK_MIDI
-  jack_nframes_t event_count = jack_midi_port_get_info(midi_buf, 
frames)->event_count;
-@@ -123,7 +123,7 @@ static int process (jack_nframes_t frame
-  /* send the JACK MIDI events to the mixer */
-  while (event_index < event_count) {
-
-- jack_midi_event_get(_midi_event, midi_buf,event_index, frames);
-+ jack_midi_event_get(_midi_event, midi_buf,event_index);
- midi_data = jack_midi_event.buffer;
- 
- /* TODO: handle 14-bit controllers and RPNs and NRPNs */

diff --git a/media-sound/specimen/files/specimen-0.5.2_rc3-underlinking.patch 
b/media-sound/specimen/files/specimen-0.5.2_rc3-underlinking.patch
deleted file mode 100644
index db0df85debd..000
--- a/media-sound/specimen/files/specimen-0.5.2_rc3-underlinking.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-* Remove hardcoded CFLAGS
-* Fix underlinking issues
-  - missing -lm linkage (sin)
-  - missing -pthread linkage
--> https://bugs.gentoo.org/show_bug.cgi?id=561562
-
 specimen-0.5.2-rc3/configure.ac
-+++ specimen-0.5.2-rc3/configure.ac
-@@ -1,10 +1,10 @@
- # -*- autoconf -*-
- # Process this file with autoconf to produce a configure script.
- 
--AC_INIT(configure.ac)
--AM_INIT_AUTOMAKE(specimen, 0.5.2-rc3)
--AM_CONFIG_HEADER(src/config.h)
--
-+AC_INIT([specimen], [0.5.2-rc3])
-+AC_CONFIG_HEADERS([src/config.h])
-+AM_INIT_AUTOMAKE
-+m4_include([acx_pthread.m4])
- 
- # compilation
- with_debug="no"
-@@ -13,9 +13,7 @@
- [enable debugging information, accepting a performance penalty 
(default is NO)])],
- [if test x$enable_debug = xyes; then with_debug=yes ; fi])
- 
--if test x$with_debug = xno; then
--CFLAGS="-O3"
--else
-+if test x$with_debug = xyes; then
- AC_DEFINE(DEBUG, 1, [[whether to display debugging output or not]])
- fi
- 
-@@ -48,13 +46,14 @@
- AC_FUNC_MALLOC
- AC_CHECK_FUNCS([floor gettimeofday pow strchr strdup])
- 
-+dnl Check for libm for sin()
-+AC_SEARCH_LIBS([sin], [m], [], [
-+  AC_MSG_ERROR([unable to find the sin() function])
-+])
-+
- # pthreads
- ACX_PTHREAD
- 
--SPECIMEN_CFLAGS="-Wall -Werror"
--AC_SUBST(SPECIMEN_CFLAGS)
--CFLAGS="$SPECIMEN_CFLAGS $CFLAGS" 
--
- config_error="no"
- 
- # gtk
-@@ -122,7 +121,8 @@
-   fi
- fi
- 
--CC="$PTHREAD_CC"
-+CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
-+LIBS="$LIBS $PTHREAD_CFLAGS"
- 
- # print build summary
- AC_CONFIG_COMMANDS_POST([
 specimen-0.5.2-rc3/src/gui/Makefile.am
-+++ specimen-0.5.2-rc3/src/gui/Makefile.am
-@@ -12,14 +12,14 @@
- paramselector.c paramselector.h patchlist.c patchlist.h midisection.c \
- midisection.h channelsection.c channelsection.h
- 
--INCLUDES = \
-+AM_CPPFLAGS = \
-   -l.. \
-   @GTK_CFLAGS@ \
-   @LIBGNOMECANVAS_CFLAGS@ \
-   @PHAT_CFLAGS@
- 
- if 

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

2020-09-07 Thread Agostino Sarubbo
commit: 3cb205dd3554bfda95068c0b514f1e5be900ab4f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Sep  7 06:07:09 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Sep  7 06:07:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb205dd

sys-kernel/git-sources: Automated version bump to 5.9_rc4.

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

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-5.9_rc4.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index a82d3f50628..a1861ddf084 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -2,3 +2,4 @@ DIST linux-5.8.tar.xz 114459324 BLAKE2B 
7bd97f8fa4527840754434414c07283e89731dc8
 DIST patch-5.9-rc1.patch 62103655 BLAKE2B 
7197c9a1811abdd708f74c06893b805d6d185bd73b0721eb5d90e03278cf8e773fa2482cd7535b07bf83e5f08e82e8f76415d2212e6cb6b53a93b8770b946a8e
 SHA512 
7f262f9208b84cd038cc6c879b1705e1cd2ff44ff9619163d581aff151e8548b47c75ea505020092826a27d235671e218df6bd85b1cdb733700bf25c7a81b263
 DIST patch-5.9-rc2.patch 62542182 BLAKE2B 
bc724f610ec553f36faae409bd89b82cc59f04587a9f1595e2cfaa93e17dc16dcf3d64eacbcb3e6ad2206ede32948c0759ac2839542e7be9c86d675948c73887
 SHA512 
848539231d9a6c6a85ed1af59b9140264a104200269815bd62613f30aa2ab5577f4e89b847adf55c758ec66c4dbee87a71a3e05f9dee157841f3de23ec71e860
 DIST patch-5.9-rc3.patch 63570996 BLAKE2B 
7bd2b596298f5cee0baf480544592d0964b473068003c5ee5e4cda064fed5265079b6039a879b1f2107ccb194500db4d201adcb055ec519981ef7a67d7f0
 SHA512 
82607e7c3038fe1031d175f4a964e752f90114428bdf3a577764247a33dff3a7ea2a6dba526d1e495a8eb3f55bf87d656e26ef6acf1f96b56c3bdae2542bf320
+DIST patch-5.9-rc4.patch 63952223 BLAKE2B 
13121098e6d93ed02b21e9dcef1fd2dc806b0b11958261e05feee2b2b3f946833fe266b1016c84fee7554278d64158f87da91779313b79fbf8407b2e8d2e92ca
 SHA512 
0b167737a08e413a1fb62a7656e7130029e997bbc733924b9e523cea95945126f1da6e7c90a2c5fd97f9621a4c4ddb27e5e462ac4c4b227e4f0492096c0f1201

diff --git a/sys-kernel/git-sources/git-sources-5.9_rc4.ebuild 
b/sys-kernel/git-sources/git-sources-5.9_rc4.ebuild
new file mode 100644
index 000..c239fcfa16c
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-5.9_rc4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="5.8"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.5"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2020-09-07 Thread Sergei Trofimovich
commit: 15469dab75391ba14495970d137dfcda0782026a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Sep  7 16:08:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep  7 17:39:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15469dab

app-misc/datefudge: stable 1.24 for sparc, bug #740582

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

 app-misc/datefudge/datefudge-1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/datefudge/datefudge-1.24.ebuild 
b/app-misc/datefudge/datefudge-1.24.ebuild
index 6bc9a627642..50eba3b84cf 100644
--- a/app-misc/datefudge/datefudge-1.24.ebuild
+++ b/app-misc/datefudge/datefudge-1.24.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 IUSE=""
 
 src_prepare() {



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

2020-09-07 Thread Mikle Kolyada
commit: d0d7e9722783bb04ff9da513fd6c9e9d4636af7f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 18:23:01 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 18:23:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d7e972

dev-libs/libgcrypt: Add myself as maintainer

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

 dev-libs/libgcrypt/metadata.xml | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/dev-libs/libgcrypt/metadata.xml b/dev-libs/libgcrypt/metadata.xml
index 9396326e88f..84083fcd894 100644
--- a/dev-libs/libgcrypt/metadata.xml
+++ b/dev-libs/libgcrypt/metadata.xml
@@ -1,11 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   
-   cpe:/a:gnupg:libgcrypt
-   
+  
+zlog...@gentoo.org
+Mikle Kolyada
+  
+  
+cpe:/a:gnupg:libgcrypt
+
 
-Enable O-flag mangling during build
+  Enable O-flag mangling during build
 
 



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

2020-09-07 Thread Brian Evans
commit: 3b4f275eb894e6566e37da27ee22daf2766333fc
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Sep  7 18:59:34 2020 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Sep  7 18:59:34 2020 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=3b4f275e

repositories: Clean up whitespace after tags

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

 files/overlays/repositories.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 6b95c00..e4e99a0 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -3269,7 +3269,7 @@
 https://github.com/rafaelmartins/octave-overlay
 
   rafaelmart...@gentoo.org
-   Rafael G. Martins
+  Rafael G. Martins
 
 https://github.com/rafaelmartins/octave-overlay.git
 git://github.com/rafaelmartins/octave-overlay.git
@@ -5081,8 +5081,7 @@
   
 voyageur
 Voyageur's random ebuilds stuff
-
-https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/
+
https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/
 
   voyag...@gentoo.org
 



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

2020-09-07 Thread Mikle Kolyada
commit: 98f8517250d9122d0cc93aa6ec619fd2e8345b35
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 18:59:54 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 19:01:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f85172

acct-user/lighttpd: Drop myself

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

 acct-user/lighttpd/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/acct-user/lighttpd/metadata.xml b/acct-user/lighttpd/metadata.xml
index 6698a4ab788..7a38bb90096 100644
--- a/acct-user/lighttpd/metadata.xml
+++ b/acct-user/lighttpd/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   zlog...@gentoo.org
-   Mikle Kolyada
-   
+   
 



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

2020-09-07 Thread Sam James
commit: 6f5b4bed26cf3c053faac772797282ef660cc642
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 18:55:33 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 19:01:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5b4bed

media-gfx/chafa: Stabilize 1.4.1 arm64, #740842

Signed-off-by: Sam James  gentoo.org>

 media-gfx/chafa/chafa-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/chafa/chafa-1.4.1.ebuild 
b/media-gfx/chafa/chafa-1.4.1.ebuild
index f2da605a65a..aecb3393c1b 100644
--- a/media-gfx/chafa/chafa-1.4.1.ebuild
+++ b/media-gfx/chafa/chafa-1.4.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://hpjansson.org/chafa/releases/${P}.tar.xz;
 
 LICENSE="LGPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="~amd64 arm64 x86"
 IUSE="static-libs +tools"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-apps/klaus/

2020-09-07 Thread Louis Sautier
commit: 4166eb0a3c9d8f622d15bab0d1d7e4b821e6f935
Author: Louis Sautier  gentoo  org>
AuthorDate: Mon Sep  7 23:38:15 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Mon Sep  7 23:42:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4166eb0a

www-apps/klaus: support Python 3.9, remove explicit setuptools dep.

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

 www-apps/klaus/klaus-1.5.2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/www-apps/klaus/klaus-1.5.2.ebuild 
b/www-apps/klaus/klaus-1.5.2.ebuild
index 351c5e29721..a72bfd91a80 100644
--- a/www-apps/klaus/klaus-1.5.2.ebuild
+++ b/www-apps/klaus/klaus-1.5.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 
@@ -25,7 +25,6 @@ RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
ctags? ( dev-python/python-ctags[${PYTHON_USEDEP}] )
 "
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 
 # The tests can only be run from a git repository
 # so they are not included in the source distributions



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

2020-09-07 Thread Louis Sautier
commit: 0f0c29f2883c43490f245cb1bdf940b1e700d576
Author: Louis Sautier  gentoo  org>
AuthorDate: Mon Sep  7 23:33:16 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Mon Sep  7 23:42:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f0c29f2

net-irc/znc: remove old

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

 net-irc/znc/Manifest |   1 -
 net-irc/znc/znc-1.7.5.ebuild | 183 ---
 2 files changed, 184 deletions(-)

diff --git a/net-irc/znc/Manifest b/net-irc/znc/Manifest
index b951a8b2b30..f9e311890fe 100644
--- a/net-irc/znc/Manifest
+++ b/net-irc/znc/Manifest
@@ -1,4 +1,3 @@
 DIST gtest-1.8.1.tar.gz 992298 BLAKE2B 
40ef3417fe424205c0617f07207347ce671ac87605f8ac9b8a333b0b06e3fbef9f556041ee324c18f957f3258ab9fe06704f31cdd038355fb7890180eb77ced1
 SHA512 
e6283c667558e1fd6e49fa96e52af0e415a3c8037afe1d28b7ff1ec4c2ef8f49beb70a9327b7fc77eb4052a58c4ccad8b5260ec90e4bceeac7a46ff59c4369d7
-DIST znc-1.7.5.tar.gz 2170656 BLAKE2B 
af5548bff1d9c6e740e668f467f52e8540a59bec9363fb4a17c594e1a9638417f75321b074e2aad6380769a594fc134543681928a7a33d00083ba9babc441a69
 SHA512 
f067503e5f45499c0acd687ef66266c4a65b80048e2a5835d3f9dfc4cd69b35890abdc3457726d7a7b25909f507349770eec43d9941bd62094c3527e64fbd825
 DIST znc-1.8.1.tar.gz 2161359 BLAKE2B 
5b9026156a62748659ae0496f9d799e7d1e0815358fa59f7538ca9d750b8f418fe8a57362b5b5bba40cfb00c2adc5fdc3eee0b56ebde50565c97d158296b827e
 SHA512 
87713ca05621806a399abc23f45671746578f6487561666704bb2ed1cd1863159a42ef4344eea95c9e7dc13d131b669eeabedda37e919d0bad6a05103ad80a16
 DIST znc-1.8.2.tar.gz 2101215 BLAKE2B 
7f0e5840fe57cc6b6549115b0fcf02e6afd3be0bf52e79da0a39bcc1463d983cbeb504bad30f3d2f7582f0295c7210d3c1eec40ec87bcc3546ba2d21a67cca9e
 SHA512 
e821647b50698c3a82fad039e69943e030bf644d8f8e82afa87c6c11da44761bceecddd510a7a956a1b487b1cca6ee46e8ac8818ea03127f0f1ff8f5d1a1a7f9

diff --git a/net-irc/znc/znc-1.7.5.ebuild b/net-irc/znc/znc-1.7.5.ebuild
deleted file mode 100644
index 6f190e2ca05..000
--- a/net-irc/znc/znc-1.7.5.ebuild
+++ /dev/null
@@ -1,183 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit cmake-utils python-single-r1 readme.gentoo-r1 systemd user
-
-GTEST_VER="1.8.1"
-GTEST_URL="https://github.com/google/googletest/archive/${GTEST_VER}.tar.gz -> 
gtest-${GTEST_VER}.tar.gz"
-DESCRIPTION="An advanced IRC Bouncer"
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI=${EGIT_REPO_URI:-"https://github.com/znc/znc.git"}
-   SRC_URI=""
-else
-   MY_PV=${PV/_/-}
-   MY_P=${PN}-${MY_PV}
-   SRC_URI="
-   https://znc.in/releases/archive/${MY_P}.tar.gz
-   test? ( ${GTEST_URL} )
-   "
-   KEYWORDS="amd64 arm ~arm64 x86"
-   S=${WORKDIR}/${MY_P}
-fi
-
-HOMEPAGE="https://znc.in;
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="+ipv6 +icu libressl nls perl python +ssl sasl tcl test +zlib"
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} icu )"
-
-RDEPEND="
-   icu? ( dev-libs/icu:= )
-   nls? ( dev-libs/boost:=[nls] )
-   perl? ( >=dev-lang/perl-5.10:= )
-   python? ( ${PYTHON_DEPS} )
-   sasl? ( >=dev-libs/cyrus-sasl-2 )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-   tcl? ( dev-lang/tcl:0= )
-   zlib? ( sys-libs/zlib:0= )
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   perl? ( >=dev-lang/swig-3.0.0 )
-   python? ( >=dev-lang/swig-3.0.0 )
-   test? ( dev-qt/qtnetwork:5 )
-"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.7.1-inttest-dir.patch )
-
-pkg_setup() {
-   if use python; then
-   python-single-r1_pkg_setup
-   fi
-
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
-   # The home directory was previously set to /dev/null
-   # This caused a bug with the systemd unit
-   # https://bugs.gentoo.org/521916
-   esethome ${PN} /var/lib/${PN}
-}
-
-src_prepare() {
-   # Let SWIG rebuild modperl/modpython to make user patching easier.
-   if [[ ${PV} != ** ]]; then
-   rm modules/modperl/generated.tar.gz || die
-   rm modules/modpython/generated.tar.gz || die
-   fi
-
-   sed -i -e "s|DZNC_BIN_DIR:path=|DZNC_BIN_DIR:path=${T}/inttest|" \
-   test/CMakeLists.txt || die
-
-   cmake-utils_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWANT_SYSTEMD=yes  # Causes -DSYSTEMD_DIR to be used.
-   -DSYSTEMD_DIR="$(systemd_get_systemunitdir)"
-   -DWANT_ICU="$(usex icu)"
-   -DWANT_IPV6="$(usex ipv6)"
-   -DWANT_I18N="$(usex nls)"
-   -DWANT_PERL="$(usex perl)"
-   

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

2020-09-07 Thread Louis Sautier
commit: 2a91a00495b34ad9d56cdcbd5c02fc4148883223
Author: Louis Sautier  gentoo  org>
AuthorDate: Mon Sep  7 23:30:17 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Mon Sep  7 23:42:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a91a004

dev-python/python-ctags: bump to 1.5.0, adds Python 3.9 support

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

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

diff --git a/dev-python/python-ctags/Manifest b/dev-python/python-ctags/Manifest
index 55a8b321c2b..fe31eb1ada1 100644
--- a/dev-python/python-ctags/Manifest
+++ b/dev-python/python-ctags/Manifest
@@ -1 +1,2 @@
 DIST python-ctags3-1.3.0.tar.gz 54615 BLAKE2B 
b334b834cefb01bdbf2c061d44ef6e38070c2b3e5da6de25beb09d24bc9d5891a6892a4b0c9e8fa8f8168bf344c10880ac987e263844cb3dd21303f8c2d105e6
 SHA512 
3ad4433d69bd159879ff4eface5150acc8c0f609cc7597885824056ce4ec148e55ad234dffa53f07977aa3ace24846e180adce5316a2950ac8d4ff58ad128b68
+DIST python-ctags3-1.5.0.tar.gz 59091 BLAKE2B 
303b061e7e660c1ed08c52fa76e4a96e288c6359167006a112de2262eff8c6bb564cb5c5ed310e091a3e88c5d5494e883020e7aa3ed900dc9a316cc8a9f597e8
 SHA512 
a5f1e2ff49abf9cf471a0139c1d2e1c4f836557386f394a96e67692d6153c60717df16fc7dbf832f69182270842fdc550f77194855111534c3b71b81ac94e483

diff --git a/dev-python/python-ctags/python-ctags-1.5.0.ebuild 
b/dev-python/python-ctags/python-ctags-1.5.0.ebuild
new file mode 100644
index 000..ad9ef15a077
--- /dev/null
+++ b/dev-python/python-ctags/python-ctags-1.5.0.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=( pypy3 python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+MY_PN="${PN}3"
+DESCRIPTION="Exuberant Ctags indexing python bindings"
+HOMEPAGE="https://github.com/jonashaag/python-ctags3;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-util/ctags:="
+
+distutils_enable_tests setup.py



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

2020-09-07 Thread Zac Medico
commit: 03ae0d95797f68cf86748ae3da184f3018e8c64c
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Sep  1 02:49:50 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Sep  8 00:17:54 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=03ae0d95

emerge --search: auto-detect regular expressions (bug 737480)

Automatically detect regular expressions when the search string
contains any of these regular expression characters or character
sequences:

  ^ $ * [ ] { } | ? .+

This simplifies usage, so that users no longer have to remember
to prefix regular expressions with the % character. The new
behavior can be disabled by --regex-search-auto=n, in case the
regular expressions interpretation causes some kind of problem.

Note that fuzzy search and regular expression search are
mutually exclusive, and fuzzy search remains the default for
search strings that do not contain any regular expression
characters.

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

 lib/_emerge/actions.py |  1 +
 lib/_emerge/main.py|  6 ++
 lib/_emerge/search.py  | 12 +++-
 man/emerge.1   | 12 +++-
 4 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py
index a4ecfe43d..f57269817 100644
--- a/lib/_emerge/actions.py
+++ b/lib/_emerge/actions.py
@@ -2036,6 +2036,7 @@ def action_search(root_config, myopts, myfiles, spinner):
search_index=myopts.get("--search-index", "y") != "n",
search_similarity=myopts.get("--search-similarity"),
fuzzy=myopts.get("--fuzzy-search") != "n",
+   regex_auto=myopts.get("--regex-search-auto") != "n",
)
for mysearch in myfiles:
try:

diff --git a/lib/_emerge/main.py b/lib/_emerge/main.py
index 975738762..5075f7f57 100644
--- a/lib/_emerge/main.py
+++ b/lib/_emerge/main.py
@@ -709,6 +709,12 @@ def parse_opts(tmpcmdline, silent=False):
"action" : "store"
},
 
+   "--regex-search-auto": {
+   "help"   : "Enable or disable automatic regular 
expression detection for search actions",
+   "choices": y_or_n,
+   "default": "y",
+   },
+
"--root": {
 "help"   : "specify the target root filesystem for merging 
packages",
 "action" : "store"

diff --git a/lib/_emerge/search.py b/lib/_emerge/search.py
index a59191c1a..61eed0827 100644
--- a/lib/_emerge/search.py
+++ b/lib/_emerge/search.py
@@ -28,7 +28,7 @@ class search:
#
def __init__(self, root_config, spinner, searchdesc,
verbose, usepkg, usepkgonly, search_index=True,
-   search_similarity=None, fuzzy=True):
+   search_similarity=None, fuzzy=True, regex_auto=False):
"""Searches the available and installed packages for the 
supplied search key.
The list of available and installed packages is created at 
object instantiation.
This makes successive searches faster."""
@@ -42,6 +42,7 @@ class search:
self.spinner = None
self.root_config = root_config
self.setconfig = root_config.setconfig
+   self.regex_auto = regex_auto
self.fuzzy = fuzzy
self.search_similarity = (80 if search_similarity is None
else search_similarity)
@@ -259,6 +260,15 @@ class search:
if '/' in self.searchkey:
match_category = 1
fuzzy = False
+
+   if self.regex_auto and not regexsearch and 
re.search(r'[\^\$\*\[\]\{\}\|\?]|\.\+', self.searchkey) is not None:
+   try:
+   re.compile(self.searchkey, re.I)
+   except Exception:
+   pass
+   else:
+   regexsearch = True
+
if regexsearch:
self.searchre=re.compile(self.searchkey,re.I)
else:

diff --git a/man/emerge.1 b/man/emerge.1
index fe7d05a21..c1bcd0220 100644
--- a/man/emerge.1
+++ b/man/emerge.1
@@ -229,7 +229,9 @@ explicitly discarded by running `emaint \-\-fix 
cleanresume` (see
 .BR \-\-search ", " \-s
 Searches for matches of the supplied string in the ebuild repository.
 By default emerge uses a case-insensitive simple search, but you can
-enable a regular expression search by prefixing the search string with %.
+enable a regular expression search by prefixing the search string with %
+(the % prefix can often be omitted if the
+\fB\-\-regex\-search\-auto\fR option is enabled).
 For example, \fBemerge \-\-search "%^kde"\fR searches for any package whose
 name starts with "kde"; \fBemerge 

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

2020-09-07 Thread Sam James
commit: cde8c50c91dcd2467248a87f8e003aa9f9ab452c
Author: Sam James  gentoo  org>
AuthorDate: Tue Sep  8 00:53:45 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Sep  8 00:53:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde8c50c

net-irc/znc: add subslot to 1.8.2

Plugins need a rebuild on every new version
of ZNC.

Acked-by: Louis Sautier  gentoo.org>
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 net-irc/znc/znc-1.8.2.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-irc/znc/znc-1.8.2.ebuild b/net-irc/znc/znc-1.8.2.ebuild
index fa6a8f89ce8..b70a1b5af26 100644
--- a/net-irc/znc/znc-1.8.2.ebuild
+++ b/net-irc/znc/znc-1.8.2.ebuild
@@ -28,7 +28,9 @@ fi
 
 HOMEPAGE="https://znc.in;
 LICENSE="Apache-2.0"
-SLOT="0"
+# "If you upgrade your ZNC version you must recompile all your modules."
+# - https://wiki.znc.in/Compiling_modules
+SLOT="0/${PV}"
 IUSE="+ipv6 +icu libressl nls perl python +ssl sasl tcl test +zlib"
 RESTRICT="!test? ( test )"
 



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

2020-09-07 Thread Sam James
commit: 6fb9c1df375d38913bdbea6036d7cad184cf6ee7
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 19:39:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 19:39:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb9c1df

mail-mta/postfix: Stabilize 3.5.6 arm, #740428

Signed-off-by: Sam James  gentoo.org>

 mail-mta/postfix/postfix-3.5.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/postfix-3.5.6.ebuild 
b/mail-mta/postfix/postfix-3.5.6.ebuild
index 645d512ad8d..2128e913c46 100644
--- a/mail-mta/postfix/postfix-3.5.6.ebuild
+++ b/mail-mta/postfix/postfix-3.5.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${MY_URI}/${MY_SRC}.tar.gz"
 
 LICENSE="|| ( IBM EPL-2.0 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE="+berkdb cdb dovecot-sasl +eai hardened ldap ldap-bind libressl lmdb 
memcached mbox mysql nis pam postgres sasl selinux sqlite ssl"
 
 DEPEND=">=dev-libs/libpcre-3.4



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

2020-09-07 Thread Alexys Jacob
commit: b534ff69127b6fc78359a7ac7a69a98b1ff46c3a
Author: Alexys Jacob  gentoo  org>
AuthorDate: Mon Sep  7 20:23:06 2020 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Sep  7 20:23:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b534ff69

x11-misc/py3status: version bump

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Alexys Jacob  gentoo.org>

 x11-misc/py3status/Manifest | 2 +-
 x11-misc/py3status/{py3status-3.28.ebuild => py3status-3.29.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/py3status/Manifest b/x11-misc/py3status/Manifest
index bcbd9f0a57a..8e0d6a86f69 100644
--- a/x11-misc/py3status/Manifest
+++ b/x11-misc/py3status/Manifest
@@ -1 +1 @@
-DIST py3status-3.28.tar.gz 403839 BLAKE2B 
bc41418d38d8a5d55e2af67c4b68993db69bfa40d5f047fc47bf3e5cda28f56b808b8687ab5081c666398660b837f8c944138094112457eaa0c230cd1f1fa28e
 SHA512 
19447a8afeeb39371551337fbfa62b6cd8b1cb8a4188b2bc18d1a7ec849126d3e8f46fb2cf4cefa2960ed38ff09a0cad7233bfe5711bba5efaeed7cd5da6207c
+DIST py3status-3.29.tar.gz 406915 BLAKE2B 
9b24dd25d71c3d511af943bb97db24beb0f5e9e9ecb8879fa450e72c571df221ceba0eda3ee53c41a25130944051a3b932337a96ae0c685042d152dc20caf24c
 SHA512 
7b87ff265450abf8be77886100c734799604bc0abd69e6d6c17af9cd2edd0647768c661c6b2dc165447e85e982cdbbf636c06e3484a60b2d9474e85fcd444612

diff --git a/x11-misc/py3status/py3status-3.28.ebuild 
b/x11-misc/py3status/py3status-3.29.ebuild
similarity index 100%
rename from x11-misc/py3status/py3status-3.28.ebuild
rename to x11-misc/py3status/py3status-3.29.ebuild



[gentoo-commits] repo/gentoo:master commit in: sys-devel/bison/

2020-09-07 Thread Lars Wendler
commit: 21d9b2059a69ae9c9db070dc030b9d7dacc1c795
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 20:46:31 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 20:51:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d9b205

sys-devel/bison: Removed old

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 sys-devel/bison/Manifest |  2 -
 sys-devel/bison/bison-3.7.ebuild | 92 
 2 files changed, 94 deletions(-)

diff --git a/sys-devel/bison/Manifest b/sys-devel/bison/Manifest
index a91534b2c76..8fe2ad7b3d5 100644
--- a/sys-devel/bison/Manifest
+++ b/sys-devel/bison/Manifest
@@ -2,9 +2,7 @@ DIST bison-3.1-patches-1.0.tar.xz 7268 BLAKE2B 
9195c00be1706664762598926913cd8fc
 DIST bison-3.1.tar.xz 1990536 BLAKE2B 
6223642f2934927ca118410e2655f7c677bb1d3d981875ca2224f5aa344a43efbbbea34e79dff94ea489853e505b1d7f5920f4d159d1464ce61d8956ca0401ad
 SHA512 
2a8e217ffb55ed5b1fcc989377ac348a066e62b8a4b0b0da40c3c7202f3ea487b2aab6a704a10b48d2d17673be0e22f6ff1be91fc05c4e0a57969b42a59d0152
 DIST bison-3.6.3-patches-01.tar.xz 10316 BLAKE2B 
a99e12e69334371316e5841f8c86ed716a9fed108800a33099e99f8fe432374259bf5477188d054b6d474bc905f821939691fc97f0c891d17a79968466f0c7e3
 SHA512 
5c97a183232ad31f231580193ed1853aba18010703b0c22105eaf6834241c9828d180eaafbc5d1da751b2d45a7e8195493e10ca2321b35680b2b3cd4ec39e3ca
 DIST bison-3.6.4.tar.xz 2472456 BLAKE2B 
d2efe7ff1a349efe5a8c79eb69aa296dbc7eb9fde549afc91986460f27976e033dd793e904dda2f919f11e011ff6c458805288dff4939dcd1ee20e2b316cb9e6
 SHA512 
041cd87f4ca6b012031719a49aa81e62d3c0817c6364289732e6a3cb9a0762498760e0f2ce84c03ca9e9b74eb74bdffd1b8b86d2b4a6e4a0d8c8a4b864b672dc
-DIST bison-3.7-patches-01.tar.xz 10468 BLAKE2B 
62d422fa0654d6d3e9f829edcfb9a6f0eb5ae60997aa9362bbbe280fc95d86114ff9399586acfa94f2a52564b4f745ca778ce016f102e2981caefb96575f56e8
 SHA512 
2703963df71871b6e4973d79f69ee95aa6cc22c342d852f136b16d636f90285f6921064616db66f10f29dbfce884a23f79c005e7ceaaf9ccd9a2e1c749b337ac
 DIST bison-3.7.1-patches-01.tar.xz 11072 BLAKE2B 
e68dc42fdeebd9c530d04ba906fb49dec3f2df0a68186a54de9671564ee47f9adc9ca4cb167ddaa3e15458dd339570191b2fe6debb33fdf47f29d1a7aa8d868f
 SHA512 
d167f5278cf3136a96450b2bd664b2563c94205d7c82298951b0b08a6b4b0733101e25636f905c8d4033b5e6d1aaaddab70b7772c28e8c1d6c31a05e23df7ce5
 DIST bison-3.7.1.tar.xz 2605940 BLAKE2B 
a00e8af6a74100154d2dad1597c901f8473dbdcc57826eff947878c3568bfc9070d92857b3b3e349302e9fcfd67eb3287e7a04f6fcff3b897a6fecf43c1cd03d
 SHA512 
9c4097b6ff26e819be14a9d4ef39f6f259c04627cd305e11da8e67897a369b2bba5ce96bf19fa5f6088670e90a9c5bc5c45172f8f482252aeec546b285dd0797
 DIST bison-3.7.2-patches-02.tar.xz 99664 BLAKE2B 
8f719265d16b42f398beef9ff9fde01c5f86d301421f64f8ac801cbc55af8d1258e1ae0f90e67b4de7bb8b25e99480acacc73815534f25e116f2f2b920ee9697
 SHA512 
bd99762a1f244755499efb400d2bb4399a5d21126eff253533b7f1320c8a4cd8513485cd176c90932029d720369182eb595ff36fa32ccaaa8d7048e46921e79b
 DIST bison-3.7.2.tar.xz 2613404 BLAKE2B 
7543c7df4496fbe6b9ab18ffb643a0d58eb63d0d1e91d67eaa6f9a7c805180c1cef02a640fd41eec228782a6758f82058dc4a45c13e3730b740883efad77498d
 SHA512 
42eb501c246e9b4b24cb212c8da538b11b1944b997314105e67f88f22d73b7d00cf19b21e086aa7523630a2a24e1fd70a89d85a7e3003783990e08d31f711a27
-DIST bison-3.7.tar.xz 2601220 BLAKE2B 
3ac140048baacebce47a9090e916815e6c30d9c8b0f9fe61a3724b46fbfddf5b8bf94be2bc533a718d84bdc8c73d579b5e43d576efd488a6f5b52424883bc5cf
 SHA512 
f6c8f1522849b65046844bd51953b4f1e2c32818d8bca0b8e4a1035e72d6731d8a66bc307d4b20d1a576cac6cbe10aa1c66829112327f37938ace165e154ba6a

diff --git a/sys-devel/bison/bison-3.7.ebuild b/sys-devel/bison/bison-3.7.ebuild
deleted file mode 100644
index aa517bbd9c6..000
--- a/sys-devel/bison/bison-3.7.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-PATCH_TAR="${PN}-3.7-patches-01.tar.xz"
-
-DESCRIPTION="A general-purpose (yacc-compatible) parser generator"
-HOMEPAGE="https://www.gnu.org/software/bison/;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
-   mirror://gentoo/${PATCH_TAR}
-   https://dev.gentoo.org/~whissi/dist/bison/${PATCH_TAR}
-   https://dev.gentoo.org/~polynomial-c/dist/bison/${PATCH_TAR};
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
-IUSE="examples nls static test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=sys-devel/m4-1.4.16"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   sys-devel/flex
-   >=sys-devel/gettext-0.21
-   examples? ( dev-lang/perl )
-   test? ( dev-lang/perl )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) # ChangeLog-2012 
ChangeLog-1998 PACKAGING 

[gentoo-commits] repo/gentoo:master commit in: sys-devel/bison/

2020-09-07 Thread Lars Wendler
commit: b83990fef62d8b50fc1cc30aac7cbbdde9cdfa48
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 20:51:22 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 20:51:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b83990fe

sys-devel/bison: Moved sys-devel/gettext to (R)DEPEND.

Bug: https://bugs.gentoo.org/740754
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 sys-devel/bison/{bison-3.7.1.ebuild => bison-3.7.1-r1.ebuild} | 10 +++---
 sys-devel/bison/bison-3.7.2.ebuild| 10 +++---
 2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/sys-devel/bison/bison-3.7.1.ebuild 
b/sys-devel/bison/bison-3.7.1-r1.ebuild
similarity index 93%
rename from sys-devel/bison/bison-3.7.1.ebuild
rename to sys-devel/bison/bison-3.7.1-r1.ebuild
index cb5ef210384..dd9b0ff67f9 100644
--- a/sys-devel/bison/bison-3.7.1.ebuild
+++ b/sys-devel/bison/bison-3.7.1-r1.ebuild
@@ -20,11 +20,15 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips 
ppc ppc64 ~riscv s390 s
 IUSE="examples nls static test"
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=sys-devel/m4-1.4.16"
-DEPEND="${RDEPEND}"
+# gettext _IS_ required in RDEPEND because >=bison-3.7 links against
+# libtextstyle.so!!! (see bug #740754)
+DEPEND="
+   >=sys-devel/m4-1.4.16
+   >=sys-devel/gettext-0.21
+"
+RDEPEND="${DEPEND}"
 BDEPEND="
sys-devel/flex
-   >=sys-devel/gettext-0.21
examples? ( dev-lang/perl )
test? ( dev-lang/perl )
 "

diff --git a/sys-devel/bison/bison-3.7.2.ebuild 
b/sys-devel/bison/bison-3.7.2.ebuild
index 70829bde751..e23f6ca6bef 100644
--- a/sys-devel/bison/bison-3.7.2.ebuild
+++ b/sys-devel/bison/bison-3.7.2.ebuild
@@ -20,11 +20,15 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~riscv ~
 IUSE="examples nls static test"
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=sys-devel/m4-1.4.16"
-DEPEND="${RDEPEND}"
+# gettext _IS_ required in RDEPEND because >=bison-3.7 links against
+# libtextstyle.so!!! (see bug #740754)
+DEPEND="
+   >=sys-devel/m4-1.4.16
+   >=sys-devel/gettext-0.21
+"
+RDEPEND="${DEPEND}"
 BDEPEND="
sys-devel/flex
-   >=sys-devel/gettext-0.21
examples? ( dev-lang/perl )
test? ( dev-lang/perl )
 "



[gentoo-commits] repo/gentoo:master commit in: net-mail/pop-before-smtp/

2020-09-07 Thread Jonas Stein
commit: 6a3727f2123e5597bf6e95c796f0871dbc6ded45
Author: Jonas Stein  gentoo  org>
AuthorDate: Mon Sep  7 22:07:42 2020 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Mon Sep  7 22:07:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a3727f2

net-mail/pop-before-smtp: QA fix, shorten DESCRIPTION

Shortened DESCRIPTION

Package-Manager: Portage-3.0.5, Repoman-2.3.23
Signed-off-by: Jonas Stein  gentoo.org>

 net-mail/pop-before-smtp/pop-before-smtp-1.42.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-mail/pop-before-smtp/pop-before-smtp-1.42.ebuild 
b/net-mail/pop-before-smtp/pop-before-smtp-1.42.ebuild
index 4c233e12778..0bcf260b4cc 100644
--- a/net-mail/pop-before-smtp/pop-before-smtp-1.42.ebuild
+++ b/net-mail/pop-before-smtp/pop-before-smtp-1.42.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=4
 
-DESCRIPTION="a simple daemon to allow email relay control based on successful 
POP or IMAP logins"
+DESCRIPTION="Simple daemon to controll email relay based on successful POP or 
IMAP logins"
 HOMEPAGE="http://popbsmtp.sourceforge.net;
 SRC_URI="mirror://sourceforge/popbsmtp/${P}.tar.gz"
 



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

2020-09-07 Thread Sam James
commit: 2a89a8c0b44df34d90bf96ef6541b51bfd115914
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 22:22:18 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 22:22:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a89a8c0

media-libs/libmp4v2: security cleanup

Bug: https://bugs.gentoo.org/661582
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild | 50 
 1 file changed, 50 deletions(-)

diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild 
b/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild
deleted file mode 100644
index 58d839ef5f3..000
--- a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P=${P/lib}
-inherit libtool
-
-DESCRIPTION="Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard"
-HOMEPAGE="https://code.google.com/p/mp4v2/;
-SRC_URI="https://mp4v2.googlecode.com/files/${MY_P}.tar.bz2;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
-IUSE="static-libs test utils"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   sys-apps/sed
-   test? ( dev-util/dejagnu )
-   utils? ( sys-apps/help2man )
-"
-
-DOCS=( doc/{Authors,BuildSource,Documentation,ReleaseNotes,ToolGuide}.txt 
README )
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
-   "${FILESDIR}/${P}-gcc7.patch"
-   "${FILESDIR}/${P}-mp4tags-corruption.patch"
-   "${FILESDIR}/${P}-clang.patch"
-)
-
-src_prepare() {
-   default
-   elibtoolize
-}
-
-src_configure() {
-   econf \
-   --disable-gch \
-   $(use_enable utils util) \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}



[gentoo-commits] proj/portage:master commit in: lib/portage/sync/modules/rsync/

2020-09-07 Thread Zac Medico
commit: 051d75acf5e3fbca7c1083cb612e5f07a3a98919
Author: Frédéric Pierret (fepitre)  qubes-os  
org>
AuthorDate: Tue Aug  4 13:12:08 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep  7 22:49:53 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=051d75ac

rsync: ignore addrinfos with proxy settings

Not doing so makes getting addrinfos failing due to
"Temporary failure in name resolution" due to proxy settings.

An alternative to this solution would be to define a socks.setdefaultproxy
and passing socks.socksocket to socket.

Bug: https://bugs.gentoo.org/740904
See: https://github.com/gentoo/portage/pull/607
Signed-off-by: Frédéric Pierret (fepitre)  qubes-os.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/sync/modules/rsync/rsync.py | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/lib/portage/sync/modules/rsync/rsync.py 
b/lib/portage/sync/modules/rsync/rsync.py
index 88b36ab79..35d1461e4 100644
--- a/lib/portage/sync/modules/rsync/rsync.py
+++ b/lib/portage/sync/modules/rsync/rsync.py
@@ -230,15 +230,16 @@ class RsyncSync(NewBase):
addrinfos = None
uris = []
 
-   try:
-   addrinfos = getaddrinfo_validate(
-   socket.getaddrinfo(getaddrinfo_host, 
None,
-   family, socket.SOCK_STREAM))
-   except socket.error as e:
-   writemsg_level(
-   "!!! getaddrinfo failed for '%s': %s\n"
-   % (_unicode_decode(hostname), str(e)),
-   noiselevel=-1, level=logging.ERROR)
+   if 'RSYNC_PROXY' not in self.spawn_kwargs['env']:
+   try:
+   addrinfos = getaddrinfo_validate(
+   socket.getaddrinfo(
+   getaddrinfo_host, None, 
family, socket.SOCK_STREAM))
+   except socket.error as e:
+   writemsg_level(
+   "!!! getaddrinfo failed for 
'%s': %s\n"
+   % (_unicode_decode(hostname), 
str(e)),
+   noiselevel=-1, 
level=logging.ERROR)
 
if addrinfos:
 



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

2020-09-07 Thread Joonas Niilola
commit: b4c5aec97984fd56d7276ffb1b5b65133f154335
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Sep  7 18:17:10 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep  7 18:18:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4c5aec9

app-misc/screenie: remove old 1.30.0-r1

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

 app-misc/screenie/Manifest |  1 -
 .../screenie/files/screenie-CVE-2008-5371.patch| 26 --
 app-misc/screenie/screenie-1.30.0-r1.ebuild| 22 --
 3 files changed, 49 deletions(-)

diff --git a/app-misc/screenie/Manifest b/app-misc/screenie/Manifest
index bc81f2ead9c..cdf521af869 100644
--- a/app-misc/screenie/Manifest
+++ b/app-misc/screenie/Manifest
@@ -1,2 +1 @@
-DIST screenie-1.30.0.tar.bz2 10068 BLAKE2B 
49bbb8f81141c2b0707aab04e8a43f27e5ccd5c4241cf0e0e7ee3a7bd7944dc61c11f3a9ac5ae3040fecae1947a4271561e9b164b64512043916e3b39f25901c
 SHA512 
8068421aaa461df32bccbe72e23474b20ef3f761e78a3e520c1f9f19a383d9ad9fd0377e2cdf1c4f023ca570b172a40ebff63d3cb538b96d1e1706fe83d03fdd
 DIST screenie-20120406.tar.gz 3437 BLAKE2B 
354410d41e1aa9c6bcef3951f26aafcabf8e5af5ba4abd69627e62575127c1190abc78db4ee72552b02ad5cbcde0b6c910dfbb9191f2fd8444e57dff36d16701
 SHA512 
73e9c9cf53792c51785d45319f65559f5d8f1c97f8637d3c3262384eb1a3835f3ba380e4c9284858e163e8d2021938c2ef3ab50f2854d5f932e96847b9a4c153

diff --git a/app-misc/screenie/files/screenie-CVE-2008-5371.patch 
b/app-misc/screenie/files/screenie-CVE-2008-5371.patch
deleted file mode 100644
index 2bf8dbdc6b8..000
--- a/app-misc/screenie/files/screenie-CVE-2008-5371.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Patch for bug 250476 (CVE-2008-5371), courtesy of n...@debian.org.
-
-diff -u screenie-1.30.0/screenie screenie-1.30.0/screenie
 screenie-1.30.0/screenie
-+++ screenie-1.30.0/screenie
-@@ -19,7 +19,7 @@
- # Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- 
- #global settings
--TMPF=/tmp/.screenie.$$
-+TMPF=$(mktemp -t skreenie.XX || exit 1)
- ACTIVE_SCREENS="screen \-ls | awk '/tached/ { print \$1}' | sort"
- i=0
- e=0
-@@ -59,9 +59,9 @@
- esac
- 
- #cleanup temp files
--if test -f /tmp/.screenie*
-+if test -f $TMPF
-   then
--rm /tmp/.screenie* >/dev/null 2>&1   
-+rm $TMPF >/dev/null 2>&1   
- fi
- 
- while :

diff --git a/app-misc/screenie/screenie-1.30.0-r1.ebuild 
b/app-misc/screenie/screenie-1.30.0-r1.ebuild
deleted file mode 100644
index 4b3a0fa8a2e..000
--- a/app-misc/screenie/screenie-1.30.0-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="screen(1) frontend that is designed to be a session handler"
-HOMEPAGE="https://sourceforge.net/projects/screenie/;
-SRC_URI="http://pubwww.hsz-t.ch/~mgloor/data/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~ia64 sparc x86"
-IUSE=""
-
-RDEPEND="app-misc/screen"
-
-PATCHES=( "${FILESDIR}/${PN}-CVE-2008-5371.patch" )
-
-src_install() {
-   dobin screenie
-   default
-}



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

2020-09-07 Thread Joonas Niilola
commit: 69eb27243a3c16d35dab1ed185ba59dce21ac25a
Author: Sebastian Hamann  ares-macrotechnology  com>
AuthorDate: Sat Jun 13 13:03:52 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep  7 18:18:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69eb2724

app-emulation/firecracker-bin: new package

Install upsteam's firecracker and jailer binaries (statically linked
against musl).
As of version 0.22.0, seccomp filters only work on musl builds.

Closes: https://bugs.gentoo.org/728124
Signed-off-by: Sebastian Hamann  ares-macrotechnology.com>
Closes: https://github.com/gentoo/gentoo/pull/16219
Signed-off-by: Joonas Niilola  gentoo.org>

 app-emulation/firecracker-bin/Manifest |  4 ++
 .../firecracker-bin/firecracker-bin-0.22.0.ebuild  | 82 ++
 app-emulation/firecracker-bin/metadata.xml | 12 
 3 files changed, 98 insertions(+)

diff --git a/app-emulation/firecracker-bin/Manifest 
b/app-emulation/firecracker-bin/Manifest
new file mode 100644
index 000..a7c0eeefd34
--- /dev/null
+++ b/app-emulation/firecracker-bin/Manifest
@@ -0,0 +1,4 @@
+DIST firecracker-v0.22.0-aarch64 1615168 BLAKE2B 
56965a1999038e9b59e37230177812b936ad1b3cba91b6f805a1a6ecc81903f093c13b75ff78c8720d67596bdd71378cc757bda0b6061e3fb4d62607e299b065
 SHA512 
fb42bc5ecd0af487490f2c4bd3804d2430263740bbdec66c063d9b6c865d6b9c42b31cafb78d4a0cc40c11cc5242608b9d30676e55ac2b8dcb05d5f3db535bdf
+DIST firecracker-v0.22.0-x86_64 1657736 BLAKE2B 
84dbe8db596017e312fad1cd3c72d1b5d7306ad400a320431c8cae5b901b534f2735ac75cb5b9133c6c6f2603b877e4842d54165972a46df4193fbbc513c3b2d
 SHA512 
ac9544e8b770ff7a0c9234feb3154522bd6163f3903993cd019cc4abaa90ad24447f18e65e1022aafb7274ca97281286f898a50ac9f27c7f661d48df52d7fd08
+DIST jailer-v0.22.0-aarch64 1322088 BLAKE2B 
72db7eba02371af2a53b6ebd8c9fb909bd027cdd2b4207e0b2a02febe587780f9aa3be665b37580907ab8a58d8745cbcda90a85bda56a42b2eb8be9a931af13f
 SHA512 
86ca629b3060cefa9e31292844486c6d9b6fa0538b6d515e4cbb07fa4a675ce93d5f87fcd769f62aea0df029cdbd7a5055a282b8344ed35d895606aca7f22a14
+DIST jailer-v0.22.0-x86_64 1427600 BLAKE2B 
7ab09cce8963c89dae7c89c3a2d1dc582fdf8c11c3e051deb08c70fd2995a2154c493432e39851bebc62c1f6a9f98cfc9a9fa4107c5d9cf8ba940d4bb3349d86
 SHA512 
f2dcaee775cd1cdea4c1c1f6e89b82ba6636ab065291b704faaa836f864f14802a56af76ce397d7f98e9420d55720dc4459ae4443babfc7bb16d64dde11cb854

diff --git a/app-emulation/firecracker-bin/firecracker-bin-0.22.0.ebuild 
b/app-emulation/firecracker-bin/firecracker-bin-0.22.0.ebuild
new file mode 100644
index 000..a54445d88b2
--- /dev/null
+++ b/app-emulation/firecracker-bin/firecracker-bin-0.22.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+DESCRIPTION="Secure and fast microVMs for serverless computing (static build)"
+HOMEPAGE="https://firecracker-microvm.github.io 
https://github.com/firecracker-microvm/firecracker;
+SRC_URI="
+   amd64? (
+   
https://github.com/firecracker-microvm/firecracker/releases/download/v${PV}/firecracker-v${PV}-x86_64
+   
https://github.com/firecracker-microvm/firecracker/releases/download/v${PV}/jailer-v${PV}-x86_64
+   )
+   arm64? (
+   
https://github.com/firecracker-microvm/firecracker/releases/download/v${PV}/firecracker-v${PV}-aarch64
+   
https://github.com/firecracker-microvm/firecracker/releases/download/v${PV}/jailer-v${PV}-aarch64
+   )"
+
+LICENSE="|| ( Apache-2.0 MIT Apache-2.0-with-LLVM-exceptions ) MPL-2.0"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RESTRICT="test strip"
+
+RDEPEND="!app-emulation/firecracker
+   acct-group/kvm"
+
+QA_PREBUILT="/usr/bin/firecracker
+   /usr/bin/jailer"
+
+S="${WORKDIR}"
+
+pkg_pretend() {
+   if use kernel_linux && kernel_is lt 4 14; then
+   eerror "Firecracker requires a host kernel of 4.14 or higher."
+   elif use kernel_linux; then
+   if ! linux_config_exists; then
+   eerror "Unable to check your kernel for KVM support"
+   else
+   CONFIG_CHECK="~KVM ~TUN ~BRIDGE ~VHOST_VSOCK"
+   ERROR_KVM="You must enable KVM in your kernel to 
continue"
+   ERROR_KVM_AMD="If you have an AMD CPU, you must enable 
KVM_AMD in"
+   ERROR_KVM_AMD+=" your kernel configuration."
+   ERROR_KVM_INTEL="If you have an Intel CPU, you must 
enable"
+   ERROR_KVM_INTEL+=" KVM_INTEL in your kernel 
configuration."
+   ERROR_TUN="You will need the Universal TUN/TAP driver 
compiled"
+   ERROR_TUN+=" into your kernel or loaded as a module to 
use"
+   ERROR_TUN+=" virtual network devices."
+   ERROR_BRIDGE="You will also need support for 802.1d"
+   

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

2020-09-07 Thread Mikle Kolyada
commit: a35851ec4ffb24d245b26dc3b397dfdee6bc3205
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 19:01:02 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 19:01:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a35851ec

acct-group/lighttpd: Drop myself

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

 acct-group/lighttpd/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/acct-group/lighttpd/metadata.xml b/acct-group/lighttpd/metadata.xml
index 6698a4ab788..7a38bb90096 100644
--- a/acct-group/lighttpd/metadata.xml
+++ b/acct-group/lighttpd/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   zlog...@gentoo.org
-   Mikle Kolyada
-   
+   
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/lighttpd/

2020-09-07 Thread Mikle Kolyada
commit: 704eb55fdef42c75e7afa17d272443691bb7b718
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 18:56:29 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 19:01:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704eb55f

www-servers/lighttpd: Drop myself

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

 www-servers/lighttpd/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/www-servers/lighttpd/metadata.xml 
b/www-servers/lighttpd/metadata.xml
index b9965f6b8b9..eaac5f9936f 100644
--- a/www-servers/lighttpd/metadata.xml
+++ b/www-servers/lighttpd/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   zlog...@gentoo.org
-   Mikle Kolyada
-   
+   

lighttpd is a secure, fast, compliant and very flexible 
web-server
which has been optimized for high-performance environments. It 
has a very



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

2020-09-07 Thread Sebastian Pipping
commit: acb970f81350ba93bf0c0cdfbaaa19165c646633
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Mon Sep  7 19:11:09 2020 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Mon Sep  7 19:11:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb970f8

app-emulation/docker-compose: 1.27.0

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

 app-emulation/docker-compose/Manifest  |  1 +
 .../docker-compose/docker-compose-1.27.0.ebuild| 73 ++
 2 files changed, 74 insertions(+)

diff --git a/app-emulation/docker-compose/Manifest 
b/app-emulation/docker-compose/Manifest
index bebbf8394fb..b5812eeb909 100644
--- a/app-emulation/docker-compose/Manifest
+++ b/app-emulation/docker-compose/Manifest
@@ -2,6 +2,7 @@ DIST docker-compose-1.25.5.tar.gz 308569 BLAKE2B 
5d5d1fd60f9bcb87f7e9628dbe10b27
 DIST docker-compose-1.26.0.tar.gz 313311 BLAKE2B 
dc70b7557ce0c51beb177a842f11e16b0e1c4f5ab31f03159b1ffb6f712b884f41bce651e673db63bda4908fd9e7d2c497da3c7568bf038471bad81626e28f25
 SHA512 
b388f8041b921a0d53d15a8fffb9a1f4d79f40e3eaae073fc043ae74189256a5a24eee9a3c63641e3bfbf43d484da806c2a7d732aad38966ba9fb60d8990f512
 DIST docker-compose-1.26.1.tar.gz 313459 BLAKE2B 
8320842047700bf5d38f48c21efeafc294f76505ee33c76fbcc0aba78156699bc2d6ec9cb9e52f99125c3eea0f6c4226eaccf850345cfcdc84327c582408e82a
 SHA512 
e655e4930991f0fa3dca07b6b314442dba11ad4203f0eb8ab7175cb25d6cb16aa846198a2e17d4efea5718e184f7d6b6558d5260a86f07855ff4f7791fe8a3b3
 DIST docker-compose-1.26.2.tar.gz 313494 BLAKE2B 
656bac181547a3484c45d0ede7111384007db8109aaf3673a06b848bb9b27059cfb8b2cd583e6bc7acd0ebbd90d40e485251d473eefe56a6493abe187132e520
 SHA512 
4cb8a2f5e25f17eb842e36dea96fae8862df099d706ec590e6fc0790c7a814bed3bb60ec00207e4afc15bf8ad4ca37075320fd28ee0bea5bbec1646f3aed681f
+DIST docker-compose-1.27.0.tar.gz 308734 BLAKE2B 
c54906a4e895bbd038819cb5a4ed60cf0a3e077df037a4dac257b18f0b6ff37baafd6b4cf4e5c020db4b5f5a548b90e59568d628c9eb8461027a9fa202602ffa
 SHA512 
5c3742afcb97b3aa46f53d29cdc8b6534aa83c63131bd1f404153029fdb2ccfabeedff75b28267518efc13127225af991fe82d599195a6195256bf7658d3bc89
 DIST docker-compose-1.27.0_rc1.tar.gz 308050 BLAKE2B 
347dc4b38feae1d045770ff981a289d9919d47cf7ecf3b46e0c7b996bb3ef6d50a7e36751ca5f996dbe8afbeb0d6fc0967945c3abda05b71024a15efae35fb6c
 SHA512 
ae952d7c20f4f506c2f0126e504c2cff432056ac45547c40273d6113fe2c51d87c363f0943247989db3dcb20059c7a7839b2c5328d71a41a15cf12db6062
 DIST docker-compose-1.27.0_rc2.tar.gz 308129 BLAKE2B 
f057d9754040375f71810bbf09cd6a88c9ff05665b4629e0cf45c457b10ff9c4bde1b7a608addb160bcc183d8559a8cb2397f7a2215c1b14ae39577bdb67826b
 SHA512 
556a3b10144ff37996c6e3cd1562ba3fdde2618757d305ead4f861c6614f27bad0cf539885535ca61abaf9e9739bbb1c2b41c489ba87ad75f947213d4cdace19
 DIST docker-compose-1.27.0_rc3.tar.gz 308370 BLAKE2B 
094a28a4de8f32dfd82e0720a68cdae1493f63dc553e663081df3b9edf89593c76fba6b67eddcd1d1cd22966345e7d9a535e8603ed3a8f619fda41a1a8b1db9f
 SHA512 
ad996f0df612741ce36e3549d846d3fc507f687e41ed4fb5bd694faa48906da7ca4054d56ab90fe2e64d4548955ec366867be29a449044c357e45b147e475fd9

diff --git a/app-emulation/docker-compose/docker-compose-1.27.0.ebuild 
b/app-emulation/docker-compose/docker-compose-1.27.0.ebuild
new file mode 100644
index 000..e8bbcae81ab
--- /dev/null
+++ b/app-emulation/docker-compose/docker-compose-1.27.0.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2018-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit bash-completion-r1 distutils-r1
+
+MY_PV=${PV/_/-}
+DESCRIPTION="Multi-container orchestration for Docker"
+HOMEPAGE="https://github.com/docker/compose;
+SRC_URI="https://github.com/docker/compose/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/distro-1.5.0[${PYTHON_USEDEP}]
+   >=dev-python/docker-py-4.3.1[${PYTHON_USEDEP}]
+   >=dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}]
+   >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dotenv-0.13.0[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}]
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   >=dev-python/PySocks-1.6.0[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
+   >=dev-python/texttable-0.9.0[${PYTHON_USEDEP}]
+   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}
+   test? (
+   >=dev-python/pytest-5[${PYTHON_USEDEP}]
+   >=dev-python/ddt-1.2.2[${PYTHON_USEDEP}]
+   )"
+
+S="${WORKDIR}/compose-${MY_PV}"
+

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

2020-09-07 Thread Thomas Deutschmann
commit: 5276907e9f931943a9edecb0302dd59463444609
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Sep  7 19:53:28 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Sep  7 19:53:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5276907e

net-libs/libupnp: x86 stable (bug #727170)

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

 net-libs/libupnp/libupnp-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.0.ebuild 
b/net-libs/libupnp/libupnp-1.14.0.ebuild
index 3927b7eedcd..6a7ae044c2a 100644
--- a/net-libs/libupnp/libupnp-1.14.0.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mrjimenez/pupnp/archive/release-${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ppc ~ppc64 sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ppc ~ppc64 sparc x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc ipv6 +reuseaddr samples static-libs"
 
 # bug 733750



[gentoo-commits] repo/gentoo:master commit in: mail-filter/amavisd-new/files/

2020-09-07 Thread James Le Cuirot
commit: ef1c1a2693ef4389164efb587675218055f55354
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Sep  7 20:05:01 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep  7 20:05:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1c1a26

mail-filter/amavisd-new: Delete unused patch

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

 mail-filter/amavisd-new/files/amavisd-2.11.0-dkim.patch | 12 
 1 file changed, 12 deletions(-)

diff --git a/mail-filter/amavisd-new/files/amavisd-2.11.0-dkim.patch 
b/mail-filter/amavisd-new/files/amavisd-2.11.0-dkim.patch
deleted file mode 100644
index d9aa07d732b..000
--- a/mail-filter/amavisd-new/files/amavisd-2.11.0-dkim.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Origin: https://lists.amavis.org/pipermail/amavis-users/2016-July/004428.html
-
 a/amavisd
-+++ b/amavisd
-@@ -34338,6 +34338,7 @@
- $sig_ind++;
-   }
-   Amavis::load_policy_bank($_,$msginfo) for @bank_names;
-+  $msginfo->originating(c('originating'));
-   $msginfo->dkim_signatures_valid(\@signatures_valid)  if @signatures_valid;
- # if (ll(5) && $sig_ind > 0) {
- #   # show which header fields are covered by which signature



[gentoo-commits] repo/gentoo:master commit in: mail-filter/amavisd-new/

2020-09-07 Thread James Le Cuirot
commit: 49e5ef6551f5d4e11e684d7ab4c32e09dcaf0295
Author: Ralph Seichter  seichter  de>
AuthorDate: Sun Sep  6 20:23:53 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep  7 19:59:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49e5ef65

mail-filter/amavisd-new: Depend on app-arch/arj

Depend on app-arch/arj instead of app-arch/unarj because of licensing.

Bug: https://bugs.gentoo.org/694746
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: James Le Cuirot  gentoo.org>

 .../amavisd-new/amavisd-new-2.12.0-r4.ebuild   | 203 +
 1 file changed, 203 insertions(+)

diff --git a/mail-filter/amavisd-new/amavisd-new-2.12.0-r4.ebuild 
b/mail-filter/amavisd-new/amavisd-new-2.12.0-r4.ebuild
new file mode 100644
index 000..72dfb93265c
--- /dev/null
+++ b/mail-filter/amavisd-new/amavisd-new-2.12.0-r4.ebuild
@@ -0,0 +1,203 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="High-performance interface between the MTA and content checkers"
+HOMEPAGE="https://gitlab.com/amavis/amavis;
+SRC_URI="https://gitlab.com/amavis/amavis/-/archive/v${PV}/amavis-v${PV}.tar.bz2;
+
+LICENSE="GPL-2 BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="clamav courier dkim ldap mysql postgres qmail razor rspamd rspamd-https 
snmp spamassassin zmq"
+
+MY_RSPAMD_DEPEND="dev-perl/HTTP-Message
+   dev-perl/JSON
+   dev-perl/LWP-UserAgent-Determined"
+DEPEND="acct-user/amavis"
+RDEPEND="${DEPEND}
+   app-arch/arc
+   app-arch/bzip2
+   app-arch/cabextract
+   app-arch/cpio
+   app-arch/gzip
+   app-arch/lha
+   app-arch/lrzip
+   app-arch/lzop
+   app-arch/ncompress
+   app-arch/p7zip
+   app-arch/pax
+   app-arch/arj
+   app-arch/unrar
+   app-arch/xz-utils
+   app-arch/zoo
+   dev-lang/perl:*
+   dev-perl/Archive-Zip
+   dev-perl/BerkeleyDB
+   dev-perl/Convert-BinHex
+   dev-perl/File-LibMagic
+   dev-perl/IO-Socket-SSL
+   dev-perl/IO-stringy
+   >=dev-perl/Mail-DKIM-0.31
+   >=dev-perl/MailTools-1.58
+   >=dev-perl/MIME-tools-5.415
+   dev-perl/Net-LibIDN
+   >=dev-perl/Net-Server-0.91
+   dev-perl/Net-SSLeay
+   dev-perl/Unix-Syslog
+   net-mail/ripole
+   net-mail/tnef
+   >=sys-apps/coreutils-5.0-r3
+   >=sys-libs/db-4.4.20
+   virtual/mta
+   virtual/perl-Compress-Raw-Zlib
+   virtual/perl-Digest-MD5
+   virtual/perl-File-Temp
+   virtual/perl-IO-Compress
+   virtual/perl-IO-Socket-IP
+   virtual/perl-MIME-Base64
+   virtual/perl-Time-HiRes
+   clamav? ( app-antivirus/clamav )
+   ldap? ( >=dev-perl/perl-ldap-0.33 )
+   mysql? ( dev-perl/DBD-mysql )
+   postgres? ( dev-perl/DBD-Pg )
+   razor? ( mail-filter/razor )
+   rspamd? ( ${MY_RSPAMD_DEPEND} )
+   rspamd-https? ( ${MY_RSPAMD_DEPEND}
+   dev-perl/LWP-Protocol-https
+   dev-perl/Net-SSLeay )
+   snmp? ( net-analyzer/net-snmp[perl] )
+   spamassassin? ( mail-filter/spamassassin dev-perl/Image-Info )
+   zmq? ( dev-perl/ZMQ-LibZMQ3 )"
+
+AMAVIS_ROOT="/var/lib/amavishome"
+S="${WORKDIR}/amavis-v${PV}"
+
+src_prepare() {
+   if use courier ; then
+   eapply -p0 amavisd-new-courier.patch
+   fi
+
+   if use qmail ; then
+   eapply -p0 amavisd-new-qmqpqq.patch
+   fi
+
+   # We need to fix the daemon_user and daemon_group in amavis-mc even
+   # though we're going to run it in the foreground, because it calls
+   # "drop_priv" unconditionally and will crash if its user/group
+   # doesn't exist.
+   sed -i  \
+   -e '/daemon/s/vscan/amavis/' \
+   -e "s:'/var/virusmails':\"\$MYHOME/quarantine\":" \
+   "${S}/amavisd.conf" "${S}/amavis-mc" || die "missing conf file"
+
+   if ! use dkim ; then
+   sed -i -e '/enable_dkim/s/1/0/' "${S}/amavisd.conf" \
+   || die "missing conf file - dkim"
+   fi
+
+   if use zmq ; then
+   sed -i -e '/enable_zmq/s/# //' "${S}/amavisd.conf" \
+   || die "missing conf file - zmq"
+   fi
+
+   if ! use spamassassin ; then
+   sed -i -e \
+   
"/^#[[:space:]]*@bypass_spam_checks_maps[[:space:]]*=[[:space:]]*(1)/s/^#//" \
+   "${S}/amavisd.conf" || die "missing conf file - sa"
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   dosbin amavisd{,-agent,-nanny,-release,-signer,-status}
+   dobin p0f-analyzer.pl amavisd-submit
+
+   if use snmp ; then
+   dosbin amavisd-snmp-subagent
+   newinitd "${FILESDIR}/amavisd-snmp-subagent.initd" \
+amavisd-snmp-subagent
+

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

2020-09-07 Thread Thomas Deutschmann
commit: fe30749ea07569512802958478fd4bc633cbccfb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Sep  7 20:55:25 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Sep  7 20:58:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe30749e

dev-lang/spidermonkey: move virtual/rust to BDEPEND

Closes: https://bugs.gentoo.org/740888
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild 
b/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild
index cbc97965855..c41e32dbc5c 100644
--- a/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild
+++ b/dev-lang/spidermonkey/spidermonkey-78.2.0.ebuild
@@ -58,6 +58,7 @@ IUSE="debug +jit test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="${PYTHON_DEPS}
+   >=virtual/rust-1.43.0
virtual/pkgconfig"
 
 CDEPEND=">=dev-libs/icu-67.1:=
@@ -66,7 +67,6 @@ CDEPEND=">=dev-libs/icu-67.1:=
>=sys-libs/zlib-1.2.3"
 
 DEPEND="${CDEPEND}
-   >=virtual/rust-1.43.0
test? (
$(python_gen_any_dep 'dev-python/six[${PYTHON_USEDEP}]')
)"



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

2020-09-07 Thread Lars Wendler
commit: 65a05f60dccb7bf5dbe0d9e202720eb7b2437e9b
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 21:32:47 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 21:32:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a05f60

dev-libs/libxmlb: Bump to version 0.2.1

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 dev-libs/libxmlb/Manifest |  1 +
 dev-libs/libxmlb/libxmlb-0.2.1.ebuild | 58 +++
 2 files changed, 59 insertions(+)

diff --git a/dev-libs/libxmlb/Manifest b/dev-libs/libxmlb/Manifest
index f2ebf1dc304..9de6e04de72 100644
--- a/dev-libs/libxmlb/Manifest
+++ b/dev-libs/libxmlb/Manifest
@@ -1,2 +1,3 @@
 DIST libxmlb-0.1.15.tar.gz 92923 BLAKE2B 
97b6af812397dd279e7e3c038627fcf8228cbfa5c3af91ceeb5361e32d37d357eda6a193f627a5f4442426fb08abca1ff11684fe199d9d3a4add72ca4f3f5d08
 SHA512 
58268b3a690af36c0923afdee3ae58e88bf778eebbc6a439be1bc85ed985efdc20cd7006c976586f7be87310dc091d67370f4bbec58379fc4e7349bfa3d8
 DIST libxmlb-0.2.0.tar.gz 97521 BLAKE2B 
7a47164503b5b682e2bb9d877622a7dcad06d40bf87d6a7cf9e21898d8444e610ba3985d6be8cf65068f0637ee44ef8678610315be2795476b2f5ccaacb098ea
 SHA512 
cff4245a47a942dd37675921ba753858a3ee0572500a1cd7291d2a063fa7fa9d9157c167bf33694e4e0204504d7e88fbfd2873c4b9851247d6cdb338c2d587a8
+DIST libxmlb-0.2.1.tar.gz 98284 BLAKE2B 
b9bf02560a231837d7837b43f01d8f78c54a80319379a7bfa191f8303b77c35e82d1e2bb57722f1bfe56224d96bd1513cef702a0375eb85a137bff8ca3104c5c
 SHA512 
4e082f036eb62626d1724ac5093ad625f9259e9e81aa40d5ca0589a3a72dadd669c0718ff64dcae094973b6c282b6c8f8ce7212b7e47211f320035bb639ec59d

diff --git a/dev-libs/libxmlb/libxmlb-0.2.1.ebuild 
b/dev-libs/libxmlb/libxmlb-0.2.1.ebuild
new file mode 100644
index 000..eef8b51f864
--- /dev/null
+++ b/dev-libs/libxmlb/libxmlb-0.2.1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit meson python-any-r1
+
+DESCRIPTION="Library to help create and query binary XML blobs"
+HOMEPAGE="https://github.com/hughsie/libxmlb;
+SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="LGPL-2.1+"
+SLOT="0/2" # libxmlb.so version
+
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="doc introspection stemmer test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/glib:2
+   sys-apps/util-linux
+   stemmer? ( dev-libs/snowball-stemmer )
+"
+
+DEPEND="
+   ${RDEPEND}
+   doc? ( dev-util/gtk-doc )
+   introspection? ( dev-libs/gobject-introspection )
+"
+
+BDEPEND="
+   >=dev-util/meson-0.47.0
+   virtual/pkgconfig
+   introspection? (
+   $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
+   ${PYTHON_DEPS}
+   )
+"
+
+python_check_deps() {
+   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use introspection && python-any-r1_pkg_setup
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dgtkdoc="$(usex doc true false)"
+   -Dintrospection="$(usex introspection true false)"
+   -Dstemmer="$(usex stemmer true false)"
+   -Dtests="$(usex test true false)"
+   )
+   meson_src_configure
+}



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

2020-09-07 Thread Sam James
commit: 325daee848b886c554f6a0ee30d95ed90c4bbca6
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 22:01:49 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 22:02:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=325daee8

net-mail/tpop3d: remove old EAPI 4 ebuild

Bug: https://bugs.gentoo.org/739588
Closes: https://bugs.gentoo.org/666000
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 net-mail/tpop3d/tpop3d-1.5.5.ebuild | 92 -
 1 file changed, 92 deletions(-)

diff --git a/net-mail/tpop3d/tpop3d-1.5.5.ebuild 
b/net-mail/tpop3d/tpop3d-1.5.5.ebuild
deleted file mode 100644
index 5f58acad391..000
--- a/net-mail/tpop3d/tpop3d-1.5.5.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils flag-o-matic autotools
-
-DESCRIPTION="An extensible POP3 server with vmail-sql/MySQL support"
-HOMEPAGE="https://savannah.nongnu.org/projects/tpop3d/;
-SRC_URI="mirror://nongnu/tpop3d/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="authexternal debug flatfile gdbm ldap maildir mbox mysql offensive
-   pam passwd perl postgres +sha1 shadow ssl tcpd"
-
-RDEPEND="sha1? ( >=dev-libs/openssl-0.9.6 )
-   ssl?( >=dev-libs/openssl-0.9.6 )
-   ldap?   ( >=net-nds/openldap-2.0.7 )
-   mysql?  ( virtual/mysql )
-   postgres?   ( dev-db/postgresql[server] )
-   perl?   ( >=dev-lang/perl-5.6.1 )
-   pam?( sys-libs/pam
- >=net-mail/mailbase-0.00-r8 )
-   tcpd?   ( >=sys-apps/tcp-wrappers-7.6 )"
-
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-1.5.4-gold.patch"
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=""
-   local noauth=0
-
-   # Various authentication methods
-   use authexternal && myconf="${myconf} --enable-auth-other"
-   use flatfile&& myconf="${myconf} --enable-auth-flatfile"
-   use gdbm&& myconf="${myconf} --enable-auth-gdbm"
-   use ldap&& myconf="${myconf} --enable-auth-ldap"
-   use mysql   && myconf="${myconf} --enable-auth-mysql"
-   use pam || myconf="${myconf} --disable-auth-pam"
-   use passwd  && myconf="${myconf} --enable-auth-passwd"
-   use perl&& myconf="${myconf} --enable-auth-perl"
-   use postgres&& myconf="${myconf} --enable-auth-pgsql"
-   use shadow  && myconf="${myconf} --enable-auth-passwd 
--enable-shadow-passwords"
-
-   use authexternal || use flatfile || use gdbm || use ldap || use mysql ||
-   use pam || use passwd || use perl || use postgres || use 
shadow ||
-   noauth=1
-
-   if [[ ${noauth} -eq 1 ]]; then
-   ewarn "None of tpop3d's authentication mechanism USE flags are 
set."
-   ewarn "As a result tpop3d will be built with /etc/passwd 
authentication only."
-   myconf="${myconf} --enable-auth-passwd"
-   fi
-
-   # Other optional features
-   use debug   && myconf="${myconf} --enable-backtrace"
-   use maildir && myconf="${myconf} --enable-mbox-maildir"
-   use mbox|| myconf="${myconf} --disable-mbox-bsd"
-   use offensive   || myconf="${myconf} --disable-snide-comments"
-   use sha1|| myconf="${myconf} --disable-sha1-passwords"
-   use ssl && myconf="${myconf} --enable-tls"
-   use tcpd&& myconf="${myconf} --enable-tcp-wrappers"
-
-   econf ${myconf}
-
-   # Causes crash with "stack smashing attack" on connect, because of bug 
in
-   # SSP (bug #115285)
-   filter-flags -fstack-protector
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodir /etc/tpop3d
-
-   if use pam ; then
-   dodir /etc/pam.d
-   dosym /etc/pam.d/pop3 /etc/pam.d/tpop3d
-   fi
-
-   newinitd "${FILESDIR}/${PN}-1.5.4.init" tpop3d
-}
-
-pkg_postinst() {
-   elog "Read the tpop3d.conf manpage"
-   elog "Please create /etc/tpop3d/tpop3d.conf to fit your configuration"
-}



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

2020-09-07 Thread Sergei Trofimovich
commit: b1d035cdcadb8e9c825198c32193b7ebe9914aae
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep  7 19:12:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep  7 22:00:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d035cd

dev-lang/nasm: remove unused patch

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/17456
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch 
b/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch
deleted file mode 100644
index 76c1790da20..000
--- a/dev-lang/nasm/files/nasm-2.13.03-bsd-cp-doc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Avoid 'cp -u' as it's not portable.
-
-In this case we can unconditionally copy files.
-
-Reported-by: Michał Górny
-Bug: https://bugs.gentoo.org/655444
-diff --git a/doc/Makefile.in b/doc/Makefile.in
-index 261a791..bc9da1e 100644
 a/doc/Makefile.in
-+++ b/doc/Makefile.in
-@@ -28,3 +28,3 @@ RM_RF= rm -rf
- CP_F  = cp -f
--CP_UF = cp -ufv
-+CP_UF = cp -fv
- 



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

2020-09-07 Thread Zac Medico
commit: aabfe9ebbd529ede79476f77ccb8b427bd10edf5
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Sep  7 23:19:19 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep  7 23:21:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabfe9eb

sys-apps/portage: update  to require at least gemato-14.5

Bug: https://bugs.gentoo.org/740904
See: 
https://github.com/mgorny/gemato/commit/9980de271de4f8f5e993e2b634d0e8d7753e382f
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/portage-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-apps/portage/portage-.ebuild 
b/sys-apps/portage/portage-.ebuild
index fc86ef1642b..dfbe619ef9d 100644
--- a/sys-apps/portage/portage-.ebuild
+++ b/sys-apps/portage/portage-.ebuild
@@ -29,8 +29,6 @@ DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
 # Require sandbox-2.2 for bug #288863.
 # For whirlpool hash, require python[ssl] (bug #425046).
 # For compgen, require bash[readline] (bug #445576).
-# app-portage/gemato goes without PYTHON_USEDEP since we're calling
-# the executable.
 RDEPEND="
app-arch/zstd
>=app-arch/tar-1.27
@@ -41,7 +39,7 @@ RDEPEND="
app-shells/bash:0[readline]
>=app-admin/eselect-1.2
rsync-verify? (
-   >=app-portage/gemato-14.4-r1[${PYTHON_USEDEP}]
+   >=app-portage/gemato-14.5[${PYTHON_USEDEP}]
>=app-crypt/openpgp-keys-gentoo-release-20180706
>=app-crypt/gnupg-2.2.4-r2[ssl(-)]
)



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

2020-09-07 Thread Zac Medico
commit: f1f9062578936d68040490a8122ccf84c087030a
Author: Michael Everitt  veremit  xyz>
AuthorDate: Sun Sep  6 00:05:59 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep  7 23:40:32 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f1f90625

man/{portage,make.conf}.5: Files in subdirs are parsed in lexical order

Most files in packages.*, make.conf/*, *.postsync.d/* are parsed not just in
ascending alphabetical order, but actually in lexographical (lexical) order,
which means alpha-numerically + symbols.

Closes: https://github.com/gentoo/portage/pull/616
Signed-off-by: Michael Everitt  veremit.xyz>
Signed-off-by: Zac Medico  gentoo.org>

 man/make.conf.5 |  4 ++--
 man/portage.5   | 15 +++
 2 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/man/make.conf.5 b/man/make.conf.5
index eb812150f..1b997ad37 100644
--- a/man/make.conf.5
+++ b/man/make.conf.5
@@ -15,8 +15,8 @@ the Simple lexical analysis documentation:
 \fIhttps://docs.python.org/3/library/shlex.html\fR. Note that if you source
 files, they need to be in the same shlex syntax for portage to read them.
 If make.conf is a directory, then all the files in that directory will
-be sorted in ascending alphabetical order by file name and summed
-together as if it were a single file.
+be sorted in lexical order by file name and summed together as if it were
+a single file.
 .br
 Portage will check the currently\-defined environment variables
 first for any settings.  If no environment settings are found,

diff --git a/man/portage.5 b/man/portage.5
index 7472972cc..db6e9ba76 100644
--- a/man/portage.5
+++ b/man/portage.5
@@ -229,8 +229,8 @@ will be preferred.
 Any file in this directory, directories of other profiles or top-level
 "profiles" directory that begins with "package." or "use." can be more than
 just a flat file.  If it is a directory, then all the files in that directory
-will be sorted in ascending alphabetical order by file name and summed together
-as if it were a single file. Note that this behavior is only supported since
+will be sorted in lexical order by file name and summed together as if
+it were a single file. Note that this behavior is only supported since
 portage-2.1.6.7, and it is not included in PMS at this time.
 
 .I Example:
@@ -602,8 +602,8 @@ virtual/aspell\-dict   app\-dicts/aspell\-en
 Files in this directory including make.conf, repos.conf, and any file
 with a name that begins with "package." can be
 more than just a flat file.  If it is a directory, then all the files in that
-directory will be sorted in ascending alphabetical order by file name and 
summed
-together as if it were a single file.
+directory will be sorted in lexical order by file name and summed together
+as if it were a single file.
 
 .I Example:
 .nf
@@ -843,15 +843,14 @@ x11\-libs/qt \-mysql
 .TP
 .BR postsync.d/
 This directory is for user supplied postsync hooks to be run once after all
-repositories have been synced.  Each script is called in alphabetic order
+repositories have been synced.  Each script is called in lexical order
 without any arguments.
 .fi
 .TP
 .BR repo.postsync.d/
 This directory is for user supplied postsync hooks to be run once after each
-repository has been synced.  Each script is called in alphabetic order
-with three arguments.
-
+repository has been synced.  Each script is called in lexical order
+with the following three arguments:
 .I args:
 repository name, sync-uri, location
 .fi



[gentoo-commits] repo/gentoo:master commit in: sys-devel/icecream/files/, sys-devel/icecream/

2020-09-07 Thread Sam James
commit: 02b76e7d9468c1e08ea2fe35fac31dfa617c8ead
Author: Sam James  gentoo  org>
AuthorDate: Tue Sep  8 01:19:35 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Sep  8 01:19:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02b76e7d

sys-devel/icecream: cleanup old EAPI 4, 5 ebuilds

Closes: https://bugs.gentoo.org/724216
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 sys-devel/icecream/Manifest|  1 -
 sys-devel/icecream/files/0.9.6-crosscompile.patch  | 12 ---
 sys-devel/icecream/files/0.9.6-symlinks.patch  | 19 -
 sys-devel/icecream/files/0.9.7-automake.patch  | 32 
 sys-devel/icecream/files/0.9.7-glibc2.16.patch | 16 
 sys-devel/icecream/files/icecream  | 43 ---
 .../icecream/files/icecream-conf.d-verbosity.patch | 18 -
 sys-devel/icecream/files/icecream-config   | 69 -
 sys-devel/icecream/files/icecream-create-env   | 82 -
 .../icecream/files/icecream-gentoo-multilib.patch  | 59 ---
 sys-devel/icecream/icecream-0.9.7-r1.ebuild| 86 --
 sys-devel/icecream/icecream-1.0.0-r1.ebuild| 51 -
 12 files changed, 488 deletions(-)

diff --git a/sys-devel/icecream/Manifest b/sys-devel/icecream/Manifest
index 56616a9e27c..2cfb48ce5b5 100644
--- a/sys-devel/icecream/Manifest
+++ b/sys-devel/icecream/Manifest
@@ -1,2 +1 @@
-DIST icecc-0.9.7.tar.bz2 379527 BLAKE2B 
547bc2e534192a6628c261f4d7244eff31bea438cc0273b06c69ef188ffedebaebb028fa2433c5549c52d99ecd0c530a1040db392d8f34537023be9ebdca465e
 SHA512 
023a77d6df33af9837a87218272dc61d68f3782ad59dc8783ec3ca47cbb38619dbcaa25ac7e6654c6cacbd79477c3403b0a73aca595c6fe20aa9a39268f4f2e2
 DIST icecc-1.0.0.tar.bz2 485534 BLAKE2B 
31a978a4a461f20716a95277426e79d4c298c212d36361dbbd68c5affcbbbe2f0c71f743cc7b731d86fbb5f09ab556182482f56e1382be8572d019f80a004fc8
 SHA512 
4292ecef6232112c3f4531cb2290a55f70c5c24095fef0865af2526d49fc10a043ffb06d22552e161f671c18ff1ab62795c3a63e2c8cb26f869cf65d0938af2a

diff --git a/sys-devel/icecream/files/0.9.6-crosscompile.patch 
b/sys-devel/icecream/files/0.9.6-crosscompile.patch
deleted file mode 100644
index 990072bbb8f..000
--- a/sys-devel/icecream/files/0.9.6-crosscompile.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN icecc-0.9.6.old//client/icecc-create-env 
icecc-0.9.6//client/icecc-create-env
 icecc-0.9.6.old//client/icecc-create-env   2010-09-18 12:10:08.143391700 
+0200
-+++ icecc-0.9.6//client/icecc-create-env   2010-09-18 12:10:46.574391700 
+0200
-@@ -97,7 +97,7 @@
- 
- add_file $added_gcc /usr/bin/gcc
- add_file $added_gxx /usr/bin/g++
--add_file /usr/bin/as
-+add_file `$added_gcc -print-prog-name=as` /usr/bin/as
- 
- if test "$is_darwin" = 1; then
- # add dynamic linker

diff --git a/sys-devel/icecream/files/0.9.6-symlinks.patch 
b/sys-devel/icecream/files/0.9.6-symlinks.patch
deleted file mode 100644
index 279ee0cc0f9..000
--- a/sys-devel/icecream/files/0.9.6-symlinks.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -urN icecc-0.9.6//client/Makefile.am icecc-0.9.6.new//client/Makefile.am
 icecc-0.9.6//client/Makefile.am2010-09-11 13:43:53.922000148 +0200
-+++ icecc-0.9.6.new//client/Makefile.am2010-09-11 13:44:39.95148 
+0200
-@@ -7,15 +7,3 @@
- noinst_HEADERS = client.h md5.h util.h
- 
- EXTRA_DIST = icecc-create-env
--
--install-exec-local:
--  $(mkinstalldirs) $(DESTDIR)$(bindir)
--  for link in g++ gcc c++ cc icerun; do \
--rm -f $(DESTDIR)$(bindir)/$$link ;\
--$(LN_S) icecc $(DESTDIR)$(bindir)/$$link ;\
--  done
--
--uninstall-local:
--  for link in g++ gcc c++ cc; do \
--rm $(DESTDIR)$(bindir)/$$link ;\
--  done

diff --git a/sys-devel/icecream/files/0.9.7-automake.patch 
b/sys-devel/icecream/files/0.9.7-automake.patch
deleted file mode 100644
index 6905a2a3415..000
--- a/sys-devel/icecream/files/0.9.7-automake.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Backport upstream patch to fix automake-1.12 issues
-
-https://bugs.gentoo.org/show_bug.cgi?id=397715
-https://bugs.gentoo.org/show_bug.cgi?id=399259
 client/Makefile.am
-+++ client/Makefile.am
-@@ -1,10 +1,11 @@
- INCLUDES = -I$(srcdir)/../services
- 
- bin_PROGRAMS = icecc
--pkglib_SCRIPTS = icecc-create-env
-+pkglibexec_SCRIPTS = icecc-create-env
- icecc_SOURCES = main.cpp arg.cpp cpp.cpp local.cpp remote.cpp util.cpp md5.c 
safeguard.cpp
- icecc_LDADD = ../services/libicecc.la $(LIBRSYNC)
- noinst_HEADERS = client.h md5.h util.h
-+AM_CPPFLAGS = -DPLIBDIR=\"$(pkglibexecdir)\"
- 
- EXTRA_DIST = icecc-create-env
- 
 configure.in
-+++ configure.in
-@@ -246,10 +246,6 @@
- KDE_EXPAND_MAKEVAR(mybindir, bindir)
- AC_DEFINE_UNQUOTED(BINDIR, "$mybindir", [Where to look for icecc])
- 
--myopkglibdir='${libdir}/'"$PACKAGE"
--KDE_EXPAND_MAKEVAR(mypkglibdir, myopkglibdir)
--AC_DEFINE_UNQUOTED(PLIBDIR, "$mypkglibdir", [Where 

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

2020-09-07 Thread Mike Gilbert
commit: a30024c5c33e6c32486c61f07b6cb149b26be71d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Sep  7 20:40:53 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Sep  7 20:40:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a30024c5

sys-apps/file: drop eautoreconf

We no longer patch Makefile.am, so this is not needed.

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

 sys-apps/file/file-5.39-r3.ebuild | 10 +++---
 sys-apps/file/file-.ebuild| 10 +++---
 2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/sys-apps/file/file-5.39-r3.ebuild 
b/sys-apps/file/file-5.39-r3.ebuild
index c8425291ed7..d9f6397209d 100644
--- a/sys-apps/file/file-5.39-r3.ebuild
+++ b/sys-apps/file/file-5.39-r3.ebuild
@@ -6,11 +6,11 @@ EAPI=7
 PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_OPTIONAL=1
 
-inherit autotools distutils-r1 libtool toolchain-funcs multilib-minimal
+inherit distutils-r1 libtool toolchain-funcs multilib-minimal
 
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/glensc/file.git;
-   inherit git-r3
+   inherit autotools git-r3
 else
SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz;
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
@@ -44,7 +44,11 @@ PATCHES=(
 
 src_prepare() {
default
-   eautoreconf
+
+   if [[ ${PV} ==  ]]; then
+   eautoreconf
+   fi
+
elibtoolize
 
# don't let python README kill main README #60043

diff --git a/sys-apps/file/file-.ebuild b/sys-apps/file/file-.ebuild
index d28938772d6..71c29604e7d 100644
--- a/sys-apps/file/file-.ebuild
+++ b/sys-apps/file/file-.ebuild
@@ -6,11 +6,11 @@ EAPI=7
 PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_OPTIONAL=1
 
-inherit autotools distutils-r1 libtool toolchain-funcs multilib-minimal
+inherit distutils-r1 libtool toolchain-funcs multilib-minimal
 
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/glensc/file.git;
-   inherit git-r3
+   inherit autotools git-r3
 else
SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
@@ -42,7 +42,11 @@ PATCHES=(
 
 src_prepare() {
default
-   eautoreconf
+
+   if [[ ${PV} ==  ]]; then
+   eautoreconf
+   fi
+
elibtoolize
 
# don't let python README kill main README #60043



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

2020-09-07 Thread Mike Gilbert
commit: 31db9b3a90fee48bc809307db6eb17ffbb23fba9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Sep  7 20:35:15 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Sep  7 20:35:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31db9b3a

sys-apps/file: sync live ebuild

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

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

diff --git a/sys-apps/file/file-.ebuild b/sys-apps/file/file-.ebuild
index 8333fd922e2..d28938772d6 100644
--- a/sys-apps/file/file-.ebuild
+++ b/sys-apps/file/file-.ebuild
@@ -37,7 +37,7 @@ RDEPEND="${DEPEND}
seccomp? ( sys-libs/libseccomp[${MULTILIB_USEDEP}] )"
 
 PATCHES=(
-   "${FILESDIR}/${PN}-5.39-portage_sandbox.patch" #713710 #728978
+   "${FILESDIR}/file-5.39-portage-sandbox.patch" #713710 #728978
 )
 
 src_prepare() {



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

2020-09-07 Thread Lars Wendler
commit: 7f91a94d67b112099e5a0e3ff4c4fbdd9b681ff7
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 21:40:34 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 21:40:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f91a94d

sys-apps/fwupd: Removed old

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/fwupd/Manifest   |   1 -
 sys-apps/fwupd/fwupd-1.4.4.ebuild | 165 --
 2 files changed, 166 deletions(-)

diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
index 15e7d15c902..a46efc5fdce 100644
--- a/sys-apps/fwupd/Manifest
+++ b/sys-apps/fwupd/Manifest
@@ -1,5 +1,4 @@
 DIST fwupd-1.3.10.tar.gz 2255394 BLAKE2B 
39f517b7648236f39df6f41b5950fcba45a1184f269e533facd752f8e132bb979b32a1420ce4bfcad5bb5d5546ea3f28b357603f7754267550fc02c2125642c5
 SHA512 
a30ef2933fc01136a9296e99a0b1b9220f952a058aa28339ff944633a8966678b374f479b3a93a1e63bd97491679d3ce304cb621f6e63b86238a8746768daac2
 DIST fwupd-1.3.11.tar.gz 2255359 BLAKE2B 
0f91c32602459d31e53c63647762307cfe2313c553e16836cc646eb04e3ac54ebd53d2e8615afb7f43b8cd79b7e6315ed688ae04b57de851be62ed6065579ebf
 SHA512 
e300a84a1c2d7e44e2a1d5d86300487783fc3990b20b540065f9899705569bee8996eae951f32b6fac559e76955ff9b661aa9b181e4dc0211a33a514613ffddd
-DIST fwupd-1.4.4.tar.gz 2311975 BLAKE2B 
04ba05e157a1662dcd5fa8a3835701ff6c39935aa5e2d91e2aad3f7c7f5449ce56ac8f85bd4df4c3f4901c1d55d036f159eaf761761086bb1eda770021d38160
 SHA512 
9ce2ee8963789b99e43ebd3a76ba2851339bde6bda0c85198bbac11ebca76525385f41223956410bc1cff72318de463031f7e38b784fc5a4bf9bc2a85788db1a
 DIST fwupd-1.4.5.tar.gz 2318208 BLAKE2B 
1e46137f5b72ff104d920771e54e3123bd0665cafd20c75327682a7e4284be93f8e284947db91892c29a153803013bab8ac45e5a0263fcda33b7491c53dd5558
 SHA512 
47eb40e8d84dc49af783b661db0fce0fb800c4581929becffb03b79c41ed8bfb0987f40fbb8262292b24af85b7f91978a6979ea7458058ee2bfc1a4353d0bd31
 DIST fwupd-1.4.6.tar.gz 2368201 BLAKE2B 
86f4e8a3264b69eb72a357f59db082e81534dc28822934df328b1bf94aacb7ed1a219f8e5a03a9a37a0d07c248410822a3d12c4fd6b5df3a14157795e092a095
 SHA512 
c456704f40e7c5a5225255dbe3e4b794819d3fa982683a31b15a81f5467f007eef00cd80dac1844eca00ebab9ae12061139ae31c1fd7e2a6e012779d2a4b59f9

diff --git a/sys-apps/fwupd/fwupd-1.4.4.ebuild 
b/sys-apps/fwupd/fwupd-1.4.4.ebuild
deleted file mode 100644
index 16576fceb82..000
--- a/sys-apps/fwupd/fwupd-1.4.4.ebuild
+++ /dev/null
@@ -1,165 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit linux-info meson python-single-r1 vala xdg toolchain-funcs
-
-DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
reliable"
-HOMEPAGE="https://fwupd.org;
-SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="agent amt consolekit dell gtk-doc elogind minimal introspection +man 
nvme redfish synaptics systemd test thunderbolt tpm uefi"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   ^^ ( consolekit elogind minimal systemd )
-   dell? ( uefi )
-   minimal? ( !introspection )
-"
-RESTRICT="!test? ( test )"
-
-BDEPEND="$(vala_depend)
-   virtual/pkgconfig
-   gtk-doc? ( dev-util/gtk-doc )
-   introspection? ( dev-libs/gobject-introspection )
-   man? (
-   app-text/docbook-sgml-utils
-   sys-apps/help2man
-   )
-   test? (
-   thunderbolt? ( dev-util/umockdev )
-   net-libs/gnutls[tools]
-   )
-"
-CDEPEND="${PYTHON_DEPS}
-   >=app-arch/gcab-1.0
-   app-arch/libarchive:=
-   dev-db/sqlite
-   >=dev-libs/glib-2.45.8:2
-   dev-libs/json-glib
-   dev-libs/libgpg-error
-   dev-libs/libgudev:=
-   >=dev-libs/libgusb-0.2.9[introspection?]
-   >=dev-libs/libjcat-0.1.0[gpg,pkcs7]
-   >=dev-libs/libxmlb-0.1.13:=
-   $(python_gen_cond_dep '
-   dev-python/pillow[${PYTHON_MULTI_USEDEP}]
-   dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
-   dev-python/pygobject:3[cairo,${PYTHON_MULTI_USEDEP}]
-   ')
-   >=net-libs/libsoup-2.51.92:2.4[introspection?]
-   virtual/libelf:0=
-   virtual/udev
-   consolekit? ( >=sys-auth/consolekit-1.0.0 )
-   dell? (
-   sys-libs/efivar
-   >=sys-libs/libsmbios-2.4.0
-   )
-   elogind? ( sys-auth/elogind )
-   !minimal? (
-   >=sys-auth/polkit-0.103
-   )
-   nvme? ( sys-libs/efivar )
-   redfish? ( sys-libs/efivar )
-   systemd? ( >=sys-apps/systemd-211 )
-   tpm? ( app-crypt/tpm2-tss )
-   uefi? (
-   app-crypt/tpm2-tss
-   media-libs/fontconfig
-   media-libs/freetype
-   sys-boot/gnu-efi
-   sys-boot/efibootmgr
-   >=sys-libs/efivar-33
- 

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

2020-09-07 Thread Lars Wendler
commit: 0d2a2a21293c0c10edd08ed1fd201b426e1fbf0c
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 21:38:06 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 21:40:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2a2a21

sys-apps/fwupd: Bump to version 1.4.6

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/fwupd/Manifest   |   1 +
 sys-apps/fwupd/fwupd-1.4.6.ebuild | 165 ++
 2 files changed, 166 insertions(+)

diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
index 23d1ba098f5..15e7d15c902 100644
--- a/sys-apps/fwupd/Manifest
+++ b/sys-apps/fwupd/Manifest
@@ -2,3 +2,4 @@ DIST fwupd-1.3.10.tar.gz 2255394 BLAKE2B 
39f517b7648236f39df6f41b5950fcba45a1184
 DIST fwupd-1.3.11.tar.gz 2255359 BLAKE2B 
0f91c32602459d31e53c63647762307cfe2313c553e16836cc646eb04e3ac54ebd53d2e8615afb7f43b8cd79b7e6315ed688ae04b57de851be62ed6065579ebf
 SHA512 
e300a84a1c2d7e44e2a1d5d86300487783fc3990b20b540065f9899705569bee8996eae951f32b6fac559e76955ff9b661aa9b181e4dc0211a33a514613ffddd
 DIST fwupd-1.4.4.tar.gz 2311975 BLAKE2B 
04ba05e157a1662dcd5fa8a3835701ff6c39935aa5e2d91e2aad3f7c7f5449ce56ac8f85bd4df4c3f4901c1d55d036f159eaf761761086bb1eda770021d38160
 SHA512 
9ce2ee8963789b99e43ebd3a76ba2851339bde6bda0c85198bbac11ebca76525385f41223956410bc1cff72318de463031f7e38b784fc5a4bf9bc2a85788db1a
 DIST fwupd-1.4.5.tar.gz 2318208 BLAKE2B 
1e46137f5b72ff104d920771e54e3123bd0665cafd20c75327682a7e4284be93f8e284947db91892c29a153803013bab8ac45e5a0263fcda33b7491c53dd5558
 SHA512 
47eb40e8d84dc49af783b661db0fce0fb800c4581929becffb03b79c41ed8bfb0987f40fbb8262292b24af85b7f91978a6979ea7458058ee2bfc1a4353d0bd31
+DIST fwupd-1.4.6.tar.gz 2368201 BLAKE2B 
86f4e8a3264b69eb72a357f59db082e81534dc28822934df328b1bf94aacb7ed1a219f8e5a03a9a37a0d07c248410822a3d12c4fd6b5df3a14157795e092a095
 SHA512 
c456704f40e7c5a5225255dbe3e4b794819d3fa982683a31b15a81f5467f007eef00cd80dac1844eca00ebab9ae12061139ae31c1fd7e2a6e012779d2a4b59f9

diff --git a/sys-apps/fwupd/fwupd-1.4.6.ebuild 
b/sys-apps/fwupd/fwupd-1.4.6.ebuild
new file mode 100644
index 000..246c5406ba1
--- /dev/null
+++ b/sys-apps/fwupd/fwupd-1.4.6.ebuild
@@ -0,0 +1,165 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit linux-info meson python-single-r1 vala xdg toolchain-funcs
+
+DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
reliable"
+HOMEPAGE="https://fwupd.org;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="agent amt consolekit dell gtk-doc elogind minimal introspection +man 
nvme redfish synaptics systemd test thunderbolt tpm uefi"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   ^^ ( consolekit elogind minimal systemd )
+   dell? ( uefi )
+   minimal? ( !introspection )
+"
+RESTRICT="!test? ( test )"
+
+BDEPEND="$(vala_depend)
+   virtual/pkgconfig
+   gtk-doc? ( dev-util/gtk-doc )
+   introspection? ( dev-libs/gobject-introspection )
+   man? (
+   app-text/docbook-sgml-utils
+   sys-apps/help2man
+   )
+   test? (
+   thunderbolt? ( dev-util/umockdev )
+   net-libs/gnutls[tools]
+   )
+"
+CDEPEND="${PYTHON_DEPS}
+   >=app-arch/gcab-1.0
+   app-arch/libarchive:=
+   dev-db/sqlite
+   >=dev-libs/glib-2.45.8:2
+   dev-libs/json-glib
+   dev-libs/libgpg-error
+   dev-libs/libgudev:=
+   >=dev-libs/libgusb-0.2.9[introspection?]
+   >=dev-libs/libjcat-0.1.0[gpg,pkcs7]
+   >=dev-libs/libxmlb-0.1.13:=
+   $(python_gen_cond_dep '
+   dev-python/pillow[${PYTHON_MULTI_USEDEP}]
+   dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
+   dev-python/pygobject:3[cairo,${PYTHON_MULTI_USEDEP}]
+   ')
+   >=net-libs/libsoup-2.51.92:2.4[introspection?]
+   virtual/libelf:0=
+   virtual/udev
+   consolekit? ( >=sys-auth/consolekit-1.0.0 )
+   dell? (
+   sys-libs/efivar
+   >=sys-libs/libsmbios-2.4.0
+   )
+   elogind? ( sys-auth/elogind )
+   !minimal? (
+   >=sys-auth/polkit-0.103
+   )
+   nvme? ( sys-libs/efivar )
+   redfish? ( sys-libs/efivar )
+   systemd? ( >=sys-apps/systemd-211 )
+   tpm? ( app-crypt/tpm2-tss )
+   uefi? (
+   app-crypt/tpm2-tss
+   media-libs/fontconfig
+   media-libs/freetype
+   sys-boot/gnu-efi
+   sys-boot/efibootmgr
+   >=sys-libs/efivar-33
+   x11-libs/cairo
+   )
+"
+# Block sci-chemistry/chemical-mime-data for bug #701900
+RDEPEND="
+   != 4.4"
+   fi
+}
+
+src_prepare() {
+   default
+   # c.f. 

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

2020-09-07 Thread Thomas Deutschmann
commit: ff83f0199ea3e5da56a72558912834a2ceb1d737
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Sep  7 22:20:00 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Sep  7 22:20:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff83f019

profiles: Deprecate  gentoo.org>

 profiles/package.deprecated | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.deprecated b/profiles/package.deprecated
index 2dfb9183e2b..df59c7aaaf0 100644
--- a/profiles/package.deprecated
+++ b/profiles/package.deprecated
@@ -17,6 +17,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Thomas Deutschmann  (2020-09-08)
+# Dead implementations, please migrate to >=zeromq-4
+dev-perl/ZMQ-LibZMQ2
+dev-perl/ZMQ-LibZMQ3
+ (2020-07-13)
 # Abandoned upstream, switch to dev-python/mysqlclient which is a maintained 
 # fork. #710024



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

2020-09-07 Thread Zac Medico
commit: e108f1ccb4a7d38d27154943d7240fe8d2ff4a7d
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Sep  8 01:16:40 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Sep  8 01:17:16 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e108f1cc

man/portage.5: Fix man2html rendering in repos.conf section

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

 man/portage.5 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man/portage.5 b/man/portage.5
index db6e9ba76..4cffb194a 100644
--- a/man/portage.5
+++ b/man/portage.5
@@ -1,4 +1,4 @@
-.TH "PORTAGE" "5" "Jul 2020" "Portage VERSION" "Portage"
+.TH "PORTAGE" "5" "Sep 2020" "Portage VERSION" "Portage"
 .SH NAME
 portage \- the heart of Gentoo
 .SH "DESCRIPTION"
@@ -875,8 +875,8 @@ format as \fBrepos.conf\fR.
 \- attributes are specified in "${attribute} = ${value}" format
 .fi
 
-.I Attributes supported in DEFAULT section:
 .RS
+.I Attributes supported in DEFAULT section:
 .RS
 .TP
 .B main\-repo



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

2020-09-07 Thread Sergei Trofimovich
commit: 00668815ed77b8ad9267c13f396a7cd05f191abf
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Sep  7 16:09:00 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep  7 17:39:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00668815

net-libs/libupnp: stable 1.14.0 for hppa/sparc, bug #727170

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

 net-libs/libupnp/libupnp-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.0.ebuild 
b/net-libs/libupnp/libupnp-1.14.0.ebuild
index 79c4ade3f90..cbb98cd660e 100644
--- a/net-libs/libupnp/libupnp-1.14.0.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mrjimenez/pupnp/archive/release-${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ppc ~ppc64 sparc ~x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc ipv6 +reuseaddr samples static-libs"
 
 DOCS="ChangeLog"



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

2020-09-07 Thread Sergei Trofimovich
commit: 274887925f9284cbe6aab04f4d116074e71f416a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Sep  7 16:07:41 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep  7 17:39:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27488792

media-sound/darkice: stable 1.4 for sparc, bug #740552

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

 media-sound/darkice/darkice-1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/darkice/darkice-1.4.ebuild 
b/media-sound/darkice/darkice-1.4.ebuild
index fe448795991..fcd30cb9975 100644
--- a/media-sound/darkice/darkice-1.4.ebuild
+++ b/media-sound/darkice/darkice-1.4.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/rafael2k/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~sparc x86"
+KEYWORDS="~amd64 ~hppa ~ppc sparc x86"
 IUSE="aac aacplus alsa debug jack libsamplerate mp3 opus pulseaudio twolame 
vorbis"
 
 RDEPEND="aac? ( media-libs/faac )



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

2020-09-07 Thread Sergei Trofimovich
commit: bb2c1c16945c1a06463aab2bfdbb15e92bb9a5a0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Sep  7 16:14:50 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep  7 17:39:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb2c1c16

app-misc/screenie: stable 20120406 for sparc, bug #740640

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

 app-misc/screenie/screenie-20120406.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/screenie/screenie-20120406.ebuild 
b/app-misc/screenie/screenie-20120406.ebuild
index db476a5e939..ad452493da1 100644
--- a/app-misc/screenie/screenie-20120406.ebuild
+++ b/app-misc/screenie/screenie-20120406.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://downloads.sourceforge.net/project/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~ia64 ~sparc x86"
+KEYWORDS="amd64 ~arm hppa ~ia64 sparc x86"
 
 RDEPEND="app-misc/screen"
 



[gentoo-commits] proj/kde-sunset:master commit in: kde-misc/plasma-widget-menubar/, kde-misc/plasma-widget-message-indicator/, ...

2020-09-07 Thread Andreas Sturmlechner
commit: 9ed8e0c3dfe397ae1442c95a9965c8e918fff9fe
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep  7 17:50:40 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep  7 17:50:40 2020 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=9ed8e0c3

*/*: Adjust all revdeps to dev-libs/libdbusmenu-qt[qt4]

Cleanup all qt4(+) occurrences and add qt4 where necessary.

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

 kde-misc/plasma-widget-menubar/plasma-widget-menubar-0.2.0.ebuild   | 2 +-
 .../plasma-widget-message-indicator-0.5.8.ebuild| 2 +-
 kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-misc/plasma-widget-menubar/plasma-widget-menubar-0.2.0.ebuild 
b/kde-misc/plasma-widget-menubar/plasma-widget-menubar-0.2.0.ebuild
index f27e2ef9..e6c8a593 100644
--- a/kde-misc/plasma-widget-menubar/plasma-widget-menubar-0.2.0.ebuild
+++ b/kde-misc/plasma-widget-menubar/plasma-widget-menubar-0.2.0.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="debug"
 
 DEPEND="
-   >=dev-libs/libdbusmenu-qt-0.6.0[qt4(+)]
+   >=dev-libs/libdbusmenu-qt-0.6.0[qt4]
>=dev-libs/qjson-0.7.1
 "
 RDEPEND="${DEPEND}

diff --git 
a/kde-misc/plasma-widget-message-indicator/plasma-widget-message-indicator-0.5.8.ebuild
 
b/kde-misc/plasma-widget-message-indicator/plasma-widget-message-indicator-0.5.8.ebuild
index 4d8e8cda..d24a6829 100644
--- 
a/kde-misc/plasma-widget-message-indicator/plasma-widget-message-indicator-0.5.8.ebuild
+++ 
b/kde-misc/plasma-widget-message-indicator/plasma-widget-message-indicator-0.5.8.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="debug"
 
 RDEPEND="
-   >=dev-libs/libdbusmenu-qt-0.3.0[qt4(+)]
+   >=dev-libs/libdbusmenu-qt-0.3.0[qt4]
>=dev-libs/libindicate-qt-0.2.5
 "
 DEPEND="

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
index b21a2c17..6a10a6e7 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
@@ -19,7 +19,7 @@ IUSE="debug gps json +pim python qalculate"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 COMMONDEPEND="
-   dev-libs/libdbusmenu-qt
+   dev-libs/libdbusmenu-qt[qt4]
>=dev-qt/qtcore-4.8.4-r3:4
kde-frameworks/kactivities:4
kde-plasma/kephal:4



[gentoo-commits] proj/kde-sunset:master commit in: dev-libs/libdbusmenu-qt/

2020-09-07 Thread Andreas Sturmlechner
commit: e249e40f789cfd533c18c863d823deca2f0044a2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep  7 17:54:08 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep  7 17:54:08 2020 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=e249e40f

dev-libs/libdbusmenu-qt: Drop 0.9.3_pre20160218-r1

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

 .../libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild | 124 -
 1 file changed, 124 deletions(-)

diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild 
b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild
deleted file mode 100644
index b8d06d40..
--- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r1.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EBZR_REPO_URI="lp:libdbusmenu-qt"
-
-[[ ${PV} == * ]] && inherit bzr
-inherit cmake-multilib multibuild virtualx
-
-DESCRIPTION="Library providing Qt implementation of DBusMenu specification"
-HOMEPAGE="https://launchpad.net/libdbusmenu-qt/;
-if [[ ${PV} != * ]] ; then
-   MY_PV=${PV/_pre/+16.04.}
-   
SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${MY_PV}.orig.tar.gz;
-   KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-fi
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="debug qt4"
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   qt4? (
-   >=dev-qt/qtcore-4.8.6:4[${MULTILIB_USEDEP}]
-   >=dev-qt/qtdbus-4.8.6:4[${MULTILIB_USEDEP}]
-   >=dev-qt/qtgui-4.8.6:4[${MULTILIB_USEDEP}]
-   )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-qt/qttest:5
-   qt4? ( >=dev-qt/qttest-4.8.6:4[${MULTILIB_USEDEP}] )
-   )
-"
-
-[[ ${PV} == * ]] || S=${WORKDIR}/${PN}-${MY_PV}
-
-DOCS=( NEWS README )
-
-# tests fail due to missing connection to dbus
-RESTRICT="test"
-
-pkg_setup() {
-   MULTIBUILD_VARIANTS=( $(usex qt4 4) 5 )
-}
-
-src_prepare() {
-   [[ ${PV} == * ]] && bzr_src_prepare
-   cmake-utils_src_prepare
-
-   cmake_comment_add_subdirectory tools
-   use test || cmake_comment_add_subdirectory tests
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DWITH_DOC=OFF
-   -DUSE_QT${QT_MULTIBUILD_VARIANT}=ON
-   
-DQT_QMAKE_EXECUTABLE="/usr/$(get_libdir)/qt${QT_MULTIBUILD_VARIANT}/bin/qmake"
-   )
-   cmake-utils_src_configure
-}
-
-src_configure() {
-   myconfigure() {
-   local QT_MULTIBUILD_VARIANT=${MULTIBUILD_VARIANT}
-   if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-   cmake-multilib_src_configure
-   elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-   multilib_src_configure
-   fi
-   }
-
-   multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
-   mycompile() {
-   if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-   cmake-multilib_src_compile
-   elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-   cmake-utils_src_compile
-   fi
-   }
-
-   multibuild_foreach_variant mycompile
-}
-
-src_install() {
-   myinstall() {
-   if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-   cmake-multilib_src_install
-   elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-   cmake-utils_src_install
-   fi
-   }
-
-   multibuild_foreach_variant myinstall
-}
-
-src_test() {
-   mytest() {
-   if [[ ${MULTIBUILD_VARIANT} = 4 ]] ; then
-   cmake-multilib_src_test
-   elif [[ ${MULTIBUILD_VARIANT} = 5 ]] ; then
-   multilib_src_test
-   fi
-   }
-
-   multibuild_foreach_variant mytest
-}
-
-multilib_src_test() {
-   local builddir=${BUILD_DIR}
-
-   BUILD_DIR=${BUILD_DIR}/tests virtx cmake-utils_src_test
-
-   BUILD_DIR=${builddir}
-}



[gentoo-commits] proj/kde-sunset:master commit in: dev-libs/libdbusmenu-qt/files/, dev-libs/libdbusmenu-qt/

2020-09-07 Thread Andreas Sturmlechner
commit: a133cf0b9aa18165d667d85a2a797599d28c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Sep  7 17:48:48 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep  7 17:48:48 2020 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=a133cf0b

dev-libs/libdbusmenu-qt: Import latest version with IUSE="qt4,qt5"

This package will most likely reach EOL with Qt5 anyway.

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

 .../libdbusmenu-qt-0.9.3_pre20160218-cmake.patch   | 258 +
 .../libdbusmenu-qt-0.9.3_pre20160218-r3.ebuild |  95 
 2 files changed, 353 insertions(+)

diff --git 
a/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.9.3_pre20160218-cmake.patch 
b/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.9.3_pre20160218-cmake.patch
new file mode 100644
index ..e4668a52
--- /dev/null
+++ b/dev-libs/libdbusmenu-qt/files/libdbusmenu-qt-0.9.3_pre20160218-cmake.patch
@@ -0,0 +1,258 @@
+From 56669bd4e5ed21cfd2b0f5b94983792396695e5e Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 17 Feb 2019 19:10:55 +0100
+Subject: [PATCH] Use more GNUInstallDirs, fix pkgconfig libdir path, general
+ cleanup
+
+---
+ CMakeLists.txt| 45 ---
+ cmake/modules/FindQJSON.cmake |  2 +-
+ dbusmenu-qt-config.cmake.in   |  2 +-
+ dbusmenu-qt.pc.in |  6 ++---
+ src/CMakeLists.txt| 16 ++---
+ tests/CMakeLists.txt  | 10 
+ tools/testapp/CMakeLists.txt  |  2 +-
+ 7 files changed, 34 insertions(+), 49 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 72cbc45..2d757ec 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.11)
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_SOURCE_DIR}/cmake/modules")
+ 
+ # Build options
+-option(WITH_DOC "Build documentation (requires Doxygen)" ON)
++option(WITH_DOC "Build documentation (requires Doxygen)" OFF)
+ 
+ # Versions
+ ## Package version
+@@ -24,28 +24,8 @@ set(dbusmenu_qt_lib_PATCH_VERSION 0)
+ 
+ set(dbusmenu_qt_lib_VERSION 
${dbusmenu_qt_lib_SOVERSION}.${dbusmenu_qt_lib_API_VERSION}.${dbusmenu_qt_lib_PATCH_VERSION})
+ 
+-# Check if we want to explicitly select the Qt version to be used or 
autodetect
+-if (NOT USE_QT4 AND NOT USE_QT5)
+-# Autodetect, prefering Qt5
+-message(STATUS "Autodetecting Qt version to use")
+-find_package(Qt5Widgets QUIET)
+-if (Qt5Widgets_FOUND)
+-set(USE_QT5 TRUE)
+-endif()
+-endif()
+-
+ # Detect for which Qt version we're building
+-if (USE_QT5)
+-find_package(Qt5Widgets REQUIRED)
+-find_package(Qt5DBus REQUIRED)
+-include_directories(${Qt5Widgets_INCLUDE_DIRS} ${Qt5DBus_INCLUDE_DIRS})
+-find_package(Qt5Core REQUIRED)
+-set(CMAKE_AUTOMOC ON)
+-set(CMAKE_AUTOMOC_RELAXED_MODE ON)
+-set(CMAKE_POSITION_INDEPENDENT_CODE ON)
+-
+-set(QT_SUFFIX "qt5")
+-else()
++if (USE_QT4)
+ find_package(Qt4 REQUIRED)
+ include_directories(
+   ${QT_INCLUDE_DIR}
+@@ -55,6 +35,14 @@ else()
+   )
+ 
+ set(QT_SUFFIX "qt")
++else()
++find_package(Qt5 CONFIG REQUIRED Core DBus Widgets)
++include_directories(${Qt5Widgets_INCLUDE_DIRS} ${Qt5DBus_INCLUDE_DIRS})
++set(CMAKE_AUTOMOC ON)
++set(CMAKE_AUTOMOC_RELAXED_MODE ON)
++set(CMAKE_POSITION_INDEPENDENT_CODE ON)
++
++set(QT_SUFFIX "qt5")
+ endif()
+ 
+ include (CheckCXXCompilerFlag)
+@@ -76,9 +64,7 @@ endif (__DBUSMENU_HAVE_CXX11)
+ 
+ include(CMakePackageConfigHelpers)
+ include(GNUInstallDirs)
+-set(LIB_DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+-set(CMAKECONFIG_INSTALL_DIR "${LIB_DESTINATION}/cmake/dbusmenu-${QT_SUFFIX}")
+-set(INCLUDE_INSTALL_DIR "include/dbusmenu-${QT_SUFFIX}")
++set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/dbusmenu-${QT_SUFFIX}")
+ 
+ # dist targets
+ set(ARCHIVE_NAME libdbusmenu-${QT_SUFFIX}-${dbusmenu_qt_VERSION})
+@@ -103,7 +89,7 @@ add_dependencies(distcheck dist)
+ configure_file(dbusmenu-qt.pc.in ${CMAKE_BINARY_DIR}/dbusmenu-${QT_SUFFIX}.pc 
@ONLY)
+ 
+ install(FILES ${CMAKE_BINARY_DIR}/dbusmenu-${QT_SUFFIX}.pc
+-DESTINATION ${LIB_DESTINATION}/pkgconfig
++DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
+ )
+ 
+ add_subdirectory(src)
+@@ -118,7 +104,7 @@ if(WITH_DOC)
+ )
+ 
+ install(DIRECTORY ${CMAKE_BINARY_DIR}/html/
+-DESTINATION share/doc/libdbusmenu-${QT_SUFFIX}-doc
++DESTINATION ${CMAKE_INSTALL_DOCDIR}
+ )
+ endif(WITH_DOC)
+ 
+@@ -126,8 +112,8 @@ endif(WITH_DOC)
+ configure_package_config_file(
+ dbusmenu-qt-config.cmake.in
+ ${CMAKE_BINARY_DIR}/dbusmenu-${QT_SUFFIX}-config.cmake
+-INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR}
++INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/dbusmenu-${QT_SUFFIX}
+ PATH_VARS INCLUDE_INSTALL_DIR
+ )
+ 
+ write_basic_package_version_file(
+@@ -140,6 +126,6 @@ 

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

2020-09-07 Thread Mikle Kolyada
commit: fe7dc2dd59a75b0a573862346d6806dbca850eab
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 17:51:55 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 17:51:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe7dc2dd

app-eselect/eselect-pinentry: add myself as maintainer

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

 app-eselect/eselect-pinentry/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-eselect/eselect-pinentry/metadata.xml 
b/app-eselect/eselect-pinentry/metadata.xml
index 7a38bb90096..6698a4ab788 100644
--- a/app-eselect/eselect-pinentry/metadata.xml
+++ b/app-eselect/eselect-pinentry/metadata.xml
@@ -1,5 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   zlog...@gentoo.org
+   Mikle Kolyada
+   
 



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

2020-09-07 Thread Mikle Kolyada
commit: 5bf8266f00be4b4a32c9b079c7e2d896909e0f93
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 17:51:14 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 17:51:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf8266f

app-crypt/pinentry: add myself as maintainer

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

 app-crypt/pinentry/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-crypt/pinentry/metadata.xml b/app-crypt/pinentry/metadata.xml
index 7a38bb90096..6698a4ab788 100644
--- a/app-crypt/pinentry/metadata.xml
+++ b/app-crypt/pinentry/metadata.xml
@@ -1,5 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   zlog...@gentoo.org
+   Mikle Kolyada
+   
 



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

2020-09-07 Thread Sam James
commit: c6fbf6ca7f73c53fad643ed09533693a462cabb7
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 18:26:27 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 18:27:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6fbf6ca

app-arch/unrar: ppc64 stable (bug #738340)

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 app-arch/unrar/unrar-5.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/unrar/unrar-5.9.4.ebuild 
b/app-arch/unrar/unrar-5.9.4.ebuild
index 1f6041cd8f9..83cb6fe4479 100644
--- a/app-arch/unrar/unrar-5.9.4.ebuild
+++ b/app-arch/unrar/unrar-5.9.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="unRAR"
 # subslot = soname version
 SLOT="0/5"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"



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

2020-09-07 Thread James Le Cuirot
commit: f704e096d5916716b244bfc58178b014e5f00f50
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Sep  7 20:33:22 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep  7 20:33:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f704e096

app-arch/arj: Respect CC

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

 app-arch/arj/arj-3.10.22-r7.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-arch/arj/arj-3.10.22-r7.ebuild 
b/app-arch/arj/arj-3.10.22-r7.ebuild
index 2cfa30f4cf9..ac01385b6dd 100644
--- a/app-arch/arj/arj-3.10.22-r7.ebuild
+++ b/app-arch/arj/arj-3.10.22-r7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit autotools
+inherit autotools toolchain-funcs
 
 PATCH_LEVEL=15
 MY_P="${PN}_${PV}"
@@ -47,5 +47,6 @@ src_prepare() {
 
 src_configure() {
cd gnu || die 'failed to change to the "gnu" directory'
+   tc-export CC # Uses autoconf but not automake.
econf
 }



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

2020-09-07 Thread Sam James
commit: 15f3e8e65cbd7c7fc73c108771e28ff68e460167
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 21:20:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 21:20:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f3e8e6

net-libs/libupnp: Stabilize 1.14.0 arm64, #727170

Signed-off-by: Sam James  gentoo.org>

 net-libs/libupnp/libupnp-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.0.ebuild 
b/net-libs/libupnp/libupnp-1.14.0.ebuild
index a2a511cd245..868b27e989a 100644
--- a/net-libs/libupnp/libupnp-1.14.0.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mrjimenez/pupnp/archive/release-${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ppc ~ppc64 sparc x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ppc ~ppc64 sparc x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc ipv6 +reuseaddr samples static-libs"
 
 # bug 733750



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

2020-09-07 Thread Sam James
commit: 87354f3dc292d4ceb2879d7ac4fef854dcf18c74
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 21:19:14 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 21:19:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87354f3d

net-libs/libupnp: Stabilize 1.14.0 arm, #727170

Signed-off-by: Sam James  gentoo.org>

 net-libs/libupnp/libupnp-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.0.ebuild 
b/net-libs/libupnp/libupnp-1.14.0.ebuild
index 6a7ae044c2a..a2a511cd245 100644
--- a/net-libs/libupnp/libupnp-1.14.0.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mrjimenez/pupnp/archive/release-${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ppc ~ppc64 sparc x86 ~amd64-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ppc ~ppc64 sparc x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc ipv6 +reuseaddr samples static-libs"
 
 # bug 733750



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

2020-09-07 Thread Sam James
commit: 68567c13409138fd9a3b7165cc8834df378c826c
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 21:20:06 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 21:20:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68567c13

dev-libs/json-c: Stabilize 0.15 arm64, #740840

Signed-off-by: Sam James  gentoo.org>

 dev-libs/json-c/json-c-0.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/json-c/json-c-0.15.ebuild 
b/dev-libs/json-c/json-c-0.15.ebuild
index 9efd3c31af9..0c24ac0a9cc 100644
--- a/dev-libs/json-c/json-c-0.15.ebuild
+++ b/dev-libs/json-c/json-c-0.15.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0/5"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="cpu_flags_x86_rdrand doc static-libs threads"
 
 BDEPEND="doc? ( >=app-doc/doxygen-1.8.13 )"



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

2020-09-07 Thread Sam James
commit: 96064afb3d613a5f2532ea7d1316487662503f7c
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 21:19:43 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 21:19:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96064afb

dev-libs/json-c: Stabilize 0.15 arm, #740840

Signed-off-by: Sam James  gentoo.org>

 dev-libs/json-c/json-c-0.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/json-c/json-c-0.15.ebuild 
b/dev-libs/json-c/json-c-0.15.ebuild
index 02c606453de..9efd3c31af9 100644
--- a/dev-libs/json-c/json-c-0.15.ebuild
+++ b/dev-libs/json-c/json-c-0.15.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="cpu_flags_x86_rdrand doc static-libs threads"
 
 BDEPEND="doc? ( >=app-doc/doxygen-1.8.13 )"



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

2020-09-07 Thread Lars Wendler
commit: 99364bc1f359cdcb9dbe3d0e58fdfefb3449486d
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 21:48:35 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 21:48:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99364bc1

dev-libs/ell: Bump to version 0.33

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 dev-libs/ell/Manifest|  1 +
 dev-libs/ell/ell-0.33.ebuild | 60 
 2 files changed, 61 insertions(+)

diff --git a/dev-libs/ell/Manifest b/dev-libs/ell/Manifest
index 62f16b1d85e..cea893a53b4 100644
--- a/dev-libs/ell/Manifest
+++ b/dev-libs/ell/Manifest
@@ -1,3 +1,4 @@
 DIST ell-0.28.tar.xz 474880 BLAKE2B 
2c571f952056c9f4e3e8c245b2b57645c4baa2935fdbe758170dcfe689f4db2162322f25a80cc5a7d4d5bded6159d1fa0d583be979a2708d32e61e91d1ced585
 SHA512 
6c3aef4d403878c0c9b8a1e5e8861656f2abbab19dd275b1aecca899ca615c00aee30e18f194435ec6be859adcffbe3703a79b13508e1e76c2192ec51f7c0cd7
 DIST ell-0.31.tar.xz 478860 BLAKE2B 
f8f8d109605bf62396da001bd3d9b48fd6b7a6fc94ab890ab5a56fc8afb07a216b884fdf4b624ac8f39c3196de8149c7b32790da03262400aac6f8cd8b3fb56b
 SHA512 
e304cc3bb1355fc0671412e793530503c83b1a036bfa3dd5b0cc36cfb28684b780293dc3d81a5727e0030743529882f71ac28d3c735860f6d46477e8ccf6a6e8
 DIST ell-0.32.tar.xz 479012 BLAKE2B 
909c63f590ba45e5e9aabf0e7c5ce1c44ee5b5235472071ec16c4e160eddfd38dc5383103a684c4d43e325e832965cdade5d8465990ed4c2a2aa44b52d60869b
 SHA512 
13712ac4ff7165b749b8e2dcd5cad4cd8170600c3dca7304eb4068ee916c1187207bc24ffa5d64c9d33253d4a8f56c63b627ad0783d5ca38d78f625211fdc315
+DIST ell-0.33.tar.xz 490180 BLAKE2B 
fc0f558a54bd57d7866c77ba3fdd97e0f35c33fd7ca79f6209c097824b303e69924ee9eb758af3a1881e8e87ac3ad84bea20767cd824cb8366a080eacac8b4be
 SHA512 
4f0960b757c5cae55bf46a10aabb52280a76eda2a2d55ecc92f2a1321b72e936cab47102995597e985072d032f10379fdfc4f56360e535eeac444dab8b171ded

diff --git a/dev-libs/ell/ell-0.33.ebuild b/dev-libs/ell/ell-0.33.ebuild
new file mode 100644
index 000..6c1b0433977
--- /dev/null
+++ b/dev-libs/ell/ell-0.33.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic linux-info multilib-minimal
+
+DESCRIPTION="Embedded Linux Library provides core, low-level functionality for 
system daemons"
+HOMEPAGE="https://01.org/ell;
+if [[ "${PV}" == * ]] ; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git;
+else
+   
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86"
+fi
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+IUSE="glib pie test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( sys-apps/dbus )
+"
+
+CONFIG_CHECK="
+   ~TIMERFD
+   ~EVENTFD
+   ~CRYPTO_USER_API
+   ~CRYPTO_USER_API_HASH
+   ~CRYPTO_MD5
+   ~CRYPTO_SHA1
+   ~KEY_DH_OPERATIONS
+"
+
+src_prepare() {
+   default
+   [[ "${PV}" == * ]] && eautoreconf
+}
+
+multilib_src_configure() {
+   append-cflags "-fsigned-char" #662694
+   local myeconfargs=(
+   $(use_enable glib)
+   $(use_enable pie)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   local DOCS=( ChangeLog README )
+   einstalldocs
+
+   find "${ED}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2020-09-07 Thread Lars Wendler
commit: 3bb294b616ed42eb9d86a9db0812024eaea303a2
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Sep  7 22:41:59 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Sep  7 22:42:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb294b6

net-fs/samba: Bump to version 4.13.0_rc4. Removed old

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler  gentoo.org>

 net-fs/samba/Manifest | 2 +-
 net-fs/samba/{samba-4.13.0_rc2.ebuild => samba-4.13.0_rc4.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index c4e2b8a0275..cc1be035fb5 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,3 +1,3 @@
 DIST samba-4.11.11.tar.gz 18590837 BLAKE2B 
0d585d4561717c6a08ac51fb8ae9944901aa81e437fc8e78ca22e5a43232295002f5456d78b302278aa7a0a4596f8c5b0b910e092aa54a8d9c46fd804b772d33
 SHA512 
71403fe4c1de3730b115a7e1b1cdfcae6f2e8c7ca8b18ed154be309f06484d136e66ef64379409c6e39ade3b5bfa5587f9229755e9ee1747915c546fd1f08d5f
 DIST samba-4.12.6.tar.gz 18224870 BLAKE2B 
5a8086c3575dd46cc8f428db818dc3db8772fa08fb7a431940377219f782555923f9b0a62b067b4c89a0208aa022bfa0c0664706a1241487183344e822c20bc3
 SHA512 
16a4ced3942bc6d51e80db257e8caeaa426980f66caf2aaf2324f091ec5063bc6b9029d90ff2f321b68be4cede7555d1ebf142405105468bd581e7a7bf9f0be5
-DIST samba-4.13.0rc2.tar.gz 18402249 BLAKE2B 
cfef9747b18863806a3aa3eb87e9f67c9dcaf45cc20d6129b8e9e876234eaf19f7acfa4ba0932434f9b12082010448dc1361fa4edae22c0e5d410164cbd0a52d
 SHA512 
4779c45dde0f96b3fc64f70e7fb8f8e8e2df67f0b5d39de88714f04224937ab27cd39bbc7bdd276fc0344d100dc6f741adbff38240e91807ac34cf46d6c10759
+DIST samba-4.13.0rc4.tar.gz 18405219 BLAKE2B 
be29a5307931da4a8caee05a35ae34b89b9b256015a88904a4b5545e1bc6ec4c2aa5a6a04120c11a382c74d279fad16944f1de8080c9e7aa0da52f8567b939d6
 SHA512 
07a7051b3b1d0bbe8bd5ab5534ec5d6604b168f3f2cf061b3f2d4e0222ab30c2122f7d02a092f7b64ed6f78577f15a1a5ac0731c47e7d67c5c637a318c164cae

diff --git a/net-fs/samba/samba-4.13.0_rc2.ebuild 
b/net-fs/samba/samba-4.13.0_rc4.ebuild
similarity index 99%
rename from net-fs/samba/samba-4.13.0_rc2.ebuild
rename to net-fs/samba/samba-4.13.0_rc4.ebuild
index bec90f848db..ae09ce8cd65 100644
--- a/net-fs/samba/samba-4.13.0_rc2.ebuild
+++ b/net-fs/samba/samba-4.13.0_rc4.ebuild
@@ -212,7 +212,7 @@ multilib_src_configure() {
$(multilib_native_use_with pam)
$(multilib_native_usex pam 
"--with-pammodulesdir=${EPREFIX}/$(get_libdir)/security" '')
$(multilib_native_use_with quota quotas)
-   $(multilib_native_use_enable snapper)
+   $(multilib_native_usex snapper '' 
'--with-shared-modules=!vfs_snapper')
$(multilib_native_use_with syslog)
$(multilib_native_use_with systemd)
--systemd-install-services



[gentoo-commits] proj/portage:master commit in: cnf/repo.postsync.d/, man/, bin/

2020-09-07 Thread Zac Medico
commit: 00bb1df12827cfce898e6fce8514d59a4cc844b1
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Sep  1 06:44:57 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Sep  8 00:35:38 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=00bb1df1

egencache --update-pkg-desc-index: emulate esync --verbose output (bug 737470)

When the --verbose flag is given, make --update-pkg-desc-index emulate
esync --verbose output. Example:

 * Searching for changes

 [ N] acct-group/ultimaker (0):  Group for ultimaker
 [ N] acct-user/ultimaker (0):  User for ultimaker
 [ U] www-client/opera (70.0.3728.144):  A fast and secure web browser
 [MU] www-client/opera-developer (72.0.3798.0):  A fast and secure web browser
 [ U] x11-libs/gtksourceview (4.6.1-r1):  A text widget implementing syntax 
highlighting and other features

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

 bin/egencache   | 76 +
 cnf/repo.postsync.d/example |  2 +-
 man/egencache.1 |  3 ++
 3 files changed, 74 insertions(+), 7 deletions(-)

diff --git a/bin/egencache b/bin/egencache
index 264c600fe..532e37f20 100755
--- a/bin/egencache
+++ b/bin/egencache
@@ -35,6 +35,7 @@ else:
 
 signal.signal(debug_signum, debug_signal)
 
+import functools
 import io
 import logging
 import subprocess
@@ -50,8 +51,10 @@ portage._internal_caller = True
 from portage import os, _encodings, _unicode_encode, _unicode_decode
 from _emerge.MetadataRegen import MetadataRegen
 from portage.cache.cache_errors import CacheError, StatCollision
-from portage.cache.index.pkg_desc_index import pkg_desc_index_line_format
+from portage.cache.index.pkg_desc_index import pkg_desc_index_line_format, 
pkg_desc_index_line_read
 from portage.const import TIMESTAMP_FORMAT
+from portage.dep import _repo_separator
+from portage.output import colorize, EOutput
 from portage.package.ebuild._parallel_manifest.ManifestScheduler import 
ManifestScheduler
 from portage.util import cmp_sort_key, writemsg_level
 from portage.util._async.AsyncFunction import AsyncFunction
@@ -131,6 +134,9 @@ def parse_args(args):
common.add_argument("--ignore-default-opts",
action="store_true",
help="do not use the EGENCACHE_DEFAULT_OPTS environment 
variable")
+   common.add_argument("-v", "--verbose",
+   action="count", default=0,
+   help="increase verbosity")
common.add_argument("--write-timestamp",
action="store_true",
help="write metadata/timestamp.chk as required for rsync 
repositories")
@@ -448,13 +454,27 @@ class GenCache:
trg_cache._prune_empty_dirs()
 
 class GenPkgDescIndex:
-   def __init__(self, portdb, output_file):
+   def __init__(self, repo_config, portdb, output_file, verbose=False):
self.returncode = os.EX_OK
+   self._repo_config = repo_config
self._portdb = portdb
self._output_file = output_file
+   self._verbose = verbose
 
def run(self):
 
+   display_updates = self._verbose > 0
+   old = {}
+   new = {}
+   if display_updates:
+   try:
+   with open(self._output_file, 'rt', 
encoding=_encodings["repo.content"]) as f:
+   for line in f:
+   pkg_desc = 
pkg_desc_index_line_read(line)
+   old[pkg_desc.cp] = pkg_desc
+   except FileNotFoundError:
+   pass
+
portage.util.ensure_dirs(os.path.dirname(self._output_file))
f = portage.util.atomic_ofstream(self._output_file,
encoding=_encodings["repo.content"])
@@ -466,10 +486,52 @@ class GenPkgDescIndex:
continue
desc, = portdb.aux_get(pkgs[-1], ["DESCRIPTION"])
 
-   f.write(pkg_desc_index_line_format(cp, pkgs, desc))
+   line = pkg_desc_index_line_format(cp, pkgs, desc)
+   f.write(line)
+   if display_updates:
+   new[cp] = pkg_desc_index_line_read(line)
 
f.close()
 
+   if display_updates:
+   out = EOutput()
+   out.einfo("Searching for changes")
+   print("")
+   items = sorted(new.values(), key=lambda pkg_desc: 
pkg_desc.cp)
+   haspkgs = False
+   for pkg_desc in items:
+   masked = False
+   version = 
self._portdb.xmatch("bestmatch-visible",
+   

[gentoo-commits] repo/gentoo:master commit in: acct-user/deluge/, www-apps/ampache/, acct-user/monkeysphere/, ...

2020-09-07 Thread Michał Górny
commit: fc6cdd4c0f7f63e5bb1b1aabe606a98c26d6ccb0
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  7 17:44:41 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  7 17:45:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc6cdd4c

*/*: reassign k_f's packages

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

 acct-group/deluge/metadata.xml| 4 
 acct-group/monkeysphere/metadata.xml  | 5 +
 acct-user/deluge/metadata.xml | 4 
 acct-user/monkeysphere/metadata.xml   | 5 +
 app-crypt/ekeyd/metadata.xml  | 5 +
 app-crypt/gnupg/metadata.xml  | 4 
 app-crypt/gpgme/metadata.xml  | 4 
 app-crypt/monkeysphere/metadata.xml   | 5 +
 app-crypt/nasty/metadata.xml  | 5 +
 app-crypt/pinentry/metadata.xml   | 5 +
 app-eselect/eselect-pinentry/metadata.xml | 5 +
 app-office/texmaker/metadata.xml  | 6 +-
 dev-libs/libassuan/metadata.xml   | 4 
 dev-libs/libgcrypt/metadata.xml   | 5 +
 dev-libs/libgpg-error/metadata.xml| 4 
 dev-libs/libksba/metadata.xml | 6 +-
 dev-libs/npth/metadata.xml| 5 +
 net-misc/sks/metadata.xml | 5 +
 net-p2p/deluge/metadata.xml   | 4 
 sys-power/apcupsd/metadata.xml| 4 
 www-apps/ampache/metadata.xml | 7 ++-
 21 files changed, 14 insertions(+), 87 deletions(-)

diff --git a/acct-group/deluge/metadata.xml b/acct-group/deluge/metadata.xml
index 8984bd6608b..f81d723becc 100644
--- a/acct-group/deluge/metadata.xml
+++ b/acct-group/deluge/metadata.xml
@@ -5,10 +5,6 @@
paolo.pedr...@iol.it
Paolo Pedroni

-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   

candr...@gentoo.org
Craig Andrews

diff --git a/acct-group/monkeysphere/metadata.xml 
b/acct-group/monkeysphere/metadata.xml
index 91439c59951..7a38bb90096 100644
--- a/acct-group/monkeysphere/metadata.xml
+++ b/acct-group/monkeysphere/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   
+   
 

diff --git a/acct-user/deluge/metadata.xml b/acct-user/deluge/metadata.xml
index 8984bd6608b..f81d723becc 100644
--- a/acct-user/deluge/metadata.xml
+++ b/acct-user/deluge/metadata.xml
@@ -5,10 +5,6 @@
paolo.pedr...@iol.it
Paolo Pedroni

-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   

candr...@gentoo.org
Craig Andrews

diff --git a/acct-user/monkeysphere/metadata.xml 
b/acct-user/monkeysphere/metadata.xml
index 91439c59951..7a38bb90096 100644
--- a/acct-user/monkeysphere/metadata.xml
+++ b/acct-user/monkeysphere/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   
+   
 

diff --git a/app-crypt/ekeyd/metadata.xml b/app-crypt/ekeyd/metadata.xml
index 3e3574ab103..e93d2583ff5 100644
--- a/app-crypt/ekeyd/metadata.xml
+++ b/app-crypt/ekeyd/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   
+   


Build the libusb-based userland daemon for accessing the

diff --git a/app-crypt/gnupg/metadata.xml b/app-crypt/gnupg/metadata.xml
index 63b72a93e2f..2852eaacdcd 100644
--- a/app-crypt/gnupg/metadata.xml
+++ b/app-crypt/gnupg/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   

zlog...@gentoo.org
Mikle Kolyada

diff --git a/app-crypt/gpgme/metadata.xml b/app-crypt/gpgme/metadata.xml
index a07228517f2..3ba821be5c3 100644
--- a/app-crypt/gpgme/metadata.xml
+++ b/app-crypt/gpgme/metadata.xml
@@ -5,10 +5,6 @@
Lars Wendler
polynomia...@gentoo.org

-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   

Install common-lisp files


diff --git a/app-crypt/monkeysphere/metadata.xml 
b/app-crypt/monkeysphere/metadata.xml
index 91439c59951..7a38bb90096 100644
--- a/app-crypt/monkeysphere/metadata.xml
+++ b/app-crypt/monkeysphere/metadata.xml
@@ -1,8 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   k...@gentoo.org
-   Kristian Fiskerstrand
-   
+   
 

diff --git a/app-crypt/nasty/metadata.xml b/app-crypt/nasty/metadata.xml
index 91439c59951..7a38bb90096 100644
--- a/app-crypt/nasty/metadata.xml
+++ b/app-crypt/nasty/metadata.xml

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

2020-09-07 Thread Sam James
commit: 5b39fbc2e541640f5f1825c88ef934da35b1341b
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 19:07:38 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 19:08:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b39fbc2

mail-mta/postfix: Stabilize 3.5.6 amd64, #740428

Signed-off-by: Sam James  gentoo.org>

 mail-mta/postfix/postfix-3.5.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/postfix-3.5.6.ebuild 
b/mail-mta/postfix/postfix-3.5.6.ebuild
index 7600e205528..645d512ad8d 100644
--- a/mail-mta/postfix/postfix-3.5.6.ebuild
+++ b/mail-mta/postfix/postfix-3.5.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${MY_URI}/${MY_SRC}.tar.gz"
 
 LICENSE="|| ( IBM EPL-2.0 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE="+berkdb cdb dovecot-sasl +eai hardened ldap ldap-bind libressl lmdb 
memcached mbox mysql nis pam postgres sasl selinux sqlite ssl"
 
 DEPEND=">=dev-libs/libpcre-3.4



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

2020-09-07 Thread Mike Gilbert
commit: b2b4c98c18f0d65996a9f453f380a45d15d98d3f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Sep  7 21:02:03 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Sep  7 21:02:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b4c98c

www-client/google-chrome-beta: automated update (86.0.4240.22)

Package-Manager: Portage-3.0.5, Repoman-3.0.1_p5
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-85.0.4183.83.ebuild => google-chrome-beta-86.0.4240.22.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 8b019b579b5..cf724d61214 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_85.0.4183.83-1_amd64.deb 70238712 BLAKE2B 
919213a02924b3720fafb566de62d5397d54495071c8e97c426642e54c43208538fe19c0df96bd0d721bc5e8870ccebf551dcffed61394876414e94f32b6c4bd
 SHA512 
0bf9ecc8e8ce15420a41e64aa6510e9051f5ff7c46f9bc8588dcb296111ff61331e8d416915ca72438dc33f6912c2d6db2e64c6656a432cfb16f5295e42cc0b3
+DIST google-chrome-beta_86.0.4240.22-1_amd64.deb 71106776 BLAKE2B 
190ca88d12032a290fd673d208c23c098d88ca5b8dca226beebe07225dea3ce07f66c7941f1ca264fb768df8d687d4bb764f9426a4ce66f891c6a84b80870bd9
 SHA512 
c211b0ddbf131980b60919bab2f7f23ed1277b8d6a44026531c858126ebf072ba643a0f5b981699754d517a91c8c2ff0eea104473a7157d65d63f6bb56b650e8

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-85.0.4183.83.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-86.0.4240.22.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-85.0.4183.83.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-86.0.4240.22.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2020-09-07 Thread Mike Gilbert
commit: ea928a3984532ba304b7da731afb9892447e0bdd
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Sep  7 21:02:17 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Sep  7 21:02:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea928a39

www-client/google-chrome-unstable: automated update (87.0.4252.0)

Package-Manager: Portage-3.0.5, Repoman-3.0.1_p5
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...ble-86.0.4240.8.ebuild => google-chrome-unstable-87.0.4252.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index 6d789b43a6c..7d121e1d33e 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_86.0.4240.8-1_amd64.deb 71085400 BLAKE2B 
78bf502898a2fb4456c01a8109aa76e863197435a8db18baecac122eba41e89e9ddd825a06a26f3f4962ae855f857dc200cd5204e5c531edb58ef7268199
 SHA512 
43bea9be1e0b53c10ee13afab010fba80364e211dc5c42885fc9d23f603f9038863f0fe26bf46b77d7b818b030138e68acc03a1884bb6172378da9df51a78aca
+DIST google-chrome-unstable_87.0.4252.0-1_amd64.deb 71378692 BLAKE2B 
c13f44f515000fa7e6d5453f34a36cd28963e55c45b502f48825e4842cc03405edb8bda8739cc7479eaa0b1c45e7acf7bbe8128650acbb9128f5a5cfdec21a72
 SHA512 
8d9fc9e0373b67633c00c8328c83e1753fc6429f66a32c109bdc9601d030245200b7fd75a79828cbd55f5ef896a4c03ac674d29c71ed5e005ee74b2d5f0a0bde

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-86.0.4240.8.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-87.0.4252.0.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-86.0.4240.8.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-87.0.4252.0.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2020-09-07 Thread Mike Gilbert
commit: 91562b3552eed368a1299a32f445092d39ef939e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Sep  7 21:02:25 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Sep  7 21:02:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91562b35

www-plugins/chrome-binary-plugins: automated update

Package-Manager: Portage-3.0.5, Repoman-3.0.1_p5
Signed-off-by: Mike Gilbert  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest| 4 ++--
 83_beta.ebuild => chrome-binary-plugins-86.0.4240.22_beta.ebuild} | 0
 8_alpha.ebuild => chrome-binary-plugins-87.0.4252.0_alpha.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 8fad258a209..35ccd3d9a32 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_85.0.4183.83-1_amd64.deb 70238712 BLAKE2B 
919213a02924b3720fafb566de62d5397d54495071c8e97c426642e54c43208538fe19c0df96bd0d721bc5e8870ccebf551dcffed61394876414e94f32b6c4bd
 SHA512 
0bf9ecc8e8ce15420a41e64aa6510e9051f5ff7c46f9bc8588dcb296111ff61331e8d416915ca72438dc33f6912c2d6db2e64c6656a432cfb16f5295e42cc0b3
+DIST google-chrome-beta_86.0.4240.22-1_amd64.deb 71106776 BLAKE2B 
190ca88d12032a290fd673d208c23c098d88ca5b8dca226beebe07225dea3ce07f66c7941f1ca264fb768df8d687d4bb764f9426a4ce66f891c6a84b80870bd9
 SHA512 
c211b0ddbf131980b60919bab2f7f23ed1277b8d6a44026531c858126ebf072ba643a0f5b981699754d517a91c8c2ff0eea104473a7157d65d63f6bb56b650e8
 DIST google-chrome-stable_85.0.4183.83-1_amd64.deb 70228112 BLAKE2B 
877582ff8586be93abc47db6ccb6b15f16dd4ca21d85826b2e97d31eeab3ac1d6cdde73791683e999f965a00324505b84cee8f5cfc7a2b62ad502a6c1c1e5b05
 SHA512 
e789ff39595daacc47ce5402ce1f0452d99e82350c5d24e071d85d17ceb7956183d717c7d99879eb5517b03049f9afb1407189373793805d8fae2be6961cff92
-DIST google-chrome-unstable_86.0.4240.8-1_amd64.deb 71085400 BLAKE2B 
78bf502898a2fb4456c01a8109aa76e863197435a8db18baecac122eba41e89e9ddd825a06a26f3f4962ae855f857dc200cd5204e5c531edb58ef7268199
 SHA512 
43bea9be1e0b53c10ee13afab010fba80364e211dc5c42885fc9d23f603f9038863f0fe26bf46b77d7b818b030138e68acc03a1884bb6172378da9df51a78aca
+DIST google-chrome-unstable_87.0.4252.0-1_amd64.deb 71378692 BLAKE2B 
c13f44f515000fa7e6d5453f34a36cd28963e55c45b502f48825e4842cc03405edb8bda8739cc7479eaa0b1c45e7acf7bbe8128650acbb9128f5a5cfdec21a72
 SHA512 
8d9fc9e0373b67633c00c8328c83e1753fc6429f66a32c109bdc9601d030245200b7fd75a79828cbd55f5ef896a4c03ac674d29c71ed5e005ee74b2d5f0a0bde

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-85.0.4183.83_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-86.0.4240.22_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-85.0.4183.83_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-86.0.4240.22_beta.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-86.0.4240.8_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-87.0.4252.0_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-86.0.4240.8_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-87.0.4252.0_alpha.ebuild



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

2020-09-07 Thread Jonas Stein
commit: 3f5b5c3351aeb7ee63acc019053179f0b97d5d3a
Author: Jonas Stein  gentoo  org>
AuthorDate: Mon Sep  7 22:02:56 2020 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Mon Sep  7 22:03:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f5b5c33

net-analyzer/nload: QA fix, shorten DESCRIPTION

Shortened DESCRIPTION

Package-Manager: Portage-3.0.5, Repoman-2.3.23
Signed-off-by: Jonas Stein  gentoo.org>

 net-analyzer/nload/nload-0.7.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/nload/nload-0.7.4.ebuild 
b/net-analyzer/nload/nload-0.7.4.ebuild
index b8bc8eed7b2..d9c1f49430d 100644
--- a/net-analyzer/nload/nload-0.7.4.ebuild
+++ b/net-analyzer/nload/nload-0.7.4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 inherit autotools eutils
 
-DESCRIPTION="console application which monitors network traffic and bandwidth 
usage in real time"
+DESCRIPTION="Real time network traffic monitor for the command line interface"
 HOMEPAGE="http://www.roland-riegel.de/nload/index.html;
 SRC_URI="http://www.roland-riegel.de/nload/${P}.tar.gz;
 



[gentoo-commits] proj/portage:master commit in: lib/portage/sync/modules/rsync/, lib/portage/sync/, ...

2020-09-07 Thread Zac Medico
commit: ddbe8bd019552573b3f9c1ef2e5701df2edb4dd6
Author: Frédéric Pierret (fepitre)  qubes-os  
org>
AuthorDate: Tue Aug 18 15:00:16 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep  7 23:31:06 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ddbe8bd0

syncbase: update with newer Gemato proxy parameter in openpgp env

- Handle global proxy setting which is overrided by the one provided
in Portage configuration (if exists).

Bug: https://bugs.gentoo.org/740904
Closes: https://github.com/gentoo/portage/pull/607
See: 
https://github.com/mgorny/gemato/commit/9980de271de4f8f5e993e2b634d0e8d7753e382f
Signed-off-by: Frédéric Pierret (fepitre)  qubes-os.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/sync/modules/git/git.py   | 14 ++
 lib/portage/sync/modules/rsync/rsync.py   |  7 ++-
 lib/portage/sync/modules/webrsync/webrsync.py |  4 ++--
 lib/portage/sync/syncbase.py  | 21 +
 4 files changed, 31 insertions(+), 15 deletions(-)

diff --git a/lib/portage/sync/modules/git/git.py 
b/lib/portage/sync/modules/git/git.py
index d87f1a601..8065fff33 100644
--- a/lib/portage/sync/modules/git/git.py
+++ b/lib/portage/sync/modules/git/git.py
@@ -207,19 +207,17 @@ class GitSync(NewBase):
'sync-git-verify-commit-signature', 
'false').lower() not in ('true', 'yes')):
return True
 
-   if self.repo.sync_openpgp_key_path is not None:
-   if gemato is None:
-   writemsg_level("!!! Verifying against specified 
key requires gemato-11.0+ installed\n",
+   if self.repo.sync_openpgp_key_path is not None and gemato is 
None:
+   writemsg_level("!!! Verifying against specified key 
requires gemato-14.5+ installed\n",
level=logging.ERROR, noiselevel=-1)
-   return False
-   openpgp_env = gemato.openpgp.OpenPGPEnvironment()
-   else:
-   openpgp_env = None
+   return False
+
+   openpgp_env = 
self._get_openpgp_env(self.repo.sync_openpgp_key_path)
 
try:
out = EOutput()
env = None
-   if openpgp_env is not None:
+   if openpgp_env is not None and 
self.repo.sync_openpgp_key_path is not None:
try:
out.einfo('Using keys from %s' % 
(self.repo.sync_openpgp_key_path,))
with 
io.open(self.repo.sync_openpgp_key_path, 'rb') as f:

diff --git a/lib/portage/sync/modules/rsync/rsync.py 
b/lib/portage/sync/modules/rsync/rsync.py
index 35d1461e4..54e285d88 100644
--- a/lib/portage/sync/modules/rsync/rsync.py
+++ b/lib/portage/sync/modules/rsync/rsync.py
@@ -133,10 +133,7 @@ class RsyncSync(NewBase):
if self.verify_metamanifest and gemato is not None:
# Use isolated environment if key is specified,
# system environment otherwise
-   if self.repo.sync_openpgp_key_path is not None:
-   openpgp_env = 
gemato.openpgp.OpenPGPEnvironment()
-   else:
-   openpgp_env = 
gemato.openpgp.OpenPGPSystemEnvironment()
+   openpgp_env = 
self._get_openpgp_env(self.repo.sync_openpgp_key_path)
 
try:
# Load and update the keyring early. If it fails, then 
verification
@@ -361,7 +358,7 @@ class RsyncSync(NewBase):
# if synced successfully, verify now
if exitcode == 0 and self.verify_metamanifest:
if gemato is None:
-   writemsg_level("!!! Unable to verify: 
gemato-11.0+ is required\n",
+   writemsg_level("!!! Unable to verify: 
gemato-14.5+ is required\n",
level=logging.ERROR, 
noiselevel=-1)
exitcode = 127
else:

diff --git a/lib/portage/sync/modules/webrsync/webrsync.py 
b/lib/portage/sync/modules/webrsync/webrsync.py
index 20cc25a2c..cc0dbc4a9 100644
--- a/lib/portage/sync/modules/webrsync/webrsync.py
+++ b/lib/portage/sync/modules/webrsync/webrsync.py
@@ -75,11 +75,11 @@ class WebRsync(SyncBase):
return (1, False)
 
if gemato is None:
-   writemsg_level("!!! Verifying against 
specified key requires gemato-11.0+ installed\n",
+   writemsg_level("!!! Verifying against 
specified key requires gemato-14.5+ 

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

2020-09-07 Thread Sam James
commit: fd115f21fea676352cff55337fd78486c6998897
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 23:35:00 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 23:35:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd115f21

sys-cluster/ipvsadm: drop old EAPI 4 ebuild

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/ipvsadm/Manifest   |   1 -
 .../ipvsadm/files/ipvsadm-1.26-buildsystem.patch   | 113 -
 .../files/ipvsadm-1.26-stack_smashing.patch|  32 --
 sys-cluster/ipvsadm/ipvsadm-1.26-r2.ebuild |  64 
 4 files changed, 210 deletions(-)

diff --git a/sys-cluster/ipvsadm/Manifest b/sys-cluster/ipvsadm/Manifest
index cc6ea43e31c..4107ba63500 100644
--- a/sys-cluster/ipvsadm/Manifest
+++ b/sys-cluster/ipvsadm/Manifest
@@ -1,3 +1,2 @@
-DIST ipvsadm-1.26.tar.gz 41700 BLAKE2B 
ef8b089bd4d21297ae6fde01a9214cf07633cc286765e6f8110b04589c5d9b6dc4624457899c4ea48ddd08b495a9c090b26d1dc5094b5fb7cafcd5342c729caf
 SHA512 
873e23a6bdaabc153b00f1ede3853c947e8c8cfb4e18364d55197c74f26cc883ca469e074a90f377fbfd5e73e0cd6c1fe414c9f7a5c28b0d4431af58056eced4
 DIST ipvsadm-1.27.tar.xz 38196 BLAKE2B 
1b8a72b11c14a909b8b7459c459195d32bb7944ed4a01d963e2b85e8279c5d7d2fd095d9c23473c64dc15881a2b22b439b39c10b2019b3183f54e22535a258a9
 SHA512 
cf982b7981674c91d1b7516de7b55cf378b306ce4a53e13976b8eeb8610015c4fa4aa9d251bc4d329db8e05c1862863160af2d3c63b76263f290087cffdf1b80
 DIST ipvsadm-1.28.tar.xz 38600 BLAKE2B 
2a892f858324788b425f7c5aa6ce6a1548c6cd166977d1d36a5236061d1a6ce7e31f6bc1e24a7d53a57406e468271ccebc01330de6be9784c1a955b60eb89d16
 SHA512 
a1e10ce30751d9439f832e221e5c41b338f87dcc94a0b21329d908a9164f8882049af9d9d918b764b36c30e353d5b8db49d7088e60c24e4748713c06cccf7035

diff --git a/sys-cluster/ipvsadm/files/ipvsadm-1.26-buildsystem.patch 
b/sys-cluster/ipvsadm/files/ipvsadm-1.26-buildsystem.patch
deleted file mode 100644
index ba8e9450eb3..000
--- a/sys-cluster/ipvsadm/files/ipvsadm-1.26-buildsystem.patch
+++ /dev/null
@@ -1,113 +0,0 @@
 a/Makefile
-+++ b/Makefile
-@@ -43,14 +43,13 @@
- INIT  = $(BUILD_ROOT)/etc/rc.d/init.d
- MKDIR = mkdir
- INSTALL   = install
--STATIC_LIBS   = libipvs/libipvs.a
- 
- ifeq "${ARCH}" "sparc64"
--CFLAGS = -Wall -Wunused -Wstrict-prototypes -g -m64 -pipe 
-mcpu=ultrasparc -mcmodel=medlow
-+CFLAGS := -g -m64 -pipe -mcpu=ultrasparc -mcmodel=medlow
- else
--CFLAGS = -Wall -Wunused -Wstrict-prototypes -g
-+CFLAGS := -g
- endif
--
-+OPTFLAGS += -Wall -Wunused -Wstrict-prototypes
- 
- #
- # No servicable parts below this line
-@@ -94,10 +93,12 @@
- all:libs ipvsadm
- 
- libs:
--  make -C libipvs
-+  $(MAKE) -C libipvs
-+
-+$(OBJS):  libs
- 
--ipvsadm:  $(OBJS) $(STATIC_LIBS)
--  $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
-+ipvsadm:  $(OBJS)
-+  $(CC) $(LDFLAGS) $(OPTFLAGS) $(CFLAGS) -o $@ $^ -Llibipvs 
-lipvs $(LIBS)
- 
--install:all
-+install:
-   if [ ! -d $(SBIN) ]; then $(MKDIR) -p $(SBIN); fi
-@@ -108,15 +109,13 @@
-   $(INSTALL) -m 0644 ipvsadm.8 $(MAN)
-   $(INSTALL) -m 0644 ipvsadm-save.8 $(MAN)
-   $(INSTALL) -m 0644 ipvsadm-restore.8 $(MAN)
--  [ -d $(INIT) ] || $(MKDIR) -p $(INIT)
--  $(INSTALL) -m 0755 ipvsadm.sh $(INIT)/ipvsadm
- 
- clean:
-   rm -f ipvsadm $(NAME).spec $(NAME)-$(VERSION).tar.gz
-   rm -rf debian/tmp
-   find . -name '*.[ao]' -o -name "*~" -o -name "*.orig" \
- -o -name "*.rej" -o -name core | xargs rm -f
--  make -C libipvs clean
-+  $(MAKE) -C libipvs clean
- 
- distclean:clean
- 
-@@ -149,4 +148,4 @@
-   dpkg-buildpackage
- 
- %.o:  %.c
--  $(CC) $(CFLAGS) $(INCLUDE) $(DEFINES) -c -o $@ $<
-+  $(CC) $(OPTFLAGS) $(CFLAGS) $(INCLUDE) $(DEFINES) -c -o $@ $<
 a/libipvs/Makefile
-+++ b/libipvs/Makefile
-@@ -1,32 +1,39 @@
- # Makefile for libipvs
- 
- CC= gcc
--CFLAGS= -Wall -Wunused -Wstrict-prototypes -g -fPIC
-+OPTFLAGS = -Wall -Wunused -Wstrict-prototypes
- ifneq (0,$(HAVE_NL))
--CFLAGS+= -DLIBIPVS_USE_NL
-+DEFINES += -DLIBIPVS_USE_NL
- endif
- 
- INCLUDE   += $(shell if [ -f ../../ip_vs.h ]; then\
-echo "-I../../."; fi;)
--DEFINES   = $(shell if [ ! -f ../../ip_vs.h ]; then   \
-+DEFINES   += $(shell if [ ! -f ../../ip_vs.h ]; then  \
-   echo "-DHAVE_NET_IP_VS_H"; fi;)
- 
- .PHONY= all clean install dist distclean rpm rpms
--STATIC_LIB= libipvs.a
--SHARED_LIB= libipvs.so
- 
--all:  $(STATIC_LIB) $(SHARED_LIB)
-+TARGETS = libipvs.so
- 
--$(STATIC_LIB):libipvs.o ip_vs_nl_policy.o

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

2020-09-07 Thread Zac Medico
commit: 45a5982fe8076066323e91f6b5fe860f3a429f9f
Author: Florian Schmaus  geekplace  eu>
AuthorDate: Sat Sep  5 07:18:17 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Sep  8 00:01:47 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=45a5982f

env-update: create systemd user-session environment definition

Portage's env-update currently transforms the environment information
from /etc/env.d into /etc/profile.env, which is typically sourced by
every user session, setting up its environment.

However, /etc/profile.env is not sourced by systemd user
services. Instead, for the definition of a systemd user session
environment, the 'environment.d' machinery exists. Unfortunately, up
to now, env-update does not produce a profile.env equivalent for this
machinery, causing issues for systemd user services. For example, an
emacs daemon run as user systemd service does not have a complete
PATH (bug #704412 [1]), because some PATH components are injected by
packages via /etc/env.d. For example, an LLVM ebuild may set
PATH="/usr/lib/llvm/9/bin".

This commit changes env-update so that a systemd user session
environment configuration file named

/etc/environment.d/10-gentoo-env.conf

is created.

Thanks to Michael 'veremitz' Everitt, Arfrever Frehtes Taifersar
Arahesis, Ulrich Müller, Joakim Tjernlund, and Zac Medico for the
useful feedback.

1: https://bugs.gentoo.org/704412

Bug: https://bugs.gentoo.org/704416
Signed-off-by: Florian Schmaus  geekplace.eu>
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/util/env_update.py | 42 +++---
 1 file changed, 39 insertions(+), 3 deletions(-)

diff --git a/lib/portage/util/env_update.py b/lib/portage/util/env_update.py
index f130b6f6b..dec086cf8 100644
--- a/lib/portage/util/env_update.py
+++ b/lib/portage/util/env_update.py
@@ -333,14 +333,16 @@ def _env_update(makelinks, target_root, prev_mtimes, 
contents, env,
 
del specials["LDPATH"]
 
-   penvnotice  = "# THIS FILE IS AUTOMATICALLY GENERATED BY env-update.\n"
-   penvnotice += "# DO NOT EDIT THIS FILE. CHANGES TO STARTUP PROFILES\n"
+   notice  = "# THIS FILE IS AUTOMATICALLY GENERATED BY env-update.\n"
+   notice += "# DO NOT EDIT THIS FILE."
+   penvnotice  = notice + " CHANGES TO STARTUP PROFILES\n"
cenvnotice  = penvnotice[:]
penvnotice += "# GO INTO /etc/profile NOT /etc/profile.env\n\n"
cenvnotice += "# GO INTO /etc/csh.cshrc NOT /etc/csh.env\n\n"
 
#create /etc/profile.env for bash support
-   outfile = atomic_ofstream(os.path.join(eroot, "etc", "profile.env"))
+   profile_env_path = os.path.join(eroot, "etc", "profile.env")
+   outfile = atomic_ofstream(profile_env_path)
outfile.write(penvnotice)
 
env_keys = [x for x in env if x != "LDPATH"]
@@ -353,6 +355,40 @@ def _env_update(makelinks, target_root, prev_mtimes, 
contents, env,
outfile.write("export %s='%s'\n" % (k, v))
outfile.close()
 
+   # Create the systemd user environment configuration file
+   # /etc/environment.d/10-gentoo-env.conf with the
+   # environment configuration from /etc/env.d.
+   systemd_environment_dir = os.path.join(eroot, "etc", "environment.d")
+   os.makedirs(systemd_environment_dir, exist_ok=True)
+
+   systemd_gentoo_env_path = os.path.join(systemd_environment_dir,
+   "10-gentoo-env.conf")
+   systemd_gentoo_env = atomic_ofstream(systemd_gentoo_env_path)
+   try:
+   senvnotice = notice + "\n\n"
+   systemd_gentoo_env.write(senvnotice)
+
+   for env_key in env_keys:
+   env_key_value = env[env_key]
+
+   # Skip variables with the empty string
+   # as value. Those sometimes appear in
+   # profile.env (e.g. "export GCC_SPECS=''"),
+   # but are invalid in systemd's syntax.
+   if not env_key_value:
+   continue
+
+   # Transform into systemd environment.d
+   # conf syntax, basically shell variable
+   # assignment (without "export ").
+   line = f"{env_key}={env_key_value}\n"
+
+   systemd_gentoo_env.write(line)
+   except:
+   systemd_gentoo_env.abort()
+   raise
+   systemd_gentoo_env.close()
+
#create /etc/csh.env for (t)csh support
outfile = atomic_ofstream(os.path.join(eroot, "etc", "csh.env"))
outfile.write(cenvnotice)



[gentoo-commits] repo/proj/guru:dev commit in: app-portage/pacvis/

2020-09-07 Thread Brian Gloyer
commit: 88fd2b7316bce0e35e214536c6fc3f2b7a75fe9a
Author: brian gloyer  gmail  com>
AuthorDate: Mon Sep  7 17:18:53 2020 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Mon Sep  7 17:23:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=88fd2b73

app-portage/pacvis: added python3_8

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/pacvis-0.4.2.ebuild | 4 ++--
 app-portage/pacvis/pacvis-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild 
b/app-portage/pacvis/pacvis-0.4.2.ebuild
index 2e20d84..31ce08a 100644
--- a/app-portage/pacvis/pacvis-0.4.2.ebuild
+++ b/app-portage/pacvis/pacvis-0.4.2.ebuild
@@ -1,8 +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
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 inherit distutils-r1
 

diff --git a/app-portage/pacvis/pacvis-.ebuild 
b/app-portage/pacvis/pacvis-.ebuild
index 90458ae..48a4dff 100644
--- a/app-portage/pacvis/pacvis-.ebuild
+++ b/app-portage/pacvis/pacvis-.ebuild
@@ -1,8 +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
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git;
 inherit distutils-r1 git-r3



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

2020-09-07 Thread Miroslav Šulc
commit: 3f350748216259e2f4e5b97fe3516e28cabbc182
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Sep  7 18:54:46 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Sep  7 18:54:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f350748

media-sound/ardour: added gold linker warning to 6.2-r1

Bug: https://bugs.gentoo.org/733972
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/ardour/ardour-6.2-r1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/media-sound/ardour/ardour-6.2-r1.ebuild 
b/media-sound/ardour/ardour-6.2-r1.ebuild
index 97893a719d6..97e4502ac21 100644
--- a/media-sound/ardour/ardour-6.2-r1.ebuild
+++ b/media-sound/ardour/ardour-6.2-r1.ebuild
@@ -74,6 +74,11 @@ PATCHES=(
"${FILESDIR}/${P}-use-signed-int-for-atomic-operations.patch"
 )
 
+pkg_pretend() {
+   [[ $(tc-getLD) == *gold* ]] && (has_version sci-libs/fftw[openmp] || 
has_version sci-libs/fftw[threads]) && \
+   ewarn "Linking with gold linker might produce broken 
executable, see bug #733972"
+}
+
 pkg_setup() {
if has_version \>=dev-libs/libsigc++-2.6 ; then
append-cxxflags -std=c++11



[gentoo-commits] repo/gentoo:master commit in: app-metrics/mongodb_exporter/

2020-09-07 Thread William Hubbs
commit: ea0988fea270d3bd0c85a6bbb03a920e813e68ab
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Sep  7 21:52:01 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Sep  7 21:54:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea0988fe

app-metrics/mongodb_exporter: 0.11.1 bump

Signed-off-by: William Hubbs  gentoo.org>

 app-metrics/mongodb_exporter/Manifest  |  1 +
 .../mongodb_exporter-0.11.1.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/app-metrics/mongodb_exporter/Manifest 
b/app-metrics/mongodb_exporter/Manifest
index eaa7819b01d..69a3c43cb69 100644
--- a/app-metrics/mongodb_exporter/Manifest
+++ b/app-metrics/mongodb_exporter/Manifest
@@ -1,2 +1,3 @@
 DIST mongodb_exporter-0.11.0.tar.gz 2638227 BLAKE2B 
c8d6cde2fcc40bcdbbd84276d78e8ee2012a0237637ce51a67d458d030a4f8b8d5b72b3eb434cbbfd403aa7481ed76651b2af181b3785abf913ae6cfd4f2faf0
 SHA512 
08c2f889c5f503804af35e41220729fa9fae3226cfb89642964edc8c391fe8209cd6f8246b0e904711a63a1c0cf613d5666373035d94db537840ae9ac561c2cf
+DIST mongodb_exporter-0.11.1.tar.gz 2640277 BLAKE2B 
8ae0418466462d4dfebe97d48b47d0a163435f1776bceb6d35ab50d98cefa0bf737f57fc74aadebf16c285e2dd63fe2e4719571db7c5a9f942e740dab7509d91
 SHA512 
81a9c5877bba6e85fcdcc9e3781bbec82b255710e8292ea377ea9c9234526b7ad521350f8bd36ae7773f76f40b650cd724d552020e17feb61210ed6197be5172
 DIST mongodb_exporter-0.6.2.tar.gz 1296198 BLAKE2B 
4cd04b5e69788f2bbe3e87eafe6a7cf4f0a2e72abff4784176299e46943eac2219141beed2f8d11cc8a2458737456d8edaed42a5392bedd017e85315dc75ba1d
 SHA512 
52c1464af82c09fc79338e805e62936d4da8131cea1bb6608500fa36a2d4069676eace5da0ed1b14d82de9d626be301b42c7bc1d5c620bbecb47ae9a350ecd65

diff --git a/app-metrics/mongodb_exporter/mongodb_exporter-0.11.1.ebuild 
b/app-metrics/mongodb_exporter/mongodb_exporter-0.11.1.ebuild
new file mode 100644
index 000..30b674765a5
--- /dev/null
+++ b/app-metrics/mongodb_exporter/mongodb_exporter-0.11.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 go-module
+COMMIT=f5e8ebea31d6fa128ae3a2fb1b747fdf4b782b2b
+BRANCH=0.11.0
+
+DESCRIPTION="Prometheus exporter for MongoDB"
+HOMEPAGE="https://github.com/percona/mongodb_exporter;
+SRC_URI="https://github.com/percona/mongodb_exporter/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 AGPL-3 BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+COMMON_DEPEND="acct-group/mongodb_exporter
+   acct-user/mongodb_exporter"
+   DEPEND="${COMMON_DEPEND}"
+   RDEPEND="${COMMON_DEPEND}"
+
+src_compile() {
+   GOFLAGS="${GOFLAGS} -mod=vendor" emake \
+   TRAVIS_TAG="${PV}" \
+   APP_REVISION=${COMMIT} \
+   TRAVIS_BRANCH=${BRANCH} \
+   build
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc {README,CHANGELOG}.md
+   keepdir /var/log/mongodb_exporter
+   fowners ${PN}:${PN} /var/log/mongodb_exporter
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}



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

2020-09-07 Thread William Hubbs
commit: fce980b485289d0e9573994729e238fc86ebc0ce
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Sep  7 21:39:02 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Sep  7 21:54:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce980b4

acct-user/mongodb_exporter: add user for mongodb_exporter

Signed-off-by: William Hubbs  gentoo.org>

 acct-user/mongodb_exporter/metadata.xml  |  8 
 acct-user/mongodb_exporter/mongodb_exporter-0.ebuild | 12 
 2 files changed, 20 insertions(+)

diff --git a/acct-user/mongodb_exporter/metadata.xml 
b/acct-user/mongodb_exporter/metadata.xml
new file mode 100644
index 000..65da3dd7829
--- /dev/null
+++ b/acct-user/mongodb_exporter/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+willi...@gentoo.org
+William Hubbs
+  
+

diff --git a/acct-user/mongodb_exporter/mongodb_exporter-0.ebuild 
b/acct-user/mongodb_exporter/mongodb_exporter-0.ebuild
new file mode 100644
index 000..aadf83004ef
--- /dev/null
+++ b/acct-user/mongodb_exporter/mongodb_exporter-0.ebuild
@@ -0,0 +1,12 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="user for mongodb_exporter"
+ACCT_USER_ID=277
+ACCT_USER_GROUPS=( mongodb_exporter )
+
+acct-user_add_deps



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

2020-09-07 Thread William Hubbs
commit: a10d9e9094a314b49720a28685bcd1a31f7e97bf
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Sep  7 21:32:00 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Sep  7 21:54:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a10d9e90

acct-group/mongodb_exporter: add group for mongodb_exporter

Signed-off-by: William Hubbs  gentoo.org>

 acct-group/mongodb_exporter/metadata.xml  | 8 
 acct-group/mongodb_exporter/mongodb_exporter-0.ebuild | 8 
 2 files changed, 16 insertions(+)

diff --git a/acct-group/mongodb_exporter/metadata.xml 
b/acct-group/mongodb_exporter/metadata.xml
new file mode 100644
index 000..c36c37139fa
--- /dev/null
+++ b/acct-group/mongodb_exporter/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+

diff --git a/acct-group/mongodb_exporter/mongodb_exporter-0.ebuild 
b/acct-group/mongodb_exporter/mongodb_exporter-0.ebuild
new file mode 100644
index 000..946813661ba
--- /dev/null
+++ b/acct-group/mongodb_exporter/mongodb_exporter-0.ebuild
@@ -0,0 +1,8 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+ACCT_GROUP_ID=277



[gentoo-commits] repo/gentoo:master commit in: mail-filter/gld/

2020-09-07 Thread Sam James
commit: 92c5ebafb0e1fe43590592c668a8ecf8998b50b3
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 23:11:23 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 23:11:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c5ebaf

mail-filter/gld: cleanup old EAPI 4 ebuild

Bug: https://bugs.gentoo.org/739586
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 mail-filter/gld/gld-1.7-r2.ebuild | 76 ---
 1 file changed, 76 deletions(-)

diff --git a/mail-filter/gld/gld-1.7-r2.ebuild 
b/mail-filter/gld/gld-1.7-r2.ebuild
deleted file mode 100644
index 55c7f21f081..000
--- a/mail-filter/gld/gld-1.7-r2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit toolchain-funcs
-
-DESCRIPTION="A standalone anti-spam greylisting algorithm on top of Postfix"
-HOMEPAGE="http://www.gasmi.net/gld.html;
-SRC_URI="http://www.gasmi.net/down/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="postgres"
-# Not adding a mysql USE flag. The package defaults to it, so we will too.
-DEPEND="sys-libs/zlib
-   >=dev-libs/openssl-0.9.6
-   postgres? ( dev-db/postgresql[server] )
-   !postgres? ( virtual/mysql )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   sed -i gld.conf \
-   -e 's:^LOOPBACKONLY=.*:LOOPBACKONLY=1:' \
-   -e 's:^#USER=.*:USER=nobody:' \
-   -e 's:^#GROUP=.*:GROUP=nobody:' \
-   || die "sed gld.conf failed"
-
-   sed -i Makefile.in \
-   -e '/ -c /{s|-O2|$(CFLAGS)|g}' \
-   -e '/ -o /{s|-O2|$(CFLAGS) $(LDFLAGS)|g}' \
-   -e '/strip/d' \
-   || die "sed Makefile.in failed"
-
-   sed -i tables.{my,pg}sql \
-   -e '/ip char/s/16/39/' \
-   || die "sed sql tables failed"
-}
-
-src_configure() {
-   tc-export CC
-   # It's kind of weird. $(use_with postgres pgsql) won't work if you don't
-   # use it...
-   if use postgres ; then
-   myconf="${myconf} --with-pgsql"
-   fi
-
-   econf ${myconf}
-}
-
-src_install() {
-   dobin gld
-
-   insinto /etc
-   newins gld.conf gld.conf.example
-
-   dodoc HISTORY README*
-
-   insinto /usr/share/${PN}/sql
-   doins *.pgsql *-whitelist.sql "${FILESDIR}"/tables.sql
-
-   newinitd "${FILESDIR}"/gld.rc gld
-}
-
-pkg_preinst() {
-   elog "Please read the README file in /usr/share/doc/${PF} for"
-   elog "details on how to setup gld."
-   elog
-   elog "The sql files have been installed to /usr/share/${PN}/sql."
-   if [[ $REPLACING_VERSIONS == "1.7-r1" ]]; then
-   elog "You might want to use the ALTER_TABLE command to change 
the"
-   elog "ip field width to 39 chars to accomodate ipv6 addresses."
-   elog "Please see your sql server documentation."
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: mail-filter/gld/

2020-09-07 Thread Sam James
commit: c1e3cb85b56831ebe7f927efe44dc30aa464f022
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 23:09:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 23:09:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e3cb85

mail-filter/gld: Stabilize 1.7-r4 amd64, #739586

Signed-off-by: Sam James  gentoo.org>

 mail-filter/gld/gld-1.7-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/gld/gld-1.7-r4.ebuild 
b/mail-filter/gld/gld-1.7-r4.ebuild
index 91152e44cb6..fb79d9897fc 100644
--- a/mail-filter/gld/gld-1.7-r4.ebuild
+++ b/mail-filter/gld/gld-1.7-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.gasmi.net/down/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="libressl postgres"
 # Not adding a mysql USE flag. The package defaults to it, so we will too.
 DEPEND="sys-libs/zlib



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

2020-09-07 Thread Zac Medico
commit: 16262dc8ab9ab6cc03565bcefc444726b4dfb32f
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Sat Sep  5 22:37:05 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Sep  8 00:47:14 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=16262dc8

make.conf: Treat __* variables as local and do not propagate them.

Bug: https://bugs.gentoo.org/740588
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/package/ebuild/config.py | 6 ++
 man/make.conf.5  | 4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/lib/portage/package/ebuild/config.py 
b/lib/portage/package/ebuild/config.py
index b62ad3069..a09fdbced 100644
--- a/lib/portage/package/ebuild/config.py
+++ b/lib/portage/package/ebuild/config.py
@@ -370,6 +370,9 @@ class config:
_("Found 2 make.conf files, using both 
'%s' and '%s'") %
tuple(make_conf_paths), noiselevel=-1)
 
+   # __* variables set in make.conf are local and are not 
be propagated.
+   make_conf = {k: v for k, v in make_conf.items() if not 
k.startswith("__")}
+
# Allow ROOT setting to come from make.conf if it's not 
overridden
# by the constructor argument (from the calling 
environment).

locations_manager.set_root_override(make_conf.get("ROOT"))
@@ -621,6 +624,9 @@ class config:
tolerant=tolerant, allow_sourcing=True,
expand=expand_map, recursive=True) or 
{})
 
+   # __* variables set in make.conf are local and are not 
be propagated.
+   mygcfg = {k: v for k, v in mygcfg.items() if not 
k.startswith("__")}
+
# Don't allow the user to override certain variables in 
make.conf
profile_only_variables = 
self.configdict["defaults"].get(
"PROFILE_ONLY_VARIABLES", "").split()

diff --git a/man/make.conf.5 b/man/make.conf.5
index 1b997ad37..8a1ea0603 100644
--- a/man/make.conf.5
+++ b/man/make.conf.5
@@ -1,4 +1,4 @@
-.TH "MAKE.CONF" "5" "Jun 2020" "Portage VERSION" "Portage"
+.TH "MAKE.CONF" "5" "Sep 2020" "Portage VERSION" "Portage"
 .SH "NAME"
 make.conf \- custom settings for Portage
 .SH "SYNOPSIS"
@@ -36,6 +36,8 @@ make.defaults to make.globals to make.conf to the environment
 settings.  Clearing these variables requires a clear\-all as in:
 export USE="\-*"
 .br
+__* variables set in make.conf are local and are not be propagated.
+.br
 In order to create per\-package environment settings, refer to
 \fBpackage.env\fR in \fBportage\fR(5).
 .SH "VARIABLES"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-utils/

2020-09-07 Thread Adam Feldman
commit: 72fed13277b4aa7f717163a728c81467d462e9f4
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:23:22 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:26 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=72fed132

mate-extra/mate-utils: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-utils/mate-utils-.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mate-extra/mate-utils/mate-utils-.ebuild 
b/mate-extra/mate-utils/mate-utils-.ebuild
index c6f2825..4ad6eec 100644
--- a/mate-extra/mate-utils/mate-utils-.ebuild
+++ b/mate-extra/mate-utils/mate-utils-.ebuild
@@ -37,6 +37,7 @@ COMMON_DEPEND="
 "
 
 RDEPEND="${COMMON_DEPEND}
+   mate-base/mate-desktop
virtual/libintl
 "
 
@@ -48,7 +49,7 @@ DEPEND="${COMMON_DEPEND}
dev-util/glib-utils
dev-util/gtk-doc
dev-util/gtk-doc-am
-   >=sys-devel/gettext-0.19.8:*
+   >=sys-devel/gettext-0.19.8
virtual/pkgconfig
x11-base/xorg-proto
 "



[gentoo-commits] proj/gentoo-mate:master commit in: app-editors/pluma/

2020-09-07 Thread Adam Feldman
commit: 435c9011a2d968aa3effa4fb3dd112b0cf1a4eb1
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:34:46 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:27 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=435c9011

app-editors/pluma: Bump to 1.24.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 app-editors/pluma/Manifest|  1 +
 app-editors/pluma/pluma-1.24.1.ebuild | 81 +++
 2 files changed, 82 insertions(+)

diff --git a/app-editors/pluma/Manifest b/app-editors/pluma/Manifest
index 577b723..300ba9e 100644
--- a/app-editors/pluma/Manifest
+++ b/app-editors/pluma/Manifest
@@ -1,2 +1,3 @@
 DIST pluma-1.22.2.tar.xz 3262288 BLAKE2B 
0a7af4318ec11aa6a01dd14ed071975b6a961747c1abda9120912244f3fd530c5c06e2fc9dad6ad23175c119e35c1380e88be4b9bc1e331485b646dee87af8e1
 SHA512 
a68b79713f649def15ea29e58e041d70bb6d756a356743f6e06d8dd680f7b39e8bcdd90c68cbe5c517bead7f9263d7596954bc595c3a2501edf0d0ea421c9992
 DIST pluma-1.24.0.tar.xz 3717544 BLAKE2B 
fd9375fd05566c11c24d5bdf55ab0d4619143127a5e48c4e91d18421f50340775d58c3e2264382aa3bbd8aad0569c559e87381a9ece07ce1592d1bc1a5315db1
 SHA512 
390bf2949549baa0e3dc706526217fbc1513e2f9778917710da806e58cdfb0b7a36e95ed2186442490996cf76783acd4e0f4b8f1fedacee9ba356c0d466510be
+DIST pluma-1.24.1.tar.xz 3679636 BLAKE2B 
e792433b93862c8b0c47145255311c3a3386c1b99ec1ac87ed91608d839ece4430205f83fcc3c0f5145f986105d4c5d8803393035fcaaea08155197bbcf15d03
 SHA512 
0cfd6a035fc95993dce3e556c49641e799888f20159b29f2c0712c54ee772aa6df1ce755f329414c94efdb2cb3819ce633b92e6559b0c8cb064dab3c74729ab3

diff --git a/app-editors/pluma/pluma-1.24.1.ebuild 
b/app-editors/pluma/pluma-1.24.1.ebuild
new file mode 100644
index 000..9d5382f
--- /dev/null
+++ b/app-editors/pluma/pluma-1.24.1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+
+inherit mate python-single-r1 virtualx
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Pluma text editor for the MATE desktop"
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
+SLOT="0"
+
+IUSE="+introspection spell test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# Tests require gvfs sftp fs mounted and schema's installed. Disable tests.
+# https://github.com/mate-desktop/mate-text-editor/issues/33
+RESTRICT="test"
+
+COMMON_DEPEND="dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   >=dev-libs/libpeas-1.2.0[gtk]
+   >=dev-libs/libxml2-2.5:2
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   >=x11-libs/gtksourceview-3.0.0:3.0
+   x11-libs/libICE
+   x11-libs/libX11
+   >=x11-libs/libSM-1.0
+   x11-libs/pango
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   spell? (
+   >=app-text/enchant-1.6:=
+   >=app-text/iso-codes-0.35
+   )
+   !!app-editors/mate-text-editor
+"
+
+RDEPEND="${PYTHON_DEPS}
+   ${COMMON_DEPEND}
+   >=mate-base/mate-desktop-1.9[introspection?]
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   ~app-text/docbook-xml-dtd-4.1.2
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   dev-util/glib-utils
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/libtool-2.2.6:2
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_configure() {
+   mate_src_configure \
+   $(use_enable introspection) \
+   $(use_enable spell) \
+   $(use_enable test tests)
+}
+
+src_test() {
+   # FIXME: This should be handled at eclass level.
+   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
+
+   unset DBUS_SESSION_BUS_ADDRESS
+
+   GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
+}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-user-share/

2020-09-07 Thread Adam Feldman
commit: cad575610d5207c9f0c6e4e1a4a1e3b831409cb9
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:17:55 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:26 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=cad57561

mate-extra/mate-user-share: Fix deps

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 .../mate-user-share-1.24.0-r1.ebuild   | 52 ++
 1 file changed, 52 insertions(+)

diff --git a/mate-extra/mate-user-share/mate-user-share-1.24.0-r1.ebuild 
b/mate-extra/mate-user-share/mate-user-share-1.24.0-r1.ebuild
new file mode 100644
index 000..5b09cfc
--- /dev/null
+++ b/mate-extra/mate-user-share/mate-user-share-1.24.0-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="Personal file sharing for the MATE desktop"
+LICENSE="FDL-1.1+ GPL-2+"
+SLOT="0"
+
+IUSE="X"
+
+COMMON_DEPEND="
+   >=dev-libs/dbus-glib-0.70
+   >=dev-libs/glib-2.50:2
+   >=mate-base/caja-1.17.1
+   media-libs/libcanberra[gtk3]
+   >=sys-apps/dbus-1.1.1
+   >=x11-libs/gdk-pixbuf-2:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/pango
+   >=x11-libs/libnotify-0.7
+"
+
+RDEPEND="${COMMON_DEPEND}
+   >=www-apache/mod_dnssd-0.6
+   
>=www-servers/apache-2.2:2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/yelp-tools
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_configure() {
+   mate_src_configure \
+   --disable-bluetooth \
+   --with-httpd=apache2 \
+   --with-modules-path=/usr/$(get_libdir)/apache2/modules/ \
+   $(use_with X x)
+}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-calc/

2020-09-07 Thread Adam Feldman
commit: e70d02c1a00354888bc201217046e302b69b08fd
Author: Adam Feldman  gentoo  org>
AuthorDate: Mon Sep  7 18:04:26 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:27 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=e70d02c1

mate-extra/mate-calc: Bump to 1.24.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-calc/Manifest|  1 +
 mate-extra/mate-calc/mate-calc-1.24.1.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/mate-extra/mate-calc/Manifest b/mate-extra/mate-calc/Manifest
index 630488a..2f6ca03 100644
--- a/mate-extra/mate-calc/Manifest
+++ b/mate-extra/mate-calc/Manifest
@@ -1,2 +1,3 @@
 DIST mate-calc-1.22.2.tar.xz 626400 BLAKE2B 
f09bf3730a4b184026e324c4c64c7a06951ae858febf58d135b676d384d0fe77a44af0adbb2a3bedc8ab60547f029e7f314634876e7d2a878fcec3549069063a
 SHA512 
4235e49df4517d1a43a1f640f5b35320c34f588eb9ff3c63aa2ff59123a53ea9723372d3fe4d8c29d40ef09a51f4bd536655b5056d840eb5c253f572afb5
 DIST mate-calc-1.24.0.tar.xz 939480 BLAKE2B 
28a8184665096d477bdc80484fc9da3bf9835dd5d1c30d4de11722488d735f88336bcf990c50ef65dd0a5781fc083b5d011fd5085c2d1672e6599a28f4a01452
 SHA512 
ebb18f07ded5577bb0987b2027e7b73abc823a567bfa00f9cc9bfaf75de498f150b6b4c2e13486c530a3cbb078f1b798c415b33d668d952e8650799dd05c99eb
+DIST mate-calc-1.24.1.tar.xz 952372 BLAKE2B 
ae6c687d85f48f95fda89ba4fa2be44d1f2fc510708a25ac59fd8074d1f29bc6b440ec1c20b344566d4e8a2edc8ec0bdc0d565773f2c089d712c47db4e847805
 SHA512 
164fc57ed6bcc69b96afd75fff8dd6248ce682d6f806e83ddb73a21bddce99b89c7bb697d189b56d88d5c8d9a0b99f50f3fdd15c7d56f9121ee1d16689b16595

diff --git a/mate-extra/mate-calc/mate-calc-1.24.1.ebuild 
b/mate-extra/mate-calc/mate-calc-1.24.1.ebuild
new file mode 100644
index 000..31d748f
--- /dev/null
+++ b/mate-extra/mate-calc/mate-calc-1.24.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Calculator for MATE"
+LICENSE="CC-BY-SA-3.0 GPL-2+"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   dev-libs/libxml2:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/pango
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-libs/libxml2
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-sensors-applet/

2020-09-07 Thread Adam Feldman
commit: 4bb0e40b577f1e57627646a1698ff93b0c4c2cac
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:41:05 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=4bb0e40b

mate-extra/mate-sensors-applet: Bump to 1.24.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-sensors-applet/Manifest|  1 +
 .../mate-sensors-applet-1.24.1.ebuild  | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/mate-extra/mate-sensors-applet/Manifest 
b/mate-extra/mate-sensors-applet/Manifest
index 044cc1e..23fb5a6 100644
--- a/mate-extra/mate-sensors-applet/Manifest
+++ b/mate-extra/mate-sensors-applet/Manifest
@@ -1,2 +1,3 @@
 DIST mate-sensors-applet-1.22.1.tar.xz 496776 BLAKE2B 
1f3ca3e7b6b48a3bdb4e3b370c65bd34bcbde250d21d2c9214eceadf790d2c1a45f87ccf615387edf9abaad2c3a899a536b78d8afece0574d735d80095c1b595
 SHA512 
4b6e608c92f03051044863f770b295d1526b19a9668513b566e81adeb28bc8524d8f458d114d2b44acf00f20c2f0a8d86b1ca7254fa165fde3b867c75a6b83e6
 DIST mate-sensors-applet-1.24.0.tar.xz 580536 BLAKE2B 
a72198917a3b87c1a9ed941aa272cab7439bcd07cb1bb2dbadb0fcd21bb5d6f1cc05986800de7d0f68c2c260cf9556f1e239a2ad2fd01bec8bdccad0180117b2
 SHA512 
039834b7cfe641e670e372e311da3d737254ab3cf13b27e71c6555888ac1165766fe2d940bcea44a5ceed5f0ddcd3390d01331d927121137c21a6647c68875c2
+DIST mate-sensors-applet-1.24.1.tar.xz 578964 BLAKE2B 
e9a7eacb032738014c3e91595ae1f2673973b20c09fd02bd186aa5468773a1322022fbb245b9ec6e9c987405014b91e0f7c12e072f9c3ba6cd9df32c1ee99703
 SHA512 
3bf21d501e067a2ce002c5149f42161cc6917609ceb2396b705e905987cb4d989725ca825c6de7bbe4e950f7a01e755c2cd5b45532d6f65aef690f394741489a

diff --git a/mate-extra/mate-sensors-applet/mate-sensors-applet-1.24.1.ebuild 
b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.24.1.ebuild
new file mode 100644
index 000..eea8796
--- /dev/null
+++ b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.24.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="MATE panel applet to display readings from hardware sensors"
+LICENSE="FDL-1.1+ GPL-2+"
+SLOT="0"
+
+IUSE="+dbus hddtemp libnotify lm-sensors video_cards_nvidia"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.50:2
+   >=mate-base/mate-panel-1.17.0
+   >=x11-libs/cairo-1.0.4
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   hddtemp? ( >=app-admin/hddtemp-0.3_beta13 )
+   libnotify? ( >=x11-libs/libnotify-0.7 )
+   lm-sensors? ( sys-apps/lm-sensors )
+   video_cards_nvidia? ( 
>=x11-drivers/nvidia-drivers-100.14.09:0[static-libs,tools] )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+PDEPEND="hddtemp? ( dbus? ( sys-fs/udisks:2 ) )"
+
+src_configure() {
+   local udisks
+
+   if use hddtemp && use dbus; then
+   udisks="--enable-udisks2"
+   else
+   udisks="--disable-udisks2"
+   fi
+
+   mate_src_configure \
+   --disable-netbsd \
+   --without-aticonfig \
+   $(use_enable libnotify) \
+   $(use_with lm-sensors libsensors) \
+   $(use_with video_cards_nvidia nvidia) \
+   ${udisks}
+}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-indicator-applet/

2020-09-07 Thread Adam Feldman
commit: b074a3bb8666fcf57c75af36f46f100189cef524
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:17:09 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=b074a3bb

mate-extra/mate-indicator-applet: Bump to 1.24.0-r1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-indicator-applet/mate-indicator-applet-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-indicator-applet/mate-indicator-applet-.ebuild 
b/mate-extra/mate-indicator-applet/mate-indicator-applet-.ebuild
index 23ea522..670d2a4 100644
--- a/mate-extra/mate-indicator-applet/mate-indicator-applet-.ebuild
+++ b/mate-extra/mate-indicator-applet/mate-indicator-applet-.ebuild
@@ -26,6 +26,6 @@ RDEPEND="${COMMON_DEPEND}
 "
 
 DEPEND="${COMMON_DEPEND}
-   >=sys-devel/gettext-0.19.8:*
+   >=sys-devel/gettext-0.19.8
virtual/pkgconfig
 "



[gentoo-commits] proj/gentoo-mate:master commit in: app-arch/engrampa/

2020-09-07 Thread Adam Feldman
commit: 020f5f2a5ef576e4ea23af46c79541c49adf1b9f
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 20:31:52 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:24 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=020f5f2a

app-arch/engrampa: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 app-arch/engrampa/engrampa-.ebuild | 43 +-
 1 file changed, 16 insertions(+), 27 deletions(-)

diff --git a/app-arch/engrampa/engrampa-.ebuild 
b/app-arch/engrampa/engrampa-.ebuild
index 2c67968..d1e58a3 100644
--- a/app-arch/engrampa/engrampa-.ebuild
+++ b/app-arch/engrampa/engrampa-.ebuild
@@ -23,6 +23,7 @@ COMMON_DEPEND="
virtual/libintl
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-3.22:3[X]
+   x11-libs/libSM
x11-libs/pango
caja? ( >=mate-base/caja-1.17.1 )
magic? ( sys-apps/file )
@@ -37,30 +38,10 @@ RDEPEND="${COMMON_DEPEND}
 DEPEND="${COMMON_DEPEND}
app-text/yelp-tools
dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8:*
+   >=sys-devel/gettext-0.19.8
virtual/pkgconfig
 "
 
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="
-${PN} is a frontend for several archiving utilities. If you want
-support for a particular archive format,install the relevant package:
-
-7-zip   : emerge app-arch/p7zip
-ace : emerge app-arch/unace
-arj : emerge app-arch/arj
-cpio: emerge app-arch/cpio
-deb : emerge app-arch/dpkg
-iso : emerge app-cdr/cdrtools
-jar,zip : emerge app-arch/zip  or  emerge app-arch/unzip
-lha : emerge app-arch/lha
-lzma: emerge app-arch/xz-utils
-lzop: emerge app-arch/lzop
-rar : emerge app-arch/unrar
-rpm : emerge app-arch/rpm
-unstuff : emerge app-arch/stuffit
-zoo : emerge app-arch/zoo"
-
 src_configure() {
mate_src_configure \
--disable-run-in-place \
@@ -69,12 +50,20 @@ src_configure() {
$(use_enable packagekit)
 }
 
-src_install() {
-   mate_src_install
-   readme.gentoo_create_doc
-}
-
 pkg_postinst() {
mate_pkg_postinst
-   readme.gentoo_print_elog
+   optfeature "Support for 7-zip"  app-arch/p7zip
+   optfeature "Support for ace"  app-arch/unace
+   optfeature "Support for arj"  app-arch/arj
+   optfeature "Support for cpio"  app-arch/cpio
+   optfeature "Support for deb"  app-arch/dpkg
+   optfeature "Support for iso"  app-cdr/cdrtools
+   optfeature "Support for jar,zip"  app-arch/zip app-arch/unzip
+   optfeature "Support for lha"  app-arch/lha
+   optfeature "Support for lzma"  app-arch/xz-utils
+   optfeature "Support for lzop"  app-arch/lzop
+   optfeature "Support for rar"  app-arch/unrar
+   optfeature "Support for rpm"  app-arch/rpm
+   optfeature "Support for unstuff"  app-arch/stuffit
+   optfeature "Support for zoo"  app-arch/zoo
 }



[gentoo-commits] proj/gentoo-mate:master commit in: dev-python/python-caja/

2020-09-07 Thread Adam Feldman
commit: 81d04ae0ae27a8c53725deb7ed0366440e4f0951
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:39:40 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:27 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=81d04ae0

dev-python/python-caja: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 dev-python/python-caja/python-caja-.ebuild | 13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/dev-python/python-caja/python-caja-.ebuild 
b/dev-python/python-caja/python-caja-.ebuild
index 39ee025..622b437 100644
--- a/dev-python/python-caja/python-caja-.ebuild
+++ b/dev-python/python-caja/python-caja-.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 MATE_LA_PUNT="yes"
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 inherit mate python-single-r1
 
@@ -30,11 +30,18 @@ RDEPEND="${COMMON_DEPEND}"
 DEPEND="${COMMON_DEPEND}
dev-util/gtk-doc
dev-util/gtk-doc-am
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig:*
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
doc? ( app-text/docbook-xml-dtd:4.1.2 )
 "
 
+src_prepare() {
+   MATE_FORCE_AUTORECONF="true"
+
+   sed -i "s/\$(PACKAGE)/${PF}/g" examples/Makefile.am || die
+   mate_src_prepare
+}
+
 src_install() {
mate_src_install
 



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-applets/

2020-09-07 Thread Adam Feldman
commit: 54f3e432a44c8648dd14c62b2ae60d08be5da543
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:06:13 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:24 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=54f3e432

mate-base/mate-applets: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-base/mate-applets/mate-applets-.ebuild | 22 --
 1 file changed, 16 insertions(+), 6 deletions(-)

diff --git a/mate-base/mate-applets/mate-applets-.ebuild 
b/mate-base/mate-applets/mate-applets-.ebuild
index 1dfb6f6..63d6ba9 100644
--- a/mate-base/mate-applets/mate-applets-.ebuild
+++ b/mate-base/mate-applets/mate-applets-.ebuild
@@ -17,7 +17,8 @@ IUSE="X +cpupower ipv6 policykit +upower"
 
 REQUIRED_USE="policykit? ( cpupower )"
 
-COMMON_DEPEND="dev-libs/atk
+COMMON_DEPEND="
+   dev-libs/atk
>=dev-libs/dbus-glib-0.74
>=dev-libs/glib-2.50:2
>=dev-libs/libmateweather-1.17.0
@@ -39,9 +40,12 @@ COMMON_DEPEND="dev-libs/atk
policykit? ( >=sys-auth/polkit-0.97:0 )
)
upower? ( >=sys-power/upower-0.9.23 )
-   !!net-analyzer/mate-netspeed"
+   !!net-analyzer/mate-netspeed
+"
 
 RDEPEND="${COMMON_DEPEND}
+   mate-base/caja
+   mate-base/mate-desktop
>=mate-base/mate-settings-daemon-1.6
virtual/libintl
 "
@@ -52,17 +56,23 @@ DEPEND="${COMMON_DEPEND}
>=app-text/scrollkeeper-dtd-1:1.0
app-text/yelp-tools
dev-libs/libxslt
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig:*"
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
 
 src_configure() {
+
+   # configure.ac logic is a little hinky
+   # and ignores --enable flags for cpufreq
+   use cpupower || myconf="--disable-cpufreq"
+
mate_src_configure \
--libexecdir=/usr/libexec/mate-applets \
$(use_with X x) \
$(use_with upower) \
-   $(use_enable cpupower cpufreq) \
$(use_enable ipv6) \
-   $(use_enable policykit polkit)
+   $(use_enable policykit polkit) \
+   "${myconf[@]}"
 }
 
 src_test() {



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-applets/

2020-09-07 Thread Adam Feldman
commit: 98dc5db8e22d460707e2964d6bf5e66bc8bac159
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:04:50 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:24 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=98dc5db8

mate-base/mate-applets: Bump to 1.24.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-base/mate-applets/Manifest   |  1 +
 mate-base/mate-applets/mate-applets-1.24.1.ebuild | 97 +++
 2 files changed, 98 insertions(+)

diff --git a/mate-base/mate-applets/Manifest b/mate-base/mate-applets/Manifest
index 9bfa42e..0e563e3 100644
--- a/mate-base/mate-applets/Manifest
+++ b/mate-base/mate-applets/Manifest
@@ -1,2 +1,3 @@
 DIST mate-applets-1.22.2.tar.xz 7648744 BLAKE2B 
85235f12c1436c3caaa6429aabd16822ae34c5c4bd7a575aa9be2c2e9080734b39180e34b22fdf265a64b5ebffb24071d8768b99f55736631403da02882e45fe
 SHA512 
a57ed37d6ddef303e40cbd8f811d1c6be47378a5b56c5eb280d7dba10668678bf9203425f735fb3b356f4ec33eb2369867aa3ab4b446748fe36b80194e8f
 DIST mate-applets-1.24.0.tar.xz 8142812 BLAKE2B 
cbb76d6d64bb6e9b9f93197dbe79e2751877b0604c5a84ff4b6b00608f2930925bdbc2824dc96848c84496fa5f16ab38458775727b22cb07f4db9ca854f93c42
 SHA512 
345a80b123c705997d44ac5a4bea5249045d75181c3802cf49b2eb08decc14a12f75f2e06e6ebfae267b937ff10edf7638cd64332e2e2e731695e6260df5222e
+DIST mate-applets-1.24.1.tar.xz 8222540 BLAKE2B 
f018f131cedda486a28c3a125c07efaf5c3111f95c17b0c3fbdd0b1f084ddf851d46ea4ef511a1e57f6d9f7f29a28e48ab010abc4cc6d87c1315b79bfbf01849
 SHA512 
d29e39a140310fef84cb0fe631568e0177ca5faaf2bf566211a23b32613fd6aabf06dd8ecd81a16e09553c659a7feda9ba372bb62a70504a235be58e07726ed2

diff --git a/mate-base/mate-applets/mate-applets-1.24.1.ebuild 
b/mate-base/mate-applets/mate-applets-1.24.1.ebuild
new file mode 100644
index 000..63d6ba9
--- /dev/null
+++ b/mate-base/mate-applets/mate-applets-1.24.1.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Applets for the MATE Desktop and Panel"
+LICENSE="CC-BY-SA-3.0 FDL-1.1+ GPL-2+ GPL-3+ LGPL-2+"
+SLOT="0"
+
+IUSE="X +cpupower ipv6 policykit +upower"
+
+REQUIRED_USE="policykit? ( cpupower )"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/dbus-glib-0.74
+   >=dev-libs/glib-2.50:2
+   >=dev-libs/libmateweather-1.17.0
+   >=dev-libs/libxml2-2.5:2
+   >=gnome-base/libgtop-2.12.0:2=
+   >=gnome-extra/gucharmap-3.0:2.90
+   >=mate-base/mate-panel-1.17.0
+   >=net-wireless/wireless-tools-28_pre9:0
+   >=sys-apps/dbus-1.10.0
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/gtksourceview:3.0
+   >=x11-libs/libnotify-0.7
+   x11-libs/libX11
+   >=x11-libs/libwnck-3.0:3
+   x11-libs/pango
+   cpupower? (
+   sys-power/cpupower
+   policykit? ( >=sys-auth/polkit-0.97:0 )
+   )
+   upower? ( >=sys-power/upower-0.9.23 )
+   !!net-analyzer/mate-netspeed
+"
+
+RDEPEND="${COMMON_DEPEND}
+   mate-base/caja
+   mate-base/mate-desktop
+   >=mate-base/mate-settings-daemon-1.6
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.3
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   dev-libs/libxslt
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_configure() {
+
+   # configure.ac logic is a little hinky
+   # and ignores --enable flags for cpufreq
+   use cpupower || myconf="--disable-cpufreq"
+
+   mate_src_configure \
+   --libexecdir=/usr/libexec/mate-applets \
+   $(use_with X x) \
+   $(use_with upower) \
+   $(use_enable ipv6) \
+   $(use_enable policykit polkit) \
+   "${myconf[@]}"
+}
+
+src_test() {
+   unset DBUS_SESSION_BUS_ADDRESS
+   emake check
+}
+
+src_install() {
+   mate_src_install
+
+   local APPLETS="accessx-status battstat charpick command cpufreq 
drivemount
+   geyes mateweather multiload netspeed stickynotes
+   timerapplet trashapplet"
+
+   for applet in ${APPLETS}; do
+   docinto ${applet}
+
+   for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
+   [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
+   done
+   done
+}



[gentoo-commits] proj/gentoo-mate:master commit in: app-editors/pluma/

2020-09-07 Thread Adam Feldman
commit: 1c93ceba7c35fbade98141b072136a00882cb2d1
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:35:56 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:27 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=1c93ceba

app-editors/pluma: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 app-editors/pluma/pluma-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/pluma/pluma-.ebuild 
b/app-editors/pluma/pluma-.ebuild
index b4b4168..9d5382f 100644
--- a/app-editors/pluma/pluma-.ebuild
+++ b/app-editors/pluma/pluma-.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 MATE_LA_PUNT="yes"
 
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 inherit mate python-single-r1 virtualx
 



[gentoo-commits] proj/gentoo-mate:master commit in: media-gfx/eom/

2020-09-07 Thread Adam Feldman
commit: 2390fc74149a65d7a49ac46c53b5f0b9081d3154
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 20:46:22 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:24 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=2390fc74

media-gfx/eom: Bump to 1.24.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 media-gfx/eom/Manifest  |  1 +
 media-gfx/eom/eom-1.24.1.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/media-gfx/eom/Manifest b/media-gfx/eom/Manifest
index 8c61051..69fad10 100644
--- a/media-gfx/eom/Manifest
+++ b/media-gfx/eom/Manifest
@@ -1,2 +1,3 @@
 DIST eom-1.22.2.tar.xz 2158376 BLAKE2B 
88d8b635af5b37f1ee4a36c08eb6f4a50cada86f605ab5927b031458f7f36191fa76457263ce38a9f8a02b7ba59308655b5df7039a73083192bf89c15fbee32f
 SHA512 
1045c6bb98056ad707b0acf509c12e0400c21238482bf801abc6b69252f2ffe9687f7fda8b7e09c6338bc80794b104cbb42c1ea89ff1f169c45fdc1fcbdbeabe
 DIST eom-1.24.0.tar.xz 2433420 BLAKE2B 
58f99ba3cf0df3594c459af691cc6ab281657facb49bc3b6101bec1718b165b72b882aabd9abac3c4981b547157aa64d2f24f174fccae06cdaa685728e49740c
 SHA512 
17d26a9341cde0a86f8d8b65008f554398111d80f5d131441654bd9e907df9c9d696038e678aca8d7f4bd2923ff593f626735a3cc30451118818cdbebceb87ab
+DIST eom-1.24.1.tar.xz 2408284 BLAKE2B 
70d660896dff42d5a91ea651697b50d4c90ced92023d5df48dfbed374c3777676f1f2dc99a0cb071a4eaa13353f31b11346136b963cf723397632cceafa64301
 SHA512 
70654b99f474d1b214cbbf8e799f82f3c38f47938df34cb5c8227c116b412364c568ae989b96d7082fb0d2fa319b3dba9b8dd499d19140a4d421bd09a46bffc0

diff --git a/media-gfx/eom/eom-1.24.1.ebuild b/media-gfx/eom/eom-1.24.1.ebuild
new file mode 100644
index 000..c7ad21a
--- /dev/null
+++ b/media-gfx/eom/eom-1.24.1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="The MATE image viewer"
+LICENSE="FDL-1.1+ GPL-2+ IJG LGPL-2+"
+SLOT="0"
+
+IUSE="X debug exif imagemagick +introspection jpeg lcms svg tiff xmp"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.52:2
+   >=dev-libs/libpeas-1.8.0[gtk]
+   >=dev-libs/libxml2-2:2
+   gnome-base/dconf
+   >=mate-base/mate-desktop-1.17.0
+   sys-libs/zlib
+   x11-libs/cairo
+   >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?,jpeg?,tiff?]
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   >=x11-misc/shared-mime-info-0.20
+   exif? (
+   >=media-libs/libexif-0.6.14
+   virtual/jpeg:0
+   )
+   imagemagick? ( >=media-gfx/imagemagick-6.2.6 )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   jpeg? ( virtual/jpeg:0 )
+   lcms? ( media-libs/lcms:2 )
+   svg? ( >=gnome-base/librsvg-2.36.2:2 )
+   xmp? ( >=media-libs/exempi-1.99.5:2 )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   !!media-gfx/mate-image-viewer
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-util/glib-utils
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}/eom-1.24.0-add-gdk-includes.patch" )
+
+src_configure() {
+   mate_src_configure \
+   --enable-thumbnailer \
+   $(use_enable debug) \
+   $(use_enable introspection) \
+   $(use_with X x) \
+   $(use_with exif libexif) \
+   $(usex imagemagick \
+   --without-gdk-pixbuf-thumbnailer \
+   --with-gdk-pixbuf-thumbnailer \
+   ) \
+   $(use_with jpeg libjpeg) \
+   $(use_with lcms cms) \
+   $(use_with svg librsvg) \
+   $(use_with xmp)
+}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-netbook/

2020-09-07 Thread Adam Feldman
commit: 3acb4d40c4d36979cc92805b55d807a18a960c6d
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:21:25 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=3acb4d40

mate-extra/mate-netbook: Fix deps

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 .../mate-netbook/mate-netbook-1.24.0-r1.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild 
b/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild
new file mode 100644
index 000..fbc817f
--- /dev/null
+++ b/mate-extra/mate-netbook/mate-netbook-1.24.0-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="MATE utilities for netbooks"
+LICENSE="LGPL-2+ GPL-3"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.50:2
+   >=mate-base/mate-panel-1.17.0
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libfakekey
+   x11-libs/libwnck:3
+   x11-libs/libXtst
+   x11-libs/libX11
+   x11-libs/cairo
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   x11-base/xorg-proto
+   >=dev-util/intltool-0.50.1
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-sensors-applet/

2020-09-07 Thread Adam Feldman
commit: 359ee31afb8a33155f323fe3aa9f2d6201fe6863
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:42:14 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=359ee31a

mate-extra/mate-sensors-applet: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-sensors-applet/mate-sensors-applet-.ebuild | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/mate-extra/mate-sensors-applet/mate-sensors-applet-.ebuild 
b/mate-extra/mate-sensors-applet/mate-sensors-applet-.ebuild
index d292f32..eea8796 100644
--- a/mate-extra/mate-sensors-applet/mate-sensors-applet-.ebuild
+++ b/mate-extra/mate-sensors-applet/mate-sensors-applet-.ebuild
@@ -26,9 +26,7 @@ COMMON_DEPEND="
hddtemp? ( >=app-admin/hddtemp-0.3_beta13 )
libnotify? ( >=x11-libs/libnotify-0.7 )
lm-sensors? ( sys-apps/lm-sensors )
-   video_cards_nvidia? ( || (
-   >=x11-drivers/nvidia-drivers-100.14.09:0[static-libs,tools]
-   ) )
+   video_cards_nvidia? ( 
>=x11-drivers/nvidia-drivers-100.14.09:0[static-libs,tools] )
 "
 
 RDEPEND="${COMMON_DEPEND}
@@ -39,8 +37,8 @@ DEPEND="${COMMON_DEPEND}
app-text/rarian
>=app-text/scrollkeeper-dtd-1:1.0
app-text/yelp-tools
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig:*
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
 "
 
 PDEPEND="hddtemp? ( dbus? ( sys-fs/udisks:2 ) )"
@@ -56,7 +54,6 @@ src_configure() {
 
mate_src_configure \
--disable-netbsd \
-   --disable-static \
--without-aticonfig \
$(use_enable libnotify) \
$(use_with lm-sensors libsensors) \



[gentoo-commits] proj/gentoo-mate:master commit in: x11-terms/mate-terminal/

2020-09-07 Thread Adam Feldman
commit: 4cfa6610a8650fabacfefc1e18957a30358b0365
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:48:02 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=4cfa6610

x11-terms/mate-terminal: Bump to 1.24.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 x11-terms/mate-terminal/Manifest   |  1 +
 .../mate-terminal/mate-terminal-1.24.1.ebuild  | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/x11-terms/mate-terminal/Manifest b/x11-terms/mate-terminal/Manifest
index f3bb348..a83bc45 100644
--- a/x11-terms/mate-terminal/Manifest
+++ b/x11-terms/mate-terminal/Manifest
@@ -1,2 +1,3 @@
 DIST mate-terminal-1.22.1.tar.xz 1543900 BLAKE2B 
9c5d92525391603f3dd06444c07d892bbae43c03da7f09414901ee31ce8497e65dfca9f184c8186bead91c27c99c69a528ad2021983ad074023781b275e2b748
 SHA512 
b20102c15dc140b59c93802606ca94fd108dfd5f7ac7f079b872e957794fc2c3aab40c0e6da697e8d393a67fca7b106573a4cb8014af5d6c8ad777be3a798534
 DIST mate-terminal-1.24.0.tar.xz 2084772 BLAKE2B 
82909eb210bf5f0848e35b06b8569b22ba35ff515b2f90bc20e1766564997c7a44080597ac2efa825a8f9793f64c56136dd977b86e4d88e0886bb0e70c772e79
 SHA512 
2ad25411a8e720d3ef43964dc9f80732e215b1b5154e904069d25e73910c0c8f0e1b100d21f85b9a1eec06f6b17f891791445f7830bb52fc44b67fa3f8cebf76
+DIST mate-terminal-1.24.1.tar.xz 2032824 BLAKE2B 
d5c6e97fbb22550f8caf0042422ea9104b947f04e3dacb42bee4e6d1dcdbd59c8cb6765889ac86ea5850ac5ca293a9f796aa5c41d5e1707df2bb37670b3832f3
 SHA512 
83090667f823605ef0681efeff66c30729df83e7335c100171017ee5f2e819ec0bb219fdc71ed54a27c4a846fcc8db01c4462ef5b9c1e3f31d9c5838427566dc

diff --git a/x11-terms/mate-terminal/mate-terminal-1.24.1.ebuild 
b/x11-terms/mate-terminal/mate-terminal-1.24.1.ebuild
new file mode 100644
index 000..6582117
--- /dev/null
+++ b/x11-terms/mate-terminal/mate-terminal-1.24.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="The MATE Terminal"
+LICENSE="FDL-1.1+ GPL-3+ LGPL-3+"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   >=gnome-base/dconf-0.13.4
+   x11-libs/gdk-pixbuf:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/pango
+   >=x11-libs/gtk+-3.22:3[X]
+   >=x11-libs/vte-0.48:2.91
+"
+
+RDEPEND="${COMMON_DEPEND}
+   >=mate-base/mate-desktop-1.6
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   dev-util/glib-utils
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-netbook/

2020-09-07 Thread Adam Feldman
commit: e19cef9313dd88ca7528bd4c2e830840d1367820
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:23:20 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=e19cef93

mate-extra/mate-netbook: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-netbook/mate-netbook-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/mate-netbook/mate-netbook-.ebuild 
b/mate-extra/mate-netbook/mate-netbook-.ebuild
index b6139aa..fbc817f 100644
--- a/mate-extra/mate-netbook/mate-netbook-.ebuild
+++ b/mate-extra/mate-netbook/mate-netbook-.ebuild
@@ -33,6 +33,6 @@ RDEPEND="${COMMON_DEPEND}
 DEPEND="${COMMON_DEPEND}
x11-base/xorg-proto
>=dev-util/intltool-0.50.1
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig:*
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
 "



[gentoo-commits] proj/gentoo-mate:master commit in: x11-terms/mate-terminal/

2020-09-07 Thread Adam Feldman
commit: 5629884f255340e866698f9d8653fbb8b8a2dff3
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:49:01 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:25 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=5629884f

x11-terms/mate-terminal: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 x11-terms/mate-terminal/mate-terminal-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/mate-terminal/mate-terminal-.ebuild 
b/x11-terms/mate-terminal/mate-terminal-.ebuild
index 047839e..6582117 100644
--- a/x11-terms/mate-terminal/mate-terminal-.ebuild
+++ b/x11-terms/mate-terminal/mate-terminal-.ebuild
@@ -38,6 +38,6 @@ DEPEND="${COMMON_DEPEND}
>=app-text/scrollkeeper-dtd-1:1.0
app-text/yelp-tools
dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8:*
+   >=sys-devel/gettext-0.19.8
virtual/pkgconfig
 "



[gentoo-commits] proj/gentoo-mate:master commit in: dev-python/python-caja/

2020-09-07 Thread Adam Feldman
commit: d5c856dbc0dcca26ad71b9f6844678c53a9dabf2
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:38:54 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:27 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=d5c856db

dev-python/python-caja: Fix deps

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 .../python-caja/python-caja-1.24.0-r2.ebuild   | 57 ++
 1 file changed, 57 insertions(+)

diff --git a/dev-python/python-caja/python-caja-1.24.0-r2.ebuild 
b/dev-python/python-caja/python-caja-1.24.0-r2.ebuild
new file mode 100644
index 000..622b437
--- /dev/null
+++ b/dev-python/python-caja/python-caja-1.24.0-r2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+
+inherit mate python-single-r1
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="Python bindings for the Caja file manager"
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="doc"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=dev-libs/glib-2.50:2
+   $( python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]' 
)
+   >=mate-base/caja-1.17.1[introspection]
+   >=x11-libs/gtk+-3.22:3
+"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   doc? ( app-text/docbook-xml-dtd:4.1.2 )
+"
+
+src_prepare() {
+   MATE_FORCE_AUTORECONF="true"
+
+   sed -i "s/\$(PACKAGE)/${PF}/g" examples/Makefile.am || die
+   mate_src_prepare
+}
+
+src_install() {
+   mate_src_install
+
+   # Keep the directory for systemwide extensions.
+   keepdir /usr/share/caja-python/extensions/
+
+   # The HTML documentation generation is broken and commented out by 
upstream.
+   #
+   #if use doc ; then
+   #   insinto /usr/share/gtk-doc/html/nautilus-python # for 
dev-util/devhelp
+   #   doins -r docs/html/*
+   #fi
+}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-calc/

2020-09-07 Thread Adam Feldman
commit: 3e9c92ff4928e70adca32b3081c8fc978f91d8b2
Author: Adam Feldman  gentoo  org>
AuthorDate: Mon Sep  7 18:05:09 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:27 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=3e9c92ff

mate-extra/mate-calc: Sync 

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-calc/mate-calc-.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/mate-extra/mate-calc/mate-calc-.ebuild 
b/mate-extra/mate-calc/mate-calc-.ebuild
index 77fe727..31d748f 100644
--- a/mate-extra/mate-calc/mate-calc-.ebuild
+++ b/mate-extra/mate-calc/mate-calc-.ebuild
@@ -20,7 +20,8 @@ COMMON_DEPEND="
>=dev-libs/glib-2.50:2
dev-libs/libxml2:2
>=x11-libs/gtk+-3.22:3
-   x11-libs/pango"
+   x11-libs/pango
+"
 
 RDEPEND="${COMMON_DEPEND}
virtual/libintl
@@ -29,5 +30,6 @@ RDEPEND="${COMMON_DEPEND}
 DEPEND="${COMMON_DEPEND}
app-text/yelp-tools
dev-libs/libxml2
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig:*"
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-indicator-applet/

2020-09-07 Thread Adam Feldman
commit: 3b69a97e5cb0758fb5add1552fde20ca6540919d
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 21:16:09 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:24 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=3b69a97e

mate-extra/mate-indicator-applet: Fix deps

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 .../mate-indicator-applet-1.24.0-r1.ebuild | 31 ++
 1 file changed, 31 insertions(+)

diff --git 
a/mate-extra/mate-indicator-applet/mate-indicator-applet-1.24.0-r1.ebuild 
b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.24.0-r1.ebuild
new file mode 100644
index 000..670d2a4
--- /dev/null
+++ b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.24.0-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate eapi7-ver
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="MATE indicator applet"
+LICENSE="GPL-3 GPL-3+ LGPL-2+ LGPL-3+"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="
+   >=dev-libs/libindicator-0.4:3
+   >=mate-base/mate-panel-1.17.0
+   >=x11-libs/gtk+-3.22:3
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"



[gentoo-commits] proj/gentoo-mate:master commit in: x11-misc/mozo/

2020-09-07 Thread Adam Feldman
commit: d2b22b140d421b8883d994b65337e9bcac04fd89
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun Sep  6 22:28:14 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Mon Sep  7 18:08:26 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=d2b22b14

x11-misc/mozo: Update python, fix deps

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 x11-misc/mozo/mozo-1.24.0-r1.ebuild | 69 +
 1 file changed, 69 insertions(+)

diff --git a/x11-misc/mozo/mozo-1.24.0-r1.ebuild 
b/x11-misc/mozo/mozo-1.24.0-r1.ebuild
new file mode 100644
index 000..8977a14
--- /dev/null
+++ b/x11-misc/mozo/mozo-1.24.0-r1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_REQ_USE="xml"
+
+inherit mate python-r1
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Mozo menu editor for MATE"
+LICENSE="GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
+SLOT="0"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
+   >=mate-base/mate-menus-1.21.0[introspection]
+   x11-libs/gdk-pixbuf:2[introspection]
+   >=x11-libs/gtk+-3.22:3[introspection]
+   !!x11-misc/mate-menu-editor
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   mate_src_prepare
+   python_copy_sources
+}
+
+src_configure() {
+   python_foreach_impl run_in_build_dir mate_src_configure \
+   --disable-icon-update
+}
+
+src_compile() {
+   python_foreach_impl run_in_build_dir default
+}
+
+src_test() {
+   python_foreach_impl run_in_build_dir emake check
+}
+
+src_install() {
+   installing() {
+   mate_src_install
+
+   # Massage shebang to make python_doscript happy
+   sed -e 's:#! '"${PYTHON}:#!/usr/bin/python:" \
+   -i mozo || die
+
+   python_doscript mozo
+   python_optimize
+   }
+
+   python_foreach_impl run_in_build_dir installing
+}



  1   2   3   4   >