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

2021-01-18 Thread Alfredo Tupone
commit: e2963ec6957976cd9b0d9910920a8e36d3324872
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Jan 19 07:40:45 2021 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jan 19 07:40:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2963ec6

app-misc/geneweb: add dependency

Closes: https://bugs.gentoo.org/766063
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Alfredo Tupone  gentoo.org>

 app-misc/geneweb/geneweb-7.0.0-r2.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-misc/geneweb/geneweb-7.0.0-r2.ebuild 
b/app-misc/geneweb/geneweb-7.0.0-r2.ebuild
index 92450339206..9ab366e9baa 100644
--- a/app-misc/geneweb/geneweb-7.0.0-r2.ebuild
+++ b/app-misc/geneweb/geneweb-7.0.0-r2.ebuild
@@ -11,8 +11,8 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+ocamlopt"
-RESTRICT="strip"
+IUSE="+ocamlopt test"
+RESTRICT="strip !test? ( test )"
 
 RDEPEND="dev-lang/ocaml[ocamlopt?]


[gentoo-commits] proj/portage:master commit in: repoman/lib/repoman/modules/scan/metadata/

2021-01-18 Thread Zac Medico
commit: 030e2fc8ba6cf6c28b582c9ccbb5343ece887776
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 19 07:32:49 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 19 07:33:33 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=030e2fc8

repoman: fix DeprecationWarning: invalid escape sequence \s

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

 repoman/lib/repoman/modules/scan/metadata/pkgmetadata.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/lib/repoman/modules/scan/metadata/pkgmetadata.py 
b/repoman/lib/repoman/modules/scan/metadata/pkgmetadata.py
index c1ba8e9f4..2e85cc3b9 100644
--- a/repoman/lib/repoman/modules/scan/metadata/pkgmetadata.py
+++ b/repoman/lib/repoman/modules/scan/metadata/pkgmetadata.py
@@ -101,7 +101,7 @@ class PkgMetadata(ScanBase, USEFlagChecks):
 
indentation_chars = Counter()
for l in etree.tostring(_metadata_xml).splitlines():
-   indentation_chars.update(re.match(b"\s*", l).group(0))
+   indentation_chars.update(re.match(rb"\s*", l).group(0))
if len(indentation_chars) > 1:
self.qatracker.add_error("metadata.warning", 
"%s/metadata.xml: %s" %
(xpkg, "inconsistent use of tabs and spaces in 
indentation")



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

2021-01-18 Thread Zac Medico
commit: fb40f65ddd7635f98a2e0b14a8914697635896d4
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 19 07:07:57 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 19 07:17:19 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=fb40f65d

bin: misc pylint fixes

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

 bin/clean_locks |  5 +++--
 bin/dispatch-conf   | 17 ++---
 bin/ebuild  |  4 +---
 bin/egencache   |  6 +++---
 bin/emerge  | 13 -
 bin/glsa-check  |  5 +++--
 bin/portageq| 18 +-
 bin/quickpkg| 10 +-
 bin/regenworld  |  6 +++---
 lib/portage/__init__.py |  3 ++-
 10 files changed, 43 insertions(+), 44 deletions(-)

diff --git a/bin/clean_locks b/bin/clean_locks
index d1f296065..e5765fd7e 100755
--- a/bin/clean_locks
+++ b/bin/clean_locks
@@ -1,8 +1,9 @@
 #!/usr/bin/python -b
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-import sys, errno
+import errno
+import sys
 from os import path as osp
 if osp.isfile(osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), 
".portage_not_installed")):
sys.path.insert(0, 
osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "lib"))

diff --git a/bin/dispatch-conf b/bin/dispatch-conf
index fa047244a..0fdfbaa81 100755
--- a/bin/dispatch-conf
+++ b/bin/dispatch-conf
@@ -1,5 +1,5 @@
 #!/usr/bin/python -b
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 #
@@ -16,10 +16,17 @@ import io
 import re
 import subprocess
 import sys
+import termios
+import tty
 
 from stat import ST_GID, ST_MODE, ST_UID
 from random import random
 
+try:
+   import curses
+except ImportError:
+   curses = None
+
 from os import path as osp
 if osp.isfile(osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), 
".portage_not_installed")):
sys.path.insert(0, 
osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "lib"))
@@ -454,7 +461,6 @@ class dispatch:
 def getch ():
 # from ASPN - Danny Yoo
 #
-import tty, termios
 
 fd = sys.stdin.fileno()
 old_settings = termios.tcgetattr(fd)
@@ -466,8 +472,7 @@ def getch ():
 return ch
 
 def clear_screen():
-try:
-import curses
+if curses is not None:
 try:
 curses.setupterm()
 sys.stdout.write(_unicode_decode(curses.tigetstr("clear")))
@@ -475,8 +480,6 @@ def clear_screen():
 return
 except curses.error:
 pass
-except ImportError:
-pass
 os.system("clear 2>/dev/null")
 
 shell = os.environ.get("SHELL")
@@ -503,7 +506,7 @@ def usage(argv):
 for x in sys.argv:
 if x in ('-h', '--help'):
 usage(sys.argv)
-elif x in ('--version'):
+elif x in ('--version',):
 print("Portage", portage.VERSION)
 sys.exit(os.EX_OK)
 

diff --git a/bin/ebuild b/bin/ebuild
index 09f7f839b..0a2b13a13 100755
--- a/bin/ebuild
+++ b/bin/ebuild
@@ -1,5 +1,5 @@
 #!/usr/bin/python -b
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import argparse
@@ -46,7 +46,6 @@ portage._internal_caller = True
 from portage import os
 from portage import _encodings
 from portage import _shell_quote
-from portage import _unicode_decode
 from portage import _unicode_encode
 from portage.const import VDB_PATH
 from portage.exception import PermissionDenied, PortageKeyError, \
@@ -111,7 +110,6 @@ if debug:
 
 # do this _after_ 'import portage' to prevent unnecessary tracing
 if debug and "python-trace" in portage.features:
-   import portage.debug
portage.debug.set_trace(True)
 
 if not opts.color == 'y' and \

diff --git a/bin/egencache b/bin/egencache
index 4ee63edad..9b6df2e7d 100755
--- a/bin/egencache
+++ b/bin/egencache
@@ -1,5 +1,5 @@
 #!/usr/bin/python -b
-# Copyright 2009-2020 Gentoo Authors
+# Copyright 2009-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # unicode_literals for compat with TextIOWrapper in Python 2
@@ -49,7 +49,6 @@ if 
osp.isfile(osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), ".porta
 import portage
 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, 
pkg_desc_index_line_read
 from portage.const import TIMESTAMP_FORMAT
@@ -65,6 +64,7 @@ from portage.util.changelog import ChangeLogTypeSort
 from portage import cpv_getkey
 from portage.dep import Atom, isjustname
 from portage.versions import vercmp
+from 

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

2021-01-18 Thread Zac Medico
commit: ed835b66bd86b465893968b7a29b73eaef6cd5e6
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 19 07:09:37 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 19 07:17:19 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ed835b66

tox.ini: fix pylint command

The previous command did not work correctly due to quirks of
the pylint.utils.expand_modules function.

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

 tox.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tox.ini b/tox.ini
index cebf0e49c..585752686 100644
--- a/tox.ini
+++ b/tox.ini
@@ -20,6 +20,6 @@ deps =
 setenv =
PYTHONPATH={toxinidir}/lib
 commands =
-   bash -c 'rm -rf build && PYTHONPATH=$PWD/lib:$PWD/repoman/lib pylint *'
+   bash -c 'rm -rf build && PYTHONPATH=$PWD/lib:$PWD/repoman/lib pylint 
bin/* lib/* repoman/bin/* repoman/lib/*'
python -b -Wd setup.py test
bash -c 'if python -c "import lxml.etree"; then python -b -Wd 
repoman/setup.py test; else echo "repoman tests skipped due to lxml breakage"; 
fi'



[gentoo-commits] proj/portage:master commit in: repoman/lib/repoman/, repoman/lib/repoman/modules/vcs/svn/, ...

2021-01-18 Thread Zac Medico
can/ebuild/__init__.py repoman/lib/repoman/modules/scan/eclasses/__init__.py 
repoman/lib/repoman/modules/scan/fetch/__init__.py 
repoman/lib/repoman/modules/scan/keywords/__init__.py 
repoman/lib/repoman/modules/scan/manifest/__init__.py 
repoman/lib/repoman/modules/scan/metadata/__init__.py 
repoman/lib/repoman/modules/scan/metadata/ebuild_metadata.py 
repoman/lib/repoman/modules/scan/metadata/pkgmetadata.py 
repoman/lib/repoman/modules/scan/metadata/restrict.py 
repoman/lib/repoman/modules/scan/options/__init__.py 
repoman/lib/repoman/modules/vcs/None/status.py 
repoman/lib/repoman/modules/vcs/__init__.py 
repoman/lib/repoman/modules/vcs/bzr/changes.py 
repoman/lib/repoman/modules/vcs/bzr/status.py 
repoman/lib/repoman/modules/vcs/cvs/status.py 
repoman/lib/repoman/modules/vcs/git/changes.py 
repoman/lib/repoman/modules/vcs/git/status.py 
repoman/lib/repoman/modules/vcs/hg/changes.py 
repoman/lib/repoman/modules/vcs/hg/status.py 
repoman/lib/repoman/modules/vcs/svn/changes.py repoman/lib/repoman/mo
 dules/vcs/svn/status.py repoman/lib/repoman/modules/vcs/vcs.py 
repoman/lib/repoman/repos.py repoman/lib/repoman/tests/commit/__test__.py 
repoman/lib/repoman/tests/runTests.py 
repoman/lib/repoman/tests/simple/__test__.py 
repoman/lib/repoman/tests/simple/test_simple.py repoman/lib/repoman/utilities.py
X-VCS-Directories: repoman/lib/repoman/modules/scan/metadata/ 
repoman/lib/repoman/modules/scan/depend/ 
repoman/lib/repoman/modules/linechecks/quotes/ 
repoman/lib/repoman/modules/scan/fetch/ 
repoman/lib/repoman/modules/linechecks/depend/ 
repoman/lib/repoman/modules/scan/directories/ 
repoman/lib/repoman/modules/scan/eclasses/ 
repoman/lib/repoman/modules/scan/ebuild/ 
repoman/lib/repoman/modules/linechecks/whitespace/ 
repoman/lib/repoman/modules/linechecks/eapi/ 
repoman/lib/repoman/modules/scan/keywords/ 
repoman/lib/repoman/modules/linechecks/useless/ 
repoman/lib/repoman/modules/vcs/cvs/ repoman/lib/repoman/tests/commit/ 
repoman/lib/repoman/modules/linechecks/deprecated/ 
repoman/lib/repoman/modules/linechecks/gentoo_header/ 
repoman/lib/repoman/modules/linechecks/patches/ repoman/lib/repoman/ 
repoman/lib/repoman/tests/simple/ repoman/lib/repoman/modules/vcs/None/ 
repoman/lib/repoman/modules/vcs/svn/ 
repoman/lib/repoman/modules/linechecks/portage/ 
repoman/lib/repoman/modules/vcs/git/ repom
 an/lib/repoman/modules/scan/options/ repoman/lib/repoman/modules/commit/ 
repoman/lib/repoman/modules/linechecks/ 
repoman/lib/repoman/modules/linechecks/do/ 
repoman/lib/repoman/modules/linechecks/use/ repoman/lib/repoman/modules/vcs/ 
repoman/lib/repoman/modules/linechecks/nested/ 
repoman/lib/repoman/modules/linechecks/workaround/ repoman/lib/repoman/tests/ 
repoman/lib/repoman/modules/linechecks/phases/ 
repoman/lib/repoman/modules/linechecks/uri/ 
repoman/lib/repoman/modules/linechecks/helpers/ 
repoman/lib/repoman/modules/scan/eapi/ 
repoman/lib/repoman/modules/scan/manifest/ 
repoman/lib/repoman/modules/linechecks/emake/ 
repoman/lib/repoman/modules/linechecks/assignment/ 
repoman/lib/repoman/modules/vcs/hg/ repoman/lib/repoman/modules/vcs/bzr/
X-VCS-Committer: zmedico
X-VCS-Committer-Name: Zac Medico
X-VCS-Revision: fd216bba8b60335f8ee0119a350dd22ce65331b3
X-VCS-Branch: master
Date: Tue, 19 Jan 2021 07:28:40 + (UTC)

commit: fd216bba8b60335f8ee0119a350dd22ce65331b3
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 19 07:05:46 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 19 07:06:01 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=fd216bba

repoman: misc pylint fixes

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

 repoman/lib/repoman/_subprocess.py |  4 
 repoman/lib/repoman/actions.py |  3 ++-
 repoman/lib/repoman/config.py  |  5 
 repoman/lib/repoman/gpg.py |  2 --
 repoman/lib/repoman/main.py|  3 ++-
 repoman/lib/repoman/metadata.py|  1 -
 repoman/lib/repoman/modules/commit/manifest.py |  1 -
 repoman/lib/repoman/modules/commit/repochecks.py   |  1 -
 repoman/lib/repoman/modules/linechecks/__init__.py |  1 -
 .../modules/linechecks/assignment/__init__.py  |  3 +--
 .../repoman/modules/linechecks/depend/__init__.py  |  3 +--
 .../modules/linechecks/deprecated/__init__.py  |  3 +--
 .../modules/linechecks/deprecated/deprecated.py|  2 +-
 .../lib/repoman/modules/linechecks/do/__init__.py  |  3 +--
 .../repoman/modules/linechecks/eapi/__init__.py|  3 +--
 .../repoman/modules/linechecks/emake/__init__.py   |  3 +--
 .../modules/linechecks/gentoo_header/__init__.py   |  3 +--
 .../repoman/modules/linechecks/helpers/__init__.py |  3 +--
 .../repoman/modules/linechecks/helpers/offset.py   |  2 +-
 .../repoman/modules/linechecks/nested/__init__.py  |  3 +--
 .../repoman/modules/linechecks/patches/__init__.py |  3 +--
 .../repoman/modules/linechecks/patches/patches.py  |  3 +--
 

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

2021-01-18 Thread Alfredo Tupone
commit: ea4e7bb22f0273aa8f8e4d7f0c7b23b29ce9e5b3
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Jan 19 07:13:16 2021 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jan 19 07:13:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea4e7bb2

dev-lang/tk: version bump to 8.6.11.1

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-lang/tk/Manifest   |   1 +
 dev-lang/tk/tk-8.6.11.1.ebuild | 146 +
 2 files changed, 147 insertions(+)

diff --git a/dev-lang/tk/Manifest b/dev-lang/tk/Manifest
index e99cccb6705..d61cb3f94de 100644
--- a/dev-lang/tk/Manifest
+++ b/dev-lang/tk/Manifest
@@ -1,6 +1,7 @@
 DIST tk8.5.17-src.tar.gz 4095985 BLAKE2B 
4cbb140c30ca717ee499b9ad9e1a3df27a470a78613edbaec425c39afaa41d59276bbe487933a4e77a9722fcafa9113b203cf5c828660bdeb38f667c3263c3cd
 SHA512 
ddadc738c2567e35d1257b59212c8a0eb70a1bf041d986bc6df3b841b51d934d79a0ef389c928223a64516a92cae3357b2c789edca9c8a626ff4c1cf320c4f4f
 DIST tk8.6.10-src.tar.gz 764 BLAKE2B 
f56647e005778c802352aee0257c0a8f5e0014c9d21362592f08030252d83141cca385f0fb95c0e7e930016255c3b2cef49a65064e056a877214b7d7a1a01246
 SHA512 
d12ef3a5bde9e10209a24e9f978bd23360a979d8fa70a859cf750a79ca51067a11ef6df7589303b52fe2a2baed4083583ddaa19e2c7cb433ea523639927f1be5
 DIST tk8.6.11-src.tar.gz 4496914 BLAKE2B 
c3050a48d5cb3bd3095b2c439b3d33992551f953a981bf23eedbf774368b383abc77fb3156aa4bcaae658d0706495cff03536ab8258f9d824ff8f4325b36cc38
 SHA512 
2e11490f2f51ef7e723661dd91c95622234fb97850e80d8ecd564be8c28f7c8fb0334a97cf8267af9d68f63e4adea887a1a4eec8d2e807d6a970b5912f99d3f2
+DIST tk8.6.11.1-src.tar.gz 4496008 BLAKE2B 
d7bae2fa535411ad8620ec81cdc0b34a1206fed82f50dbd98d3977af46ac43f794166cb7029f274f7903228c62ce83dfbd56cea06669ff1e382b185d733b0792
 SHA512 
e2a1d27ba63601731d43c4c4e2b658771a14afd97ef8231f8bc7854e762b83a42f23b8db600e4b4a4a14ae6fc97378d0b9a9a180ae09308b9d12436ec2b176c4
 DIST tk8.6.8-src.tar.gz 4319854 BLAKE2B 
167c5dc6c32e49653c04bc067c3d75df022ca230657be32797021b0e2f7748215d9ad0493c8020b8d1be1f005b9b2d561339a6a0b209721c0d05dd222d47d377
 SHA512 
d0d30637b733fb0b0d38461b6d872934c04af422fcdb7ec41a72331b2529cc94414e6f441f95a98642d69505e4f41469847fedd1cbe58bd08cdd818fcabd1db9
 DIST tk8.6.9-src.tar.gz 4364606 BLAKE2B 
9c96d977aa72dcc0c8d2a570d644284a1eef217ef082d8a78461bdcb4845e206ccad59cb5bc21ef80e32ea19951fa3a845e45059bb9eaf0756f128a95530260c
 SHA512 
654d73aad006e628110057681477b958b7ec0a42287bc78259fb4b84635e7ebe757e69099d66c0c73479bc506ca66fa5baf13f13b0f403d60b2c54fd48a4a686
 DIST tk8.6.9.1-src.tar.gz 4364603 BLAKE2B 
3d96637ceadc28977f8b4532be071907d64f11bd22881baf02aa6fa2778b607437edce8f1ed02e7011bcf78468128f7bfe81ee6dac9bd73a796e7fefae130dcf
 SHA512 
b9c811ffc8326331ae03c6fb25ea71f7a5eaeebd9d5a16a51a1671d0f0422268bd351b077e17ae925f0a7eddac9642aa640658615c52d4269c299373af031a92

diff --git a/dev-lang/tk/tk-8.6.11.1.ebuild b/dev-lang/tk/tk-8.6.11.1.ebuild
new file mode 100644
index 000..f033c912f9c
--- /dev/null
+++ b/dev-lang/tk/tk-8.6.11.1.ebuild
@@ -0,0 +1,146 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal prefix toolchain-funcs virtualx
+
+MY_P="${PN}${PV/_beta/b}"
+
+DESCRIPTION="Tk Widget Set"
+HOMEPAGE="http://www.tcl.tk/;
+SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
+
+LICENSE="tcltk"
+SLOT="0/8.6"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="debug +threads truetype aqua xscreensaver"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   !aqua? (
+   >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}]
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
+   truetype? ( >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}] )
+   xscreensaver? ( 
>=x11-libs/libXScrnSaver-1.2.2-r1[${MULTILIB_USEDEP}] )
+   )
+   ~dev-lang/tcl-$(ver_cut 1-3):0=[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   !aqua? ( x11-base/xorg-proto )"
+
+# Not bumped to 8.6
+#RESTRICT=test
+
+SPARENT="${WORKDIR}/${PN}$(ver_cut 1-3 ${PV})"
+S="${SPARENT}"/unix
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-8.6.10-multilib.patch
+   "${FILESDIR}"/${PN}-8.4.15-aqua.patch
+   "${FILESDIR}"/${PN}-8.6.9-conf.patch # Bug 125971
+   "${FILESDIR}"/${PN}-8.6.11-test.patch
+)
+
+src_prepare() {
+   find \
+   "${SPARENT}"/compat/* \
+   -delete || die
+
+   pushd "${SPARENT}" &>/dev/null || die
+   default
+   popd &>/dev/null || die
+   eprefixify Makefile.in
+
+   # Make sure we use the right pkg-config, and link against fontconfig
+   # (since the code base uses Fc* functions).
+   sed \
+   -e 

[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2021-01-18 Thread Fabian Groffen
commit: b1bf109203b1a4062c58a87e5dcf52772b48c127
Author: Fabian Groffen  gentoo  org>
AuthorDate: Tue Jan 19 07:10:27 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Tue Jan 19 07:10:27 2021 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=b1bf1092

scripts/bootstrap-prefix: bump snapshot for sparc64-solaris

Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index e0393155f0..d9d80388f7 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -526,7 +526,7 @@ do_tree() {
 bootstrap_tree() {
# RAP uses the latest gentoo main repo snapshot to bootstrap.
is-rap && LATEST_TREE_YES=1
-   local PV="20210114"
+   local PV="20210118"
if [[ -n ${LATEST_TREE_YES} ]]; then
do_tree "${SNAPSHOT_URL}" portage-latest.tar.bz2
else



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

2021-01-18 Thread Sergei Trofimovich
commit: 7564bc16774fbed1d9d1a232278979f2bdaaea94
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jan 18 21:01:35 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 19 07:03:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7564bc16

dev-lang/erlang: stable 23.2 for sparc, bug #765733

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

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

diff --git a/dev-lang/erlang/erlang-23.2.ebuild 
b/dev-lang/erlang/erlang-23.2.ebuild
index 7fff9ff592a..a18718fcf2a 100644
--- a/dev-lang/erlang/erlang-23.2.ebuild
+++ b/dev-lang/erlang/erlang-23.2.ebuild
@@ -22,7 +22,7 @@ LICENSE="Apache-2.0"
 # same build of ERTS that was used when compiling the code.  See
 # http://erlang.org/doc/system_principles/misc.html for more information.
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
 
 RDEPEND="



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

2021-01-18 Thread Sergei Trofimovich
commit: dad134d10396d9499d1604fb4f5fffe51ae93f6d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jan 18 21:04:14 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 19 07:04:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad134d1

dev-python/pyopenssl: stable 20.0.1 for hppa, bug #765961

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

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

diff --git a/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild 
b/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
index 1adf045bf0b..05155611d1b 100644
--- a/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-python/six-1.5.2[${PYTHON_USEDEP}]



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

2021-01-18 Thread Sergei Trofimovich
commit: d8fb0e246d6c912b7ae4559f7e05f32a2261425d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jan 18 21:02:56 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 19 07:04:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8fb0e24

sys-apps/portage: stable 3.0.13 for hppa/sparc, bug #765895

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

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

diff --git a/sys-apps/portage/portage-3.0.13.ebuild 
b/sys-apps/portage/portage-3.0.13.ebuild
index 7478b9c8071..552d5c1460b 100644
--- a/sys-apps/portage/portage-3.0.13.ebuild
+++ b/sys-apps/portage/portage-3.0.13.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



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

2021-01-18 Thread Joonas Niilola
commit: 2f16c8d1cbb9ea81b160664ad42c79bd8342d146
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan 19 06:48:24 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan 19 06:48:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f16c8d1

dev-libs/voikko-fi: stabilize 2.4 on x86

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/voikko-fi/voikko-fi-2.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/voikko-fi/voikko-fi-2.4.ebuild 
b/dev-libs/voikko-fi/voikko-fi-2.4.ebuild
index 527614bfd97..4101a66a478 100644
--- a/dev-libs/voikko-fi/voikko-fi-2.4.ebuild
+++ b/dev-libs/voikko-fi/voikko-fi-2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.puimula.org/voikko-sources/${PN}/${P}.tar.gz
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 DEPEND="dev-libs/foma
dev-libs/libvoikko"



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

2021-01-18 Thread Joonas Niilola
commit: 8eea0f2eca2add132476377a3dbdd4217ae7b516
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan 19 06:48:51 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan 19 06:48:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eea0f2e

dev-libs/voikko-fi: stabilize 2.4 on amd64

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/voikko-fi/voikko-fi-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/voikko-fi/voikko-fi-2.4.ebuild 
b/dev-libs/voikko-fi/voikko-fi-2.4.ebuild
index 4101a66a478..b25d293369e 100644
--- a/dev-libs/voikko-fi/voikko-fi-2.4.ebuild
+++ b/dev-libs/voikko-fi/voikko-fi-2.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.puimula.org/voikko-sources/${PN}/${P}.tar.gz
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="dev-libs/foma
dev-libs/libvoikko"



[gentoo-commits] proj/sci:master commit in: dev-python/persim/

2021-01-18 Thread Aisha Tammy
commit: 73993d2a4dca4bf4a902838c463adf6bb11ed1da
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jan 19 02:20:42 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jan 19 02:20:42 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=73993d2a

dev-python/persim: version bump to 0.2.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/persim/persim-0.2.0.ebuild | 26 ++
 1 file changed, 26 insertions(+)

diff --git a/dev-python/persim/persim-0.2.0.ebuild 
b/dev-python/persim/persim-0.2.0.ebuild
new file mode 100644
index 0..065f0eb53
--- /dev/null
+++ b/dev-python/persim/persim-0.2.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Distances and representations of persistence diagrams"
+HOMEPAGE="https://persim.scikit-tda.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-python/hopcroftkarp[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/plotly[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/

2021-01-18 Thread Aisha Tammy
commit: a4b8b8d131c6167c812590100538db42d374cd53
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jan 19 01:15:47 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jan 19 01:15:47 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a4b8b8d1

sci-libs/arrayfire: version bump to 3.8.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 sci-libs/arrayfire/arrayfire-3.8.0.ebuild | 96 +++
 1 file changed, 96 insertions(+)

diff --git a/sci-libs/arrayfire/arrayfire-3.8.0.ebuild 
b/sci-libs/arrayfire/arrayfire-3.8.0.ebuild
new file mode 100644
index 0..e9b0932a8
--- /dev/null
+++ b/sci-libs/arrayfire/arrayfire-3.8.0.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake multilib
+
+DESCRIPTION="general purpose GPU library"
+HOMEPAGE="https://www.arrayfire.com/;
+SRC_URI="https://github.com/arrayfire/arrayfire/releases/download/v${PV}/${PN}-full-${PV}.tar.bz2
 -> ${P}.tar.bz2"
+S="${WORKDIR}"/${PN}-full-${PV}
+BUILD_DIR="${S}/build"
+
+KEYWORDS="~amd64"
+
+LICENSE="BSD nonfree? ( OpenSIFT )"
+SLOT="0"
+IUSE="examples +cache cuda doc mkl nonfree opencl test +trace"
+RESTRICT="bindist mirror !test? ( test )"
+
+RDEPEND="
+   media-libs/freeimage
+   media-libs/glbinding
+   >=media-libs/glfw-3.1
+   ~sci-visualization/forge-1.0.5
+   virtual/blas
+   virtual/cblas
+   virtual/lapacke
+   sci-libs/fftw:3.0
+   cuda? (
+   dev-libs/cudnn
+   >=dev-util/nvidia-cuda-toolkit-9.0.0
+   >=dev-libs/boost-1.70.0
+   )
+   mkl? (
+sci-libs/mkl
+   )
+   opencl? (
+   >=dev-libs/boost-1.70.0
+   >=sci-libs/clblas-2.4
+   >=sci-libs/clfft-2.6.1
+   virtual/opencl
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   doc? ( app-doc/doxygen )
+   virtual/pkgconfig
+"
+
+src_unpack() {
+   default
+
+   if ! use nonfree; then
+   find "${WORKDIR}" -name "*_nonfree*" -delete || die
+   fi
+}
+
+src_configure() {
+   if use cuda; then
+   addwrite /dev/nvidiactl
+   addwrite /dev/nvidia0
+   addwrite /dev/nvidia-uvm
+   fi
+
+   # forge headers are needed, so submodule
+   # has to stay, hence a ~ on forge dependency
+   local mycmakeargs=(
+   -DAF_BUILD_CPU=ON
+   -DAF_BUILD_CUDA="$(usex cuda)"
+   -DAF_BUILD_OPENCL="$(usex opencl)"
+   -DAF_BUILD_UNIFIED=ON
+   -DAF_BUILD_DOCS="$(usex doc)"
+   -DAF_BUILD_EXAMPLES="$(usex examples)"
+   -DAF_WITH_CUDNN="$(usex cuda)"
+   -DAF_BUILD_FORGE=OFF
+   -DAF_WITH_NONFREE="$(usex nonfree)"
+   -DAF_WITH_LOGGING=ON
+   -DAF_WITH_STACKTRACE="$(usex trace)"
+   -DAF_CACHE_KERNELS_TO_DISK="$(usex cache)"
+   -DAF_WITH_STATIC_MKL="$(usex mkl)"
+   -DAF_INSTALL_STANDALONE=OFF
+   -DAF_WITH_STATIC_FREEIMAGE=OFF
+   -DAF_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/ArrayFire
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   dodoc -r "${ED}"/usr/LICENSES
+   rm -r "${ED}"/usr/LICENSES || die
+
+   dobin "${BUILD_DIR}"/bin2cpp
+}



[gentoo-commits] proj/sci:master commit in: dev-python/umap-learn/

2021-01-18 Thread Aisha Tammy
commit: 9630012fc1583022d4d3ec9cc8d6fc714dcd143e
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jan 19 01:52:12 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jan 19 01:52:12 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9630012f

dev-python/umap-learn: version bump to 0.5.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/umap-learn/umap-learn-0.5.0.ebuild | 28 +++
 1 file changed, 28 insertions(+)

diff --git a/dev-python/umap-learn/umap-learn-0.5.0.ebuild 
b/dev-python/umap-learn/umap-learn-0.5.0.ebuild
new file mode 100644
index 0..37ca3ca45
--- /dev/null
+++ b/dev-python/umap-learn/umap-learn-0.5.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Uniform Manifold Approximation and Projection"
+HOMEPAGE="https://umap-learn.readthedocs.io/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-python/numba[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pynndescent[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+# no tests in package



[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/

2021-01-18 Thread Joonas Niilola
commit: f2060d384930adbbbd81ada2629bbf612fa0a256
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan 19 05:49:58 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan 19 05:51:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2060d38

x11-terms/terminology: bump to 1.9.0

Signed-off-by: Joonas Niilola  gentoo.org>

 x11-terms/terminology/Manifest |  1 +
 x11-terms/terminology/terminology-1.9.0.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest
index 2a0438cde3c..58dc806905a 100644
--- a/x11-terms/terminology/Manifest
+++ b/x11-terms/terminology/Manifest
@@ -1 +1,2 @@
 DIST terminology-1.8.1.tar.xz 4939080 BLAKE2B 
a87f6f27eca41b4e98d0d26c488ff9075e99e9ba99ef098db54069254a162c9e6f626716d650b6d04004e8f24fd2bcc36422de1834c575f95556612167b4f8a5
 SHA512 
9b12540d0e907ee1499c3249f1e2dbf7786f401e2154856a804dc0a1afbe389cb297b237fdc1c38aff8b81ba1f65d70cf3a27c986ec8cccef6f03894feadf14f
+DIST terminology-1.9.0.tar.xz 4971192 BLAKE2B 
840da3f9c5432d795fc21418b24a351e6c3057566339c673c2de7c08ff16db9d65cbb431ac1151cb85f035a577b509339fbf6eed68197ac96d67dd59c6a67cb1
 SHA512 
03955899f320b9d018d9e8a4a195b298e35052e6b5fa7d6c804f1810edf9ef55cac02e8d8c7261e1b890e8a453fce6418dc53a37abe499067688d3e16fdff9f1

diff --git a/x11-terms/terminology/terminology-1.9.0.ebuild 
b/x11-terms/terminology/terminology-1.9.0.ebuild
new file mode 100644
index 000..c855f868258
--- /dev/null
+++ b/x11-terms/terminology/terminology-1.9.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg-utils
+
+DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation 
Libraries"
+HOMEPAGE="https://www.enlightenment.org/about-terminology;
+SRC_URI="https://download.enlightenment.org/rel/apps/terminology/${P}.tar.xz 
https://downloads.terminolo.gy/${P}.tar.xz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="extras nls"
+
+RDEPEND="|| ( dev-libs/efl[gles2-only] dev-libs/efl[opengl] )
+   || ( dev-libs/efl[X] dev-libs/efl[wayland] )
+   app-arch/lz4
+   dev-libs/efl[eet,fontconfig]"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use nls)
+   $(meson_use extras tests)
+   )
+
+   meson_src_configure
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/azote/

2021-01-18 Thread Aisha Tammy
commit: d8e606a9d2c7f148da3ad3c89d12f8fba1828cc3
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jan 19 00:22:41 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Tue Jan 19 00:22:50 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8e606a9

gui-apps/azote: version bump to 1.8.2

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy  aisha.cc>

 gui-apps/azote/Manifest   |  1 +
 gui-apps/azote/azote-1.8.2.ebuild | 67 +++
 2 files changed, 68 insertions(+)

diff --git a/gui-apps/azote/Manifest b/gui-apps/azote/Manifest
index ebd938b8..c9685fc3 100644
--- a/gui-apps/azote/Manifest
+++ b/gui-apps/azote/Manifest
@@ -1 +1,2 @@
 DIST azote-1.8.1.tar.gz 615661 BLAKE2B 
f742fd037eab1a4ef3d87e1c055b254900151c8006127559cd8188665a01fd5277de4a22da6fd9fad270297fa9f1aab075094e59cc5d21e5ddee4f92bb8be5c5
 SHA512 
b474718242ab767c50edb6a660c4f2c91378289c6c5ae45e3e1dd37603fa0df56939ad56cf330a6e057edfd9b02f88f0a47b803100ad825dca4da8286214313e
+DIST azote-1.8.2.tar.gz 616189 BLAKE2B 
a45e1bbd054b409c04f84acb8b67c48bbc33d5efbbc4cdca140e269119e506195e5fb5e59c1b890788190d984ce86f244d8545151c09413841e28d8788c0e038
 SHA512 
e49cc391801ad8424d0103f5bea0964b0ac20ed66f88b08a78bed1b81ca69b57fcb4674b232a2809c31e1b5af23a4ed0f792ec96def411f2fa2dc2d0f2159337

diff --git a/gui-apps/azote/azote-1.8.2.ebuild 
b/gui-apps/azote/azote-1.8.2.ebuild
new file mode 100644
index ..b39da491
--- /dev/null
+++ b/gui-apps/azote/azote-1.8.2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit distutils-r1 desktop
+
+DESCRIPTION="wallpaper manager for wlroots compositors"
+HOMEPAGE="https://github.com/nwg-piotr/azote;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/nwg-piotr/azote;
+else
+   SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3 BSD"
+SLOT="0"
+IUSE="simple-colorpicker imagemagick wayland X yaml"
+
+RDEPEND="
+   dev-cpp/gtkmm:3.0
+   dev-python/pillow
+   dev-python/pygobject:3=
+   dev-python/send2trash
+   simple-colorpicker? (
+   X? (
+   media-gfx/maim
+   x11-misc/slop
+   )
+   wayland? (
+   gui-apps/grim
+   gui-apps/slurp
+   )
+   )
+   imagemagick? (
+   media-gfx/imagemagick[jpeg,png,svg,X?]
+   )
+   wayland? (
+   gui-apps/swaybg
+   gui-apps/wlr-randr
+   )
+   X? (
+   media-gfx/feh
+   x11-apps/xrandr
+   )
+   yaml? ( dev-python/pyyaml )
+"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   cd "${S}"
+
+   dobin dist/azote
+   domenu dist/azote.desktop
+
+   insinto /usr/share/azote
+   doins dist/azote.svg dist/indicator_{active,attention}.png
+   insinto /usr/share/licenses/azote
+   doins LICENSE-COLORTHIEF
+}



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

2021-01-18 Thread Sam James
commit: 7d236a315dd7fb66ed292f881cdc43d2a72de805
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 03:31:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 03:31:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d236a31

app-editors/neovim: explicitly mark Gentoo build type as OK

No revbump because it's a minor change. Please re-install
to pick it up if you're interested.

This is completely cosmetic - the Gentoo build is already
optimised and NOT debug, but this fixes the warning in
:checkhealth.

Closes: https://bugs.gentoo.org/757744
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 .../neovim/files/neovim-0.4.4-cmake-release-type.patch  | 13 +
 app-editors/neovim/neovim-0.4.4-r100.ebuild |  5 +++--
 app-editors/neovim/neovim-0.4.4.ebuild  |  6 +-
 app-editors/neovim/neovim-.ebuild   |  5 +++--
 4 files changed, 24 insertions(+), 5 deletions(-)

diff --git a/app-editors/neovim/files/neovim-0.4.4-cmake-release-type.patch 
b/app-editors/neovim/files/neovim-0.4.4-cmake-release-type.patch
new file mode 100644
index 000..2c9c80a7a69
--- /dev/null
+++ b/app-editors/neovim/files/neovim-0.4.4-cmake-release-type.patch
@@ -0,0 +1,13 @@
+Ensure that :checkhealth is happy with the Gentoo build type.
+https://bugs.gentoo.org/757744
+--- a/runtime/autoload/health/nvim.vim
 b/runtime/autoload/health/nvim.vim
+@@ -118,7 +118,7 @@ function! s:check_performance() abort
+   let buildtype = matchstr(execute('version'), '\v\cbuild type:?\s*[^\n\r\t 
]+')
+   if empty(buildtype)
+ call health#report_error('failed to get build type from :version')
+-  elseif buildtype =~# '\v(MinSizeRel|Release|RelWithDebInfo)'
++  elseif buildtype =~# '\v(MinSizeRel|Release|RelWithDebInfo|Gentoo)'
+ call health#report_ok(buildtype)
+   else
+ call health#report_info(buildtype)

diff --git a/app-editors/neovim/neovim-0.4.4-r100.ebuild 
b/app-editors/neovim/neovim-0.4.4-r100.ebuild
index 8cd8499a6fa..2fdf25560fc 100644
--- a/app-editors/neovim/neovim-0.4.4-r100.ebuild
+++ b/app-editors/neovim/neovim-0.4.4-r100.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -61,7 +61,8 @@ RDEPEND="
 "
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-0.4.4-cmake_lua_version.patch
+   "${FILESDIR}/${PN}-0.4.4-cmake_lua_version.patch"
+   "${FILESDIR}/${PN}-0.4.4-cmake-release-type.patch"
 )
 
 src_prepare() {

diff --git a/app-editors/neovim/neovim-0.4.4.ebuild 
b/app-editors/neovim/neovim-0.4.4.ebuild
index 2b8b289784e..b9f0be5d76b 100644
--- a/app-editors/neovim/neovim-0.4.4.ebuild
+++ b/app-editors/neovim/neovim-0.4.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -55,6 +55,10 @@ RDEPEND="
app-eselect/eselect-vi
 "
 
+PATCHES=(
+   "${FILESDIR}/${PN}-0.4.4-cmake-release-type.patch"
+)
+
 src_prepare() {
# use our system vim dir
sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \

diff --git a/app-editors/neovim/neovim-.ebuild 
b/app-editors/neovim/neovim-.ebuild
index d10ac87a170..0663ee9e471 100644
--- a/app-editors/neovim/neovim-.ebuild
+++ b/app-editors/neovim/neovim-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -63,7 +63,8 @@ RDEPEND="
 "
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-0.4.4-cmake_lua_version.patch
+   "${FILESDIR}/${PN}-0.4.4-cmake_lua_version.patch"
+   "${FILESDIR}/${PN}-0.4.4-cmake-release-type.patch"
 )
 
 src_prepare() {



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

2021-01-18 Thread Sam James
commit: d079d041c136aadc642fba602e5f7b3b9cb726bc
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 03:00:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 03:00:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d079d041

sci-libs/volk: fix RedundantUriRename

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

 sci-libs/volk/volk-2.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/volk/volk-2.4.1.ebuild b/sci-libs/volk/volk-2.4.1.ebuild
index 2450491ce80..62597071501 100644
--- a/sci-libs/volk/volk-2.4.1.ebuild
+++ b/sci-libs/volk/volk-2.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ inherit cmake python-single-r1
 
 DESCRIPTION="vector optimized library of kernels"
 HOMEPAGE="http://libvolk.org;
-SRC_URI="https://github.com/gnuradio/volk/releases/download/v${PV}/${P}.tar.xz 
-> ${P}.tar.xz"
+SRC_URI="https://github.com/gnuradio/volk/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-3"
 SLOT="0/$(ver_cut 1-2)"



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

2021-01-18 Thread Sam James
commit: d287bc5ea064464f863ca2a0df99cbd8c38c3564
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 03:11:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 03:11:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d287bc5e

app-arch/wimlib: cleanup old

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

 app-arch/wimlib/Manifest |  1 -
 app-arch/wimlib/wimlib-1.12.0.ebuild | 76 
 2 files changed, 77 deletions(-)

diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index 01df841c87a..a14a38085f3 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1,2 +1 @@
-DIST wimlib-1.12.0.tar.gz 1014508 BLAKE2B 
d12f4e0b458fe756b74c67f2f643256c44021e0f0c3e2a3a70eb87647c3c6cabd93413917bf8a8c6ab6820860c407f4454454719227f5cbf1a9a81a7bedc1a6e
 SHA512 
0343b37550366f07fd6a6689f4445f390187beddde677f4d6d831c07936d03b613ae95f612ec7a75e978a5e678f33ab766d0f3b3d942886df56e4ef77d4b07b9
 DIST wimlib-1.13.0.tar.gz 1035146 BLAKE2B 
305d4bd4a0299c99b537c2bc59c674740239d3fe7c240038f4846849f36046ef587b04643d5a482c876668bf8f9a94a7b45a5e4f12c6d235a579a08c3879acff
 SHA512 
a7ec729dda07b3884a851533a3c9e9db3061d9f6273ec318e40ece3687f4671f66989c07c080fa9cdcf5f01318c5eba7256b58f15f711b3ff14f4eb61c2114cb

diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild 
b/app-arch/wimlib/wimlib-1.12.0.ebuild
deleted file mode 100644
index 58cbc3ce1b7..000
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools pax-utils
-
-if [[ -z ${PV%%*} ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="git://wimlib.net/${PN}"
-else
-   MY_PV="${PV/_/-}"
-   MY_PV="${MY_PV^^}"
-   SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="The open source Windows Imaging (WIM) library"
-HOMEPAGE="https://wimlib.net/;
-
-LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
-SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
-REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   virtual/pkgconfig
-   cpu_flags_x86_ssse3? (
-   yasm? ( dev-lang/yasm )
-   !yasm? ( dev-lang/nasm )
-   )
-"
-RDEPEND="
-   dev-libs/libxml2:2
-   ntfs? ( sys-fs/ntfs3g )
-   fuse? ( sys-fs/fuse:0 )
-   openssl? ( dev-libs/openssl:0= )
-   iso? (
-   app-arch/cabextract
-   app-cdr/cdrtools
-   )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/syslinux-path.patch" )
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_with ntfs ntfs-3g)
-   $(use_with fuse)
-   $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
-   $(use_with openssl libcrypto)
-   $(use_enable threads multithreaded-compression)
-   $(use_enable test enable-test-support)
-   --disable-static
-   )
-   ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
-   econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-   emake
-   pax-mark m "${S}"/.libs/wimlib-imagex
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}



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

2021-01-18 Thread Sam James
commit: fd58b053554f24cdab16f56e30560e3275e6a005
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 03:14:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 03:14:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd58b053

app-arch/wimlib: bump to 1.13.3

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

 app-arch/wimlib/Manifest |  1 +
 app-arch/wimlib/wimlib-1.13.3.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index a14a38085f3..05d9a3f639d 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1 +1,2 @@
 DIST wimlib-1.13.0.tar.gz 1035146 BLAKE2B 
305d4bd4a0299c99b537c2bc59c674740239d3fe7c240038f4846849f36046ef587b04643d5a482c876668bf8f9a94a7b45a5e4f12c6d235a579a08c3879acff
 SHA512 
a7ec729dda07b3884a851533a3c9e9db3061d9f6273ec318e40ece3687f4671f66989c07c080fa9cdcf5f01318c5eba7256b58f15f711b3ff14f4eb61c2114cb
+DIST wimlib-1.13.3.tar.gz 1030667 BLAKE2B 
2b897392bed3c4a390479f34925474c229ee835ab624c81a0baa7ebb8f3484f27aa4efb2a440debdcafe23b152b385bbe0f198d6f0560e8f88a34c7328a74edd
 SHA512 
5c6e3bd1d7bda55812c818cc527cd241ac8a15276648f2a307db1f2a858de0b322e9f2beffda5bab991811aee3f4a953c3e31847bfa76a7d32ad5850595a15d4

diff --git a/app-arch/wimlib/wimlib-1.13.3.ebuild 
b/app-arch/wimlib/wimlib-1.13.3.ebuild
new file mode 100644
index 000..a6115205d0c
--- /dev/null
+++ b/app-arch/wimlib/wimlib-1.13.3.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools pax-utils
+if [[ -z ${PV%%*} ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="git://wimlib.net/${PN}"
+else
+   MY_PV="${PV/_/-}"
+   MY_PV="${MY_PV^^}"
+   SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="The open source Windows Imaging (WIM) library"
+HOMEPAGE="https://wimlib.net/;
+
+LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
+SLOT="0"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
+REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   virtual/pkgconfig
+   cpu_flags_x86_ssse3? (
+   yasm? ( dev-lang/yasm )
+   !yasm? ( dev-lang/nasm )
+   )
+"
+RDEPEND="
+   dev-libs/libxml2:2
+   ntfs? ( sys-fs/ntfs3g )
+   fuse? ( sys-fs/fuse:0 )
+   openssl? ( dev-libs/openssl:0= )
+   iso? (
+   app-arch/cabextract
+   app-cdr/cdrtools
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_with ntfs ntfs-3g)
+   $(use_with fuse)
+   $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
+   $(use_with openssl libcrypto)
+   $(use_enable threads multithreaded-compression)
+   $(use_enable test test-support)
+   --disable-static
+   )
+   ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
+   econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   default
+   pax-mark m "${S}"/.libs/wimlib-imagex
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



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

2021-01-18 Thread Sam James
commit: ce709e1c715ea0dc7a240486c268813d0f015e21
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 03:11:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 03:11:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce709e1c

app-arch/wimlib: EAPI 7

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

 app-arch/wimlib/wimlib-1.12.0.ebuild | 33 ++---
 app-arch/wimlib/wimlib-1.13.0.ebuild | 34 ++
 2 files changed, 36 insertions(+), 31 deletions(-)

diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild 
b/app-arch/wimlib/wimlib-1.12.0.ebuild
index 3fb8e91ab6c..58cbc3ce1b7 100644
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -1,17 +1,17 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit autotools pax-utils
+
 if [[ -z ${PV%%*} ]]; then
inherit git-r3
EGIT_REPO_URI="git://wimlib.net/${PN}"
 else
-   inherit vcs-snapshot
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
-   SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz;
KEYWORDS="~amd64 ~x86"
 fi
 
@@ -20,28 +20,31 @@ HOMEPAGE="https://wimlib.net/;
 
 LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
 SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
 REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
 
-PATCHES=( "${FILESDIR}/syslinux-path.patch" )
+RESTRICT="!test? ( test )"
 
+BDEPEND="
+   virtual/pkgconfig
+   cpu_flags_x86_ssse3? (
+   yasm? ( dev-lang/yasm )
+   !yasm? ( dev-lang/nasm )
+   )
+"
 RDEPEND="
dev-libs/libxml2:2
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
-   openssl? ( dev-libs/openssl:0 )
+   openssl? ( dev-libs/openssl:0= )
iso? (
app-arch/cabextract
app-cdr/cdrtools
)
 "
-DEPEND="
-   ${RDEPEND}
-   cpu_flags_x86_ssse3? (
-   yasm? ( dev-lang/yasm )
-   !yasm? ( dev-lang/nasm )
-   )
-"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/syslinux-path.patch" )
 
 src_prepare() {
default
@@ -55,9 +58,9 @@ src_configure() {
$(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
$(use_with openssl libcrypto)
$(use_enable threads multithreaded-compression)
+   $(use_enable test enable-test-support)
--disable-static
)
-   has test ${FEATURES} && myeconfargs+=( --enable-test-support )
ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
econf "${myeconfargs[@]}"
 }

diff --git a/app-arch/wimlib/wimlib-1.13.0.ebuild 
b/app-arch/wimlib/wimlib-1.13.0.ebuild
index 3fb8e91ab6c..a6578586e5c 100644
--- a/app-arch/wimlib/wimlib-1.13.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.0.ebuild
@@ -1,17 +1,16 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit autotools pax-utils
 if [[ -z ${PV%%*} ]]; then
inherit git-r3
EGIT_REPO_URI="git://wimlib.net/${PN}"
 else
-   inherit vcs-snapshot
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
-   SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz;
KEYWORDS="~amd64 ~x86"
 fi
 
@@ -20,28 +19,31 @@ HOMEPAGE="https://wimlib.net/;
 
 LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
 SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
 REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
 
-PATCHES=( "${FILESDIR}/syslinux-path.patch" )
+RESTRICT="!test? ( test )"
 
+BDEPEND="
+   virtual/pkgconfig
+   cpu_flags_x86_ssse3? (
+   yasm? ( dev-lang/yasm )
+   !yasm? ( dev-lang/nasm )
+   )
+"
 RDEPEND="
dev-libs/libxml2:2
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
-   openssl? ( dev-libs/openssl:0 )
+   openssl? ( dev-libs/openssl:0= )
iso? (
app-arch/cabextract
app-cdr/cdrtools
)
 "
-DEPEND="
-   ${RDEPEND}
-   cpu_flags_x86_ssse3? (
-   yasm? ( dev-lang/yasm )
-   !yasm? ( dev-lang/nasm )
-   )
-"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/syslinux-path.patch" )
 
 src_prepare() {
default
@@ -55,15 +57,15 @@ src_configure() {
$(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
$(use_with openssl libcrypto)
$(use_enable 

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

2021-01-18 Thread Sam James
commit: d5a744b43f6e8d324df4c67e8c892ce73e838290
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 03:00:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 03:00:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a744b4

sci-libs/trilinos: fix DuplicateEclassInherits

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

 sci-libs/trilinos/trilinos-13.0.1.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/sci-libs/trilinos/trilinos-13.0.1.ebuild 
b/sci-libs/trilinos/trilinos-13.0.1.ebuild
index c7868ab5db2..511aa77ec42 100644
--- a/sci-libs/trilinos/trilinos-13.0.1.ebuild
+++ b/sci-libs/trilinos/trilinos-13.0.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-CMAKE_MAKEFILE_GENERATOR=emake
 
-inherit cmake-utils toolchain-funcs multilib toolchain-funcs
+CMAKE_MAKEFILE_GENERATOR=emake
+inherit cmake-utils toolchain-funcs multilib
 
 DESCRIPTION="Scientific library collection for large scale problems"
 HOMEPAGE="http://trilinos.sandia.gov/;
@@ -14,7 +14,6 @@ 
SRC_URI="https://github.com/${PN}/Trilinos/archive/${PN}-release-${MY_PV}.tar.gz

https://dev.gentoo.org/~tamiko/distfiles/${PN}-13.0.0-patches-${PATCHSET}.tar.xz;
 
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
 LICENSE="BSD LGPL-2.1"
 SLOT="0"
 



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

2021-01-18 Thread Sam James
commit: 833728c14baa68be869a0a539f3cf49db82fc14b
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:57:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:57:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=833728c1

dev-python/empy: fix DeprecatedInsinto, RedundantDodir

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

 dev-python/empy/empy-3.3.4.ebuild | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/dev-python/empy/empy-3.3.4.ebuild 
b/dev-python/empy/empy-3.3.4.ebuild
index 6f45d2d2f36..e34022a54b9 100644
--- a/dev-python/empy/empy-3.3.4.ebuild
+++ b/dev-python/empy/empy-3.3.4.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DISTUTILS_USE_SETUPTOOLS=no
 PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
@@ -26,13 +26,14 @@ python_test() {
 
 python_install_all() {
distutils-r1_python_install_all
+
if use doc; then
-   dodir /usr/share/doc/"${PF}"/examples
-   insinto /usr/share/doc/"${PF}"/examples
-   doins sample.em sample.bench
-   #3.3 has the html in this funny place. Fix in later version:
-   dohtml doc/home/max/projects/empy/doc/em/*
-   dohtml doc/home/max/projects/empy/doc/em.html
-   dohtml doc/index.html
+   docinto examples
+   dodoc sample.em sample.bench
+   # 3.3 has the html in this funny place. Fix in later version:
+   docinto html
+   dodoc doc/home/max/projects/empy/doc/em/*
+   dodoc doc/home/max/projects/empy/doc/em.html
+   dodoc doc/index.html
fi
 }



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-whiskermenu-plugin/

2021-01-18 Thread Sam James
commit: e86d27fc998e6f406e4aa2d4483de000e839ee7c
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:55:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:55:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e86d27fc

xfce-extra/xfce4-whiskermenu-plugin: Stabilize 2.5.2 amd64, #766030

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

 .../xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.2.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.2.ebuild 
b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.2.ebuild
index efbeb94b8dc..2ad441562c6 100644
--- a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.2.ebuild
+++ b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="



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

2021-01-18 Thread Sam James
commit: ff95caa23a6909c39515863019c2062fbae23a77
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:45:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:45:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff95caa2

dev-libs/pugixml: Stabilize 1.11.4 amd64, #766021

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

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

diff --git a/dev-libs/pugixml/pugixml-1.11.4.ebuild 
b/dev-libs/pugixml/pugixml-1.11.4.ebuild
index 26ffdda521c..7ffb8098086 100644
--- a/dev-libs/pugixml/pugixml-1.11.4.ebuild
+++ b/dev-libs/pugixml/pugixml-1.11.4.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/zeux/${PN}/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 
~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 
~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="Light-weight, simple, and fast XML parser for C++ with XPath 
support"



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

2021-01-18 Thread Sam James
commit: 293783c3631e3cfd79edb0ba364dbb8a7436ce49
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:45:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:45:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293783c3

dev-python/msgpack: Stabilize 1.0.2 amd64, #765934

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

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

diff --git a/dev-python/msgpack/msgpack-1.0.2.ebuild 
b/dev-python/msgpack/msgpack-1.0.2.ebuild
index 1c43d6759af..f5083a8c348 100644
--- a/dev-python/msgpack/msgpack-1.0.2.ebuild
+++ b/dev-python/msgpack/msgpack-1.0.2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~ppc ~x86 ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~ppc ~x86 ~x64-macos"
 IUSE="+native-extensions"
 
 # extension code is relying on CPython implementation details



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

2021-01-18 Thread Sam James
commit: 4a2de240ef0a114927ee5a6a36a04ca218951478
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:45:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:45:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a2de240

dev-python/mss: Stabilize 6.1.0 ALLARCHES, #765937

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

 dev-python/mss/mss-6.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/mss/mss-6.1.0.ebuild b/dev-python/mss/mss-6.1.0.ebuild
index 28a7a6fe0ac..72eee16892b 100644
--- a/dev-python/mss/mss-6.1.0.ebuild
+++ b/dev-python/mss/mss-6.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/BoboTiG/python-mss/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 S="${WORKDIR}/python-${PN}-${PV}"
 



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

2021-01-18 Thread Sam James
commit: 23e22626c73841e062f927272fd7f6f3389c82cb
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:45:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:45:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23e22626

dev-python/phonenumbers: Stabilize 8.12.15 ALLARCHES, #765943

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

 dev-python/phonenumbers/phonenumbers-8.12.15.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/phonenumbers/phonenumbers-8.12.15.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.12.15.ebuild
index 4d3183b1591..42ab4628077 100644
--- a/dev-python/phonenumbers/phonenumbers-8.12.15.ebuild
+++ b/dev-python/phonenumbers/phonenumbers-8.12.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DOCS=(README.md)
 



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

2021-01-18 Thread Sam James
commit: 0e6309a10a942c15162c41f7652fd47a07ca560b
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:45:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:45:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6309a1

dev-python/mongoengine: Stabilize 0.22.1 ALLARCHES, #765931

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

 dev-python/mongoengine/mongoengine-0.22.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/mongoengine/mongoengine-0.22.1.ebuild 
b/dev-python/mongoengine/mongoengine-0.22.1.ebuild
index bcf7043f3db..094a4761c2a 100644
--- a/dev-python/mongoengine/mongoengine-0.22.1.ebuild
+++ b/dev-python/mongoengine/mongoengine-0.22.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/MongoEngine/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 # TODO: make it run a local database server
 RESTRICT="test"
 



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

2021-01-18 Thread Sam James
commit: e9a4baeb930dd1f382550e61978349825f0ed314
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:45:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:45:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a4baeb

dev-python/micawber: Stabilize 0.5.2 amd64, #765928

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

 dev-python/micawber/micawber-0.5.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/micawber/micawber-0.5.2.ebuild 
b/dev-python/micawber/micawber-0.5.2.ebuild
index 6ea149baeec..060cac98a65 100644
--- a/dev-python/micawber/micawber-0.5.2.ebuild
+++ b/dev-python/micawber/micawber-0.5.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-01-18 Thread Sam James
commit: 823fc6b1b093c9273c7e55ce264b88d35ed28a73
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:23:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:23:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823fc6b1

net-misc/openntpd: Keyword 6.8_p1-r1 arm64, #763963

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

 net-misc/openntpd/openntpd-6.8_p1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openntpd/openntpd-6.8_p1-r1.ebuild 
b/net-misc/openntpd/openntpd-6.8_p1-r1.ebuild
index c6b236bf491..65202ae42ef 100644
--- a/net-misc/openntpd/openntpd-6.8_p1-r1.ebuild
+++ b/net-misc/openntpd/openntpd-6.8_p1-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://openbsd/OpenNTPD/${MY_P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="constraints libressl selinux"
 
 DEPEND="



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

2021-01-18 Thread Sam James
commit: 9f0c501fd5a19041294e2bc8f9942e8e6ced6576
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:23:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:23:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f0c501f

dev-libs/libretls: Keyword 3.3.1-r1 arm64, #763963

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

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

diff --git a/dev-libs/libretls/libretls-3.3.1-r1.ebuild 
b/dev-libs/libretls/libretls-3.3.1-r1.ebuild
index 9f50b7f5a3e..fd6aa670de5 100644
--- a/dev-libs/libretls/libretls-3.3.1-r1.ebuild
+++ b/dev-libs/libretls/libretls-3.3.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://causal.agency/libretls/${P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND="dev-libs/openssl:="
 RDEPEND="${DEPEND}



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

2021-01-18 Thread Sam James
commit: 017f2dec5a3b5f690ed0702d9d7aa6d505b34f53
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:20:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:20:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=017f2dec

dev-libs/pugixml: Stabilize 1.11.4 sparc, #766021

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

 dev-libs/pugixml/pugixml-1.11.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/pugixml/pugixml-1.11.4.ebuild 
b/dev-libs/pugixml/pugixml-1.11.4.ebuild
index 0750359ebd7..26ffdda521c 100644
--- a/dev-libs/pugixml/pugixml-1.11.4.ebuild
+++ b/dev-libs/pugixml/pugixml-1.11.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/zeux/${PN}/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 
~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="Light-weight, simple, and fast XML parser for C++ with XPath 
support"



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

2021-01-18 Thread Sam James
commit: 5aa910b48ddbeee3ed863bccbd274847cbb31f31
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:20:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:20:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa910b4

sys-apps/portage: Stabilize 3.0.13 sparc, #765895

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

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

diff --git a/sys-apps/portage/portage-3.0.13.ebuild 
b/sys-apps/portage/portage-3.0.13.ebuild
index bf5e95e6542..7478b9c8071 100644
--- a/sys-apps/portage/portage-3.0.13.ebuild
+++ b/sys-apps/portage/portage-3.0.13.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



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

2021-01-18 Thread Sam James
commit: 23c43f8bf2624d58626d67eb1aaeeb46b370c945
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:20:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:20:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23c43f8b

dev-python/pyopenssl: Stabilize 20.0.1 sparc, #765961

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

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

diff --git a/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild 
b/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
index ce73a728bee..1adf045bf0b 100644
--- a/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-python/six-1.5.2[${PYTHON_USEDEP}]



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

2021-01-18 Thread Sam James
commit: 843b5aaf46dc3b4d77801b0d3fa0aa2d6f1fd953
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 02:20:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 02:20:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=843b5aaf

dev-python/pyopenssl: Stabilize 20.0.1 arm64, #765961

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

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

diff --git a/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild 
b/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
index 9b4751bed75..ce73a728bee 100644
--- a/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-20.0.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-python/six-1.5.2[${PYTHON_USEDEP}]



[gentoo-commits] proj/sci:master commit in: sci-mathematics/kash-bin/

2021-01-18 Thread Aisha Tammy
commit: ba99a4206517d2c06be2d2a761bbe9448e070960
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Jan 18 21:41:34 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Jan 18 21:41:34 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba99a420

sci-mathematics/kash-bin: drop dead package

not updated in 12 years
Closes: https://bugs.gentoo.org/755860

Signed-off-by: Aisha Tammy  aisha.cc>

 sci-mathematics/kash-bin/kash-bin-3.ebuild | 46 --
 sci-mathematics/kash-bin/metadata.xml  | 19 
 2 files changed, 65 deletions(-)

diff --git a/sci-mathematics/kash-bin/kash-bin-3.ebuild 
b/sci-mathematics/kash-bin/kash-bin-3.ebuild
deleted file mode 100644
index 29ddbe0df..0
--- a/sci-mathematics/kash-bin/kash-bin-3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# inherit eutils
-
-DESCRIPTION="software package for algebraic number theory"
-HOMEPAGE="http://page.math.tu-berlin.de/~kant/kash.html;
-SRC_URI="
-   
ftp://ftp.math.tu-berlin.de/pub/algebra/Kant/Kash_3/KASH3-Linux-i686-2008-07-31.tar.bz2
-   
ftp://ftp.math.tu-berlin.de/pub/algebra/Kant/Kash_3/KASH3-lib-archindep-2008-07-31.tar.bz2;
-
-LICENSE="kash"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-MY_P="kash3"
-S="${WORKDIR}/${MY_P}"
-
-# This is a binary package:
-QA_PREBUILT="opt/${MY_P}/kash3"
-
-src_unpack() {
-   default
-   mkdir "${S}" && cd "${S}" || die
-   mv KASH3-Linux*/* "${S}" || die
-   mv KASH3-lib*/lib/* "${S}/lib/" || die
-}
-
-# Binary package
-# src_configure() { : }
-#
-# src_compile() { : }
-#
-src_install() {
-   cat > kash3.sh <<- EOF
-   #!"${EPREFIX}/bin/sh"
-   /opt/${MY_P}/kash3 -l "${EROOT}opt/${MY_P}/lib"
-   EOF
-   chmod 755 kash3.sh
-   dodir /opt/${MY_P}
-   cp -R "${S}/" "${ED}"opt/ || die
-   dosym ../${MY_P}/kash3.sh /opt/bin/kash3
-}

diff --git a/sci-mathematics/kash-bin/metadata.xml 
b/sci-mathematics/kash-bin/metadata.xml
deleted file mode 100644
index fc53f2207..0
--- a/sci-mathematics/kash-bin/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   to...@gentoo.org
-   
-   
-   sci-mathemat...@gentoo.org
-   Gentoo Mathematics Project
-   
-   
-KANT is a computer algebra system for sophisticated computations in algebraic
-number fields that has been developed under the project leadership of
-Prof. Dr. M. E. Pohst at Technische Universität Berlin.
-
-The KANT functions are accessible through a user-friendly shell named KASH
-(KAnt SHell) that is freely available.
-
-



[gentoo-commits] proj/sci:master commit in: sci-biology/pvmsx/

2021-01-18 Thread Aisha Tammy
commit: d08f55efd3ed478e2ebf4a68bc83ee36e875c33c
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Jan 18 21:38:14 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Jan 18 21:38:44 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d08f55ef

sci-biology/pvmsx: drop dead package

upstream has not updated in 14 years
Closes: https://bugs.gentoo.org/755830

Signed-off-by: Aisha Tammy  aisha.cc>

 sci-biology/pvmsx/metadata.xml | 12 ---
 sci-biology/pvmsx/pvmsx-0.1.ebuild | 43 --
 2 files changed, 55 deletions(-)

diff --git a/sci-biology/pvmsx/metadata.xml b/sci-biology/pvmsx/metadata.xml
deleted file mode 100644
index 138cb7705..0
--- a/sci-biology/pvmsx/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   mmokr...@fold.natur.cuni.cz
-   Martin Mokrejs
-   
-   
-   sci-biol...@gentoo.org
-   Gentoo Biology Project
-   
-

diff --git a/sci-biology/pvmsx/pvmsx-0.1.ebuild 
b/sci-biology/pvmsx/pvmsx-0.1.ebuild
deleted file mode 100644
index b88863a45..0
--- a/sci-biology/pvmsx/pvmsx-0.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Parallel multi-FASTA file processing tool"
-HOMEPAGE="http://compbio.dfci.harvard.edu/tgi/software/;
-SRC_URI="
-   ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/tgicl/${PN}.tar.gz
-   
ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/tgicl/cdbfasta.tar.gz;
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-#DEPEND="sys-cluster/pvm"
-#RDEPEND="${DEPEND}"
-
-S=${WORKDIR}
-
-src_prepare() {
-   # we need gclib from cdbfasta.tar.gz bundle which has fewer files than 
tgi_cpp_library.tar.gz wbut has e.g. GStr.h
-   sed \
-   -e 's/CFLAGS[ ]*=/CFLAGS :=/; s/-D_REENTRANT/-D_REENTRANT 
\${CFLAGS}/; s/CFLAGS[ ]*:=[ ]*-O2$//' \
-   -i "${S}"/Makefile || die "Failed to run sed"
-   sed \
-   -e 's#GCLDIR := ../gclib#GCLDIR := ../cdbfasta/gclib#' \
-   -i "${S}"/Makefile || die
-   sed \
-   -e "s#-I-#-iquote#" \
-   -i "${S}"/Makefile || die
-   ln -s ../cdbfasta/gcl . || die "Cannot make a softlink"
-}
-
-src_compile() {
-   default
-}
-
-src_install() {
-   dobin ${PN}
-   newdoc README README.${PN}
-}



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

2021-01-18 Thread Sam James
commit: 975ad15a7065e440a8f0e5d3e9778b0e081b3839
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 01:33:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 01:33:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=975ad15a

dev-util/colm: update blocker

Fixes: f52400a5c6d8a1e77597711e6e47da8369c452e0
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-util/colm/colm-0.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/colm/colm-0.14.6.ebuild b/dev-util/colm/colm-0.14.6.ebuild
index 5c71549dce1..63ec4deec4a 100644
--- a/dev-util/colm/colm-0.14.6.ebuild
+++ b/dev-util/colm/colm-0.14.6.ebuild
@@ -21,7 +21,7 @@ BDEPEND="
)
 "
 # libfsm moved from ragel -> colm
-RDEPEND="!

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

2021-01-18 Thread Sam James
commit: f52400a5c6d8a1e77597711e6e47da8369c452e0
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 01:21:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 01:21:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52400a5

dev-util/colm: add blocker on earlier dev-util/ragel

libfsm moved from ragel to colm.

Thanks-to: josef64
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-util/colm/colm-0.14.6.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-util/colm/colm-0.14.6.ebuild b/dev-util/colm/colm-0.14.6.ebuild
index 659b201eab5..5c71549dce1 100644
--- a/dev-util/colm/colm-0.14.6.ebuild
+++ b/dev-util/colm/colm-0.14.6.ebuild
@@ -20,6 +20,8 @@ BDEPEND="
dev-python/pygments
)
 "
+# libfsm moved from ragel -> colm
+RDEPEND="!

[gentoo-commits] proj/sci:master commit in: .github/workflows/

2021-01-18 Thread Aisha Tammy
commit: 663ba6753ca5fd1eba55a6727df72c6912310ac9
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon Jan 18 20:55:23 2021 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Mon Jan 18 20:55:23 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=663ba675

make workflows trigger daily

helps to keep track with breaking ::gentoo changes

Signed-off-by: Aisha Tammy  aisha.cc>

 .github/workflows/pkgcheck.yml | 2 ++
 .github/workflows/repoman.yml  | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml
index fc923c21b..a6d2d7665 100644
--- a/.github/workflows/pkgcheck.yml
+++ b/.github/workflows/pkgcheck.yml
@@ -5,6 +5,8 @@ on:
 branches: [ master ]
   pull_request:
 branches: [ master ]
+  schedule:
+- cron: '0 0 * * *'
 
 jobs:
   build:

diff --git a/.github/workflows/repoman.yml b/.github/workflows/repoman.yml
index b50ed7b79..3b83f354a 100644
--- a/.github/workflows/repoman.yml
+++ b/.github/workflows/repoman.yml
@@ -5,6 +5,8 @@ on:
 branches: [ master ]
   pull_request:
 branches: [ master ]
+  schedule:
+- cron: '0 0 * * *'
 
 jobs:
   build:



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

2021-01-18 Thread Zac Medico
commit: 4f77b1ca80a7ae7987c0d3e0ef988b3c06d18744
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 19 00:50:13 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 19 00:50:26 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4f77b1ca

ProxyManager: remove unused loop parameter

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

 lib/portage/util/socks5.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/util/socks5.py b/lib/portage/util/socks5.py
index ddf6bb4d0..4aa08e1ab 100644
--- a/lib/portage/util/socks5.py
+++ b/lib/portage/util/socks5.py
@@ -73,7 +73,7 @@ class ProxyManager:
"""
return self.socket_path is not None
 
-   async def ready(self, loop=None):
+   async def ready(self):
"""
Wait for the proxy socket to become ready. This method is a 
coroutine.
"""



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

2021-01-18 Thread Zac Medico
commit: 0b11ac9ce296367699e1a191b87be22612b266ff
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 19 00:44:57 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 19 00:45:17 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=0b11ac9c

ProxyManager: Use async and await syntax

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

 lib/portage/tests/util/test_socks5.py | 4 ++--
 lib/portage/util/socks5.py| 9 +++--
 2 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/lib/portage/tests/util/test_socks5.py 
b/lib/portage/tests/util/test_socks5.py
index 44d522013..82cf93fe8 100644
--- a/lib/portage/tests/util/test_socks5.py
+++ b/lib/portage/tests/util/test_socks5.py
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import functools
@@ -185,7 +185,7 @@ class Socks5ServerTestCase(TestCase):
}
 
proxy = socks5.get_socks5_proxy(settings)
-   
loop.run_until_complete(socks5.proxy.ready(loop=loop))
+   loop.run_until_complete(socks5.proxy.ready())
 
result = 
loop.run_until_complete(loop.run_in_executor(None,
self._fetch_via_proxy, proxy, host, 
server.server_port, path))

diff --git a/lib/portage/util/socks5.py b/lib/portage/util/socks5.py
index a76d1a741..ddf6bb4d0 100644
--- a/lib/portage/util/socks5.py
+++ b/lib/portage/util/socks5.py
@@ -1,5 +1,5 @@
 # SOCKSv5 proxy manager for network-sandbox
-# Copyright 2015-2020 Gentoo Authors
+# Copyright 2015-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import errno
@@ -11,7 +11,6 @@ import portage.data
 from portage import _python_interpreter
 from portage.data import portage_gid, portage_uid, userpriv_groups
 from portage.process import atexit_register, spawn
-from portage.util.futures.compat_coroutine import coroutine
 from portage.util.futures import asyncio
 
 class ProxyManager:
@@ -74,9 +73,7 @@ class ProxyManager:
"""
return self.socket_path is not None
 
-
-   @coroutine
-   def ready(self, loop=None):
+   async def ready(self, loop=None):
"""
Wait for the proxy socket to become ready. This method is a 
coroutine.
"""
@@ -98,7 +95,7 @@ class ProxyManager:
except EnvironmentError as e:
if e.errno != errno.ENOENT:
raise
-   yield asyncio.sleep(0.2, loop=loop)
+   await asyncio.sleep(0.2)
else:
break
finally:



[gentoo-commits] repo/gentoo:master commit in: media-libs/allegro/, media-libs/allegro/files/

2021-01-18 Thread Sam James
commit: 40f87905372a14d909acab170d22216664fc3914
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 00:07:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 00:07:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40f87905

media-libs/allegro: cleanup old

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

 media-libs/allegro/Manifest|   1 -
 media-libs/allegro/allegro-4.4.2-r2.ebuild | 115 -
 .../files/allegro-4.4.2-GLX_RGBA_FLOAT_BIT.patch   |  20 
 .../allegro-4.4.2-Werror-format-security.patch | 107 ---
 .../allegro/files/allegro-4.4.2-glibc228.patch |  41 
 .../allegro/files/allegro-4.4.2-static-func.patch  |  13 ---
 6 files changed, 297 deletions(-)

diff --git a/media-libs/allegro/Manifest b/media-libs/allegro/Manifest
index 4158f3aee8f..0bebd4ad1f9 100644
--- a/media-libs/allegro/Manifest
+++ b/media-libs/allegro/Manifest
@@ -1,3 +1,2 @@
-DIST allegro-4.4.2.tar.gz 4674902 BLAKE2B 
9f43fad416348425692481524f6c15808ee03946d93df4a072a46557817ccd5f6ae7eede908ca4a02a0a9e49f9a7c42909c48c14923b2155d3999ff370401006
 SHA512 
ad4bc1c15fc83bc8a019031fed82f37a793664bb6683cf023ec05fd9cd945f00f43764f3126892426036249c63afa5678fb4906407bb325ce5827b36aee0fa86
 DIST allegro-4.4.3.1.tar.gz 4663634 BLAKE2B 
23fa8cd77858243bfa8191f6bca26f50d1621fa84616968595c1284c73a86160cdbad201eece5bd026bb7ac13753568b6915295646b86e536b5d26c0394e2d1f
 SHA512 
c5a552ab710226493447eb2547b3d7559badb96f511fbefd315b665b7486013a6710c83b69363eb09f90f53ef4278fe7b90cfee88d90d88f0fe8dc7df7606729
 DIST allegro-5.2.6.0.tar.gz 7867726 BLAKE2B 
3f21372442e5b8c802ac179019a11648febdcecddfda864559e1e9621f99c9ff7584fb422594c6fd3a1c352c892533c825faef10e35ecbf97058396fbb46fc7d
 SHA512 
a475de67b0e6c727295cc51e113859eb0c57825a240e70bc45cd3b000c40518932b89cecdd13ba957416136db4ee9a9363adb5d3bfa7c8acda04ee95de6ba721

diff --git a/media-libs/allegro/allegro-4.4.2-r2.ebuild 
b/media-libs/allegro/allegro-4.4.2-r2.ebuild
deleted file mode 100644
index 0387f700f4a..000
--- a/media-libs/allegro/allegro-4.4.2-r2.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-CMAKE_IN_SOURCE_BUILD=1
-inherit cmake-utils desktop
-
-DESCRIPTION="cross-platform multimedia library"
-HOMEPAGE="https://liballeg.org/;
-SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"
-
-LICENSE="Allegro MIT GPL-2+ ZLIB"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~mips ppc ppc64 x86"
-IUSE="alsa fbcon jack jpeg opengl oss png svga test vga vorbis X"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   alsa? ( media-libs/alsa-lib )
-   jack? ( media-sound/jack-audio-connection-kit )
-   jpeg? ( virtual/jpeg:0 )
-   png? ( media-libs/libpng:0= )
-   svga? ( media-libs/svgalib )
-   vorbis? ( media-libs/libvorbis )
-   X? (
-   x11-libs/libX11
-   x11-libs/libXcursor
-   x11-libs/libXext
-   x11-libs/libXpm
-   x11-libs/libXt
-   x11-libs/libXxf86dga
-   x11-libs/libXxf86vm
-   opengl? (
-   virtual/glu
-   virtual/opengl
-   )
-   )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   X? ( x11-base/xorg-proto )"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-shared.patch
-   "${FILESDIR}"/${P}-underlink.patch
-   "${FILESDIR}"/${P}-gentoo.patch
-   "${FILESDIR}"/${P}-rpath.patch
-   "${FILESDIR}"/${P}-Werror-format-security.patch # bug 540470
-   "${FILESDIR}"/${P}-glibc228.patch   # bug 670781
-   "${FILESDIR}"/${P}-GLX_RGBA_FLOAT_BIT.patch # bug 672858
-   "${FILESDIR}"/${P}-static-func.patch# bug 696034
-)
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   sed -i \
-   -e "s:allegro-\${ALLEGRO_VERSION}:${PF}:" \
-   docs/CMakeLists.txt || die
-}
-
-src_configure() {
-   # WANT_LINUX_CONSOLE is by default OFF
-   # WANT_EXAMPLES doesn't install anything
-   local mycmakeargs=(
-   -DDOCDIR=share/doc
-   -DMANDIR=share/man
-   -DWANT_ALSA=$(usex alsa)
-   -DWANT_DOCS_INFO=OFF
-   -DWANT_EXAMPLES=OFF
-   -DWANT_JACK=$(usex jack)
-   -DWANT_JPGALLEG=$(usex jpeg)
-   -DWANT_LINUX_CONSOLE=OFF
-   -DWANT_LINUX_FBCON=$(usex fbcon)
-   -DWANT_LINUX_SVGALIB=$(usex svga)
-   -DWANT_LINUX_VGA=$(usex vga)
-   -DWANT_LOADPNG=$(usex png)
-   -DWANT_LOGG=$(usex vorbis)
-   -DWANT_OSS=$(usex oss)
-   -DWANT_TESTS=$(usex test)
-   -DWANT_TOOLS=$(usex X)
-   -DWANT_X11=$(usex X)
-   )
-
-   if use X; then
-   mycmakeargs+=( -DWANT_ALLEGROGL=$(usex 

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

2021-01-18 Thread Sam James
commit: af4498121f2423f60d9b96cb1617e609ec0ea074
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 19 00:05:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 19 00:07:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af449812

media-libs/allegro: add github remote-id

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

 media-libs/allegro/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/allegro/metadata.xml b/media-libs/allegro/metadata.xml
index 1a6f9338ec6..8c4daf206b0 100644
--- a/media-libs/allegro/metadata.xml
+++ b/media-libs/allegro/metadata.xml
@@ -20,6 +20,7 @@ and a GUI.
 Enables the VGA graphics driver
   
   
+liballeg/allegro5
 alleg
   
 



[gentoo-commits] repo/gentoo:master commit in: net-ftp/filezilla/, net-ftp/filezilla/files/

2021-01-18 Thread Lars Wendler
commit: 10d9859ef5c73d5c4e514717fd6bbdf536f2b5a0
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Jan 19 00:06:32 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Jan 19 00:06:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d9859e

net-ftp/filezilla: Fixed build with sys-devel/slibtool

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

 .../files/filezilla-3.52.2-slibtool.patch  | 24 ++
 net-ftp/filezilla/filezilla-3.52.2.ebuild  |  1 +
 2 files changed, 25 insertions(+)

diff --git a/net-ftp/filezilla/files/filezilla-3.52.2-slibtool.patch 
b/net-ftp/filezilla/files/filezilla-3.52.2-slibtool.patch
new file mode 100644
index 000..4eaae857e1d
--- /dev/null
+++ b/net-ftp/filezilla/files/filezilla-3.52.2-slibtool.patch
@@ -0,0 +1,24 @@
+This fixes compilation with slibtool instead of GNU libtool
+
+--- filezilla-3.52.2/src/engine/Makefile.am
 filezilla-3.52.2/src/engine/Makefile.am
+@@ -146,6 +146,8 @@
+ libfzclient_private_la_LDFLAGS += $(LIBFILEZILLA_LIBS)
+ libfzclient_private_la_LDFLAGS += $(IDN_LIB)
+ 
++libfzclient_private_la_LIBADD = $(PUGIXML_LIBS)
++
+ dist_noinst_DATA = engine.vcxproj
+ 
+ CLEANFILES = filezilla.h.gch
+--- filezilla-3.52.2/src/interface/Makefile.am
 filezilla-3.52.2/src/interface/Makefile.am
+@@ -309,7 +309,7 @@
+ 
+ if HAVE_DBUS
+ filezilla_DEPENDENCIES += ../dbus/libfzdbus.a
+-filezilla_LDFLAGS += ../dbus/libfzdbus.a $(LIBDBUS_LIBS)
++filezilla_LDADD = ../dbus/libfzdbus.a $(LIBDBUS_LIBS)
+ endif
+ 
+ filezilla_LDFLAGS += $(WX_LIBS)

diff --git a/net-ftp/filezilla/filezilla-3.52.2.ebuild 
b/net-ftp/filezilla/filezilla-3.52.2.ebuild
index ba2ce7335de..c8f67f39ebe 100644
--- a/net-ftp/filezilla/filezilla-3.52.2.ebuild
+++ b/net-ftp/filezilla/filezilla-3.52.2.ebuild
@@ -45,6 +45,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-3.22.1-debug.patch
"${FILESDIR}"/${PN}-3.47.0-metainfo.patch
"${FILESDIR}"/${PN}-3.47.0-disable-shellext_conf.patch
+   "${FILESDIR}"/${PN}-3.52.2-slibtool.patch
 )
 
 pkg_pretend() {



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

2021-01-18 Thread Michał Górny
commit: f166bc8a1b4aca554bdeeadf813d84928b380a20
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 23:47:35 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 23:47:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f166bc8a

dev-python/alembic: Bump to 1.5.0

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.5.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 294e1f23ee9..df91474bd95 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463
+DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae91ab8ae89daee119bb64f30b8cb966ff22ce71c67e476fafce7ae418952f253645b0f5b5b8a1abbf7f562794138
 SHA512 
a667e5b176770061c27ea7fdaafdbcdad64d968e22e729083fadd8e002530cc43909a955c3ccaa04329c393ab3f27ec5b944b03ba0ae5d29609b940e7cfb8ad5

diff --git a/dev-python/alembic/alembic-1.5.0.ebuild 
b/dev-python/alembic/alembic-1.5.0.ebuild
new file mode 100644
index 000..9600e4d2d12
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-01-18 Thread Michał Górny
commit: a51ca11528d1638e28fec22c7469e3fc4ed8ce77
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 23:36:17 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 23:47:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a51ca115

dev-python/cliff: Bump to 3.6.0

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

 dev-python/cliff/Manifest   |  1 +
 dev-python/cliff/cliff-3.6.0.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/dev-python/cliff/Manifest b/dev-python/cliff/Manifest
index 1804ae8328b..6d583447ca6 100644
--- a/dev-python/cliff/Manifest
+++ b/dev-python/cliff/Manifest
@@ -1 +1,2 @@
 DIST cliff-3.5.0.tar.gz 82997 BLAKE2B 
f169770a0a956e6091e56eccda8d10906bee09bdb03b474f3b17837b3eda858f3afd21beae1d6945bcdabfa89fc1555d13d70ddd0454a10fe05bfb63c8de75e7
 SHA512 
215f22e5dd2c4c17bd0f19866189b6b247377a7d5bddeb4a07b7536af7545bd0440b5fb0a98474fc018e3b12f6695f60028c012f3e7eeb6498b20f2923939d08
+DIST cliff-3.6.0.tar.gz 80464 BLAKE2B 
2b7efb07123fd9939c5717d6bdc1685d2e6474f3852e920c8d93f8a3e7ba20e433dbead97040ab035c4081058b621740ff64045c282a0568393fe8453da245d9
 SHA512 
ed4077e8b9e848dbd8aebb076b9f55086ea861cbf22322f7c9fb03a66b88bd60f5c09c6914481fe5f02bad25c0183e245405d9ac54d37b6bf0f14c9c97bd7684

diff --git a/dev-python/cliff/cliff-3.6.0.ebuild 
b/dev-python/cliff/cliff-3.6.0.ebuild
new file mode 100644
index 000..a3bff2da3f7
--- /dev/null
+++ b/dev-python/cliff/cliff-3.6.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+# TODO: revert to rdepend once this is merged
+# https://github.com/openstack/cliff/pull/3
+DISTUTILS_USE_SETUPTOOLS=manual
+
+inherit distutils-r1
+
+DESCRIPTION="Command Line Interface Formulation Framework"
+HOMEPAGE="https://github.com/openstack/cliff;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/cmd2-0.8.0[${PYTHON_USEDEP}]
+   =dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-notes-plugin/

2021-01-18 Thread Michał Górny
commit: 9f31b03f0e33ea7eed73ea89c72169dd0b14
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 23:32:34 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 23:33:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f31b0dd

xfce-extra/xfce4-notes-plugin: Bump to 1.9.0

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

 xfce-extra/xfce4-notes-plugin/Manifest |  1 +
 .../xfce4-notes-plugin-1.9.0.ebuild| 39 ++
 2 files changed, 40 insertions(+)

diff --git a/xfce-extra/xfce4-notes-plugin/Manifest 
b/xfce-extra/xfce4-notes-plugin/Manifest
index ff4809330ac..7670af602fe 100644
--- a/xfce-extra/xfce4-notes-plugin/Manifest
+++ b/xfce-extra/xfce4-notes-plugin/Manifest
@@ -1 +1,2 @@
 DIST xfce4-notes-plugin-1.8.1.tar.bz2 479652 BLAKE2B 
ec23b362627b8bbfdf7dae69aa3217dd902f175b1899ffa07bcbcd17a34acd68ccb5c0acab65fe88a892f5a2c4e6ca7f9f6cc5ed9526a77028679a31bded455b
 SHA512 
3e3f2513aaa5d26880d21ba31458aa8b79c1e01cac47141513d61002df9535e52ca2c14a8da6cddd54fcab3bcda6199c636cce045cea9bd4548f5fc763e069f3
+DIST xfce4-notes-plugin-1.9.0.tar.bz2 502606 BLAKE2B 
2b1b2dd97301ab57363aeaa8a373c62a9e9c14bdc1eb7dd6355bb096728b05e5bee08ce8a5922c2a93f1c2b7fa7197f8aa3fb0c2a96d5eb71a7002c22eb8d13c
 SHA512 
32ee410fa9d4dff4f73a844ac53024c39a884b48cee32faf14c1ed75200f912bd4e51a1fe3305deea9ec98a617b63a65e271437b09cb9b664498746a8095f4a1

diff --git a/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.9.0.ebuild 
b/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.9.0.ebuild
new file mode 100644
index 000..042ba603b03
--- /dev/null
+++ b/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.9.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Xfce4 panel sticky notes plugin"
+HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin;
+SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/$(ver_cut 
1-2)/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+IUSE=""
+
+RDEPEND=">=dev-libs/glib-2.30:2
+   >=x11-libs/gtk+-3.22:3
+   >=xfce-base/libxfce4ui-4.14:=
+   >=xfce-base/libxfce4util-4.14:=
+   >=xfce-base/xfce4-panel-4.14:=
+   >=xfce-base/xfconf-4.14:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-util/intltool
+   virtual/pkgconfig"
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2021-01-18 Thread Sam James
commit: b61d1ab9e67c107fe9e323db2342e267449b844c
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:22:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:22:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b61d1ab9

dev-util/ragel: cleanup old

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

 dev-util/ragel/Manifest|  2 --
 .../files/ragel-7.0.0.10-use-pkginclude.patch  | 41 --
 dev-util/ragel/ragel-7.0.0.10-r1.ebuild| 37 ---
 dev-util/ragel/ragel-7.0.0.10-r2.ebuild| 37 ---
 dev-util/ragel/ragel-7.0.0.10.ebuild   | 29 ---
 dev-util/ragel/ragel-7.0.0.9.ebuild| 29 ---
 6 files changed, 175 deletions(-)

diff --git a/dev-util/ragel/Manifest b/dev-util/ragel/Manifest
index 07b02ebcb95..bf76e35d2d5 100644
--- a/dev-util/ragel/Manifest
+++ b/dev-util/ragel/Manifest
@@ -1,5 +1,3 @@
 DIST ragel-6.10.tar.gz 1232993 BLAKE2B 
401e7a53b062ecd7ec98337866eb2dc0af0ac90e5d04ee304fd2a867b7b6f390985297a7ed57ce65e88b719598efbdd431bac8f53cee24199b795deb0e89da6b
 SHA512 
6c1fe4f6fa8546ae28b92ccfbae94355ff0d3cea346b9ae8ce4cf6c2bdbeb823e0ccd355332643ea72d3befd533a8b3030ddbf82be7ffa811c2c58cbb01aaa38
-DIST ragel-7.0.0.10.tar.gz 779503 BLAKE2B 
2f7b8bb858555719b0c7afa8209be76fd07f9d06a8f75df723211c48d59f50c21f09a1f1fa031d53e434db933d1bc12299c75d8932485e5a43eccef7506667ad
 SHA512 
2d1d4c469d8581239ec21f128e94ab452b398903302f82ef59ce03d6fb89bc89de6441dbe53ea99d7689866f7aec485ab1ec9c537908f21eb1394650b55413ba
 DIST ragel-7.0.0.12.tar.gz 1543127 BLAKE2B 
c3024c55eb5397f78159da83e318923529d3c1f10cc802564ac13c39b18c261166e27e4f315bbaa49e7eb9afa6840ca72aa62d7ae14d46f20865db64e3ab6759
 SHA512 
32ec90eddfd209e50995f21b9a5fcddd2b94279828227d367d990d7bfa8e4412682631d4e6ae5081871bac23d96153b96fb4494b991c70bf38df8cc0ddc8866d
-DIST ragel-7.0.0.9.tar.gz 850078 BLAKE2B 
0e7d458e9f78fc7e0fb2e9a0c6fdd3f3789a9104f4441bc878ac64d077dee716e27d3a54c3898fcf1e4ba56b8d46d956a36b92258750f2541fd96f951038d852
 SHA512 
87de7d41af4a08f09d422a0e58820f9b5b1218acc4733c58690feea4f872790813b5f2d7505ce147a2a6e1bcd341926c35fed7c6b55f543bdf864b119868bcde
 DIST ragel-7.0.3.tar.gz 1656577 BLAKE2B 
3a9ce560894714a3801039fb944d3c914f2647a0b76bba4a7b790f8d569eb2e9eb807ab4d8af067560b274692be2d98c5dc28632e11c853893971585e847d48e
 SHA512 
16bcb4b44a3ca94918d6c3e4bce468620cc691bf74cb69f0a264c41cbcffd595f897aa18e300952b60a68e680e1223532bbf9e500168d35d92a6559c190f6e78

diff --git a/dev-util/ragel/files/ragel-7.0.0.10-use-pkginclude.patch 
b/dev-util/ragel/files/ragel-7.0.0.10-use-pkginclude.patch
deleted file mode 100644
index 6609af5a99a..000
--- a/dev-util/ragel/files/ragel-7.0.0.10-use-pkginclude.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 927f380272442ae803fdccfc001b55877f25e7dc Mon Sep 17 00:00:00 2001
-From: Adrian Thurston 
-Date: Sat, 10 Dec 2016 15:41:30 -0500
-Subject: [PATCH] use pkginclude for the headers
-

- aapl/Makefile.am | 2 +-
- src/Makefile.am  | 4 ++--
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/aapl/Makefile.am b/aapl/Makefile.am
-index fd9f9cb0..80b972f1 100644
 a/aapl/Makefile.am
-+++ b/aapl/Makefile.am
-@@ -1,4 +1,4 @@
--include_HEADERS = \
-+pkginclude_HEADERS = \
-   avlbasic.h avlimel.h avlmap.h bstcommon.h compare.h insertsort.h \
-   sbstset.h avlcommon.h avlimelkey.h avlmel.h bstmap.h dlcommon.h \
-   mergesort.h sbsttable.h avlibasic.h avliset.h avlmelkey.h bstset.h \
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 24a19a4b..60554a99 100644
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -16,11 +16,11 @@ bin_PROGRAMS = ragel
- 
- endif
- 
--include_HEADERS = \
-+pkginclude_HEADERS = \
-   action.h fsmgraph.h ragel.h common.h \
-   gendata.h redfsm.h dot.h
- 
--nodist_include_HEADERS = config.h
-+nodist_pkginclude_HEADERS = config.h
- 
- ragel_CPPFLAGS = -I$(top_srcdir)/aapl -DBINDIR='"@bindir@"'
- 
--- 
-2.15.1
-

diff --git a/dev-util/ragel/ragel-7.0.0.10-r1.ebuild 
b/dev-util/ragel/ragel-7.0.0.10-r1.ebuild
deleted file mode 100644
index 3b71791dae1..000
--- a/dev-util/ragel/ragel-7.0.0.10-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Compiles finite state machines from regular languages into 
executable code"
-HOMEPAGE="https://www.colm.net/open-source/ragel/;
-SRC_URI="https://www.colm.net/files/ragel/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="vim-syntax"
-
-DEPEND="~dev-util/colm-0.13.0.5"
-RDEPEND="${DEPEND}"
-PATCHES=( "${FILESDIR}/${P}-use-pkginclude.patch" )
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_test() {
-   cd "${S}"/test || die
-   ./runtests.in || die

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

2021-01-18 Thread Sam James
commit: ccf2b3ea88cee29322c71e5456cd3a82223852d9
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:23:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:23:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf2b3ea

dev-util/colm: cleanup old

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

 dev-util/colm/Manifest|  3 ---
 dev-util/colm/colm-0.13.0.4.ebuild| 16 
 dev-util/colm/colm-0.13.0.5.ebuild| 23 ---
 dev-util/colm/colm-0.13.0.6-r1.ebuild | 23 ---
 dev-util/colm/colm-0.13.0.6.ebuild| 15 ---
 5 files changed, 80 deletions(-)

diff --git a/dev-util/colm/Manifest b/dev-util/colm/Manifest
index 3f1b2604b2d..54fc8a2c206 100644
--- a/dev-util/colm/Manifest
+++ b/dev-util/colm/Manifest
@@ -1,5 +1,2 @@
-DIST colm-0.13.0.4.tar.gz 707983 BLAKE2B 
a6b03f24ebe8bf44dbb17b6bd3f545a33b58883fae403d927cd30a81dd2376ae0fd4271c308008d64865697e63cb7cc988465c28b22e56c2136cbd533b32e999
 SHA512 
4684a315f3fef7cd6ff0982e357b59b110c02dfc2ce00a207d5d16dd9475f41790f3cfec9ddb5347d20da879cb0beebc03d3c56c325ce2ef22438555fcf60402
-DIST colm-0.13.0.5.tar.gz 736026 BLAKE2B 
75fb1748495ead2ac5527ce040efb76de264e10b6562c4af734735f5aa25f53fc12260cbe52f019ff04c5117155aeb96358771f20b3e02012639a08527a54d98
 SHA512 
c5a1228260327d65c2cb5821fbc583608e2a308927b04cb0e7dbc84bced60d0d62892b4e30aa2228fee0d08f6828dc58d88788340433bc5bba9d503977883fc9
-DIST colm-0.13.0.6.tar.gz 739981 BLAKE2B 
e5b00bc276fa3414cc9ec557a6e4ca93194f86cd6b3b1ad11611352962da1ef68aa1acd4aa62d47495ba04313dcc52e2a17588fefabf51572d19826c7bb70fe8
 SHA512 
5bcf2d7ff78e523385294f338a8c057807b416b2922e002311fcd8027132504f1aa99bc4dde2c4ea7ddbbc8806fddefda57f8a16f6d5c91a9c47566f86339c81
 DIST colm-0.13.0.7.tar.gz 746841 BLAKE2B 
7f816bafc0d1a7ea826b6cc2f5bd5fa2bffcd0eca88d5eaab757201481804dc5fa6c80fa19a550ebd9ee50a00a621690c4eed1788e0d0d3dd600db95ed8240d3
 SHA512 
d15cc6afeeacc4f34171261e75a7daa285529b98940272566ca6d6661d0778b18930ca72e0bce8d0a56c36c3482adfe4375c32ec66d6e77ee32544bddf35024d
 DIST colm-0.14.6.tar.gz 3110298 BLAKE2B 
430c508ff9db27821baca12a458024cb2caecf2879ac3780fa6ebbc37bed30d3faf68515f21c9b31bd5f1504ab03b5ea63a24812f7117515c63261b8d1683e27
 SHA512 
a783817f9d348a79e93cac54c042e8366a73df287c14221b9e4a7b963385c1e32eb54d6918d0822b271dc2a0420abce84a3e1a3c9ada84968d1c20178d0310ad

diff --git a/dev-util/colm/colm-0.13.0.4.ebuild 
b/dev-util/colm/colm-0.13.0.4.ebuild
deleted file mode 100644
index 3226a981242..000
--- a/dev-util/colm/colm-0.13.0.4.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="COmputer Language Manipulation"
-HOMEPAGE="https://www.colm.net/open-source/colm/;
-SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"

diff --git a/dev-util/colm/colm-0.13.0.5.ebuild 
b/dev-util/colm/colm-0.13.0.5.ebuild
deleted file mode 100644
index ec66f5a78c6..000
--- a/dev-util/colm/colm-0.13.0.5.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="COmputer Language Manipulation"
-HOMEPAGE="https://www.colm.net/open-source/colm/;
-SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 arm arm64 ~ia64 x86 ~amd64-linux ~x86-linux"
-
-DEPEND="app-text/asciidoc"
-
-src_configure() {
-   econf --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-util/colm/colm-0.13.0.6-r1.ebuild 
b/dev-util/colm/colm-0.13.0.6-r1.ebuild
deleted file mode 100644
index 24c79169a62..000
--- a/dev-util/colm/colm-0.13.0.6-r1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="COmputer Language Manipulation"
-HOMEPAGE="https://www.colm.net/open-source/colm/;
-SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux"
-
-BDEPEND="app-text/asciidoc"
-
-src_configure() {
-   econf --disable-static
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}

diff --git a/dev-util/colm/colm-0.13.0.6.ebuild 
b/dev-util/colm/colm-0.13.0.6.ebuild
deleted file mode 100644
index 4292b617eac..000
--- a/dev-util/colm/colm-0.13.0.6.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="COmputer Language Manipulation"

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

2021-01-18 Thread Sam James
commit: 24576db1f9bdc5916fbef7a900a48b78ffa97cac
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:03:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:03:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24576db1

dev-util/colm: fix metadata indentation

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

 dev-util/colm/metadata.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-util/colm/metadata.xml b/dev-util/colm/metadata.xml
index b6589fd30e3..eb7ab120596 100644
--- a/dev-util/colm/metadata.xml
+++ b/dev-util/colm/metadata.xml
@@ -1,11 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-patr...@gentoo.org
-Patrick Lauer
-  
-  
-adrian-thurston/colm
-  
+   
+   patr...@gentoo.org
+   Patrick Lauer
+   
+   
+   adrian-thurston/colm
+   
 



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

2021-01-18 Thread Sam James
commit: 20bb44c0068aca2d2d8ddb89f2f8754b9ca52485
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:04:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:04:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20bb44c0

dev-util/ragel: add github remote-id

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

 dev-util/ragel/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/ragel/metadata.xml b/dev-util/ragel/metadata.xml
index 71e948fffb9..79cbe2c3be7 100644
--- a/dev-util/ragel/metadata.xml
+++ b/dev-util/ragel/metadata.xml
@@ -4,4 +4,7 @@
   
 lu_z...@gentoo.org
   
+  
+adrian-thurston/ragel
+  
 



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

2021-01-18 Thread Sam James
commit: c1f976cc44c8fbc3f55c7c74e5566fb0e24ceff7
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:05:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:05:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1f976cc

dev-util/ragel: fix metadata indentation

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

 dev-util/ragel/metadata.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-util/ragel/metadata.xml b/dev-util/ragel/metadata.xml
index 79cbe2c3be7..6e5b8ef64bd 100644
--- a/dev-util/ragel/metadata.xml
+++ b/dev-util/ragel/metadata.xml
@@ -1,10 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-lu_z...@gentoo.org
-  
-  
-adrian-thurston/ragel
-  
+   
+   lu_z...@gentoo.org
+   
+   
+   adrian-thurston/ragel
+   
 



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

2021-01-18 Thread Sam James
commit: 5fb3369afa1c5369af47e46281256aae1a8094b4
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:02:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:02:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb3369a

dev-util/colm: add github remote-id

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

 dev-util/colm/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/colm/metadata.xml b/dev-util/colm/metadata.xml
index f3de5f693ed..b6589fd30e3 100644
--- a/dev-util/colm/metadata.xml
+++ b/dev-util/colm/metadata.xml
@@ -5,4 +5,7 @@
 patr...@gentoo.org
 Patrick Lauer
   
+  
+adrian-thurston/colm
+  
 



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

2021-01-18 Thread Sam James
commit: ae07d975c5a7f0a581a8570ddbfa26915ae87c2d
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 23:03:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 23:03:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae07d975

dev-util/colm: add note re cmake

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

 dev-util/colm/colm-0.14.6.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/colm/colm-0.14.6.ebuild b/dev-util/colm/colm-0.14.6.ebuild
index 7ff5eff90c4..659b201eab5 100644
--- a/dev-util/colm/colm-0.14.6.ebuild
+++ b/dev-util/colm/colm-0.14.6.ebuild
@@ -48,4 +48,5 @@ src_install() {
 
# NOTE: dev-util/ragel needs the static libraries
# and .la files, unfortunately.
+   # (May have better luck if we use the CMake port?)
 }



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

2021-01-18 Thread Sam James
commit: 9fb27243e8e46551d3590edaf6f33e4d55f1fce2
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 22:08:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 22:57:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb27243

dev-util/colm: bump to 0.14.6

* Bump to 0.14.6 for critical big endian fix
* Add needed dev-python/pygments doc
* Allow dev-ruby/asciidoctor too
* Restores static libs and .la files:
  * needed at build time by colm
  * needed at runtime by ragel

Thanks-to: Ingo Brunberg  web.de>
Bug: https://bugs.gentoo.org/766039
Closes: https://bugs.gentoo.org/733426
Closes: https://bugs.gentoo.org/677070
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-util/colm/Manifest   |  1 +
 dev-util/colm/colm-0.14.6.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/dev-util/colm/Manifest b/dev-util/colm/Manifest
index 32271f5380c..3f1b2604b2d 100644
--- a/dev-util/colm/Manifest
+++ b/dev-util/colm/Manifest
@@ -2,3 +2,4 @@ DIST colm-0.13.0.4.tar.gz 707983 BLAKE2B 
a6b03f24ebe8bf44dbb17b6bd3f545a33b58883
 DIST colm-0.13.0.5.tar.gz 736026 BLAKE2B 
75fb1748495ead2ac5527ce040efb76de264e10b6562c4af734735f5aa25f53fc12260cbe52f019ff04c5117155aeb96358771f20b3e02012639a08527a54d98
 SHA512 
c5a1228260327d65c2cb5821fbc583608e2a308927b04cb0e7dbc84bced60d0d62892b4e30aa2228fee0d08f6828dc58d88788340433bc5bba9d503977883fc9
 DIST colm-0.13.0.6.tar.gz 739981 BLAKE2B 
e5b00bc276fa3414cc9ec557a6e4ca93194f86cd6b3b1ad11611352962da1ef68aa1acd4aa62d47495ba04313dcc52e2a17588fefabf51572d19826c7bb70fe8
 SHA512 
5bcf2d7ff78e523385294f338a8c057807b416b2922e002311fcd8027132504f1aa99bc4dde2c4ea7ddbbc8806fddefda57f8a16f6d5c91a9c47566f86339c81
 DIST colm-0.13.0.7.tar.gz 746841 BLAKE2B 
7f816bafc0d1a7ea826b6cc2f5bd5fa2bffcd0eca88d5eaab757201481804dc5fa6c80fa19a550ebd9ee50a00a621690c4eed1788e0d0d3dd600db95ed8240d3
 SHA512 
d15cc6afeeacc4f34171261e75a7daa285529b98940272566ca6d6661d0778b18930ca72e0bce8d0a56c36c3482adfe4375c32ec66d6e77ee32544bddf35024d
+DIST colm-0.14.6.tar.gz 3110298 BLAKE2B 
430c508ff9db27821baca12a458024cb2caecf2879ac3780fa6ebbc37bed30d3faf68515f21c9b31bd5f1504ab03b5ea63a24812f7117515c63261b8d1683e27
 SHA512 
a783817f9d348a79e93cac54c042e8366a73df287c14221b9e4a7b963385c1e32eb54d6918d0822b271dc2a0420abce84a3e1a3c9ada84968d1c20178d0310ad

diff --git a/dev-util/colm/colm-0.14.6.ebuild b/dev-util/colm/colm-0.14.6.ebuild
new file mode 100644
index 000..7ff5eff90c4
--- /dev/null
+++ b/dev-util/colm/colm-0.14.6.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="COmputer Language Manipulation"
+HOMEPAGE="https://www.colm.net/open-source/colm/;
+SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+BDEPEND="
+   doc? (
+   || ( app-text/asciidoc dev-ruby/asciidoctor )
+   dev-python/pygments
+   )
+"
+
+src_prepare() {
+   default
+
+   # bug #733426
+   sed -i -e 's/(\[ASCIIDOC\], \[asciidoc\], \[asciidoc\]/S([ASCIIDOC], 
[asciidoc asciidoctor]/' configure.ac || die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable doc manual)
+}
+
+src_test() {
+   # Build tests
+   default
+
+   # Run them
+   cd test || die
+   ./runtests || die
+}
+
+src_install() {
+   default
+
+   # NOTE: dev-util/ragel needs the static libraries
+   # and .la files, unfortunately.
+}



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

2021-01-18 Thread Sam James
commit: ebce5ce15ff3205035359cece6d9b547affe4af1
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 22:56:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 22:57:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebce5ce1

dev-util/ragel: bump to 7.0.3

* Bump to 7.0.3 for critical big endian fix
* Similar doc dependency changes as with colm

Bug: https://bugs.gentoo.org/677070
Bug: https://bugs.gentoo.org/733426
Closes: https://bugs.gentoo.org/766039
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 dev-util/ragel/Manifest   |  1 +
 dev-util/ragel/ragel-7.0.3.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/dev-util/ragel/Manifest b/dev-util/ragel/Manifest
index 6cce5686285..07b02ebcb95 100644
--- a/dev-util/ragel/Manifest
+++ b/dev-util/ragel/Manifest
@@ -2,3 +2,4 @@ DIST ragel-6.10.tar.gz 1232993 BLAKE2B 
401e7a53b062ecd7ec98337866eb2dc0af0ac90e5
 DIST ragel-7.0.0.10.tar.gz 779503 BLAKE2B 
2f7b8bb858555719b0c7afa8209be76fd07f9d06a8f75df723211c48d59f50c21f09a1f1fa031d53e434db933d1bc12299c75d8932485e5a43eccef7506667ad
 SHA512 
2d1d4c469d8581239ec21f128e94ab452b398903302f82ef59ce03d6fb89bc89de6441dbe53ea99d7689866f7aec485ab1ec9c537908f21eb1394650b55413ba
 DIST ragel-7.0.0.12.tar.gz 1543127 BLAKE2B 
c3024c55eb5397f78159da83e318923529d3c1f10cc802564ac13c39b18c261166e27e4f315bbaa49e7eb9afa6840ca72aa62d7ae14d46f20865db64e3ab6759
 SHA512 
32ec90eddfd209e50995f21b9a5fcddd2b94279828227d367d990d7bfa8e4412682631d4e6ae5081871bac23d96153b96fb4494b991c70bf38df8cc0ddc8866d
 DIST ragel-7.0.0.9.tar.gz 850078 BLAKE2B 
0e7d458e9f78fc7e0fb2e9a0c6fdd3f3789a9104f4441bc878ac64d077dee716e27d3a54c3898fcf1e4ba56b8d46d956a36b92258750f2541fd96f951038d852
 SHA512 
87de7d41af4a08f09d422a0e58820f9b5b1218acc4733c58690feea4f872790813b5f2d7505ce147a2a6e1bcd341926c35fed7c6b55f543bdf864b119868bcde
+DIST ragel-7.0.3.tar.gz 1656577 BLAKE2B 
3a9ce560894714a3801039fb944d3c914f2647a0b76bba4a7b790f8d569eb2e9eb807ab4d8af067560b274692be2d98c5dc28632e11c853893971585e847d48e
 SHA512 
16bcb4b44a3ca94918d6c3e4bce468620cc691bf74cb69f0a264c41cbcffd595f897aa18e300952b60a68e680e1223532bbf9e500168d35d92a6559c190f6e78

diff --git a/dev-util/ragel/ragel-7.0.3.ebuild 
b/dev-util/ragel/ragel-7.0.3.ebuild
new file mode 100644
index 000..7620cc9956c
--- /dev/null
+++ b/dev-util/ragel/ragel-7.0.3.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Compiles finite state machines from regular languages into 
executable code"
+HOMEPAGE="https://www.colm.net/open-source/ragel/;
+SRC_URI="https://www.colm.net/files/ragel/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+BDEPEND="
+   doc? (
+   || ( app-text/asciidoc dev-ruby/asciidoctor )
+   dev-texlive/texlive-latex
+   dev-python/pygments
+   media-gfx/transfig
+   )
+"
+DEPEND="~dev-util/colm-0.14.6"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   # Fix hardcoded search dir
+   sed -i -e "s:\$withval/lib:\$withval/$(get_libdir):" configure.ac || die
+
+   # Allow either asciidoctor or asciidoc
+   # bug #733426
+   sed -i -e 's/(\[ASCIIDOC\], \[asciidoc\], \[asciidoc\]/S([ASCIIDOC], 
[asciidoc asciidoctor]/' configure.ac || die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --with-colm="${EPREFIX}/usr" \
+   $(use_enable doc manual)
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/vim/vimfiles/syntax
+   doins ragel.vim
+
+   find "${ED}" -name '*.la' -delete || die
+}



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

2021-01-18 Thread Steve Arnold
commit: 25c8946be499b64f4b19be990292f3abbbaae9f3
Author: Steve Arnold  gentoo  org>
AuthorDate: Mon Jan 18 21:24:59 2021 +
Commit: Steve Arnold  gentoo  org>
CommitDate: Mon Jan 18 22:43:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c8946b

sci-libs/eccodes: bump to newer upstream release

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Steve Arnold  gentoo.org>

 sci-libs/eccodes/Manifest  |  3 +-
 ...eccodes-2.16.0.ebuild => eccodes-2.18.0.ebuild} | 42 +++---
 2 files changed, 31 insertions(+), 14 deletions(-)

diff --git a/sci-libs/eccodes/Manifest b/sci-libs/eccodes/Manifest
index d5d6bb46ae6..4a424f0a2a7 100644
--- a/sci-libs/eccodes/Manifest
+++ b/sci-libs/eccodes/Manifest
@@ -1,2 +1,3 @@
-DIST eccodes-2.16.0-Source.tar.gz 11258869 BLAKE2B 
4a1b3e953fc041beed47046c6ea4f74bb18230019b71c884f1dc5a102a7bae2b9083f51b74fc4078c493d188433f08db833a571e7deadd93b6c137f975f03006
 SHA512 
6e8768824152d8782c1457cfe79daed32114d1b4694d2843bd02a8aa63c42ccc435b53f7db6942239b3e56999fbaaba4ecef345d39fc5c5f7a5d20ceecf4422a
+DIST eccodes-2.18.0-Source.tar.gz 11525701 BLAKE2B 
9dc2861472309c0483e4e7eb7b79c2eb2eb72b1e99f8656bb0355630e8012468d9d6513fb3bab7b3fbc7b2c02c3c74d291a6a8862aa8434cdcce82868f359961
 SHA512 
8daf7f2e1aed055ca6402881f5473e4ae90ba24cc779005f57f99adc7468da459c7539e64f455e2122dd83df29992fd7a6dad2700c8331c4083226e091fbb629
 DIST eccodes_test_data.tar.gz 139711871 BLAKE2B 
f2e89207835c78fa198f0a2fba8ac2cd4ab263c9160e02005a3ca851bc71586010e7f4742cbb9240463abb9421db83b7dadc83fe798f37321a553ca9856f68d7
 SHA512 
24c24ec9e01d230cf542abe5c131f05b8e627dd9d170c28bb5fd8f7b1a6aa11a35456b8d742c59f54c6aabac78658efd68b0c50779d466aba3d35b4a0231
+DIST mercator.grib2 6339 BLAKE2B 
b63a72c711c28fa81568d123758f61804d73886c1f8dc27ab444daf3d1a0d104ef40b1469e9940413b5311c1cdcfa5de76a9d46ea0c57d08ccfd44ab41b8d4fb
 SHA512 
e3d4e93833345675558b58c2e6f2b5a583c52083718da05cae72dd015d2e7699ee83c2dcce695143ee5e4423c890ef80f2448146d93e87fbfff8845f6efa8178

diff --git a/sci-libs/eccodes/eccodes-2.16.0.ebuild 
b/sci-libs/eccodes/eccodes-2.18.0.ebuild
similarity index 60%
rename from sci-libs/eccodes/eccodes-2.16.0.ebuild
rename to sci-libs/eccodes/eccodes-2.18.0.ebuild
index e7b28f72d27..82c91c14eef 100644
--- a/sci-libs/eccodes/eccodes-2.16.0.ebuild
+++ b/sci-libs/eccodes/eccodes-2.18.0.ebuild
@@ -1,26 +1,33 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python3_{6..9} )
 
-inherit cmake-utils fortran-2 python-any-r1
+inherit cmake fortran-2 python-any-r1
 
 MY_P="${P}-Source"
 
 DESCRIPTION="A set of encoding/decoding APIs and tools for WMO GRIB, BUFR, and 
GTS messages"
 HOMEPAGE="https://confluence.ecmwf.int/display/ECC;
 
SRC_URI="https://confluence.ecmwf.int/download/attachments/45757960/${MY_P}.tar.gz
-   extra-test? ( 
http://download.ecmwf.org/test-data/eccodes/${PN}_test_data.tar.gz )"
+   extra-test? ( 
http://download.ecmwf.org/test-data/eccodes/${PN}_test_data.tar.gz
+   http://download.ecmwf.org/test-data/eccodes/data/mercator.grib2 )"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86"
 
-IUSE="defs examples extra-test -fortran memfs netcdf jpeg2k png python szip 
test threads"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="threads? ( !fortran ) test? ( defs !memfs ) extra-test? ( test ) 
!test? ( memfs? ( python ) )"
+IUSE="+defs examples extra-test fortran memfs netcdf jpeg2k openmp png python 
szip test threads"
+
+REQUIRED_USE="
+   fortran? ( !threads ( openmp ) )
+   openmp? ( !threads ( fortran ) )
+   threads? ( !fortran !openmp )
+   test? ( defs !memfs )
+   extra-test? ( test )
+   !test? ( memfs? ( python ) )"
 
 RDEPEND="
sys-libs/zlib
@@ -45,24 +52,29 @@ pkg_setup() {
 
 src_configure() {
local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
+   -DINSTALL_LIB_DIR="$(get_libdir)"
+   -DCMAKE_SKIP_INSTALL_RPATH=TRUE
-DENABLE_ECCODES_THREADS=$(usex threads TRUE FALSE)
+   -DENABLE_ECCODES_OMP_THREADS=$(usex openmp TRUE FALSE)
-DENABLE_EXAMPLES=OFF  # no need to build examples
-DENABLE_INSTALL_ECCODES_DEFINITIONS=$(usex defs TRUE FALSE)
-DENABLE_FORTRAN=$(usex fortran TRUE FALSE)
-DENABLE_PYTHON=OFF  # py2 support is deprecated
-DENABLE_NETCDF=$(usex netcdf TRUE FALSE)
-DENABLE_JPG=$(usex jpeg2k TRUE FALSE)
+   -DENABLE_JPG_LIBOPENJPEG=$(usex jpeg2k TRUE FALSE)
-DENABLE_PNG=$(usex png TRUE FALSE)
-DENABLE_MEMFS=$(usex memfs TRUE FALSE)
-DENABLE_EXTRA_TESTS=$(usex extra-test TRUE FALSE)
-DBUILD_SHARED_LIBS=ON
-   

[gentoo-commits] repo/proj/guru:dev commit in: app-admin/antidot/

2021-01-18 Thread Theo Anderson
commit: 29d74f1fa7aebe6a22da99e5c0fb78e772559a98
Author: Theo Anderson  posteo  de>
AuthorDate: Mon Jan 18 22:21:35 2021 +
Commit: Theo Anderson  posteo  de>
CommitDate: Mon Jan 18 22:24:35 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=29d74f1f

app-admin/antidot: bump to 0.5.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 app-admin/antidot/Manifest |  13 ++
 app-admin/antidot/antidot-0.5.0.ebuild | 381 +
 2 files changed, 394 insertions(+)

diff --git a/app-admin/antidot/Manifest b/app-admin/antidot/Manifest
index 6c27dc97..f8df32d5 100644
--- a/app-admin/antidot/Manifest
+++ b/app-admin/antidot/Manifest
@@ -22,6 +22,8 @@ DIST 
github.com%2F!netflix%2Fgo-expect%2F@v%2Fv0.0.0-20180615182759-c93bf25de8e8
 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 
83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f
 SHA512 
9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4
 DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.2.3.mod 80 BLAKE2B 
d33149d8f400ae7fc0e0a02d74bc7a917d48d56b144fe699e01e479f60bda6c132c673bce8432031f9ffc9ecaa83907dbc299391b7c7e6590f9eaf57dc713b45
 SHA512 
f0652d7667b3c2aea72c784b441da178ccb9406b21fb3353ce8ee73ac50111cf0106e5d5448b0e498677c1856c0c387ac926c67fad49914250375133427a0879
 DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.2.3.zip 20501 BLAKE2B 
c4a726c7ace1922ae9ba9614a74a2546ea1b23a1644ff15ac0bbdee172cc5eb391ceba6ced765c1f22362b7a44ec1db3e2b3fa5208a1cb48650d490e21f3ddb5
 SHA512 
68307852f4c4d4bed89c59977e55c9bbccc819293d0ae41c1b63a677c822dcbd499c13b155ba11f869dfedf66bfdbf6b6dfeb45427f3e39a80a539649da55be0
+DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.3.0.mod 80 BLAKE2B 
d33149d8f400ae7fc0e0a02d74bc7a917d48d56b144fe699e01e479f60bda6c132c673bce8432031f9ffc9ecaa83907dbc299391b7c7e6590f9eaf57dc713b45
 SHA512 
f0652d7667b3c2aea72c784b441da178ccb9406b21fb3353ce8ee73ac50111cf0106e5d5448b0e498677c1856c0c387ac926c67fad49914250375133427a0879
+DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.3.0.zip 21183 BLAKE2B 
b98a7e5bef5c39c6edba6052ba51b9d6965c3dfd3b035c88f7fdb01a7ee1332f6def9751962fca9d4e252409159ec9675f703801850ae74629c881831df1ab3c
 SHA512 
cf2f3dca105cb32c3cf92c3b08583b5b2273fcf978650fae98a1c1b4924c124defaaca005325849cbadbd6a6db4eb971a96fb4fbca97818653b96c9f4bf9
 DIST 
github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod
 38 BLAKE2B 
2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de950478545319ea0b867de7
 SHA512 
072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929
 DIST 
github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod 
35 BLAKE2B 
873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad
 SHA512 
7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175
 DIST 
github.com%2Farmon%2Fcircbuf%2F@v%2Fv0.0.0-20150827004946-bbbad097214e.mod 32 
BLAKE2B 
f5b653f20e85bc44cbd3882fdd8f425c0b71733eae4bcdf2623952f1ed2524e8067a169f1cc0025f6570aaa4653969baa7d4626db6cf0dccb0d7378cc36da6b2
 SHA512 
a201f9c169bba0d962c2595ee8c625a2b7e39873e4bb3eb1ca646340638917dabb2309f1ba4b71d9fca4cf2da2d3684076c67ba362dd07a39538a45240f7f987
@@ -143,10 +145,20 @@ DIST 
github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv0.0.0-20160808181253-ca63d7c0
 DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod 41 BLAKE2B 
291f73049327af60c94a2b2113b8e370f90d2a3fc7074c58ac523ce2a613ebada88ce048a73cf882c68ff552dd6df0be42f796f4ed11a549c0b7ca6c67f61c38
 SHA512 
7816e3703475601df65f20ad4e5d1f6bbedc4a7c87c594518358c1a9c24421aa5ccb6e8389ad983a514a823674c6f0f771f1f367b10d99691dbd8db7105ec44e
 DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.4.0.mod 50 BLAKE2B 
59fc5ab80023eb3670c6f77e705dfb39bfbe64511e5222558ac6debc1f3786782e4e75954b89ba17dfc58ce463d8c9ac0807d448a41eb630cf5e0c4f51782df5
 SHA512 
408cfe4466cf47530cfdf1bb6ff94b5d77b17208a2a9b3d2bfb63b4853a68f46ba707c604bf03e2173f80dfe480bcf4c0be5b3f48872cc865ac0bac3d488f7b0
 DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.4.0.zip 32411 BLAKE2B 
cc45d6d4c837e1b61a7efeaccc85109b4078947708834bf7846f6f2f94ada2d8c36946cec49d716169059466b3b6c061fae5cbb4d809f0599197fec8a6529b68
 SHA512 
2e1ae17da5121647697a24732e5f35afc8a9e195c5a380710161e43fb00c62a93c8527ea24a7025ad8dd868471f753e7d0f6432135b6f3ca2c350089050f914f
+DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.4.1.mod 50 BLAKE2B 
59fc5ab80023eb3670c6f77e705dfb39bfbe64511e5222558ac6debc1f3786782e4e75954b89ba17dfc58ce463d8c9ac0807d448a41eb630cf5e0c4f51782df5
 SHA512 

[gentoo-commits] repo/proj/guru:dev commit in: app-admin/antidot/

2021-01-18 Thread Theo Anderson
commit: 0727c1848190242db131fe43a5577aa3270c4817
Author: Theo Anderson  posteo  de>
AuthorDate: Mon Jan 18 22:22:00 2021 +
Commit: Theo Anderson  posteo  de>
CommitDate: Mon Jan 18 22:24:35 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0727c184

app-admin/antidot: drop old

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 app-admin/antidot/Manifest |   3 -
 app-admin/antidot/antidot-0.4.1.ebuild | 373 -
 2 files changed, 376 deletions(-)

diff --git a/app-admin/antidot/Manifest b/app-admin/antidot/Manifest
index f8df32d5..d69822c9 100644
--- a/app-admin/antidot/Manifest
+++ b/app-admin/antidot/Manifest
@@ -11,8 +11,6 @@ DIST cloud.google.com%2Fgo%2Ffirestore%2F@v%2Fv1.1.0.mod 568 
BLAKE2B d3d62f2d5c0
 DIST cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod 508 BLAKE2B 
9915d1d1a768852b3f262784771c8fe2e7e176e61f7d77841f8d3adac571dc141e36c6455c19090cf00a98a7a5ef0c2c887424142e2ecad339f8105b1c30f91e
 SHA512 
8a393b8614207c22c73a706ccc3e66a8a16d2f305ab95d8f70774f13d0bcb7396b0ac5095daa57ebb991225a1db08c3110f1e85c26dd72f3bbcaf73fea536d9c
 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 BLAKE2B 
4fef9f7da9f23e94efe43be0e279958715949a889c5d51e388f5b66ec9a7cdbf15a717c93647032998facd71359ad1dcacebcf3334100144abbfa12dac03
 SHA512 
faf4a02a513ae4c23f931b8917e74a056c528b4267ef3b5b704949283910bfc5d41fdd7264b78d4fc1f6e5b370474a7c9933a2fad36bb5c872006def71f8ed0b
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
-DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.5.mod 719 BLAKE2B 
d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8
 SHA512 
11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098
-DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.5.zip 155176 BLAKE2B 
49211d3b0f1e63b88ab40fc337651b05921918c5ac96c0b71410c1eabec633b2a05f9b9288686f8271c83cd64668ce2aeac56ff10c2a637305398cad75f9ebab
 SHA512 
480d6c708fc50230bb37369c2f27455c040cce5c1154de047c24e8ce7aa1beb6d38b14d237abc31703f95a01420db310145683b8698d314ffa8e11fcd19c7b74
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.mod 707 BLAKE2B 
3f7da997d7cb7e3ed2426497741ee7b4517adb66588f268b095f9abe4ab12842a5e14df940a1b89d1e5514c0c377a0a71e5460ab22073a1639c6dbed892fe8fc
 SHA512 
6f0c6aa88ce38abfa9bce0992b75b8ef5a2f58c743bc96ef49b8a97d7e04ad7071c0f63f65c3ff82e5014df91d383f5ab84a2c0ac8e54739048de9aede5443c5
 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.7.zip 155695 BLAKE2B 
e9e29d2b6d215b75a9de1d33b80d827bf7403f940fd106651a0b00e87672d9f1f4a8c084139a2da9a92998cb3327c978c228bdd781f2dc8c45ba7f0a6b7ab4fb
 SHA512 
8152f6fe278a329ab4518c77143b36e1bdd6f3f48ea0853e2e5a07b545728502776d61ad877e1819fb7641bcd57021d6343b979276a836a9b12d4f45b492ab48
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 
ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d
 SHA512 
320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146
@@ -348,6 +346,5 @@ DIST 
honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod 26 BLA
 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod 26 
BLAKE2B 
db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5
 SHA512 
d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce
 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod 300 BLAKE2B 
3e3f5a2be0918cbaacd5e43e59fcc6c7c6999645f0c9214cd5a522c31d34b6d3dad61e3ddae8ccdb2f3f0d90b406c047802ee3d9d54dc40fe6eff9cd35620792
 SHA512 
0c8aa788d0c03d6d049f0dd7468d0f81ce2131ccedd5a5a3a18362b7d30eef7ef325277844eefe4b707b1ad71c6f83a44e110b7af7b98e05406d347237a7bafb
 DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 
61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f
 SHA512 
db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774
-DIST v0.4.1.tar.gz 34959 BLAKE2B 
a687d3db6fcc420857b741f65ffd23f6669f44d9715c6b25d87d9b9b6e8f6e20b44cbf0a24cac2a8454db8bc9cd0a8c8cd616996649c0cae5bc467642f691928
 SHA512 

[gentoo-commits] repo/proj/guru:dev commit in: dev-python/sysv_ipc/

2021-01-18 Thread Theo Anderson
commit: b731064bbdb514d7efbdd080192859427fc3e6be
Author: Theo Anderson  posteo  de>
AuthorDate: Mon Jan 18 22:24:27 2021 +
Commit: Theo Anderson  posteo  de>
CommitDate: Mon Jan 18 22:24:35 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b731064b

dev-python/sysv_ipc: bump to 1.1.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>

 dev-python/sysv_ipc/Manifest  |  1 +
 dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/dev-python/sysv_ipc/Manifest b/dev-python/sysv_ipc/Manifest
index 2952cd2b..869712c5 100644
--- a/dev-python/sysv_ipc/Manifest
+++ b/dev-python/sysv_ipc/Manifest
@@ -1 +1,2 @@
 DIST sysv_ipc-1.0.1.tar.gz 102174 BLAKE2B 
dcde40caaccef6fc2d1564ae4008a5d911c0d5b31892d665c058ced1f9c5872283973a8230439dc5c152a1b699734cc94e6f287f0e58e4f58d1846284da0a35b
 SHA512 
c240828df5a96fe241b0d68f349c7c593ee45115c2867adc577b4da75ec1b3101608fd8da021fec88a7b717af9a4b0e9f9e5ad6a06874a38c3ad2ce467f00989
+DIST sysv_ipc-1.1.0.tar.gz 99448 BLAKE2B 
c8f5be7169a720a3e104072eea94d4b024d515efb6ca3e3d8e73ab45750a992bc5e0dc26c4b4483d91d9dfed7bbbe619efb01e76cd6bc598bce9967835b4b3a9
 SHA512 
30615c7fcd2ce45b5602fbd61bc2061f5fd44eb7d8ec0bcfd2979e2e750b0f7093bad938cb715ba65dac306c576f76973d462ecc52785fc8f7bacc70a84d79ff

diff --git a/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild 
b/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild
new file mode 100644
index ..8a13072d
--- /dev/null
+++ b/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="System V IPC primitives for python"
+HOMEPAGE="http://semanchuk.com/philip/sysv_ipc/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"



[gentoo-commits] repo/proj/guru:dev commit in: app-editors/vscodium-bin/

2021-01-18 Thread Maciej Barć
commit: 479416efd5e6e2098e0ef0788b45a3dcab60bb8e
Author: Maciej Barć  protonmail  com>
AuthorDate: Mon Jan 18 17:55:49 2021 +
Commit: Maciej Barć  protonmail  com>
CommitDate: Mon Jan 18 18:02:13 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=479416ef

app-editors/vscodium-bin: add myself to maintainers; unbundle ripgrep

Also fix permissions of installed scripts to 
/opt/vscodium/resources/app/out/vs/base/node,
remove ARM32 support because ripgrep is not available on the "arm" profile,
add conditional libsecret USE flag,
restrict test,
add description from "https://vscodium.com;,
add upstream,

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Maciej Barć  protonmail.com>

 app-editors/vscodium-bin/Manifest  |  1 -
 app-editors/vscodium-bin/metadata.xml  | 22 --
 .../vscodium-bin/vscodium-bin-1.52.1.ebuild| 50 --
 3 files changed, 46 insertions(+), 27 deletions(-)

diff --git a/app-editors/vscodium-bin/Manifest 
b/app-editors/vscodium-bin/Manifest
index cbf5b35c..5d1f6190 100644
--- a/app-editors/vscodium-bin/Manifest
+++ b/app-editors/vscodium-bin/Manifest
@@ -1,3 +1,2 @@
 DIST VSCodium-linux-arm64-1.52.1.tar.gz 99006948 BLAKE2B 
933e5b283e011873b7da60a838e7778d8ff1cf69006e5bf370fdeba7aa6709c2b8ea427936d353c75c0331d1a78defb7c0983d73d59c71163cde6ca32cf1ac32
 SHA512 
e96c79b1176a07f6cbd1a1d30d4a4d0d66d519d854bc0aa0e24e9baa4b0f6fe959e12b4888330188210957763febc644601f958b635deaa7e900f55f0eb5550f
-DIST VSCodium-linux-armhf-1.52.1.tar.gz 85288104 BLAKE2B 
3df56d4708f44e5029a9cfed05185957951ead696885f16e8d3da8587f812f9e088e37e2b355157989a0e272661f367a1bd2d70cfbc7953a1f07f166b7b8292d
 SHA512 
ffd5b2b476896d4aed67ed0bd157ca14819f493534c9e15eba247998becb06042c6c0caa88ee2db7e76529da252dac57c43c86371430b57a5819ce392cdcdcb5
 DIST VSCodium-linux-x64-1.52.1.tar.gz 96026417 BLAKE2B 
0d06ddef0de3af3d22de4757bd5b81742cdfb6605192c61374857fdacfd8df374adf180aaa1f31f0397ead97e7f668320125ef1f806c71689348ac4a3c8bab8d
 SHA512 
9a60f6821e7a796eaca842817fd3853c8099d74418ccabeacabed01c4f7b46b49c52bb11a032c317c27e3cef7ef2c49d2cf967ca2d2d79013790994a6aa9159f

diff --git a/app-editors/vscodium-bin/metadata.xml 
b/app-editors/vscodium-bin/metadata.xml
index 2a0f0b7f..dfc5f239 100644
--- a/app-editors/vscodium-bin/metadata.xml
+++ b/app-editors/vscodium-bin/metadata.xml
@@ -5,9 +5,23 @@
rossbridger...@gmail.com
Ross Charles Campbell

-   
-This is not a fork. This is a repository of scripts to automatically
-build Microsoft's vscode repository into freely-licensed binaries with
-a community-driven default configuration.
+   
+   x...@protonmail.com
+   Maciej Barć
+   
+   
+   Enable libsecret support
+   
+   
+   VSCodium/vscodium
+   
+   
+   Microsoft’s vscode source code is open source (MIT-licensed),
+   but the product available for download (Visual Studio Code)
+   is licensed under this not-FLOSS license
+   and contains telemetry/tracking.
+   The VSCodium project exists so that you don’t have to 
download+build
+   from source. These binaries are licensed under the MIT license.
+   Telemetry is disabled.

 

diff --git a/app-editors/vscodium-bin/vscodium-bin-1.52.1.ebuild 
b/app-editors/vscodium-bin/vscodium-bin-1.52.1.ebuild
index c18d9b7b..e05dd8ce 100644
--- a/app-editors/vscodium-bin/vscodium-bin-1.52.1.ebuild
+++ b/app-editors/vscodium-bin/vscodium-bin-1.52.1.ebuild
@@ -9,52 +9,58 @@ MY_PN="${PN/-bin}"
 
 DESCRIPTION="Free/Libre Open Source Software Binaries of VSCode"
 HOMEPAGE="https://vscodium.com;
-
 SRC_URI="
-   amd64? ( 
https://github.com/VSCodium/vscodium/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz
 )
-   arm? ( 
https://github.com/VSCodium/vscodium/releases/download/${PV}/VSCodium-linux-armhf-${PV}.tar.gz
 )
-   arm64? ( 
https://github.com/VSCodium/vscodium/releases/download/${PV}/VSCodium-linux-arm64-${PV}.tar.gz
 )"
-
-RESTRICT="strip bindist"
+   amd64? (
+   
https://github.com/VSCodium/${MY_PN}/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz
+   )
+   arm64? (
+   
https://github.com/VSCodium/${MY_PN}/releases/download/${PV}/VSCodium-linux-arm64-${PV}.tar.gz
+   )
+"
 
+RESTRICT="bindist strip test"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64"
+KEYWORDS="-* ~amd64 ~arm64"
+IUSE="libsecret"
 
 RDEPEND="
app-accessibility/at-spi2-atk
-   app-crypt/libsecret[crypt]
dev-libs/nss
media-libs/libpng:0/16
+   sys-apps/ripgrep
x11-libs/cairo
x11-libs/gtk+:3
-   x11-libs/libnotify
x11-libs/libXScrnSaver
x11-libs/libXtst
-   x11-libs/pango"
+   x11-libs/libnotify
+   x11-libs/pango
+   libsecret? ( 

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

2021-01-18 Thread William Hubbs
commit: 5d440177d68243aa0cddc4d5d148a6b02e1d88bd
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Jan 18 22:01:42 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jan 18 22:02:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d440177

dev-lang/go: remove unneeded MacOS support code

We no longer install the testdata directories, so we don't need this
code.
Signed-off-by: William Hubbs  gentoo.org>

 dev-lang/go/go-1.14.13-r1.ebuild | 8 
 dev-lang/go/go-1.15.6-r1.ebuild  | 8 
 dev-lang/go/go-.ebuild   | 8 
 3 files changed, 24 deletions(-)

diff --git a/dev-lang/go/go-1.14.13-r1.ebuild b/dev-lang/go/go-1.14.13-r1.ebuild
index ebfb8c5bc2b..55fd0c4f6bf 100644
--- a/dev-lang/go/go-1.14.13-r1.ebuild
+++ b/dev-lang/go/go-1.14.13-r1.ebuild
@@ -181,14 +181,6 @@ src_install()
# install the @golang-rebuild set for Portage
insinto /usr/share/portage/config/sets
newins "${FILESDIR}"/go-sets.conf go.conf
-
-   # fix install_name for test object (binutils_test) on Darwin, it
-   # is never used in real circumstances
-   if [[ ${CHOST} == *-darwin* ]] ; then
-   local 
libmac64="${EPREFIX}"/usr/lib/go/src/cmd/vendor/github.com/
- 
libmac64+=google/pprof/internal/binutils/testdata/lib_mac_64
-   install_name_tool -id "${libmac64}" "${D}${libmac64}"
-   fi
 }
 
 pkg_postinst() {

diff --git a/dev-lang/go/go-1.15.6-r1.ebuild b/dev-lang/go/go-1.15.6-r1.ebuild
index ebfb8c5bc2b..55fd0c4f6bf 100644
--- a/dev-lang/go/go-1.15.6-r1.ebuild
+++ b/dev-lang/go/go-1.15.6-r1.ebuild
@@ -181,14 +181,6 @@ src_install()
# install the @golang-rebuild set for Portage
insinto /usr/share/portage/config/sets
newins "${FILESDIR}"/go-sets.conf go.conf
-
-   # fix install_name for test object (binutils_test) on Darwin, it
-   # is never used in real circumstances
-   if [[ ${CHOST} == *-darwin* ]] ; then
-   local 
libmac64="${EPREFIX}"/usr/lib/go/src/cmd/vendor/github.com/
- 
libmac64+=google/pprof/internal/binutils/testdata/lib_mac_64
-   install_name_tool -id "${libmac64}" "${D}${libmac64}"
-   fi
 }
 
 pkg_postinst() {

diff --git a/dev-lang/go/go-.ebuild b/dev-lang/go/go-.ebuild
index 6bb792691ce..39d69abc7b5 100644
--- a/dev-lang/go/go-.ebuild
+++ b/dev-lang/go/go-.ebuild
@@ -181,14 +181,6 @@ src_install()
# install the @golang-rebuild set for Portage
insinto /usr/share/portage/config/sets
newins "${FILESDIR}"/go-sets.conf go.conf
-
-   # fix install_name for test object (binutils_test) on Darwin, it
-   # is never used in real circumstances
-   if [[ ${CHOST} == *-darwin* ]] ; then
-   local 
libmac64="${EPREFIX}"/usr/lib/go/src/cmd/vendor/github.com/
- 
libmac64+=google/pprof/internal/binutils/testdata/lib_mac_64
-   install_name_tool -id "${libmac64}" "${D}${libmac64}"
-   fi
 }
 
 pkg_postinst() {



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

2021-01-18 Thread Matt Turner
commit: 3412671ddb6fc70575148a8032c332a422a0b280
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Jan 18 21:18:42 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:18:42 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=3412671d

uid-gid.txt: migrate gdm to acct provider

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

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

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index fa26f8d..ad80fca 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -99,7 +99,7 @@ video -   27  baselayout
 render -   28  acct
 squid  31  31  historical  Removed from baselayout 
in 
[r1477](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1476=1477=2545)
 guest  -   31  baselayout-fbsd
-gdm32  32  historical  Removed from baselayout 
in 
[r1571](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1479=1571=2545)
+gdm32  32  acct
 xfs33  33  historical  X Font Server, removed 
from baselayout in 
[r1572](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1571=1572=2545)
 games  35  -   historical  Removed from baselayout 
in 
[r1478](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/passwd?limit_changes=0=1477=1478=2545)
 games  36  35  user.eclass Names configurable via 
eclass; group: deprecated by Council decision, removed from baselayout in 
[r1478](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/group?limit_changes=0=1477=1478=2545)



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

2021-01-18 Thread Matt Turner
commit: 625bc2d99ab7bc3285b889ca4e69beb2395ca1ed
Author: David Michael  gmail  com>
AuthorDate: Mon Dec 28 03:24:27 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=625bc2d9

gnome-base/gdm: GLEP 81, EAPI 7

Also replace pam_fprint with pam_fprintd since that is the only
version of the PAM module referenced in the code.

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 gnome-base/gdm/gdm-3.36.4.ebuild | 43 +++-
 1 file changed, 12 insertions(+), 31 deletions(-)

diff --git a/gnome-base/gdm/gdm-3.36.4.ebuild b/gnome-base/gdm/gdm-3.36.4.ebuild
index 8a86e224747..484f7ecbf18 100644
--- a/gnome-base/gdm/gdm-3.36.4.ebuild
+++ b/gnome-base/gdm/gdm-3.36.4.ebuild
@@ -1,11 +1,10 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-GNOME2_LA_PUNT="yes"
+EAPI=7
 GNOME2_EAUTORECONF="yes"
 
-inherit eutils gnome2 pam readme.gentoo-r1 systemd toolchain-funcs udev user
+inherit gnome2 pam readme.gentoo-r1 systemd toolchain-funcs udev
 
 DESCRIPTION="GNOME Display Manager for managing graphical display servers and 
user logins"
 HOMEPAGE="https://wiki.gnome.org/Projects/GDM;
@@ -72,6 +71,8 @@ COMMON_DEPEND="
 # fprintd is used via dbus by gdm-fingerprint-extension
 # gnome-session-3.6 needed to avoid freezing with orca
 RDEPEND="${COMMON_DEPEND}
+   acct-group/gdm
+   acct-user/gdm
>=gnome-base/gnome-session-3.6
>=gnome-base/gnome-shell-3.1.90
x11-apps/xhost
@@ -79,18 +80,19 @@ RDEPEND="${COMMON_DEPEND}
accessibility? (
>=app-accessibility/orca-3.10
gnome-extra/mousetweaks )
-   fprint? (
-   sys-auth/fprintd
-   sys-auth/pam_fprint )
+   fprint? ( sys-auth/fprintd[pam] )
 "
 DEPEND="${COMMON_DEPEND}
+   x11-base/xorg-proto
+"
+BDEPEND="
app-text/docbook-xml-dtd:4.1.2
dev-util/gdbus-codegen
dev-util/glib-utils
dev-util/itstool
+   >=gnome-base/dconf-0.20
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
-   x11-base/xorg-proto
test? ( >=dev-libs/check-0.9.4 )
app-text/yelp-tools
 " # yelp-tools needed for eautoreconf to not lose help docs (m4_ifdeffed 
YELP_HELP_INIT call and setup)
@@ -111,23 +113,6 @@ DOC_CONTENTS="
for smartcard support
 "
 
-pkg_setup() {
-   enewgroup gdm
-   enewgroup video # Just in case it hasn't been created yet
-   enewuser gdm -1 -1 /var/lib/gdm gdm,video
-
-   # For compatibility with certain versions of nvidia-drivers, etc., need 
to
-   # ensure that gdm user is in the video group
-   if ! egetent group video | grep -q gdm; then
-   # FIXME XXX: is this at all portable, ldap-safe, etc.?
-   # XXX: egetent does not have a 1-argument form, so we can't use 
it to
-   # get the list of gdm's groups
-   local g=$(groups gdm)
-   elog "Adding user gdm to video group"
-   usermod -G video,${g// /,} gdm || die "Adding user gdm to video 
group failed"
-   fi
-}
-
 src_prepare() {
# ssh-agent handling must be done at xinitrc.d, bug #220603
eapply "${FILESDIR}/${PN}-2.32.0-xinitrc-ssh-agent.patch"
@@ -209,10 +194,6 @@ src_install() {
newexe "${FILESDIR}/49-keychain-r1" 49-keychain
newexe "${FILESDIR}/50-ssh-agent-r1" 50-ssh-agent
 
-   # gdm user's home directory
-   keepdir /var/lib/gdm
-   fowners gdm:gdm /var/lib/gdm
-
if ! use bluetooth-sound ; then
# Workaround 
https://gitlab.freedesktop.org/pulseaudio/pulseaudio/merge_requests/10
# bug #679526
@@ -235,9 +216,9 @@ pkg_postinst() {
 
# bug #669146; gdm may crash if /var/lib/gdm subdirs are not owned by 
gdm:gdm
ret=0
-   ebegin "Fixing "${EROOT}"var/lib/gdm ownership"
-   chown --no-dereference gdm:gdm "${EROOT}var/lib/gdm" || ret=1
-   for d in "${EROOT}var/lib/gdm/"{.cache,.color,.config,.dbus,.local}; do
+   ebegin "Fixing "${EROOT}"/var/lib/gdm ownership"
+   chown --no-dereference gdm:gdm "${EROOT}/var/lib/gdm" || ret=1
+   for d in "${EROOT}/var/lib/gdm/"{.cache,.color,.config,.dbus,.local}; do
[[ ! -e "${d}" ]] || chown --no-dereference -R gdm:gdm "${d}" 
|| ret=1
done
eend ${ret}



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

2021-01-18 Thread Matt Turner
commit: a486cc3851e20695da4c02d716aab87a50666c48
Author: David Michael  gmail  com>
AuthorDate: Mon Jan 11 16:15:23 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a486cc38

x11-libs/colord-gtk: Version bump to 0.2.0

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/colord-gtk/Manifest   |  1 +
 x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild| 59 ++
 .../colord-gtk-0.2.0-optional-introspection.patch  | 41 +++
 3 files changed, 101 insertions(+)

diff --git a/x11-libs/colord-gtk/Manifest b/x11-libs/colord-gtk/Manifest
index 8c96fb2f5d3..5397459c0d5 100644
--- a/x11-libs/colord-gtk/Manifest
+++ b/x11-libs/colord-gtk/Manifest
@@ -1 +1,2 @@
 DIST colord-gtk-0.1.26.tar.xz 280380 BLAKE2B 
6ddd52b81726f21a2c376b1ab0c773f7670859882f3e5fe6038bf8728d5a9f3308b469b4e563dc784873b5b9cbed8ca671552e9bcb9cbccfaf28cd8f85e0b5bd
 SHA512 
14f59110e2bc100c542323a68566102e9fb5ab44b679da21bf29101960dae38e646e926d884e14f1838a5991e6ebe15af72d5338723265868eadd5f026545c3d
+DIST colord-gtk-0.2.0.tar.xz 20480 BLAKE2B 
73bbb349e84e5bfd28358cbe22609de84b86f90eb96a3fedc6e30a1764d9c667cd82408116cdf65591496ab4e2f59f2b415cd1aa8f995fe2162ee4d649c5d496
 SHA512 
797eebfd4451fcae4cf70835f5de3d9bdc9e8401ddb82a2fef2310002f28bf523b599c587ff35eb89ceff38a245a6311129ad90b107f837ac4f42f268c9aad97

diff --git a/x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild 
b/x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild
new file mode 100644
index 000..d1ec57ccb2b
--- /dev/null
+++ b/x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit meson vala
+
+DESCRIPTION="GTK support library for colord"
+HOMEPAGE="https://www.freedesktop.org/software/colord/;
+SRC_URI="https://www.freedesktop.org/software/colord/releases/${P}.tar.xz;
+
+LICENSE="LGPL-3+"
+SLOT="0/1" # subslot = libcolord-gtk soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+
+IUSE="doc +introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.28:2
+   x11-libs/gtk+:3[introspection?]
+   >=x11-misc/colord-0.1.27:=[introspection?,vala?]
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+   dev-libs/libxslt
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+   doc? (
+   app-text/docbook-xml-dtd:4.1.2
+   >=dev-util/gtk-doc-1.9
+   )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.8 )
+   vala? ( $(vala_depend) )
+"
+
+RESTRICT="test" # Tests need a display device with a default color profile set
+
+PATCHES=(
+   "${FILESDIR}/${P}-optional-introspection.patch"
+)
+
+src_prepare() {
+   use vala && vala_src_prepare
+   default
+}
+
+src_configure() {
+   local -a emesonargs=(
+   -Dgtk2=false
+   -Dman=true
+   -Dtests=false
+   $(meson_use doc docs)
+   $(meson_use introspection)
+   $(meson_use vala vapi)
+   )
+   meson_src_configure
+}

diff --git 
a/x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch 
b/x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch
new file mode 100644
index 000..543b443e3ae
--- /dev/null
+++ b/x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch
@@ -0,0 +1,41 @@
+From 0fb3425873a04ba100b57d59449d27bba6768ff3 Mon Sep 17 00:00:00 2001
+From: David Michael 
+Date: Sat, 9 Jan 2021 14:42:39 -0500
+Subject: [PATCH] Make introspection optional in meson
+
+It defaults to enabled to preserve existing behavior.
+---
+ libcolord-gtk/meson.build | 2 ++
+ meson_options.txt | 1 +
+ 2 files changed, 3 insertions(+)
+
+diff --git a/libcolord-gtk/meson.build b/libcolord-gtk/meson.build
+index c4fe704..18f36a0 100644
+--- a/libcolord-gtk/meson.build
 b/libcolord-gtk/meson.build
+@@ -61,6 +61,7 @@ pkgg.generate(
+   description : 'colord-gtk is GTK integration for libcolord',
+ )
+ 
++if get_option('introspection')
+ libcolord_gtk_gir = gnome.generate_gir(
+   colord_gtk,
+   sources : [
+@@ -97,6 +98,7 @@ libcolord_gtk_gir = gnome.generate_gir(
+   ],
+   install : true
+ )
++endif
+ 
+ if get_option('vapi')
+   gnome.generate_vapi(
+diff --git a/meson_options.txt b/meson_options.txt
+index 1c3cecc..a4efa84 100644
+--- a/meson_options.txt
 b/meson_options.txt
+@@ -1,4 +1,5 @@
+ option('gtk2', type : 'boolean', value : false, description : 'Build Gtk2 
library')
++option('introspection', type : 'boolean', value : true, description : 'Build 
gobject-introspection typelib files')
+ option('vapi', type : 'boolean', value : false, description : 'Build vala 
bindings')
+ option('tests', type : 'boolean', value : true, 

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

2021-01-18 Thread Matt Turner
commit: 183ba351bb79bbee602c9ef8f8e2bd12f848a2f5
Author: David Michael  gmail  com>
AuthorDate: Mon Jan 18 01:16:13 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=183ba351

dev-libs/libsigc++: Version bump to 2.10.6

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 dev-libs/libsigc++/Manifest|  1 +
 dev-libs/libsigc++/libsigc++-2.10.6.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-libs/libsigc++/Manifest b/dev-libs/libsigc++/Manifest
index 0b2dd87dbdf..8d41655bf0f 100644
--- a/dev-libs/libsigc++/Manifest
+++ b/dev-libs/libsigc++/Manifest
@@ -1,3 +1,4 @@
 DIST libsigc++-1.2.7.tar.bz2 326205 BLAKE2B 
b316460178224c0b8177ce9a236c69a8b737bf7356b290b59eaeb60b09285c61d113bfc7de89bd712c3c049a492f5cc36d205ac77816aff73e587e8a42ade520
 SHA512 
79fd9657219459bce64fc069dbcb054959e324b5d546b5f11acaae5e5bedcc4dca699a21c949e3f6b2ec0dbe1c3dba3981158e5950d0aaba5028445b2ad5740f
 DIST libsigc++-2.10.1.tar.xz 4062388 BLAKE2B 
3bd988acae78b7d463c966fa5c8da68b35d8a0b0bf4762811b7a9fdf82357b29aaa48d64e19f4cb6bd0f42ee70ad77a64a4905d1ad609dbe11ca8ff7596527c6
 SHA512 
e2bd7b1a97019be010dee1594271bbf7cae92b28e31dcb3c6d7d60643a0996233f0a75a9337b4afcb5b7dc453bfc3159d82f6daacfbcd8993a39ccecaf811bb2
 DIST libsigc++-2.10.3.tar.xz 4558428 BLAKE2B 
fcaaae7bf3a3aea30c0b8b63d7a7c5fa137d16128ef9652b611613118e323f7bcabafe28d42407df0e08c323c540143c152ac91e04e9f101c1971ddaf0f9144c
 SHA512 
3c7f90be84724e39073c05624ad2bee6a5835e2c6cb6cf9e605edc6574eb7cd99ec153aaca6e8fcf7e3a6c031c4e9c334da32d04177d36788e64a17667c70b4e
+DIST libsigc++-2.10.6.tar.xz 4791016 BLAKE2B 
c50283da7eb3ec1b595514ac805c5fe0b4f7687ec77478c7c703ce8915ea72e065f4e7cbe53fb90c13b81d266df74cade8f5a5c0ff2dcc3880e852f02508eaf9
 SHA512 
7dd57c061defe323de5721d187145dcf63346311d8993eb6346a33789f26c8509c1bf5a73d55776cc5ebe85fb14d54107553a652dd42f452aed6aed20047b549

diff --git a/dev-libs/libsigc++/libsigc++-2.10.6.ebuild 
b/dev-libs/libsigc++/libsigc++-2.10.6.ebuild
new file mode 100644
index 000..444e6596071
--- /dev/null
+++ b/dev-libs/libsigc++/libsigc++-2.10.6.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit flag-o-matic gnome.org meson multilib-minimal
+
+DESCRIPTION="Typesafe callback system for standard C++"
+HOMEPAGE="https://libsigcplusplus.github.io/libsigcplusplus/
+   https://github.com/libsigcplusplus/libsigcplusplus;
+
+LICENSE="LGPL-2.1+"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+IUSE="doc static-libs test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )"
+BDEPEND="sys-devel/m4
+   doc? ( app-doc/doxygen[dot] )"
+
+multilib_src_configure() {
+   filter-flags -fno-exceptions #84263
+
+   local -a emesonargs=(
+   -Ddefault_library=$(usex static-libs both shared)
+   -Dbenchmark=$(usex test true false)
+   -Dbuild-documentation=$(multilib_native_usex doc true false)
+   -Dbuild-examples=false
+   )
+   meson_src_configure
+}
+
+multilib_src_compile() {
+   meson_src_compile
+}
+
+multilib_src_test() {
+   meson_src_test
+}
+
+multilib_src_install() {
+   meson_src_install
+}
+
+multilib_src_install_all() {
+   einstalldocs
+
+   # Note: html docs are installed into /usr/share/doc/libsigc++-2.0
+   # We can't use /usr/share/doc/${PF} because of links from glibmm etc. 
docs
+   if use doc; then
+   docinto examples
+   dodoc examples/*.cc
+   fi
+}



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

2021-01-18 Thread Matt Turner
commit: 3671ec86ed886d5454e740c51141bf2a342ab9dd
Author: David Michael  gmail  com>
AuthorDate: Mon Dec 28 03:14:32 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3671ec86

acct-group/gdm: new package

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/acct-group/gdm/gdm-0.ebuild b/acct-group/gdm/gdm-0.ebuild
new file mode 100644
index 000..2d82aac6f39
--- /dev/null
+++ b/acct-group/gdm/gdm-0.ebuild
@@ -0,0 +1,8 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+ACCT_GROUP_ID=32

diff --git a/acct-group/gdm/metadata.xml b/acct-group/gdm/metadata.xml
new file mode 100644
index 000..b79c2cda0f3
--- /dev/null
+++ b/acct-group/gdm/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+   
+



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

2021-01-18 Thread Matt Turner
commit: ab6f6d86b7ac0e3ecc4319f0f1641b4c8b00baff
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:48:36 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab6f6d86

x11-themes/sound-theme-freedesktop: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 .../sound-theme-freedesktop-0.8.ebuild| 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git 
a/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild 
b/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild
index f9fb1e97c17..f5677afbdc4 100644
--- a/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild
+++ b/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI=7
 
 DESCRIPTION="Default freedesktop.org sound theme following the XDG theming 
specification"
 HOMEPAGE="https://www.freedesktop.org/wiki/Specifications/sound-theme-spec;
@@ -10,9 +10,8 @@ 
SRC_URI="https://people.freedesktop.org/~mccann/dist/${P}.tar.bz2;
 LICENSE="GPL-2 LGPL-2 CC-BY-3.0 CC-BY-SA-2.0"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE=""
 
-RDEPEND=""
-DEPEND="sys-devel/gettext
-   dev-libs/glib:2
-   >=dev-util/intltool-0.40"
+BDEPEND="
+   >=dev-util/intltool-0.40
+   sys-devel/gettext
+"



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

2021-01-18 Thread Matt Turner
commit: 07857d304ff22343a50a14cb942c9d1ed33bd643
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:38:21 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07857d30

net-libs/libndp: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 net-libs/libndp/libndp-1.7.ebuild | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/net-libs/libndp/libndp-1.7.ebuild 
b/net-libs/libndp/libndp-1.7.ebuild
index 066a56c254e..d36cabf97b5 100644
--- a/net-libs/libndp/libndp-1.7.ebuild
+++ b/net-libs/libndp/libndp-1.7.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 inherit gnome2 multilib-minimal
 
 DESCRIPTION="Library for Neighbor Discovery Protocol"
@@ -10,13 +10,9 @@ SRC_URI="http://libndp.org/files/${P}.tar.gz;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-IUSE=""
 
 KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~sparc x86"
 
-DEPEND=""
-RDEPEND=""
-
 multilib_src_configure() {
ECONF_SOURCE="${S}" \
gnome2_src_configure \



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

2021-01-18 Thread Matt Turner
commit: f1ca05b2313d5e1c889011acd727bbba6ccffe99
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:37:02 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ca05b2

media-libs/libcanberra: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libcanberra/libcanberra-0.30-r5.ebuild | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/media-libs/libcanberra/libcanberra-0.30-r5.ebuild 
b/media-libs/libcanberra/libcanberra-0.30-r5.ebuild
index dd0bace15bf..344dbc29587 100644
--- a/media-libs/libcanberra/libcanberra-0.30-r5.ebuild
+++ b/media-libs/libcanberra/libcanberra-0.30-r5.ebuild
@@ -1,8 +1,8 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
-inherit autotools-multilib eutils ltprune systemd
+EAPI=7
+inherit multilib-minimal systemd
 
 DESCRIPTION="Portable sound event library"
 HOMEPAGE="http://git.0pointer.net/libcanberra.git/;
@@ -13,7 +13,7 @@ SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 IUSE="alsa gnome gstreamer +gtk +gtk3 oss pulseaudio +sound tdb udev"
 
-COMMON_DEPEND="
+DEPEND="
dev-libs/libltdl:0[${MULTILIB_USEDEP}]
media-libs/libvorbis[${MULTILIB_USEDEP}]
alsa? (
@@ -31,22 +31,22 @@ COMMON_DEPEND="
pulseaudio? ( >=media-sound/pulseaudio-0.9.11[${MULTILIB_USEDEP}] )
tdb? ( sys-libs/tdb:=[${MULTILIB_USEDEP}] )
 "
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="${DEPEND}
gnome? (
gnome-base/dconf
gnome-base/gsettings-desktop-schemas )
sound? ( x11-themes/sound-theme-freedesktop )" # Required for 
index.theme wrt #323379
-DEPEND="${COMMON_DEPEND}
+BDEPEND="
app-arch/xz-utils
virtual/pkgconfig
 "
 
 REQUIRED_USE="udev? ( alsa )"
 
-src_prepare() {
+PATCHES=(
# gtk: Don't assume all GdkDisplays are GdkX11Displays: 
broadway/wayland (from 'master')
-   epatch "${FILESDIR}/${PN}-0.30-wayland.patch"
-}
+   "${FILESDIR}/${PN}-0.30-wayland.patch"
+)
 
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
@@ -59,9 +59,9 @@ multilib_src_configure() {
$(use_enable gtk3) \
$(use_enable tdb) \
$(use_enable udev) \
-   $(systemd_with_unitdir) \
--disable-lynx \
-   --disable-gtk-doc
+   --disable-gtk-doc \
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
 
if multilib_is_native_abi; then
ln -s "${S}"/gtkdoc/html gtkdoc/html || die
@@ -75,7 +75,7 @@ multilib_src_install() {
 
 multilib_src_install_all() {
einstalldocs
-   prune_libtool_files --modules
+   find "${ED}" -type f -name '*.la' -delete || die
 
# This is needed for desktops different than GNOME, bug #520550
exeinto /etc/X11/xinit/xinitrc.d



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

2021-01-18 Thread Matt Turner
commit: c0eb758e8674f1c2f0388edec69c316d42ef8162
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 01:54:41 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:19 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=c0eb758e

uid-gid.txt: Add UID/GID for colord (350)

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index 441780e..fa26f8d 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -264,7 +264,7 @@ chronograf  344 344 acct
 docker_auth345 345 acct
 unifi-video348 348 acct
 ushare 349 349 acct
-colord 350 350 requested
+colord 350 350 acct
 geoclue351 351 acct
 boinc  352 352 acct
 dnscrypt-proxy 353 353 acct



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

2021-01-18 Thread Matt Turner
commit: ffd9b9594d4b08f67a35a2fbe55e5c57308d20ef
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:34:47 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd9b959

media-libs/gsound: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 media-libs/gsound/gsound-1.0.2-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-libs/gsound/gsound-1.0.2-r1.ebuild 
b/media-libs/gsound/gsound-1.0.2-r1.ebuild
index bbb5fd9d277..eff02a07beb 100644
--- a/media-libs/gsound/gsound-1.0.2-r1.ebuild
+++ b/media-libs/gsound/gsound-1.0.2-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 VALA_USE_DEPEND="vapigen"
 
 inherit gnome2 vala
@@ -20,7 +20,8 @@ RDEPEND="
media-libs/libcanberra
introspection? ( >=dev-libs/gobject-introspection-1.2.9:= )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
>=dev-util/gtk-doc-am-1.20
virtual/pkgconfig
vala? ( $(vala_depend) )



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

2021-01-18 Thread Matt Turner
commit: a797087101d3ee333f2e145b15645be334cace24
Author: David Michael  gmail  com>
AuthorDate: Mon Dec 28 03:15:33 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7970871

acct-user/gdm: new package

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/acct-user/gdm/gdm-0.ebuild b/acct-user/gdm/gdm-0.ebuild
new file mode 100644
index 000..dcbdc40a98e
--- /dev/null
+++ b/acct-user/gdm/gdm-0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="User for running GDM"
+ACCT_USER_ID=32
+ACCT_USER_GROUPS=( gdm video )
+ACCT_USER_HOME=/var/lib/gdm
+
+acct-user_add_deps

diff --git a/acct-user/gdm/metadata.xml b/acct-user/gdm/metadata.xml
new file mode 100644
index 000..b79c2cda0f3
--- /dev/null
+++ b/acct-user/gdm/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+   
+



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

2021-01-18 Thread Matt Turner
commit: 5f276eaebae13c45028ccd53eaf2a95bc19006e7
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:29:54 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f276eae

gnome-base/gnome-keyring: EAPI 7

This puts the eselect dependency in both RDEPEND and BDEPEND until
IDEPEND exists.

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 gnome-base/gnome-keyring/gnome-keyring-3.36.0.ebuild | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnome-base/gnome-keyring/gnome-keyring-3.36.0.ebuild 
b/gnome-base/gnome-keyring/gnome-keyring-3.36.0.ebuild
index c28cbcaedec..9315b7b2dab 100644
--- a/gnome-base/gnome-keyring/gnome-keyring-3.36.0.ebuild
+++ b/gnome-base/gnome-keyring/gnome-keyring-3.36.0.ebuild
@@ -1,8 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-GNOME2_LA_PUNT="yes"
+EAPI=7
 PYTHON_COMPAT=( python3_{6..9} )
 
 inherit fcaps gnome2 pam python-any-r1 virtualx
@@ -19,16 +18,18 @@ KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 
sparc x86 ~amd64-linux ~x
 # Replace gkd gpg-agent with pinentry[gnome-keyring] one, bug #547456
 RDEPEND="
>=app-crypt/gcr-3.27.90:=[gtk]
-   >=dev-libs/glib-2.44:2
+   >=app-crypt/gnupg-2.0.28:=
+   >=app-eselect/eselect-pinentry-0.5
app-misc/ca-certificates
+   >=dev-libs/glib-2.44:2
>=dev-libs/libgcrypt-1.2.2:0=
caps? ( sys-libs/libcap-ng )
pam? ( sys-libs/pam )
selinux? ( sec-policy/selinux-gnome )
-   >=app-crypt/gnupg-2.0.28:=
ssh-agent? ( net-misc/openssh )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
>=app-eselect/eselect-pinentry-0.5
app-text/docbook-xml-dtd:4.3
dev-libs/libxslt



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

2021-01-18 Thread Matt Turner
commit: b5b8aa6d19de6653bf4c9e063f8ccfa2cc11cc46
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:20:56 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5b8aa6d

x11-misc/colord: GLEP 81, EAPI 7, support cross-compiling

This package needs to compile two programs that are executable at
build time, but its build system doesn't understand this.  As a
workaround, it starts a native build that overrides pkg-config
results to skip having to add deps to BDEPEND for configure.  The
target build then specifies paths to the native build so everything
executes as expected.

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 x11-misc/colord/colord-1.3.5.ebuild | 50 +++--
 1 file changed, 37 insertions(+), 13 deletions(-)

diff --git a/x11-misc/colord/colord-1.3.5.ebuild 
b/x11-misc/colord/colord-1.3.5.ebuild
index ad4394daeb7..a58726ebee6 100644
--- a/x11-misc/colord/colord-1.3.5.ebuild
+++ b/x11-misc/colord/colord-1.3.5.ebuild
@@ -1,11 +1,11 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-GNOME2_LA_PUNT="yes"
+EAPI=7
+GNOME2_EAUTORECONF="yes"
 VALA_USE_DEPEND="vapigen"
 
-inherit autotools bash-completion-r1 check-reqs gnome2 user systemd udev vala 
multilib-minimal
+inherit bash-completion-r1 check-reqs gnome2 systemd udev vala 
multilib-minimal toolchain-funcs
 
 DESCRIPTION="System service to accurately color manage input and output 
devices"
 HOMEPAGE="https://www.freedesktop.org/software/colord/;
@@ -23,7 +23,7 @@ REQUIRED_USE="
vala? ( introspection )
 "
 
-COMMON_DEPEND="
+DEPEND="
dev-db/sqlite:3=[${MULTILIB_USEDEP}]
>=dev-libs/glib-2.44.0:2[${MULTILIB_USEDEP}]
>=media-libs/lcms-2.6:2=[${MULTILIB_USEDEP}]
@@ -33,19 +33,24 @@ COMMON_DEPEND="
policykit? ( >=sys-auth/polkit-0.104 )
scanner? (
media-gfx/sane-backends
-   sys-apps/dbus )
+   sys-apps/dbus
+   )
systemd? ( >=sys-apps/systemd-44:0= )
udev? (
dev-libs/libgudev:=[${MULTILIB_USEDEP}]
-   virtual/udev
virtual/libudev:=[${MULTILIB_USEDEP}]
+   virtual/udev
)
 "
-RDEPEND="${COMMON_DEPEND}
-   !media-gfx/shared-color-profiles
+RDEPEND="${DEPEND}
+   acct-group/colord
+   acct-user/colord
!<=media-gfx/colorhug-client-0.1.13
+   !media-gfx/shared-color-profiles
 "
-DEPEND="${COMMON_DEPEND}
+BDEPEND="
+   acct-group/colord
+   acct-user/colord
dev-libs/libxslt
>=dev-util/gtk-doc-am-1.9
>=dev-util/intltool-0.35
@@ -54,6 +59,11 @@ DEPEND="${COMMON_DEPEND}
extra-print-profiles? ( media-gfx/argyllcms )
vala? ( $(vala_depend) )
 "
+# These dependencies are required to build native build-time programs.
+BDEPEND="${BDEPEND}
+   dev-libs/glib:2
+   media-libs/lcms
+"
 
 # FIXME: needs pre-installed dbus service files
 RESTRICT="test"
@@ -68,8 +78,6 @@ pkg_pretend() {
 
 pkg_setup() {
use extra-print-profiles && check-reqs_pkg_setup
-   enewgroup colord
-   enewuser colord -1 -1 /var/lib/colord colord
 }
 
 src_prepare() {
@@ -78,13 +86,21 @@ src_prepare() {
src/sensors/cd-sensor-argyll.c \
configure.ac || die
 
-   eautoreconf
use vala && vala_src_prepare
gnome2_src_prepare
multilib_copy_sources
 }
 
 multilib_src_configure() {
+   if multilib_is_native_abi && tc-is-cross-compiler; then
+   mkdir -p "${S}-native"
+   pushd "${S}-native" >/dev/null 2>&1 || die
+   ECONF_SOURCE="${S}" econf_build --enable-static \
+   --disable-{argyllcms-sensor,print-profiles,shared,udev} 
\
+   
{BASH_COMPLETION,GUDEV,GUSB,POLKIT,SQLITE,UDEV}_{CFLAG,LIB}S=-DSKIP
+   popd >/dev/null 2>&1 || die
+   fi
+
# Reverse tools require gusb
# bash-completion test does not work on gentoo
local myconf=(
@@ -115,7 +131,15 @@ multilib_src_configure() {
 
 multilib_src_compile() {
if multilib_is_native_abi; then
-   gnome2_src_compile
+   if tc-is-cross-compiler; then
+   emake -C "${S}-native/lib/colord" libcolord.la
+   emake -C "${S}-native/client" cd-create-profile cd-it8
+   emake \
+   
CD_CREATE_PROFILE="${S}-native/client/cd-create-profile" \
+   CD_IT8="${S}-native/client/cd-it8"
+   else
+   emake
+   fi
else
emake -C lib/colord
use gusb && emake -C lib/colorhug



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

2021-01-18 Thread Matt Turner
commit: 40ce52f68ec03430cbe84366942bda47f3de6489
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:31:38 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ce52f6

gnome-base/libgnomekbd: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 gnome-base/libgnomekbd/libgnomekbd-3.26.1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnome-base/libgnomekbd/libgnomekbd-3.26.1.ebuild 
b/gnome-base/libgnomekbd/libgnomekbd-3.26.1.ebuild
index 8ba0aec7a5c..8b6422e1ad9 100644
--- a/gnome-base/libgnomekbd/libgnomekbd-3.26.1.ebuild
+++ b/gnome-base/libgnomekbd/libgnomekbd-3.26.1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit gnome2
 
@@ -21,7 +21,8 @@ RDEPEND="
 
introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
dev-util/glib-utils
>=sys-devel/gettext-0.19.4
virtual/pkgconfig



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

2021-01-18 Thread Matt Turner
commit: 18441a4f7e04082fb7de2e32c1f84ceed9a65dae
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:33:36 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18441a4f

gnome-extra/zenity: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 gnome-extra/zenity/zenity-3.32.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnome-extra/zenity/zenity-3.32.0.ebuild 
b/gnome-extra/zenity/zenity-3.32.0.ebuild
index 64bf0a289f7..5d5ab54c9b1 100644
--- a/gnome-extra/zenity/zenity-3.32.0.ebuild
+++ b/gnome-extra/zenity/zenity-3.32.0.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 inherit gnome2
 
 DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
@@ -22,7 +22,8 @@ RDEPEND="
libnotify? ( >=x11-libs/libnotify-0.6.1:= )
webkit? ( >=net-libs/webkit-gtk-2.8.1:4 )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
dev-util/itstool
>=sys-devel/gettext-0.19.4
virtual/pkgconfig



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

2021-01-18 Thread Matt Turner
commit: 16b72e6e3d0ecd15833f8000cf519572a385e920
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:12:08 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b72e6e

acct-user/colord: new package

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/acct-user/colord/colord-0.ebuild b/acct-user/colord/colord-0.ebuild
new file mode 100644
index 000..e5387b5b0f7
--- /dev/null
+++ b/acct-user/colord/colord-0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="User for running the colord service"
+ACCT_USER_ID=350
+ACCT_USER_GROUPS=( colord )
+ACCT_USER_HOME=/var/lib/colord
+
+acct-user_add_deps

diff --git a/acct-user/colord/metadata.xml b/acct-user/colord/metadata.xml
new file mode 100644
index 000..b79c2cda0f3
--- /dev/null
+++ b/acct-user/colord/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+   
+



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

2021-01-18 Thread Matt Turner
commit: 817f07236de8779110a64c4c626a49caec8d5f52
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:04:16 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817f0723

vala.eclass: make has_version aware of ROOT for EAPI 7

The vala dependencies are declared in BDEPEND since EAPI 7 so that
the valac command is natively executable.  With no arguments, the
has_version function would look for a cross-compiled vala package
in the target ROOT and always fail.

Signed-off-by: David Michael  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18813
Signed-off-by: Matt Turner  gentoo.org>

 eclass/vala.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index 52899f163dc..88c5231286a 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -102,7 +102,7 @@ vala_best_api_version() {
u=$(_vala_use_depend)
 
for v in $(vala_api_versions); do
-   has_version "dev-lang/vala:${v}${u}" && echo "${v}" && return
+   has_version $([[ $EAPI == [1-6] ]] || echo -b) 
"dev-lang/vala:${v}${u}" && echo "${v}" && return
done
 }
 
@@ -136,7 +136,7 @@ vala_src_prepare() {
fi
 
if [[ ${version} ]]; then
-   has_version "dev-lang/vala:${version}" || die "No installed 
vala:${version}"
+   has_version $([[ $EAPI == [1-6] ]] || echo -b) 
"dev-lang/vala:${version}" || die "No installed vala:${version}"
else
version=$(vala_best_api_version)
[[ ${version} ]] || die "No installed vala in $(vala_depend)"



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

2021-01-18 Thread Matt Turner
commit: 8b037ccee14ce5fc7c3bfc57a57f37e64f9b932d
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:32:40 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b037cce

gnome-base/libgtop: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 gnome-base/libgtop/libgtop-2.40.0-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnome-base/libgtop/libgtop-2.40.0-r1.ebuild 
b/gnome-base/libgtop/libgtop-2.40.0-r1.ebuild
index 454fa3ec224..a724366d9e2 100644
--- a/gnome-base/libgtop/libgtop-2.40.0-r1.ebuild
+++ b/gnome-base/libgtop/libgtop-2.40.0-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 GNOME2_EAUTORECONF="yes"
 inherit flag-o-matic gnome2
 
@@ -18,7 +18,8 @@ RDEPEND="
>=dev-libs/glib-2.26:2
introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
>=dev-util/gtk-doc-am-1.4
>=sys-devel/gettext-0.19.6
virtual/pkgconfig



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

2021-01-18 Thread Matt Turner
commit: 6a35303a520bebd4789cf6d01969af03a86feb0f
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:11:36 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a35303a

acct-group/colord: new package

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

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

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

diff --git a/acct-group/colord/metadata.xml b/acct-group/colord/metadata.xml
new file mode 100644
index 000..b79c2cda0f3
--- /dev/null
+++ b/acct-group/colord/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+   
+



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

2021-01-18 Thread Matt Turner
commit: 804684d75c94c8351babcc4b974b7c5280fb0c43
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:27:09 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 18 21:09:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=804684d7

app-arch/gnome-autoar: EAPI 7

Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 app-arch/gnome-autoar/gnome-autoar-0.2.4.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-arch/gnome-autoar/gnome-autoar-0.2.4.ebuild 
b/app-arch/gnome-autoar/gnome-autoar-0.2.4.ebuild
index 136e3777af7..ff4e408cbc9 100644
--- a/app-arch/gnome-autoar/gnome-autoar-0.2.4.ebuild
+++ b/app-arch/gnome-autoar/gnome-autoar-0.2.4.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 VALA_USE_DEPEND="vapigen"
 
 inherit gnome2 vala
@@ -22,7 +22,8 @@ RDEPEND="
gtk? ( >=x11-libs/gtk+-3.2:3[introspection?] )
introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
>=dev-util/gtk-doc-am-1.14
virtual/pkgconfig
vala? ( $(vala_depend) )



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

2021-01-18 Thread Alfredo Tupone
commit: fe6f990bab896f30ed60122b67199833c5068cee
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Mon Jan 18 21:07:17 2021 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Jan 18 21:07:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe6f990b

app-misc/geneweb: do not use incoming camlp5-8.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Alfredo Tupone  gentoo.org>

 .../{geneweb-7.0.0-r1.ebuild => geneweb-7.0.0-r2.ebuild} | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-misc/geneweb/geneweb-7.0.0-r1.ebuild 
b/app-misc/geneweb/geneweb-7.0.0-r2.ebuild
similarity index 93%
rename from app-misc/geneweb/geneweb-7.0.0-r1.ebuild
rename to app-misc/geneweb/geneweb-7.0.0-r2.ebuild
index b7c12813fba..92450339206 100644
--- a/app-misc/geneweb/geneweb-7.0.0-r1.ebuild
+++ b/app-misc/geneweb/geneweb-7.0.0-r2.ebuild
@@ -15,14 +15,14 @@ IUSE="+ocamlopt"
 RESTRICT="strip"
 
 RDEPEND="dev-lang/ocaml[ocamlopt?]
-   dev-ml/camlp5[ocamlopt?]
+   =dev-ml/markup-1.0.0
-   dev-ml/unidecode
-   dev-ml/calendars"
+   dev-ml/jingoo:=
+   dev-ml/uunf:=
+   >=dev-ml/markup-1.0.0:=
+   dev-ml/unidecode:=
+   dev-ml/calendars:="
 DEPEND="${RDEPEND}
dev-ml/cppo"
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Archive_Tar/

2021-01-18 Thread Brian Evans
commit: b6ec6173b5c90836ce7aa575c974d42a09772a12
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Jan 18 20:58:05 2021 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Jan 18 20:58:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6ec6173

dev-php/PEAR-Archive_Tar: Security version bump for 1.4.12

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

 dev-php/PEAR-Archive_Tar/Manifest  |  1 +
 .../PEAR-Archive_Tar-1.4.12.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-php/PEAR-Archive_Tar/Manifest 
b/dev-php/PEAR-Archive_Tar/Manifest
index d639d34ab86..422b41bf98b 100644
--- a/dev-php/PEAR-Archive_Tar/Manifest
+++ b/dev-php/PEAR-Archive_Tar/Manifest
@@ -1 +1,2 @@
 DIST Archive_Tar-1.4.11.tgz 21556 BLAKE2B 
f7e450f4581400159099dba023192ec4026da8867c675119001085651c20315523a58180e0ccd4528e3b1764e222945055702e0fd8e42bb5976b891230351f29
 SHA512 
a67ff191eb1d814094fc752b58b5d4b4d3db0fd2476fce403f8e5cac49a35fd1219167817dc84d6f957af87d326435aef000e2e0b16357a0d051ab407b76d2cc
+DIST Archive_Tar-1.4.12.tgz 21665 BLAKE2B 
fc4d2d5128bfc02da5f7e2465834e2ff14554188ede7899856f200935a850c35bb74e6fcca5c4c4ae641a575725a3edba2878376a587304f133c8f16e1ee9336
 SHA512 
9f2e6ca4628ba4ec95a324c4a706b2d01d2323b5e5e77f1cc7425784d1a35d139b1604bffca10af8b04c4cc875cb6b1f40715a00208cd042aba37f089a586497

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.12.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.12.ebuild
new file mode 100644
index 000..02c0db09b3a
--- /dev/null
+++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.12.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/PEAR-/}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Tar file management class"
+HOMEPAGE="https://pear.php.net/package/Archive_Tar;
+SRC_URI="https://pear.php.net/get/${MY_P}.tgz;
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE=""
+
+# bzip2 and zlib are needed for compressed tarballs, and there's one
+# call to preg_match to test paths against a pattern of files and
+# directories that will be ignored.
+RDEPEND="dev-lang/php:*[bzip2,pcre(+),zlib]"
+PDEPEND="dev-php/PEAR-PEAR"
+DEPEND=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+   insinto /usr/share/php
+   doins -r Archive
+
+   dodoc docs/*
+
+   insinto /usr/share/php/.packagexml
+   newins "${WORKDIR}/package.xml" "${MY_P}.xml"
+}
+
+pkg_postinst() {
+   # It is not critical to complete so only warn on failure
+   if [[ -f "${EROOT}/usr/share/php/.packagexml/${MY_P}.xml" && \
+   -x "${EROOT}/usr/bin/peardev" ]] ; then
+   "${EROOT}/usr/bin/peardev" install -nrO --force \
+   "${EROOT}/usr/share/php/.packagexml/${MY_P}.xml" 2> 
/dev/null \
+   || ewarn "Failed to insert package into local PEAR 
database"
+   fi
+}
+
+pkg_postrm() {
+   if [[ -x "${EROOT}/usr/bin/peardev" ]]; then
+   "${EROOT}/usr/bin/peardev" uninstall -nrO 
"pear.php.net/${MY_PN}"
+   fi
+}



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

2021-01-18 Thread Sam James
commit: 2745e7888a03c2f06f18c364cea8f55f546c913e
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 20:38:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 20:38:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2745e788

dev-libs/protobuf: Stabilize 3.14.0 sparc, #763747

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

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

diff --git a/dev-libs/protobuf/protobuf-3.14.0.ebuild 
b/dev-libs/protobuf/protobuf-3.14.0.ebuild
index d1e71d4e502..45e38f15fb6 100644
--- a/dev-libs/protobuf/protobuf-3.14.0.ebuild
+++ b/dev-libs/protobuf/protobuf-3.14.0.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/25"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="emacs examples static-libs test zlib"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-boot/efibootmgr/files/, sys-boot/efibootmgr/

2021-01-18 Thread Mike Gilbert
commit: 9f6631180eab5e24be3e8a2b09c06d226ff7e1ac
Author: Theo Anderson  posteo  de>
AuthorDate: Mon Jan 18 20:28:02 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jan 18 20:34:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f663118

sys-boot/efibootmgr: EAPI 7, version bump

Closes: https://bugs.gentoo.org/587094
Closes: https://bugs.gentoo.org/673536
Closes: https://bugs.gentoo.org/557248
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Theo Anderson  posteo.de>
Signed-off-by: Mike Gilbert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/19098

 sys-boot/efibootmgr/Manifest   |  1 +
 sys-boot/efibootmgr/efibootmgr-17.ebuild   | 39 ++
 .../efibootmgr/files/efibootmgr-17-clang.patch | 82 ++
 .../efibootmgr-17-fix-efivar-37-conflict.patch | 14 
 4 files changed, 136 insertions(+)

diff --git a/sys-boot/efibootmgr/Manifest b/sys-boot/efibootmgr/Manifest
index 299c980bdb8..9eb28d6dd16 100644
--- a/sys-boot/efibootmgr/Manifest
+++ b/sys-boot/efibootmgr/Manifest
@@ -1,3 +1,4 @@
 DIST efibootmgr-14.tar.bz2 34972 BLAKE2B 
78490756c5fd449f4319b79e0818e9d80340bd487f57d0de34f79f48cc24eb7b9c7309b535d00efad4babd40904d4cfb085cca278170625a1e875961e423f5dd
 SHA512 
97935f8752440ce236162e174ea3404e907ebddc5877d597a97813da76ad580689fc2e97044885fc860a12a473af7183242b6120e78e53243d35e569fb002baf
 DIST efibootmgr-15.tar.bz2 35476 BLAKE2B 
19b7c9ce51f3b930b2d59fa4a594c7a8bf5f1c7aa3224049e88cdafe82991799b1b719ec68c80131027f70c16bd19e38157f5d0bc7761843959410c667aa4070
 SHA512 
d9d9eef14d373d5da88141e8105f754fea4c039755ed0a0cb9b3c9c2bb285733ad930fd912df42075fe2cf750585699307b067f594d8e65269b3b8a5a00b1cd1
 DIST efibootmgr-16.tar.bz2 36603 BLAKE2B 
3d09a9d3c4ecd48010315fccae60ab408c0d08e9c734e86a944130ea03e038835fa08745819f5353efbbe36f5017be64faded4b625ef0a0b55d4ca0d612ef232
 SHA512 
936318c7163c07b716f89be3d830957d9db68ba1b059223f7ea3d9eafe0dbf1c91b9aee096f5aed70955c6052c3b8547295c0a47f17cdf43788259d87d1990b9
+DIST efibootmgr-17.tar.gz 41643 BLAKE2B 
a1995a5df74766f762d2eb971fd6095edea8d0a498c9dd1100515866b40c38ae2f299aae51f12767850ec23fbe4709c2c7428dd48755fbec499669b69f6432c9
 SHA512 
10c7ad9a79f23dcd4708dc4f42701196af7aa11f5e9a6468ea51f7013d4caeba6c92527ba1304f6e3b2ef3b51b3b69ea1a30f81bb099a8aea49eeb30eb631e1d

diff --git a/sys-boot/efibootmgr/efibootmgr-17.ebuild 
b/sys-boot/efibootmgr/efibootmgr-17.ebuild
new file mode 100644
index 000..a6d695bcfe7
--- /dev/null
+++ b/sys-boot/efibootmgr/efibootmgr-17.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="User-space application to modify the EFI boot manager"
+HOMEPAGE="https://github.com/rhinstaller/efibootmgr;
+SRC_URI="https://github.com/rhboot/efibootmgr/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+
+RDEPEND="
+   sys-apps/pciutils
+   >=sys-libs/efivar-37:=
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${P}-fix-efivar-37-conflict.patch"
+   "${FILESDIR}/${P}-clang.patch"
+)
+
+src_prepare() {
+   default
+   sed -i 's/-Werror //' Make.defaults || die
+}
+
+src_configure() {
+   tc-export CC
+   export EFIDIR="Gentoo"
+}
+
+src_compile() {
+   emake PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}

diff --git a/sys-boot/efibootmgr/files/efibootmgr-17-clang.patch 
b/sys-boot/efibootmgr/files/efibootmgr-17-clang.patch
new file mode 100644
index 000..687b294c333
--- /dev/null
+++ b/sys-boot/efibootmgr/files/efibootmgr-17-clang.patch
@@ -0,0 +1,82 @@
+From 97668ae0bce776a36ea2001dea63d376be8274ac Mon Sep 17 00:00:00 2001
+From: Peter Jones 
+Date: Wed, 6 Mar 2019 13:08:33 -0500
+Subject: [PATCH] Make sure PKGS= is propogated into the submake for "make
+ deps"
+
+When we're doing make deps with "$(CC) -MF", gcc and clang have different
+behavior, both broken in different ways, which we're hitting because of a
+missing -I argument for libefivar's includes.  On clang, when a header can't
+be found, it emits a rule with the header as a prerequisite without a path,
+such as efivar.h here:
+
+efibootmgr.o: efibootmgr.c fix_coverity.h efivar.h efiboot.h \
+  /home/pjones/devel/github.com/efibootmgr/master/src/include/list.h \
+  /home/pjones/devel/github.com/efibootmgr/master/src/include/efi.h \
+  /home/pjones/devel/github.com/efibootmgr/master/src/include/unparse_path.h \
+  /home/pjones/devel/github.com/efibootmgr/master/src/include/efibootmgr.h \
+  error.h
+
+Then the build that utilizes that rule will fail to find the
+prerequisite and tell you something like:
+
+make[1]: *** No rule to make target 'efivar.h', needed by 'efibootmgr.o'.  
Stop.
+make[1]: Leaving directory 
'/home/pjones/devel/github.com/efibootmgr/master/src'
+
+With gcc, when a header can't be found, it emits a rule without that 

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

2021-01-18 Thread Sam James
commit: 24edf243e7d82f375a2cb210696043d4edf96e88
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 20:31:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 20:31:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24edf243

net-libs/libgsasl: Stabilize 1.8.1 sparc, #760381

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

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

diff --git a/net-libs/libgsasl/libgsasl-1.8.1.ebuild 
b/net-libs/libgsasl/libgsasl-1.8.1.ebuild
index 06a3058dc23..1cb716fb63b 100644
--- a/net-libs/libgsasl/libgsasl-1.8.1.ebuild
+++ b/net-libs/libgsasl/libgsasl-1.8.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN/lib}/${P}.tar.gz"
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="idn gcrypt kerberos nls ntlm static-libs"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-editors/xmlcopyeditor/

2021-01-18 Thread Sam James
commit: 000fa82b481edb49fe9b36132fb10fe534fd5302
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 18 20:29:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 18 20:30:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=000fa82b

app-editors/xmlcopyeditor: fix MissingUseDepDefault for wxGTK[aqua]

We've just dropped USE=aqua from x11-libs/wxGTK.

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

 app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild 
b/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild
index df844c1b0b7..08f5b2c7e7a 100644
--- a/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild
+++ b/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild
@@ -21,8 +21,7 @@ RDEPEND="
dev-libs/libxslt
dev-libs/xerces-c[icu]
dev-libs/libpcre
-   !aqua? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )
-   aqua? ( x11-libs/wxGTK:${WX_GTK_VER}[aqua] )
+   x11-libs/wxGTK:${WX_GTK_VER}[X]
 "
 DEPEND="${RDEPEND}
dev-libs/boost



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/tumbler/

2021-01-18 Thread Michał Górny
commit: cd2837834faab6265beb757b9515a3b3c1cc83e1
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd283783

xfce-extra/tumbler: Remove old

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

 xfce-extra/tumbler/Manifest |  1 -
 xfce-extra/tumbler/tumbler-0.3.1.ebuild | 69 -
 2 files changed, 70 deletions(-)

diff --git a/xfce-extra/tumbler/Manifest b/xfce-extra/tumbler/Manifest
index fabb5db36d4..9978105d6e7 100644
--- a/xfce-extra/tumbler/Manifest
+++ b/xfce-extra/tumbler/Manifest
@@ -1,3 +1,2 @@
 DIST tumbler-0.2.9.tar.bz2 557794 BLAKE2B 
564b0d91489ee617799749db13085301f8b7195736ee01cd44d1e4bee7130a34235deaaac973f9be902b63eab46c69a5a277872204f53067d15645556f00dd42
 SHA512 
df9cf9b2ba77e220f11c5ca3ec4601c973802b802e989dcd24d1b2c7c13e97c185071488c866f3ed5ed1cc6defde1a4879b5fc2c48bfc015456508e526d6bf0f
-DIST tumbler-0.3.1.tar.bz2 559835 BLAKE2B 
69f0c1d904b908fcef5ef42388600b8371b37e885ca38bdcdacbc5fefabec2fd49a8aba737832621f8942e788f5c52eb5da0acdd66cbe18f452b706df0d9fd9f
 SHA512 
42bfe9b10411f07e8c9aca40ba8d1829f677fdb65d1b2612a7345f7f467d5a02761fa758359ac3c2eb1e1622bb9f659787cdd21dc2b711424ff64025f08ea375
 DIST tumbler-4.16.0.tar.bz2 607640 BLAKE2B 
9958c70f5e8b09e3a23e54cb0ce5a66416fe7459455dd145196daad24c2db0cea77ef4a4c7a8809a150f8dc6161e7e4825bf2ca48a5348fe702cec5e09a93706
 SHA512 
86b30a1b3a8b668bfd6cecb39bbfc642793d63055b0f3dc32e4e275082d086a9c011a98511938b7489099f35458613b3df24224ff48e4940f42ff552a14fa9d2

diff --git a/xfce-extra/tumbler/tumbler-0.3.1.ebuild 
b/xfce-extra/tumbler/tumbler-0.3.1.ebuild
deleted file mode 100644
index f2655096dc2..000
--- a/xfce-extra/tumbler/tumbler-0.3.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="A thumbnail service for Thunar"
-HOMEPAGE="https://docs.xfce.org/xfce/thunar/start;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
-IUSE="curl epub ffmpeg gstreamer jpeg odf pdf raw"
-
-DEPEND=">=dev-libs/glib-2.42:2
-   media-libs/freetype:2=
-   media-libs/libpng:0=
-   >=sys-apps/dbus-1.6
-   >=x11-libs/gdk-pixbuf-2.14:2
-   curl? ( >=net-misc/curl-7.25:= )
-   epub? ( app-text/libgepub )
-   ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.8:= )
-   gstreamer? (
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   jpeg? ( virtual/jpeg:0= )
-   odf? ( >=gnome-extra/libgsf-1.14.20:= )
-   pdf? ( >=app-text/poppler-0.12.4[cairo] )
-   raw? ( >=media-libs/libopenraw-0.0.8:=[gtk] )"
-RDEPEND="${DEPEND}
-   gstreamer? ( media-plugins/gst-plugins-meta:1.0 )"
-BDEPEND="
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   local myconf=(
-   $(use_enable curl cover-thumbnailer)
-   $(use_enable epub gepub-thumbnailer)
-   $(use_enable jpeg jpeg-thumbnailer)
-   $(use_enable ffmpeg ffmpeg-thumbnailer)
-   $(use_enable gstreamer gstreamer-thumbnailer)
-   $(use_enable odf odf-thumbnailer)
-   $(use_enable pdf poppler-thumbnailer)
-   $(use_enable raw raw-thumbnailer)
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-whiskermenu-plugin/

2021-01-18 Thread Michał Górny
commit: 2ae3d461916e6dc17b7c1c1bf92f66d2875f3b36
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:46 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae3d461

xfce-extra/xfce4-whiskermenu-plugin: Remove old

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

 xfce-extra/xfce4-whiskermenu-plugin/Manifest   |  2 -
 .../xfce4-whiskermenu-plugin-2.5.0.ebuild  | 51 --
 .../xfce4-whiskermenu-plugin-2.5.1.ebuild  | 51 --
 3 files changed, 104 deletions(-)

diff --git a/xfce-extra/xfce4-whiskermenu-plugin/Manifest 
b/xfce-extra/xfce4-whiskermenu-plugin/Manifest
index bc8e2c69530..93d8b81ba98 100644
--- a/xfce-extra/xfce4-whiskermenu-plugin/Manifest
+++ b/xfce-extra/xfce4-whiskermenu-plugin/Manifest
@@ -1,4 +1,2 @@
 DIST xfce4-whiskermenu-plugin-2.4.6.tar.bz2 173341 BLAKE2B 
03d6ddbe72bf6de6713643bc9df4a6b824f5c7d3792ca8dc73552fa4b0c717fa719f56a4b9fa30c5d435c0f923e7f0260a330f883c9140762338908b586e3137
 SHA512 
9e947b73735549d81110323bfd7d6f29c91653b12e1aa616b9ca6f0ff99c8a7948ca383422d7b2aa0ac35297488fda6edc699ae4f72883539d6311672818b62c
-DIST xfce4-whiskermenu-plugin-2.5.0.tar.bz2 174639 BLAKE2B 
02a3007f06d9d5ffab09fd027d913e7f8667fda1c276170dc69e766b1cce15e108d6486f7ca3285942b327412224f78b302f251719a4a84f62bb101f852cf369
 SHA512 
84f9ef9963e07b5489244b5283b371e2e405f4b280fa2884aa8b3c6a7358578064a227827a7d19b4ab9d72f9fd2016fa24a16b1b3f1f964df4d9d6d2ac2bcf72
-DIST xfce4-whiskermenu-plugin-2.5.1.tar.bz2 174906 BLAKE2B 
686610e288029e6197e01952bb8dcff0d5c6db778c1e14c519e615f69eae21ab1fc95aac6160b68fd09cd12941949462c388254d289056d2ea8991979b09ec75
 SHA512 
babdb81fc5d5fdf065442ac8b72ebafa7261245c3bce7bce2291d5031c6ce972e06b47db07fd747eb512efc1068309cdb7eaef9bac6e1efb969045d2f8d52cd2
 DIST xfce4-whiskermenu-plugin-2.5.2.tar.bz2 175122 BLAKE2B 
f535b6ff9d98ebc7b305ecfc03c9389b516e4176e67f341bb4e867df13965fd8416f9281e3fbe5b0b3fe70afa395256553f92fde62d8a0627e0559241baeb690
 SHA512 
165d4b95808f60dbf7e3a363488af7de24abc5fc16c22e2e62954651f6445b4a2cd4561d148930355876d01327c58b453accac864bb0d4495b5be6faef223644

diff --git 
a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.0.ebuild 
b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.0.ebuild
deleted file mode 100644
index 38cde10a058..000
--- a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake xdg-utils
-
-DESCRIPTION="Alternate application launcher for Xfce"
-HOMEPAGE="https://gottcode.org/xfce4-whiskermenu-plugin/;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE=""
-
-RDEPEND="
-   virtual/libintl
-   x11-libs/gtk+:3
-   xfce-base/exo:=
-   xfce-base/garcon:=
-   xfce-base/libxfce4ui:=
-   xfce-base/libxfce4util:=
-   xfce-base/xfce4-panel:=
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_AS_NEEDED=OFF
-   -DENABLE_LINKER_OPTIMIZED_HASH_TABLES=OFF
-   -DENABLE_DEVELOPER_MODE=OFF
-   -DENABLE_LINK_TIME_OPTIMIZATION=OFF
-   )
-
-   cmake_src_configure
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git 
a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.1.ebuild 
b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.1.ebuild
deleted file mode 100644
index efbeb94b8dc..000
--- a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake xdg-utils
-
-DESCRIPTION="Alternate application launcher for Xfce"
-HOMEPAGE="https://gottcode.org/xfce4-whiskermenu-plugin/;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE=""
-
-RDEPEND="
-   virtual/libintl
-   x11-libs/gtk+:3
-   xfce-base/exo:=
-   xfce-base/garcon:=
-   xfce-base/libxfce4ui:=
-   xfce-base/libxfce4util:=
-   xfce-base/xfce4-panel:=
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_AS_NEEDED=OFF
-   -DENABLE_LINKER_OPTIMIZED_HASH_TABLES=OFF
-   -DENABLE_DEVELOPER_MODE=OFF
-   -DENABLE_LINK_TIME_OPTIMIZATION=OFF
-   )
-
-   cmake_src_configure

[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfdashboard/

2021-01-18 Thread Michał Górny
commit: 1f516d85b7dd7a96f86598c6c7767067ff80a10b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:47 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f516d85

xfce-extra/xfdashboard: Remove old

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

 xfce-extra/xfdashboard/Manifest  |  1 -
 xfce-extra/xfdashboard/xfdashboard-0.7.90.ebuild | 44 
 2 files changed, 45 deletions(-)

diff --git a/xfce-extra/xfdashboard/Manifest b/xfce-extra/xfdashboard/Manifest
index 0b5ef85509a..15e1ba573a0 100644
--- a/xfce-extra/xfdashboard/Manifest
+++ b/xfce-extra/xfdashboard/Manifest
@@ -1,3 +1,2 @@
 DIST xfdashboard-0.7.5.tar.bz2 3366413 BLAKE2B 
4fb9c9bd298f5e9b0f3052e1f3d488386446d37e9130e750ee09756da856d232fdc4c18fc21e9883c3df46e7cba636c82f32942b17473a5710e30006baf6a54f
 SHA512 
5d32aa3a49e02d85ca92bee6aa37a3b743e50ca5d992128decea5846e8c9008a9f5bdb98cc0ee3e980761a6538a4867ff28410e066ef22f0aa2c2bd4c5ce1523
-DIST xfdashboard-0.7.90.tar.bz2 3394745 BLAKE2B 
5550851a7a60802f079fb19ba32064cb43e09b0d36956ee87fbca3878ff6df20624e2c4262f9fcf81071a42aeb937f97954f0724faed70ffd0592472fa36cfc1
 SHA512 
8aea6127ffae2a7f0a241be04b2c518070688b56621f629798c9b8becd749577f2902e342ba0a99e14e3f38d0cb00f4887d04d2a418e619d97e413c2517faa9f
 DIST xfdashboard-0.8.0.tar.bz2 3341109 BLAKE2B 
8787bd5069d8c4781c1b728e051e344dab227c847faf0762595079556a206b61ba4e6e45cc967f0f7267b41125bee62ff5fdf05cbbc7b3663fa785ad1fdddc16
 SHA512 
3bbddf079f129c8f32b764f61c75cc4efac52dff752375bdafd5537ad9c9435a5b12ead51176a684fca8fdc24f5bf44d774d8d3d6eae6942b266e1d0e4e89d62

diff --git a/xfce-extra/xfdashboard/xfdashboard-0.7.90.ebuild 
b/xfce-extra/xfdashboard/xfdashboard-0.7.90.ebuild
deleted file mode 100644
index 56288cc6b7e..000
--- a/xfce-extra/xfdashboard/xfdashboard-0.7.90.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Maybe a GNOME shell like dashboard for the Xfce desktop 
environment"
-HOMEPAGE="https://goodies.xfce.org/projects/applications/xfdashboard/start;
-SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.38:2
-   >=x11-libs/gtk+-3.2:3
-   >=media-libs/clutter-1.12:1.0=[gtk]
-   >=x11-libs/libwnck-3:3=
-   x11-libs/libX11:=
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXinerama:=
-   >=xfce-base/garcon-0.2.0:=
-   >=xfce-base/libxfce4ui-4.10:=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/xfconf-4.13:="
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig"
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-sensors-plugin/

2021-01-18 Thread Michał Górny
commit: 89c173faea89e551d84d31119b707b1034dbc4a2
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:45 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c173fa

xfce-extra/xfce4-sensors-plugin: Remove old

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

 xfce-extra/xfce4-sensors-plugin/Manifest   |  1 -
 .../xfce4-sensors-plugin-1.3.92-r1.ebuild  | 72 --
 2 files changed, 73 deletions(-)

diff --git a/xfce-extra/xfce4-sensors-plugin/Manifest 
b/xfce-extra/xfce4-sensors-plugin/Manifest
index 9c40b4e516e..726cbb8de27 100644
--- a/xfce-extra/xfce4-sensors-plugin/Manifest
+++ b/xfce-extra/xfce4-sensors-plugin/Manifest
@@ -1,3 +1,2 @@
 DIST xfce4-sensors-plugin-1.3.0.tar.bz2 466468 BLAKE2B 
52eadaec22980105fcf4c4e5efb4621b0966e86520e7ded90a1514f7925d76232278ec105785409dbe13f5ab4019363b47b63b5df642319a924fe5a8882b847c
 SHA512 
77f6df354c883f9f0b99856738e0976e7bddd5f16c90a8715777c4f4d6debe116cdc21c2e0efbbe9f371d36f9469797d3e631854c33f8561e3ff32291cdef35a
-DIST xfce4-sensors-plugin-1.3.92.tar.bz2 477837 BLAKE2B 
e5399a3052b124c5391209c6ca6bc849467e09be3dac6b7a7d1c946f800e22dcfe84d245b6236cb56cdcea756c98d9bb70c1c945b597f13e49ff18455f4f4715
 SHA512 
a5b7d90683c993205323084431606cc6d13de88989e3636fba5c06bfa7ef52fbe6285e3bd7f8eb70683541b5c42727c8fbe7bf80e8832bcfb378de0e6d7d7b37
 DIST xfce4-sensors-plugin-1.3.95.tar.bz2 486771 BLAKE2B 
130b38d30bcbb2e08ca167846f32ebc7e60ea2cd855ae0bcbcf82e8a73c9cdf04cd91da5c5e8e1a73c79b0d36e00366a37fa04cb40abc477df70dd2ee77d866f
 SHA512 
265dec06bcd7a609b992e70273e8b11fdbaec41b0eb4dcb1b390e315b924743b3833b65fe2d237bb0b457e61943b97c065b34138216b171d111f5e923602642b

diff --git 
a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild 
b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild
deleted file mode 100644
index 988a10db5fa..000
--- a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils
-
-DESCRIPTION="A panel plug-in for acpi, lm-sensors and hddtemp sensors"
-HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-sensors-plugin;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="+acpi hddtemp libnotify lm-sensors video_cards_nvidia"
-
-REQUIRED_USE="|| ( hddtemp lm-sensors acpi )"
-
-RDEPEND=">=x11-libs/gtk+-3.20:3=
-   >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
-   >=xfce-base/xfce4-panel-4.12:=
-   hddtemp? (
-   app-admin/hddtemp
-   || (
-   net-analyzer/openbsd-netcat
-   net-analyzer/netcat
-   )
-   )
-   libnotify? ( >=x11-libs/libnotify-0.7:= )
-   lm-sensors? ( >=sys-apps/lm-sensors-3.1.0:= )
-   video_cards_nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] )"
-DEPEND=${RDEPEND}
-
-BDEPEND="
-   dev-util/intltool
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS NOTES README TODO )
-
-PATCHES=(
-   "${FILESDIR}"/${P}-gcc-10.patch
-)
-
-src_configure() {
-   local myconf=(
-   --libexecdir="${EPREFIX}"/usr/$(get_libdir)
-   $(use_enable lm-sensors libsensors)
-   $(use_enable hddtemp)
-   $(use_enable hddtemp netcat)
-   $(use_enable acpi procacpi)
-   $(use_enable acpi sysfsacpi)
-   $(use_enable video_cards_nvidia xnvctrl)
-   $(use_enable libnotify notification)
-   --disable-pathchecks
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   einstalldocs
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-mount-plugin/

2021-01-18 Thread Michał Górny
commit: 807c9b3f1b1a2678247a3e272d0fba168384deea
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:43 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807c9b3f

xfce-extra/xfce4-mount-plugin: Remove old

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

 xfce-extra/xfce4-mount-plugin/Manifest |  1 -
 .../xfce4-mount-plugin-1.1.4.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/xfce-extra/xfce4-mount-plugin/Manifest 
b/xfce-extra/xfce4-mount-plugin/Manifest
index a13de926a0f..67e561a08d1 100644
--- a/xfce-extra/xfce4-mount-plugin/Manifest
+++ b/xfce-extra/xfce4-mount-plugin/Manifest
@@ -1,3 +1,2 @@
 DIST xfce4-mount-plugin-1.1.3.tar.bz2 431182 BLAKE2B 
ba197ae9028b726e3b1e2b7fd68ebaec3e8e247322d916a1579681af9b004418d4738bfff05e7b947d6bcc5a1bd3cd1e0419f2e7421ae8cf7a7aeb3011658132
 SHA512 
10894069fd98fa0b709a3e743f0d6f9a8e9487b0de8495c3d177731190480f18b11b0179325d2ed47f80eeeaea10144ddce7f9cd60397dfb6a0db602bd4f8124
-DIST xfce4-mount-plugin-1.1.4.tar.bz2 452224 BLAKE2B 
aad04c6aec4e624aa437f9a22f730e64d0ef2d11a76d98a082075477825767234e92ff6e97ee7821e36e49f97ef4fe86528660b20bfc3dd21d3b7f490e669dca
 SHA512 
aff784688ca9b83acf7bf512b25fb7ad96c7b8a68d21bf466ccfbbbaed5e2d6884ac8222eb4a0db26c1763a93214c6c2b76de89407553bc484f33ed036a0
 DIST xfce4-mount-plugin-1.1.5.tar.bz2 432564 BLAKE2B 
6dbdbf692847c7c236a60982adf6ac9619f8d45320c97debea44e0b865a9ac51c76b20dd80943f5fe23501d450039ab0fc4644b0ff5ed693ff169668a039441d
 SHA512 
bf4e89c57a1f61120919a272c6f343a9fb4072a977848031784cbdf96e4bf248d878c6e28a812930daf9a0515efcae20b421e0b2db176f05b8f29d75d90a28ca

diff --git a/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.4.ebuild 
b/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.4.ebuild
deleted file mode 100644
index 5dce52b27f2..000
--- a/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="An mount plug-in for the Xfce panel"
-HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-mount-plugin;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
-IUSE=""
-
-RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
-   >=xfce-base/xfce4-panel-4.12:="
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-power-manager/

2021-01-18 Thread Michał Górny
commit: 622572453773af23929780b1b532efc2bb19aabd
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:44 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62257245

xfce-extra/xfce4-power-manager: Remove old

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

 xfce-extra/xfce4-power-manager/Manifest|  1 -
 .../xfce4-power-manager-1.7.1.ebuild   | 64 --
 2 files changed, 65 deletions(-)

diff --git a/xfce-extra/xfce4-power-manager/Manifest 
b/xfce-extra/xfce4-power-manager/Manifest
index 7b4c202fe7c..0cc18f2a0cd 100644
--- a/xfce-extra/xfce4-power-manager/Manifest
+++ b/xfce-extra/xfce4-power-manager/Manifest
@@ -1,3 +1,2 @@
 DIST xfce4-power-manager-1.6.6.tar.bz2 1227814 BLAKE2B 
c5f9ca3ff1f7bbed8c534cbba43355a62734b6e1553f852740fe332545df910ecba07be249365f9815b2467226d67a41cdb740e99d4f547ee86abf2d014211f6
 SHA512 
c9377619df9ebab64ed234659e5798f47448e26fae5b19eb15bcbc9416df1afec6b4de32bc272b81531d2643a215ea46892523077017dc6b232bfe802dba6cd9
-DIST xfce4-power-manager-1.7.1.tar.bz2 1230284 BLAKE2B 
7118f0a864bb50a2a9ed96da91d8196dd28c21f4b3e33a98226a7ad50f85bc81d5522255f454cccf9bf189acf2f3c45f7686580c2d6d397de740b77d277e13b2
 SHA512 
cc29902ee6f01983ba507c2ab961db4f2ae5e12539e954d58af3f71e85370243e252833cd835830a51d05e104316327ffc7af01fb09a436af2e00f4e06564785
 DIST xfce4-power-manager-4.16.0.tar.bz2 1234968 BLAKE2B 
0299bc293769411384b34c81c907f75ba6503db11f1636366a599938d37eda0843e1850c584c37186529c0c97eaca73bc5d488d4916087a42c5c5f68ae8787c8
 SHA512 
1c6ecfb7696bc13c9b11fdfb4ad4e3278de2350bbc59c84c933b28c07c1a0c55b9954794e1f57e4407d2b54ffaace9ea5baed829bf0683332cf9d12bff7e71ec

diff --git a/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.7.1.ebuild 
b/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.7.1.ebuild
deleted file mode 100644
index 3cc989ee936..000
--- a/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.7.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit xdg-utils
-
-DESCRIPTION="Power manager for the Xfce desktop environment"
-HOMEPAGE="https://goodies.xfce.org/projects/applications/xfce4-power-manager;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
-IUSE="kernel_linux networkmanager +panel-plugin policykit"
-
-COMMON_DEPEND=">=dev-libs/glib-2.42
-   >=sys-power/upower-0.99.0
-   >=x11-libs/gtk+-3.14:3
-   >=x11-libs/libnotify-0.7
-   x11-libs/libX11
-   >=x11-libs/libXrandr-1.2
-   x11-libs/libXext
-   x11-libs/libXtst
-   >=xfce-base/xfconf-4.12:=
-   >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
-   >=xfce-base/libxfce4util-4.12:=
-   panel-plugin? ( >=xfce-base/xfce4-panel-4.12:= )
-   policykit? ( >=sys-auth/polkit-0.112 )"
-RDEPEND="${COMMON_DEPEND}
-   networkmanager? ( net-misc/networkmanager )"
-DEPEND="${COMMON_DEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-base/xorg-proto"
-
-src_configure() {
-   local myconf=(
-   $(use_enable policykit polkit)
-   $(use_enable networkmanager network-manager)
-   $(use_enable panel-plugin xfce4panel)
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-
-   if ! has_version sys-apps/systemd && ! has_version sys-auth/elogind
-   then
-   elog "Suspend/hibernate support requires a logind provider 
installed"
-   elog "(sys-apps/systemd or sys-auth/elogind)"
-   fi
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-panel-profiles/

2021-01-18 Thread Michał Górny
commit: 05d24c3e774a8ac0c5e8b679b3a290f202fa0e7c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:43 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05d24c3e

xfce-extra/xfce4-panel-profiles: Remove old

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

 xfce-extra/xfce4-panel-profiles/Manifest   |  1 -
 .../xfce4-panel-profiles-1.0.10.ebuild | 43 --
 2 files changed, 44 deletions(-)

diff --git a/xfce-extra/xfce4-panel-profiles/Manifest 
b/xfce-extra/xfce4-panel-profiles/Manifest
index 2239d1704a9..c2c8c0025f1 100644
--- a/xfce-extra/xfce4-panel-profiles/Manifest
+++ b/xfce-extra/xfce4-panel-profiles/Manifest
@@ -1,2 +1 @@
-DIST xfce4-panel-profiles-1.0.10.tar.bz2 62196 BLAKE2B 
205469ab841843395429605660864a4d9496dde942ca5c8a587f32bc7143c7076f362ea0f9a488f20df3ce8ee357c4b236d3077ac07497673b3214d8fa02c20e
 SHA512 
efd59d585cc916cfc9d87961a58f05dad754a70f1971d9c49a071e20b96bb28e6bd5fa13508430e5c0f15976db7c438d2c68e0ae5936563388fbbe02fffdb50a
 DIST xfce4-panel-profiles-1.0.12.tar.bz2 83399 BLAKE2B 
82f62b7472ae8e271a8c41151c2153e62f1589b868cd4a682f0e56acfa3aedcb6104b14ef99f776d09fe6ac854420905ce335c9d3d05d524570db70d847731d8
 SHA512 
cf308a1a9d68832a3b907787754791d6e8b227400d21a0bde2ed99d7afbb64c6137bbe4b7ab6ceb4c896a67ecbac29d41089c857d432467cbaba631a7ef77505

diff --git a/xfce-extra/xfce4-panel-profiles/xfce4-panel-profiles-1.0.10.ebuild 
b/xfce-extra/xfce4-panel-profiles/xfce4-panel-profiles-1.0.10.ebuild
deleted file mode 100644
index 9b45974204a..000
--- a/xfce-extra/xfce4-panel-profiles/xfce4-panel-profiles-1.0.10.ebuild
+++ /dev/null
@@ -1,43 +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 python-single-r1
-
-DESCRIPTION="Simple application to manage Xfce panel layouts"
-HOMEPAGE="https://git.xfce.org/apps/xfce4-panel-profiles/about/;
-SRC_URI="https://archive.xfce.org/src/apps/xfce4-panel-profiles/$(ver_cut 
1-2)/${P}.tar.bz2"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}
-   dev-libs/gobject-introspection
-   $(python_gen_cond_dep '
-   dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
-   ')
-   x11-libs/gtk+:3[introspection]
-   xfce-base/xfce4-panel"
-
-src_prepare() {
-   default
-   sed -i -e '/install/s:.gz::' Makefile.in.in || die
-}
-
-src_configure() {
-   # home-made configure script, yay!
-   ./configure --prefix="${EPREFIX}/usr" --python="${EPYTHON}" || die
-}
-
-src_install() {
-   default
-
-   # the default gets it right
-   rm -r "${ED}"/usr/share/doc/xfce4-panel-profiles || die
-}



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

2021-01-18 Thread Michał Górny
commit: 48fd00ecaaf22c2f2e3d730b4bb046c952acbc21
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:27:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fd00ec

xfce-base/xfwm4: Remove old

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

 xfce-base/xfwm4/Manifest|  2 --
 xfce-base/xfwm4/xfwm4-4.15.3.ebuild | 68 
 xfce-base/xfwm4/xfwm4-4.16.0.ebuild | 69 -
 3 files changed, 139 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 5c7156126f4..38da6c2173d 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,2 @@
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
-DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B 
e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475
 SHA512 
6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d
-DIST xfwm4-4.16.0.tar.bz2 1200929 BLAKE2B 
2df17028287ff3e4fea7ea082ea39545a05fba5089fbaea1764bbb59ff550d9dbf14322246d9dcd455bc589055c75b7941f08f6ab4a59fe2089001236ab8677b
 SHA512 
f21e773b34092cadd86713373e59880cf68020cbfa3d16ab651f48a8a051a38925428358e0bca5ffc346eb62dc6cc53c87a9e6895d7e613dadf3cdac499dae02
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9

diff --git a/xfce-base/xfwm4/xfwm4-4.15.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.15.3.ebuild
deleted file mode 100644
index bf9677a0086..000
--- a/xfce-base/xfwm4/xfwm4-4.15.3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/xfce-base/xfwm4/xfwm4-4.16.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.0.ebuild
deleted file mode 100644
index 26cb91f8158..000
--- a/xfce-base/xfwm4/xfwm4-4.16.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-

[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-indicator-plugin/

2021-01-18 Thread Michał Górny
commit: befba731778345917bf520526e787dd048290d8c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:42 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:28:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=befba731

xfce-extra/xfce4-indicator-plugin: Remove old

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

 xfce-extra/xfce4-indicator-plugin/Manifest |  1 -
 .../xfce4-indicator-plugin-2.3.4.ebuild| 51 --
 2 files changed, 52 deletions(-)

diff --git a/xfce-extra/xfce4-indicator-plugin/Manifest 
b/xfce-extra/xfce4-indicator-plugin/Manifest
index 17c55831c99..b14798c4095 100644
--- a/xfce-extra/xfce4-indicator-plugin/Manifest
+++ b/xfce-extra/xfce4-indicator-plugin/Manifest
@@ -1,2 +1 @@
-DIST xfce4-indicator-plugin-2.3.4.tar.bz2 406991 BLAKE2B 
3d499f9f923e9cc51b25e2bed3dc6dfb6d4413c90d0a1afeacd14e0d1f33c9f9d5bdd6bdeb03a3e61bef0c3ec8cb1d1c766d89d921aaf9610bc797dc99a12219
 SHA512 
b1fd065c8221ae91d95b540411317cd67bb9b26d46c7cfe85ec90d7ccdcd11e7b8832008c8b6fb5c257e0b1a08360f00ad9da5520108024cc36c63d865ffdca6
 DIST xfce4-indicator-plugin-2.4.0.tar.bz2 389228 BLAKE2B 
6f627663d0a432ee74e871b55656c119f99c315d2f5095fd24a9eefc9338d280d5c371153377d575bc926707f30dc0602c7033bf09acdba1e247356b341393d5
 SHA512 
5b6e82d85357cec689f23a6cf69d379db9425956a531d8295a23adf52b1e00e3cd8acd822b13ab05d80321ff739c96aadc6e7526ec275421c341446e58a5fbab

diff --git 
a/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.3.4.ebuild 
b/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.3.4.ebuild
deleted file mode 100644
index a19a0da5377..000
--- a/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.3.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2-utils xdg-utils
-
-DESCRIPTION="A panel plugin that uses indicator-applet to show new messages"
-HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/libindicator-12.10.1:3=
-   >=x11-libs/gtk+-3.18:3=
-   x11-libs/libX11:=
-   >=xfce-base/libxfce4ui-4.11:=[gtk3(+)]
-   >=xfce-base/libxfce4util-4.11:=
-   >=xfce-base/xfce4-panel-4.11:=
-   >=xfce-base/xfconf-4.13:="
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   local myconf=(
-   # libido3-13.10.0 needs ubuntu-private.h from Ubuntu's GTK+ 3.x
-   --disable-ido
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}



  1   2   3   4   5   >