[gentoo-commits] proj/eselect-vi:master commit in: /

2022-11-21 Thread Sam James
commit: 223098ff72a3cdbfffa7edc9a6ec5b5ec77b76c8
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 00:58:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:53 2022 +
URL:https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=223098ff

Update .gitignore

List grabbed from 
https://github.com/github/gitignore/blob/main/Autotools.gitignore

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

 .gitignore | 55 +++
 1 file changed, 55 insertions(+)

diff --git a/.gitignore b/.gitignore
index 59d276d..79917eb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,56 @@
+# http://www.gnu.org/software/automake
+
+Makefile.in
+/ar-lib
+/mdate-sh
+/py-compile
+/test-driver
+/ylwrap
+.deps/
+.dirstamp
+
+# http://www.gnu.org/software/autoconf
+
+autom4te.cache
+/autoscan.log
+/autoscan-*.log
+/aclocal.m4
+/compile
+/config.cache
+/config.guess
+/config.h.in
+/config.log
+/config.status
+/config.sub
+/configure
+/configure.scan
+/depcomp
+/install-sh
+/missing
+/stamp-h1
+
+# https://www.gnu.org/software/libtool/
+
+/ltmain.sh
+
+# http://www.gnu.org/software/texinfo
+
+/texinfo.tex
+
+# http://www.gnu.org/software/m4/
+
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
+
+# Generated Makefile
+# (meta build system like autotools,
+# can automatically generate from config.status script
+# (which is called by configure script))
+Makefile
+
+# Local to this project
 .version
+vi.eselect



[gentoo-commits] proj/eselect-vi:master commit in: /

2022-11-21 Thread Sam James
commit: dc2275bd7b332f3c3c387099cadf1b7fc1b1a7b3
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 00:57:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:53 2022 +
URL:https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=dc2275bd

Tidy up configure.ac

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

 configure.ac | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 6246445..106fbc7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,5 @@
-AC_INIT([eselect-vi], m4_esyscmd([build-aux/git-version-gen .tarball-version]))
+AC_INIT([eselect-vi],[m4_esyscmd(build-aux/git-version-gen .tarball-version)])
 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
 
-# Create output files.
 AC_CONFIG_FILES([Makefile vi.eselect])
-
 AC_OUTPUT



[gentoo-commits] proj/eselect-vi:master commit in: build-aux/, /

2022-11-21 Thread Sam James
commit: f7370a29500308b5f56b4af71ebe899dc14ba1ed
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 00:39:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:53 2022 +
URL:https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=f7370a29

Add git-version-gen from gnulib

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

 .gitignore|   1 +
 Makefile.am   |   9 ++
 build-aux/git-version-gen | 228 ++
 configure.ac  |   2 +-
 vi.eselect.in |   2 +-
 5 files changed, 240 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..59d276d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.version

diff --git a/Makefile.am b/Makefile.am
index 0533fcb..0316a13 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,2 +1,11 @@
 eselectdir = $(datadir)/eselect/modules
 nodist_eselect_DATA = vi.eselect
+
+EXTRA_DIST = $(top_srcdir)/.version
+BUILT_SOURCES = $(top_srcdir)/.version
+
+$(top_srcdir)/.version:
+   echo '$(VERSION)' > $@-t
+   mv $@-t $@
+dist-hook:
+   echo '$(VERSION)' > $(distdir)/.tarball-version

diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen
new file mode 100755
index 000..e615931
--- /dev/null
+++ b/build-aux/git-version-gen
@@ -0,0 +1,228 @@
+#!/bin/sh
+# Print a version string.
+scriptversion=2022-07-09.08; # UTC
+
+# Copyright (C) 2007-2022 Free Software Foundation, Inc.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see .
+
+# This script is derived from GIT-VERSION-GEN from GIT: https://git-scm.com/.
+# It may be run two ways:
+# - from a git repository in which the "git describe" command below
+#   produces useful output (thus requiring at least one signed tag)
+# - from a non-git-repo directory containing a .tarball-version file, which
+#   presumes this script is invoked like "./git-version-gen .tarball-version".
+
+# In order to use intra-version strings in your project, you will need two
+# separate generated version string files:
+#
+# .tarball-version - present only in a distribution tarball, and not in
+#   a checked-out repository.  Created with contents that were learned at
+#   the last time autoconf was run, and used by git-version-gen.  Must not
+#   be present in either $(srcdir) or $(builddir) for git-version-gen to
+#   give accurate answers during normal development with a checked out tree,
+#   but must be present in a tarball when there is no version control system.
+#   Therefore, it cannot be used in any dependencies.  GNUmakefile has
+#   hooks to force a reconfigure at distribution time to get the value
+#   correct, without penalizing normal development with extra reconfigures.
+#
+# .version - present in a checked-out repository and in a distribution
+#   tarball.  Usable in dependencies, particularly for files that don't
+#   want to depend on config.h but do want to track version changes.
+#   Delete this file prior to any autoconf run where you want to rebuild
+#   files to pick up a version string change; and leave it stale to
+#   minimize rebuild time after unrelated changes to configure sources.
+#
+# As with any generated file in a VC'd directory, you should add
+# /.version to .gitignore, so that you don't accidentally commit it.
+# .tarball-version is never generated in a VC'd directory, so needn't
+# be listed there.
+#
+# Use the following line in your configure.ac, so that $(VERSION) will
+# automatically be up-to-date each time configure is run (and note that
+# since configure.ac no longer includes a version string, Makefile rules
+# should not depend on configure.ac for version updates).
+#
+# AC_INIT([GNU project],
+# m4_esyscmd([build-aux/git-version-gen .tarball-version]),
+# [bug-project@example])
+#
+# Then use the following lines in your Makefile.am, so that .version
+# will be present for dependencies, and so that .version and
+# .tarball-version will exist in distribution tarballs.
+#
+# EXTRA_DIST = $(top_srcdir)/.version
+# BUILT_SOURCES = $(top_srcdir)/.version
+# $(top_srcdir)/.version:
+#  echo '$(VERSION)' > $@-t
+#  mv $@-t $@
+# dist-hook:
+#  echo '$(VERSION)' > $(distdir)/.tarball-version
+
+
+me=$0
+
+year=`expr "$scriptversion" : '\([^-]*\)'`
+version="git-version-gen $scriptversion
+
+Copyright (C) ${year} Free 

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

2022-11-21 Thread Sam James
commit: be27fb4bf1680a7492583b6bd5e77ecbad2faa85
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 01:04:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be27fb4b

app-eselect/eselect-awk: add gentoo upstream metadata

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

 app-eselect/eselect-awk/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-eselect/eselect-awk/metadata.xml 
b/app-eselect/eselect-awk/metadata.xml
index de9d78424186..bbd1ffb10a80 100644
--- a/app-eselect/eselect-awk/metadata.xml
+++ b/app-eselect/eselect-awk/metadata.xml
@@ -6,4 +6,7 @@
Gentoo Base System


+   
+   proj/eselect-awk
+   
 



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

2022-11-21 Thread Sam James
commit: 6de21c263da0be0c93387d708497b3f6324075d7
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 00:33:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de21c26

app-eselect/eselect-vi: add 1.3

Closes: https://bugs.gentoo.org/617774
Signed-off-by: Sam James  gentoo.org>

 app-eselect/eselect-vi/Manifest  |  1 +
 app-eselect/eselect-vi/eselect-vi-1.3.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/app-eselect/eselect-vi/Manifest b/app-eselect/eselect-vi/Manifest
index c34b57b3cdc5..2a42a0a272d9 100644
--- a/app-eselect/eselect-vi/Manifest
+++ b/app-eselect/eselect-vi/Manifest
@@ -1 +1,2 @@
 DIST eselect-vi-1.2.tar.gz 2078 BLAKE2B 
0f78afe201d9db72de005e035fd044435faf76b0027ce570cad09f3b4f0f497631f57107222de5e649c8badc0cbc3172edd1f1600e5b7bee8ba6f78b2ae9277a
 SHA512 
77ec5281a25156d4a6c4b35fb154aa5837e4d2335637ecdb66a75984419439526f2215abe39a4d08e68d8dd3e337f47947f5a8fbf89ae7ecca8631e7dbf50dc5
+DIST eselect-vi-1.3.tar.gz 2008 BLAKE2B 
f4c75fb407fc4a17a38f931fd780486d46e9215dc4932e662dcd11e0f8bac98f1fc9b2f76606c700cce13c68e4f8f2b6f7c2d424d2b79438fdcb15f65e677ef4
 SHA512 
ff39372947ba3dc91876b97ddd3c6189f7dd5dc363ea7f3132012703fbc10a91576ed1706b27ada09f11442c5d5e041cbf847145c5f7d835baf553bb6332a788

diff --git a/app-eselect/eselect-vi/eselect-vi-1.3.ebuild 
b/app-eselect/eselect-vi/eselect-vi-1.3.ebuild
new file mode 100644
index ..828fab5e0f38
--- /dev/null
+++ b/app-eselect/eselect-vi/eselect-vi-1.3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Manages the /usr/bin/vi symlink"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Vim;
+SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="app-admin/eselect"
+
+src_prepare() {
+   default
+   eautoreconf
+}



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

2022-11-21 Thread Sam James
commit: 11bae5a0c8a6d29e1fefd526e3e72b33105eec87
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 01:03:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11bae5a0

app-eselect/eselect-vi: add 20221122, drop 1.3

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

 app-eselect/eselect-vi/Manifest  | 2 +-
 .../{eselect-vi-1.3.ebuild => eselect-vi-20221122.ebuild}| 9 +
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/app-eselect/eselect-vi/Manifest b/app-eselect/eselect-vi/Manifest
index 2a42a0a272d9..946aac71270f 100644
--- a/app-eselect/eselect-vi/Manifest
+++ b/app-eselect/eselect-vi/Manifest
@@ -1,2 +1,2 @@
 DIST eselect-vi-1.2.tar.gz 2078 BLAKE2B 
0f78afe201d9db72de005e035fd044435faf76b0027ce570cad09f3b4f0f497631f57107222de5e649c8badc0cbc3172edd1f1600e5b7bee8ba6f78b2ae9277a
 SHA512 
77ec5281a25156d4a6c4b35fb154aa5837e4d2335637ecdb66a75984419439526f2215abe39a4d08e68d8dd3e337f47947f5a8fbf89ae7ecca8631e7dbf50dc5
-DIST eselect-vi-1.3.tar.gz 2008 BLAKE2B 
f4c75fb407fc4a17a38f931fd780486d46e9215dc4932e662dcd11e0f8bac98f1fc9b2f76606c700cce13c68e4f8f2b6f7c2d424d2b79438fdcb15f65e677ef4
 SHA512 
ff39372947ba3dc91876b97ddd3c6189f7dd5dc363ea7f3132012703fbc10a91576ed1706b27ada09f11442c5d5e041cbf847145c5f7d835baf553bb6332a788
+DIST eselect-vi-20221122.tar.xz 43812 BLAKE2B 
563bde1d18b02a57b31e922c95ece4989f2b00d36477d7dc6b9e8682172db76245e76fadb2e06c9fa9e8589366b5afaae7460f62fc8a1ba2d4ddd0146fb43ded
 SHA512 
1498b3bea6111684113fa1a07396ae89a5318091c4752bed3b2d352f0337d0363c2b39d99c9f5f2499f5ecd71c3dbba354ed770c950d1cdccff783019a594c40

diff --git a/app-eselect/eselect-vi/eselect-vi-1.3.ebuild 
b/app-eselect/eselect-vi/eselect-vi-20221122.ebuild
similarity index 78%
rename from app-eselect/eselect-vi/eselect-vi-1.3.ebuild
rename to app-eselect/eselect-vi/eselect-vi-20221122.ebuild
index 828fab5e0f38..098fa42453f3 100644
--- a/app-eselect/eselect-vi/eselect-vi-1.3.ebuild
+++ b/app-eselect/eselect-vi/eselect-vi-20221122.ebuild
@@ -3,19 +3,12 @@
 
 EAPI=8
 
-inherit autotools
-
 DESCRIPTION="Manages the /usr/bin/vi symlink"
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Vim;
-SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
+SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="app-admin/eselect"
-
-src_prepare() {
-   default
-   eautoreconf
-}



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

2022-11-21 Thread Sam James
commit: 7b82438c69a68afd7b53b2c9e0dc21f13ddac17e
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 01:03:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b82438c

app-eselect/eselect-vi: add gentoo upstream metadata

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

 app-eselect/eselect-vi/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-eselect/eselect-vi/metadata.xml 
b/app-eselect/eselect-vi/metadata.xml
index f8a2bb7497f6..173316bf8504 100644
--- a/app-eselect/eselect-vi/metadata.xml
+++ b/app-eselect/eselect-vi/metadata.xml
@@ -6,4 +6,7 @@
Gentoo Vim Project


+   
+   proj/eselect-vi
+   
 



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

2022-11-21 Thread Sam James
commit: 9b38ee78a471ba14da6bcd8bc4ed56628255dbb7
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 01:04:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:04:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b38ee78

app-eselect/eselect-awk: update HOMEPAGE

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

 app-eselect/eselect-awk/eselect-awk-0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-awk/eselect-awk-0.4.ebuild 
b/app-eselect/eselect-awk/eselect-awk-0.4.ebuild
index ff24121612ad..c8845e15cce3 100644
--- a/app-eselect/eselect-awk/eselect-awk-0.4.ebuild
+++ b/app-eselect/eselect-awk/eselect-awk-0.4.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DESCRIPTION="Manages the {,/usr}/bin/awk symlink"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+HOMEPAGE="https://gitweb.gentoo.org/proj/eselect-awk.git/;
 SRC_URI="https://gitweb.gentoo.org/proj/eselect-awk.git/snapshot/${P}.tar.bz2;
 
 LICENSE="GPL-2"



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

2022-11-21 Thread Yixun Lan
commit: ffec92b8db0d43af560a85b3ef9f825cd218033a
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Nov 22 01:30:56 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Nov 22 02:27:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffec92b8

dev-python/comm: Keyword 0.1.0 riscv, #882417

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/dev-python/comm/comm-0.1.0.ebuild 
b/dev-python/comm/comm-0.1.0.ebuild
index b1ad89e736ee..69a6f4751e72 100644
--- a/dev-python/comm/comm-0.1.0.ebuild
+++ b/dev-python/comm/comm-0.1.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc"
 
 RDEPEND="
>dev-python/traitlets-5.3[${PYTHON_USEDEP}]



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

2022-11-21 Thread Yixun Lan
commit: 35aa300136b4c24fa59f27313e3b98c26f906b4e
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Nov 22 01:31:00 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Nov 22 02:27:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35aa3001

dev-python/ipykernel: Keyword 6.18.0 riscv, #882417

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/dev-python/ipykernel/ipykernel-6.18.0.ebuild 
b/dev-python/ipykernel/ipykernel-6.18.0.ebuild
index 7a84af323b9b..66afc3161910 100644
--- a/dev-python/ipykernel/ipykernel-6.18.0.ebuild
+++ b/dev-python/ipykernel/ipykernel-6.18.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc"
 
 RDEPEND="
dev-python/comm[${PYTHON_USEDEP}]



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

2022-11-21 Thread Sam James
commit: b21a4cd05152c557ba612a233e6bf2479138866e
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:23:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:24:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21a4cd0

dev-libs/libinput: add 1.22.0

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

 dev-libs/libinput/Manifest   |  1 +
 dev-libs/libinput/libinput-1.22.0.ebuild | 90 
 2 files changed, 91 insertions(+)

diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
index 5d4d659f4308..34737fce87c8 100644
--- a/dev-libs/libinput/Manifest
+++ b/dev-libs/libinput/Manifest
@@ -1 +1,2 @@
 DIST libinput-1.21.0.tar.gz 988650 BLAKE2B 
54c63beeff8dee93a52774220b45321d8a94261687b463319fbae9246331b532be7995a5b32c30425b9d0708b2ba69d4b4e83e8dc7ecebe6fb1237b723a266b6
 SHA512 
510273d68f2d4cfa61564a706b1f334f6bfca0d1c8faf0bb8aa656cf3fbd5e38d79d6fbaa01a20d38bc15777c9afc341e4ed08d35ef367ef3803ce788cbc4a0e
+DIST libinput-1.22.0.tar.bz2 796133 BLAKE2B 
3552f0a9ab0690969c5a7d62882733aa7bcaed1c0e97ff3606f58558c235cb67e3c81bc5a277273d26e6847438acccfc942d2fbec312e9a0d121d8ea21896496
 SHA512 
62cc36845daa7bc4b8477dd71abe629309683a93de753382a90e8466915e2b96b9c6914b431747d3462c15d8ab42bc70ee755800eec60c4ad7e9f3b4f7dba76d

diff --git a/dev-libs/libinput/libinput-1.22.0.ebuild 
b/dev-libs/libinput/libinput-1.22.0.ebuild
new file mode 100644
index ..4457b5e6d2e8
--- /dev/null
+++ b/dev-libs/libinput/libinput-1.22.0.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2014-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+inherit meson optfeature python-any-r1 udev
+
+DESCRIPTION="Library to handle input devices in Wayland"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/ 
https://gitlab.freedesktop.org/libinput/libinput;
+SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0/10"
+if [[ $(ver_cut 3) -lt 900 ]] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+IUSE="doc input_devices_wacom test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   input_devices_wacom? ( >=dev-libs/libwacom-0.27:= )
+   >=dev-libs/libevdev-1.9.902
+   >=sys-libs/mtdev-1.1
+   virtual/libudev:=
+   virtual/udev
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( >=dev-libs/check-0.9.10 )
+"
+BDEPEND="
+   virtual/pkgconfig
+   doc? (
+   $(python_gen_any_dep '
+   dev-python/commonmark[${PYTHON_USEDEP}]
+   dev-python/recommonmark[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   >=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]
+   ')
+   >=app-doc/doxygen-1.8.3
+   >=media-gfx/graphviz-2.38.0
+   )
+"
+#  test? ( dev-util/valgrind )
+
+python_check_deps() {
+   python_has_version "dev-python/commonmark[${PYTHON_USEDEP}]" && \
+   python_has_version "dev-python/recommonmark[${PYTHON_USEDEP}]" && \
+   python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]" && \
+   python_has_version 
">=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use doc && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+   sed "s@, '-Werror'@@" -i meson.build || die #744250
+}
+
+src_configure() {
+   # gui can be built but will not be installed
+   local emesonargs=(
+   -Ddebug-gui=false
+   $(meson_use doc documentation)
+   $(meson_use input_devices_wacom libwacom)
+   $(meson_use test tests)
+   -Dudev-dir="${EPREFIX}$(get_udevdir)"
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+   if use doc ; then
+   docinto html
+   dodoc -r "${BUILD_DIR}"/Documentation/.
+   fi
+}
+
+pkg_postinst() {
+   optfeature "measure and replay tools" dev-python/python-libevdev
+   udev_reload
+}
+
+pkg_postrm() {
+   udev_reload
+}



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

2022-11-21 Thread Sam James
commit: c82858096542370a3bf91db1627b520a7ac155f9
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:53:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:53:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8285809

sys-devel/autoconf: Stabilize 2.71-r5 arm64, #882433

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

 sys-devel/autoconf/autoconf-2.71-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.71-r5.ebuild 
b/sys-devel/autoconf/autoconf-2.71-r5.ebuild
index 9e7af4c23545..35639562b7a3 100644
--- a/sys-devel/autoconf/autoconf-2.71-r5.ebuild
+++ b/sys-devel/autoconf/autoconf-2.71-r5.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI+=" 
https://dev.gentoo.org/~polynomial-c/${PATCH_TARBALL_NAME}.tar.xz;
 
if ! [[ ${PV} == *_beta* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
fi
S="${WORKDIR}"/${MY_P}
 fi



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

2022-11-21 Thread Sam James
commit: b16b3d5ccbd140117fbe6e4c4f4bd9d737b258d0
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:54:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:54:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b16b3d5c

sys-devel/autoconf: Stabilize 2.71-r5 arm, #882433

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

 sys-devel/autoconf/autoconf-2.71-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.71-r5.ebuild 
b/sys-devel/autoconf/autoconf-2.71-r5.ebuild
index 35639562b7a3..0ebf744ac117 100644
--- a/sys-devel/autoconf/autoconf-2.71-r5.ebuild
+++ b/sys-devel/autoconf/autoconf-2.71-r5.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI+=" 
https://dev.gentoo.org/~polynomial-c/${PATCH_TARBALL_NAME}.tar.xz;
 
if ! [[ ${PV} == *_beta* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
fi
S="${WORKDIR}"/${MY_P}
 fi



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

2022-11-21 Thread Georgy Yakovlev
commit: 1a6ea3ff48d291656c805f2c6ece03a426db4b60
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 22 07:27:53 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 22 07:28:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a6ea3ff

app-arch/dpkg: add 1.21.9, unkeyworded.

some buffer overflows in tests.

Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-arch/dpkg/Manifest   |  1 +
 app-arch/dpkg/dpkg-1.21.9.ebuild | 96 
 2 files changed, 97 insertions(+)

diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest
index aeb836e08cf1..ba7a0e348334 100644
--- a/app-arch/dpkg/Manifest
+++ b/app-arch/dpkg/Manifest
@@ -1,3 +1,4 @@
 DIST dpkg_1.20.12.tar.xz 5009108 BLAKE2B 
47ecb53c331503c72081a4c472acd6e94a5b7fca2032358809aa8c546cfd6c1542c7cdfad2a5ceff0e40dc454a61974ec47233061b98cf99aabbb8e53621858c
 SHA512 
ce20b1b00b972e6fa5d5cd6427003415a92a78742dc02a9055fee6f00db22b037c54560170e657d7b74c2ae542fff4b7eba46f642adf911dc2f3b90eebefc3ff
 DIST dpkg_1.20.9.tar.xz 4954428 BLAKE2B 
4e04f7a90c8696971895081e18b220d9dee4bc5930428f131556ae71c673e61e18c363e279b566c2218da60a5aca421807c14cf518952502e707c7397769097b
 SHA512 
904a4742f5f340dc65b2137364dce102a0b2eb42ccedb2a73f79c207362c699fbffaaf1379f1f6c8b8b0e490321af1d03c34b50ebe0c703f5ce8a7f75f17a839
 DIST dpkg_1.21.1.tar.xz 4986936 BLAKE2B 
f5b0f9fe7ac5fe7ba47191a9e467356e748418846ce0fc9f3c61d731e035eb096932848b15e6a85a15938d3bbd6fa069c786ab0e89c77119958fe632a91c309f
 SHA512 
3f3f263e1300f3e4b55e84521847703dcfe465aa54829a69c31c174a2ad5e8b6a8a251da7c6020d31a38e9e6744113924a71e9579469e32289328e91a48db07f
+DIST dpkg_1.21.9.tar.xz 5084044 BLAKE2B 
9395a347f9b048c9acb57efb604219772798ea07c119c93c14f7e6574d353ac83fb6b79743ba4a08e136204484788b59128dfa065f944fd0d32e80662f9775a0
 SHA512 
0f0b9b936a025f9d905dc35c030293d9a1bdcbed640187691ae2319d99d04dac954102b1270301b12b633c48f08d6c6af0f6f21df4afb2e34a0f0a37127fd238

diff --git a/app-arch/dpkg/dpkg-1.21.9.ebuild b/app-arch/dpkg/dpkg-1.21.9.ebuild
new file mode 100644
index ..7e6769e2a976
--- /dev/null
+++ b/app-arch/dpkg/dpkg-1.21.9.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Package maintenance system for Debian"
+HOMEPAGE="https://packages.qa.debian.org/dpkg;
+SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="+bzip2 libmd +lzma nls selinux static-libs test +update-alternatives 
+zlib"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=app-arch/gzip-1.7
+   >=dev-lang/perl-5.14.2:=
+   sys-libs/ncurses:=[unicode(+)]
+   bzip2? ( app-arch/bzip2 )
+   libmd? ( app-crypt/libmd )
+   lzma? ( app-arch/xz-utils )
+   nls? ( virtual/libintl )
+   selinux? ( sys-libs/libselinux )
+   zlib? ( >=sys-libs/zlib-1.1.4 )
+"
+DEPEND="
+   ${RDEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig
+   test? (
+   dev-perl/IO-String
+   dev-perl/Test-Pod
+   virtual/perl-Test-Harness
+   )
+"
+BDEPEND="
+   sys-devel/flex
+   nls? (
+   app-text/po4a
+   >=sys-devel/gettext-0.18.2
+   )
+"
+DOCS=(
+   ChangeLog
+   THANKS
+   TODO
+)
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.18.12-flags.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i -e 's|\|${AR}|g' src/at/deb-format.at src/at/testsuite || 
die
+
+   eautoreconf
+}
+
+src_configure() {
+   tc-export AR CC
+
+   econf \
+   $(use_enable nls) \
+   $(use_enable update-alternatives) \
+   $(use_with bzip2 libbz2) \
+   $(use_with libmd) \
+   $(use_with lzma liblzma) \
+   $(use_with selinux libselinux) \
+   $(use_with zlib libz) \
+   --enable-unicode \
+   --disable-compiler-warnings \
+   --disable-dselect \
+   --disable-start-stop-daemon \
+   --localstatedir="${EPREFIX}"/var
+}
+
+src_compile() {
+   emake AR="$(tc-getAR)"
+}
+
+src_install() {
+   default
+
+   keepdir \
+   /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} \
+   /var/lib/dpkg/{alternatives,info,parts,updates}
+
+   find "${ED}" -name '*.la' -delete || die
+
+   if ! use static-libs; then
+   find "${ED}" -name '*.a' -delete || die
+   fi
+}



[gentoo-commits] proj/releng:master commit in: tools/, releases/specs-qemu/mips/

2022-11-21 Thread Andreas K. Hüttel
commit: 40ddea2e5c71c6087902fe756d56f564f3db7f71
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Nov 21 23:46:29 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Nov 21 23:46:29 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=40ddea2e

Add mips(el)2 o32 systemd builds

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 releases/specs-qemu/mips/stage1-mips2-o32-systemd.spec   | 14 ++
 releases/specs-qemu/mips/stage1-mipsel2-o32-systemd.spec | 14 ++
 releases/specs-qemu/mips/stage3-mips2-o32-systemd.spec   | 12 
 releases/specs-qemu/mips/stage3-mipsel2-o32-systemd.spec | 12 
 tools/catalyst-auto-qemu-mips-common | 11 +++
 5 files changed, 59 insertions(+), 4 deletions(-)

diff --git a/releases/specs-qemu/mips/stage1-mips2-o32-systemd.spec 
b/releases/specs-qemu/mips/stage1-mips2-o32-systemd.spec
new file mode 100644
index ..9256e128
--- /dev/null
+++ b/releases/specs-qemu/mips/stage1-mips2-o32-systemd.spec
@@ -0,0 +1,14 @@
+subarch: mips2
+target: stage1
+version_stamp: systemd-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mips
+rel_type: default
+profile: default/linux/mips/17.0/o32/systemd
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-mips2-systemd-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: yes
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/mips/stage1-mipsel2-o32-systemd.spec 
b/releases/specs-qemu/mips/stage1-mipsel2-o32-systemd.spec
new file mode 100644
index ..b2f55002
--- /dev/null
+++ b/releases/specs-qemu/mips/stage1-mipsel2-o32-systemd.spec
@@ -0,0 +1,14 @@
+subarch: mipsel2
+target: stage1
+version_stamp: systemd-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mipsel
+rel_type: default
+profile: default/linux/mips/17.0/mipsel/o32/systemd
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-mipsel2-systemd-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: yes
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/mips/stage3-mips2-o32-systemd.spec 
b/releases/specs-qemu/mips/stage3-mips2-o32-systemd.spec
new file mode 100644
index ..a47fe1e8
--- /dev/null
+++ b/releases/specs-qemu/mips/stage3-mips2-o32-systemd.spec
@@ -0,0 +1,12 @@
+subarch: mips2
+target: stage3
+version_stamp: systemd-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mips
+rel_type: default
+profile: default/linux/mips/17.0/o32/systemd
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-mips2-systemd-@TIMESTAMP@
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/mips/stage3-mipsel2-o32-systemd.spec 
b/releases/specs-qemu/mips/stage3-mipsel2-o32-systemd.spec
new file mode 100644
index ..e5c89fef
--- /dev/null
+++ b/releases/specs-qemu/mips/stage3-mipsel2-o32-systemd.spec
@@ -0,0 +1,12 @@
+subarch: mipsel2
+target: stage3
+version_stamp: systemd-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mipsel
+rel_type: default
+profile: default/linux/mips/17.0/mipsel/o32/systemd
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-mipsel2-systemd-@TIMESTAMP@
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/tools/catalyst-auto-qemu-mips-common 
b/tools/catalyst-auto-qemu-mips-common
index 8965846a..d6c0616f 100644
--- a/tools/catalyst-auto-qemu-mips-common
+++ b/tools/catalyst-auto-qemu-mips-common
@@ -6,13 +6,16 @@ UPLOAD_KEY=/root/.ssh/id_rsa
 SPECS_DIR=${REPO_DIR}/releases/specs-qemu/mips
 EMAIL_SUBJECT_PREPEND="[mips-qemu-auto]"
 
-SETS_BE="mips2o32openrc mips32o32openrc mips3n32openrc mips3multilibopenrc 
mips3n64openrc mips64n32openrc mips64multilibopenrc mips64n64openrc"
-SETS_LE="mipsel2o32openrc mips32elo32openrc mipsel3o32openrc mipsel3n32openrc 
mipsel3multilibopenrc mipsel3n64openrc mipsel3n64systemd mipsel3n64systemd_mu 
mips64eln32openrc mips64elmultilibopenrc mips64eln64openrc mips64eln64systemd 
mips64eln64systemd_mu"
+SETS_BE="mips2_o32_openrc mips2_o32_systemd mips32o32openrc mips3n32openrc 
mips3multilibopenrc mips3n64openrc mips64n32openrc mips64multilibopenrc 
mips64n64openrc"
+SETS_LE="mipsel2_o32_openrc mipsel2_o32_systemd mips32elo32openrc 
mipsel3o32openrc mipsel3n32openrc mipsel3multilibopenrc mipsel3n64openrc 
mipsel3n64systemd mipsel3n64systemd_mu mips64eln32openrc mips64elmultilibopenrc 
mips64eln64openrc mips64eln64systemd mips64eln64systemd_mu"
 
 # SETS="${SETS_BE} ${SETS_LE}"
 
-SET_mips2o32openrc_SPECS="stage1-mips2-o32-openrc.spec 
stage3-mips2-o32-openrc.spec"
-SET_mipsel2o32openrc_SPECS="stage1-mipsel2-o32-openrc.spec 
stage3-mipsel2-o32-openrc.spec"

[gentoo-commits] proj/releng:master commit in: releases/specs-qemu/mips/unused/, releases/specs-qemu/mips/, tools/

2022-11-21 Thread Andreas K. Hüttel
commit: 405315c0f16103443504401b057532d2df77270a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Nov 21 23:48:48 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Nov 21 23:48:48 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=405315c0

Disable mips32(el) builds

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../specs-qemu/mips/{ => unused}/stage1-mips32-o32-openrc.spec| 0
 .../specs-qemu/mips/{ => unused}/stage1-mips32el-o32-openrc.spec  | 0
 .../specs-qemu/mips/{ => unused}/stage3-mips32-o32-openrc.spec| 0
 .../specs-qemu/mips/{ => unused}/stage3-mips32el-o32-openrc.spec  | 0
 tools/catalyst-auto-qemu-mips-common  | 8 
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/releases/specs-qemu/mips/stage1-mips32-o32-openrc.spec 
b/releases/specs-qemu/mips/unused/stage1-mips32-o32-openrc.spec
similarity index 100%
rename from releases/specs-qemu/mips/stage1-mips32-o32-openrc.spec
rename to releases/specs-qemu/mips/unused/stage1-mips32-o32-openrc.spec

diff --git a/releases/specs-qemu/mips/stage1-mips32el-o32-openrc.spec 
b/releases/specs-qemu/mips/unused/stage1-mips32el-o32-openrc.spec
similarity index 100%
rename from releases/specs-qemu/mips/stage1-mips32el-o32-openrc.spec
rename to releases/specs-qemu/mips/unused/stage1-mips32el-o32-openrc.spec

diff --git a/releases/specs-qemu/mips/stage3-mips32-o32-openrc.spec 
b/releases/specs-qemu/mips/unused/stage3-mips32-o32-openrc.spec
similarity index 100%
rename from releases/specs-qemu/mips/stage3-mips32-o32-openrc.spec
rename to releases/specs-qemu/mips/unused/stage3-mips32-o32-openrc.spec

diff --git a/releases/specs-qemu/mips/stage3-mips32el-o32-openrc.spec 
b/releases/specs-qemu/mips/unused/stage3-mips32el-o32-openrc.spec
similarity index 100%
rename from releases/specs-qemu/mips/stage3-mips32el-o32-openrc.spec
rename to releases/specs-qemu/mips/unused/stage3-mips32el-o32-openrc.spec

diff --git a/tools/catalyst-auto-qemu-mips-common 
b/tools/catalyst-auto-qemu-mips-common
index d6c0616f..576be618 100644
--- a/tools/catalyst-auto-qemu-mips-common
+++ b/tools/catalyst-auto-qemu-mips-common
@@ -6,8 +6,8 @@ UPLOAD_KEY=/root/.ssh/id_rsa
 SPECS_DIR=${REPO_DIR}/releases/specs-qemu/mips
 EMAIL_SUBJECT_PREPEND="[mips-qemu-auto]"
 
-SETS_BE="mips2_o32_openrc mips2_o32_systemd mips32o32openrc mips3n32openrc 
mips3multilibopenrc mips3n64openrc mips64n32openrc mips64multilibopenrc 
mips64n64openrc"
-SETS_LE="mipsel2_o32_openrc mipsel2_o32_systemd mips32elo32openrc 
mipsel3o32openrc mipsel3n32openrc mipsel3multilibopenrc mipsel3n64openrc 
mipsel3n64systemd mipsel3n64systemd_mu mips64eln32openrc mips64elmultilibopenrc 
mips64eln64openrc mips64eln64systemd mips64eln64systemd_mu"
+SETS_BE="mips2_o32_openrc mips2_o32_systemd mips3n32openrc mips3multilibopenrc 
mips3n64openrc mips64n32openrc mips64multilibopenrc mips64n64openrc"
+SETS_LE="mipsel2_o32_openrc mipsel2_o32_systemd mipsel3o32openrc 
mipsel3n32openrc mipsel3multilibopenrc mipsel3n64openrc mipsel3n64systemd 
mipsel3n64systemd_mu mips64eln32openrc mips64elmultilibopenrc mips64eln64openrc 
mips64eln64systemd mips64eln64systemd_mu"
 
 # SETS="${SETS_BE} ${SETS_LE}"
 
@@ -17,8 +17,8 @@ SET_mips2_o32_systemd_SPECS="stage1-mips2-o32-systemd.spec 
stage3-mips2-o32-syst
 SET_mipsel2_o32_openrc_SPECS="stage1-mipsel2-o32-openrc.spec 
stage3-mipsel2-o32-openrc.spec"
 SET_mipsel2_o32_systemd_SPECS="stage1-mipsel2-o32-systemd.spec 
stage3-mipsel2-o32-systemd.spec"
 
-SET_mips32o32openrc_SPECS="stage1-mips32-o32-openrc.spec 
stage3-mips32-o32-openrc.spec"
-SET_mips32elo32openrc_SPECS="stage1-mips32el-o32-openrc.spec 
stage3-mips32el-o32-openrc.spec"
+# SET_mips32o32openrc_SPECS="stage1-mips32-o32-openrc.spec 
stage3-mips32-o32-openrc.spec"
+# SET_mips32elo32openrc_SPECS="stage1-mips32el-o32-openrc.spec 
stage3-mips32el-o32-openrc.spec"
 
 SET_mipsel3o32openrc_SPECS="stage1-mipsel3-o32-openrc.spec 
stage3-mipsel3-o32-openrc.spec"
 



[gentoo-commits] repo/gentoo:master commit in: app-text/wgetpaste/files/, app-text/wgetpaste/

2022-11-21 Thread Sam James
commit: 0305ea926d6107adb5d9f432dca9614903481ce1
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 01:23:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 01:33:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0305ea92

app-text/wgetpaste: add 2.33

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

 app-text/wgetpaste/Manifest|  1 +
 .../wgetpaste/files/wgetpaste-2.33-tests.patch | 83 ++
 app-text/wgetpaste/wgetpaste-2.33.ebuild   | 38 ++
 3 files changed, 122 insertions(+)

diff --git a/app-text/wgetpaste/Manifest b/app-text/wgetpaste/Manifest
index ded79d65d8d0..15e185e5b013 100644
--- a/app-text/wgetpaste/Manifest
+++ b/app-text/wgetpaste/Manifest
@@ -1,3 +1,4 @@
 DIST wgetpaste-2.29.tar.bz2 12988 BLAKE2B 
838b84632754f6e07c25fe3648e14bf939dff4e08ae8e8064e94008beb436f77738e4f54859115321fbf445a323641ebfecf5fd7d0946c72e913687deb07
 SHA512 
6596842733bb5d1d52cbb3cbcf61ba714f0cbfdc13acb4d6025ccfd27c214adaf886ac3a0a11baefaa4af3f33165619e5a3360b4e0807d29e8dc8ef5ff819bb6
 DIST wgetpaste-2.30_p20210222.tar.gz 14654 BLAKE2B 
e74332826f7faec3c2be2dddfd5f81d1ec14aec92888f27cdcd081b59262ac742003f2f48af3c3ca25be9e02f583a37dd1bec315236ab54912ebf6cf61308a10
 SHA512 
467daff5531fd6361ade87913ab867f67f72d5ffc07a35c263cd3dad65774ed31b3a6b0d69d2b52726a24419758d784c23e8c587f23e9028afd0e0a27966f32f
 DIST wgetpaste-2.32.tar.gz 16626 BLAKE2B 
a8628a47edec5797f011fdf648cccf4147043bb699fe6ebfc38b66d1bbff1840147613e1de1a2abf1048b83247e9a16026bed4174be605f99e59035cf7c64f9f
 SHA512 
57f6194c864adf3eabffe46163d1c83a5c2c30affc4c353fee5cafe6aaf19cfa306e134cb5dd216577eb34cc93eee66b28297e5a1d4fa92d78d38597170d40bb
+DIST wgetpaste-2.33.tar.xz 16408 BLAKE2B 
78baebf4edb6e6340a73127099366d306359d02c0c1eab137822c56669da0609a5479940b4fb2accbc79978df091dcd34415876618e64aa556d1584f74773736
 SHA512 
9bf1f379316da372b4f69296b54f9a266dcf9fdaa2a8718165a2029571f4c2c0166304ffebeb2ec4657ea6f49087793f40d9da383f5da052bce0543c90ea13ab

diff --git a/app-text/wgetpaste/files/wgetpaste-2.33-tests.patch 
b/app-text/wgetpaste/files/wgetpaste-2.33-tests.patch
new file mode 100644
index ..41d0bece7962
--- /dev/null
+++ b/app-text/wgetpaste/files/wgetpaste-2.33-tests.patch
@@ -0,0 +1,83 @@
+https://github.com/zlin/wgetpaste/pull/38
+
+From 3470bbe651c2264a7f985f3b86f67a6ff6d0c587 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Tue, 22 Nov 2022 01:29:16 +
+Subject: [PATCH 1/3] test: respect TMPDIR in mktemp (pass --tmpdir)
+
+Signed-off-by: Sam James 
+--- a/test/test.sh
 b/test/test.sh
+@@ -7,7 +7,7 @@
+ # Don't assume the test is being run from the same directory as the script
+ TEST_DIR="$(dirname "$0")"
+ TEST_FILE="$TEST_DIR/test.txt"
+-DL_DIR="$(mktemp -q -d /tmp/wgetpaste_test.X)"
++DL_DIR="$(mktemp -q --tmpdir -d wgetpaste_test.X)"
+ # Services to hard skip
+ # Pre-declare as map to maintain type even if empty
+ # key -> value := service -> reason
+--- a/test/test_ansi.sh
 b/test/test_ansi.sh
+@@ -9,7 +9,7 @@
+ TEST_DIR="$(dirname "$0")"
+ ANSI_FILE="$TEST_DIR/red.txt"
+ NOANSI_FILE="$TEST_DIR/red_no_ansi.txt"
+-DL_DIR="$(mktemp -q -d /tmp/wgetpaste_test_ansi.X)"
++DL_DIR="$(mktemp -q --tmpdir -d wgetpaste_test_ansi.X)"
+ # Services to hard skip
+ # Pre-declare as map to maintain type even if empty
+ # key -> value := service -> reason
+
+From 0c3cc1a5286c95a5bcd6408035f6c230350c1565 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Tue, 22 Nov 2022 01:29:40 +
+Subject: [PATCH 2/3] test: use portable bash shebang
+
+Signed-off-by: Sam James 
+--- a/test/test.sh
 b/test/test.sh
+@@ -1,4 +1,4 @@
+-#! /bin/bash
++#!/usr/bin/env bash
+ 
+ # wgetpaste test script
+ # Exit code: number of mismatched downloads or 1 for general failure
+--- a/test/test_ansi.sh
 b/test/test_ansi.sh
+@@ -1,4 +1,4 @@
+-#! /bin/bash
++#!/usr/bin/env bash
+ 
+ # wgetpaste test script (stripping ANSI codes)
+ # Based on test/test.sh
+
+From 8d1cf7a8d0ce9ff21a8e1dc66169b04e4f8fc852 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Tue, 22 Nov 2022 01:29:55 +
+Subject: [PATCH 3/3] test: normalise copyright header
+
+Signed-off-by: Sam James 
+--- a/test/test.sh
 b/test/test.sh
+@@ -2,7 +2,7 @@
+ 
+ # wgetpaste test script
+ # Exit code: number of mismatched downloads or 1 for general failure
+-# Copyright (C) 2021  xxc3nsoredxx
++# Copyright (C) 2022 Oskari Pirhonen 
+ 
+ # Don't assume the test is being run from the same directory as the script
+ TEST_DIR="$(dirname "$0")"
+--- a/test/test_ansi.sh
 b/test/test_ansi.sh
+@@ -3,7 +3,7 @@
+ # wgetpaste test script (stripping ANSI codes)
+ # Based on test/test.sh
+ # Exit code: number of mismatched downloads or 1 for general failure
+-# Copyright (C) 2022  Oskari Pirhonen 
++# Copyright (C) 2022 Oskari Pirhonen 
+ 
+ # Don't assume the test is being run from the same directory as the script
+ TEST_DIR="$(dirname "$0")"
+

diff --git 

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

2022-11-21 Thread Arthur Zamarin
commit: ae9572ee90135123782d7327420f405694ecbe55
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:25:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:27:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae9572ee

dev-python/django-taggit: add 3.1.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-taggit/Manifest  |  1 +
 .../django-taggit/django-taggit-3.1.0.ebuild   | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/django-taggit/Manifest 
b/dev-python/django-taggit/Manifest
index ccbf137bfb70..ee6e6c0d257e 100644
--- a/dev-python/django-taggit/Manifest
+++ b/dev-python/django-taggit/Manifest
@@ -1 +1,2 @@
 DIST django-taggit-3.0.0.tar.gz 57380 BLAKE2B 
67ce6adde1bcba3a9fc8f11af4135dd1a2ee75892e26d4de9970f84111c1cf73f65bc58a2de45c75b98b0c5da9b8a6077af76d1e0561ce8a5e78828db8f40226
 SHA512 
e44a5f4f8293560cecb1ba39035241f209f21803521d3e2f3102e04add9778ebc15b0da6994f0a51b6c55274318b4cabce33805952f8bbaad16ecc3c03070e10
+DIST django-taggit-3.1.0.tar.gz 58238 BLAKE2B 
ea5c90300383294daf80315b013dc1171d94fe4994cdf58a9364666a879672bd5af35f3c620673cb0a9139d2a224bc06d58f933ae94ccd8a65b947c76ab0a0ca
 SHA512 
8654b703cb9b3848a5185f1b88826a80eed44f00993d6272e8fbec1145e6c30be4c0840a0d6e88544d2f927c7c288c2be94e3df61cbe34c37f1f213a1bf0780d

diff --git a/dev-python/django-taggit/django-taggit-3.1.0.ebuild 
b/dev-python/django-taggit/django-taggit-3.1.0.ebuild
new file mode 100644
index ..15a22c24a6ea
--- /dev/null
+++ b/dev-python/django-taggit/django-taggit-3.1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Simple tagging for Django"
+HOMEPAGE="https://github.com/jazzband/django-taggit;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-3.2[${PYTHON_USEDEP}]
+   dev-python/djangorestframework[${PYTHON_USEDEP}]
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+python_test() {
+   "${EPYTHON}" -m django test -v 2 --settings=tests.settings ||
+   die "Tests failed with ${EPYTHON}"
+}



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

2022-11-21 Thread Arthur Zamarin
commit: 5a4ea8cff774f1707c0b8ae8e60266f6b44dfce1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:15:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:27:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a4ea8cf

dev-python/cleo: add 1.0.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cleo/Manifest  |  1 +
 dev-python/cleo/cleo-1.0.0.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/cleo/Manifest b/dev-python/cleo/Manifest
index abc6df6aa6af..bba90d117976 100644
--- a/dev-python/cleo/Manifest
+++ b/dev-python/cleo/Manifest
@@ -1 +1,2 @@
 DIST cleo-0.8.1.gh.tar.gz 96220 BLAKE2B 
57971f6254a31ecf5101d89e96607b5915ab5138d727279d445172b89a10acd6b76619d344973fa2bdbc320866fa1dbdf05c889f4eca879839fa6bcbbad0af7c
 SHA512 
9cd470063db9866a526f0bb8619d772c585377d5b1a662e0f94bad9fb9c853598b176444ca1ac0fadec82992196c471646504d6a28d4dcd1171433b8d160be9c
+DIST cleo-1.0.0.gh.tar.gz 154114 BLAKE2B 
7a8906b4a40c1d1a9899f2195a4e4a35a828c2ea7713df31a94e40e7e930b8624a24ff5bc219140b5e42e100f96199393c940aa1bac24991c380f2136762dbff
 SHA512 
a45af3f4ff0fc9535363bdcf265ab3d7726af99cf4b48e896f9d5fb1404721b4641f80e37a7266690a1f7d4a261cbd4c746338294ff29745f782f8657cd2bb07

diff --git a/dev-python/cleo/cleo-1.0.0.ebuild 
b/dev-python/cleo/cleo-1.0.0.ebuild
new file mode 100644
index ..0b8691d3f4b7
--- /dev/null
+++ b/dev-python/cleo/cleo-1.0.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python tool for building testable command-line interfaces"
+HOMEPAGE="
+   https://github.com/python-poetry/cleo/
+   https://pypi.org/project/cleo/
+"
+SRC_URI="
+   https://github.com/python-poetry/cleo/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+
+RDEPEND="
+   dev-python/crashtest[${PYTHON_USEDEP}]
+   dev-python/rapidfuzz[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-11-21 Thread Arthur Zamarin
commit: 7b0422df5d83b3ac757914d065dc5f45cfca574c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:19:06 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:27:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0422df

dev-python/pytest-check: add 1.1.2

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pytest-check/Manifest  |  1 +
 dev-python/pytest-check/pytest-check-1.1.2.ebuild | 26 +++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/pytest-check/Manifest b/dev-python/pytest-check/Manifest
index 621e000baef4..8680d5c35ea3 100644
--- a/dev-python/pytest-check/Manifest
+++ b/dev-python/pytest-check/Manifest
@@ -1 +1,2 @@
 DIST pytest-check-1.0.10.tar.gz 15603 BLAKE2B 
e51dbb2806bdac73e202b14668c76675979113f661eb339a1a3cff07069d3d4709869d67ea2cb6384483ebde8b68288026df9b7492b17ea67c79ee95e6865809
 SHA512 
dc3a80b20637eab8adda085ca8172bc3bde75bd47566972a07cf226bb38771933a531d99e139d7c220cc149715fd7d98ab964f72e0b520e8dd3df7633a6e5a90
+DIST pytest-check-1.1.2.tar.gz 19090 BLAKE2B 
25d483c29f7a357b26d6153582e9ca0a4b6f6c5c97baf9e8a12403de6993f44fa4d4eea370f1c800036062abffb68cbcf826c210f7eb32ef4fefcbfde031674f
 SHA512 
64e74e399cecc6733aeca7ca88dedb110029394548c0b3e27d0f35e034887fbb9a3d6a2da7b30e52a5fa68f535e15373173ffaf391afa02783009e5edb6637d3

diff --git a/dev-python/pytest-check/pytest-check-1.1.2.ebuild 
b/dev-python/pytest-check/pytest-check-1.1.2.ebuild
new file mode 100644
index ..d1335665dc21
--- /dev/null
+++ b/dev-python/pytest-check/pytest-check-1.1.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="pytest plugin that allows multiple failures per test"
+HOMEPAGE="
+   https://github.com/okken/pytest-check/
+   https://pypi.org/project/pytest_check/
+"
+SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86"
+
+RDEPEND="
+   dev-python/pytest[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2022-11-21 Thread Arthur Zamarin
commit: 90533e1e972bc475b5304684fc389938ea7ad51d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:25:47 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:27:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90533e1e

dev-python/django-taggit: add github upstream metadata

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-taggit/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/django-taggit/metadata.xml 
b/dev-python/django-taggit/metadata.xml
index d47007bd4d68..95637aaadbca 100644
--- a/dev-python/django-taggit/metadata.xml
+++ b/dev-python/django-taggit/metadata.xml
@@ -8,5 +8,6 @@


django-taggit
+   jazzband/django-taggit

 



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

2022-11-21 Thread Arthur Zamarin
commit: 43fac1a6e60def86fee3b4e4460ca91b91b6c52e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:26:46 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:27:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43fac1a6

dev-python/jedi: add 0.18.2

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/jedi/Manifest   |  1 +
 dev-python/jedi/jedi-0.18.2.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/dev-python/jedi/Manifest b/dev-python/jedi/Manifest
index 946296b9216f..e95c97ca09c4 100644
--- a/dev-python/jedi/Manifest
+++ b/dev-python/jedi/Manifest
@@ -1,3 +1,4 @@
 DIST django-stubs-fd057010f6cbf176f57d1099e82be46d39b99cb9.tar.gz 183312 
BLAKE2B 
a68f6139903f5001db994ee0d881f40ab74932e81c3e2c3a0c22dc56e6be681d0fb42ce837603b21e4d0d448ccb25884ef0f69039305f309e82603267cee9f6a
 SHA512 
506322c132f94e6a1e88cdbde6027a566387731fa6ad59934f95c3511f49d90eff2a3138363811be648b096407d418cd1f801df0bc35b1e464ef181e4076ada1
 DIST jedi-0.18.1.gh.tar.gz 466884 BLAKE2B 
c2403b20447b27b1fb19c16d1131299154fcb767453116964b339bf7ef4a1ca20b6c3216c3fbd63c304dd2c0c02a67702d5228e1d847975b778597dc58b489d1
 SHA512 
c72dc4927fe44641ea57c61e68b3c74c3a3f70ddc2990454ba931026c288723e07263918ecbb4ecc6f79716d37e10a1b1448ae8cfc6d52465122b3d1e43bea25
+DIST jedi-0.18.2.gh.tar.gz 469286 BLAKE2B 
6b65a231d092a6869b55c14a8254c4716695f46cdc9733f50607cf7bb8c864f319e2abfbe812bffc514c78cd92059fc29fa9cc0a38b1e14d6bc8bf3ad3596097
 SHA512 
1df24190c7d468f388e7175f4625670df81cd9a533c8bde12b1e0eaf982a173bdd001bbea6680144cc50ca263fa2b802da5d71de555f81717f4377c46826d0d1
 DIST typeshed-ae9d4f4b21bb5e1239816c301da7b1ea904b44c3.tar.gz 602044 BLAKE2B 
53298918a7e9a1163e76d4c70ad2a2117ee90b49329aa82d82b2aaaeaf000c971872f83ed283af6dc4be068b813876760c8b1b4acb4131865572a4aed3ea9230
 SHA512 
b3b9da66b6c6e03e0b262b3262df31215a5e080468ca9ebf4332ed53d715cd3956db7067fad3ec267042ff704f81ac665c703ef2fd0c5b445d440bd8e52bf1aa

diff --git a/dev-python/jedi/jedi-0.18.2.ebuild 
b/dev-python/jedi/jedi-0.18.2.ebuild
new file mode 100644
index ..a594ebeb1a8b
--- /dev/null
+++ b/dev-python/jedi/jedi-0.18.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+TYPESHED_P="typeshed-ae9d4f4b21bb5e1239816c301da7b1ea904b44c3"
+DJANGO_STUBS_P="django-stubs-fd057010f6cbf176f57d1099e82be46d39b99cb9"
+
+DESCRIPTION="Autocompletion library for Python"
+HOMEPAGE="
+   https://github.com/davidhalter/jedi/
+   https://pypi.org/project/jedi/
+"
+SRC_URI="
+   https://github.com/davidhalter/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   
https://github.com/davidhalter/typeshed/archive/${TYPESHED_P#typeshed-}.tar.gz
+   -> ${TYPESHED_P}.tar.gz
+   
https://github.com/davidhalter/django-stubs/archive/${DJANGO_STUBS_P#django-stubs-}.tar.gz
+   -> ${DJANGO_STUBS_P/v/}.tar.gz
+"
+
+LICENSE="
+   MIT
+   test? ( Apache-2.0 )
+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   =dev-python/parso-0.8*[${PYTHON_USEDEP}]
+"
+
+# RDEPEND needed because of an import jedi inside conf.py
+distutils_enable_sphinx docs \
+   dev-python/parso \
+   dev-python/sphinx_rtd_theme
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # upstream includes these as submodules ...
+   rmdir "${S}"/jedi/third_party/{django-stubs,typeshed} || die
+   mv "${WORKDIR}/${DJANGO_STUBS_P/v/}" \
+   "${S}/jedi/third_party/django-stubs" || die
+   mv "${WORKDIR}/${TYPESHED_P}" \
+   "${S}/jedi/third_party/typeshed" || die
+
+   # don't run doctests, don't depend on colorama
+   sed -i "s:'docopt',:: ; s:'colorama',::" setup.py || die
+   sed -i "s: --doctest-modules::" pytest.ini || die
+
+   # test_complete_expanduser relies on $HOME not being empty
+   > "${HOME}"/somefile || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # fragile
+   test/test_speed.py
+   # assumes pristine virtualenv
+   test/test_inference/test_imports.py::test_os_issues
+   )
+   [[ ${EPYTHON} != python3.8 ]] && EPYTEST_DESELECT+=(
+   # TODO
+   'test/test_integration.py::test_completion[lambdas:112]'
+   )
+
+   # some plugin breaks case-insensitivity on completions
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   # django and pytest tests are very version dependent
+   epytest -k "not django and not pytest"
+}



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

2022-11-21 Thread Arthur Zamarin
commit: 43dfaf6da1efe16e8d1efb53011927ce63eebabc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:25 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43dfaf6d

sys-devel/clang: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/sys-devel/clang/clang-15.0.5.ebuild 
b/sys-devel/clang/clang-15.0.5.ebuild
index b385880c548f..c3a6bf78f42a 100644
--- a/sys-devel/clang/clang-15.0.5.ebuild
+++ b/sys-devel/clang/clang-15.0.5.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux 
~x64-macos"
 IUSE="debug doc +extra +pie +static-analyzer test xml"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="!test? ( test )"



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

2022-11-21 Thread Arthur Zamarin
commit: 087d084ddb7bdaeff6c57a573d6c714c15bebb6a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=087d084d

sys-devel/llvm-common: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/llvm-common/llvm-common-15.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvm-common/llvm-common-15.0.5.ebuild 
b/sys-devel/llvm-common/llvm-common-15.0.5.ebuild
index 8180a88434da..d5751de58a14 100644
--- a/sys-devel/llvm-common/llvm-common-15.0.5.ebuild
+++ b/sys-devel/llvm-common/llvm-common-15.0.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 
 RDEPEND="
!sys-devel/llvm:0



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

2022-11-21 Thread Arthur Zamarin
commit: 8b892b34518486cce46f2614693a204ec27db7a3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:26 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b892b34

sys-devel/llvm: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/sys-devel/llvm/llvm-15.0.5.ebuild 
b/sys-devel/llvm/llvm-15.0.5.ebuild
index 5b8b9817970f..63d723ff020c 100644
--- a/sys-devel/llvm/llvm-15.0.5.ebuild
+++ b/sys-devel/llvm/llvm-15.0.5.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="
+binutils-plugin debug doc exegesis libedit +libffi ncurses test xar
xml z3 zstd



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

2022-11-21 Thread Arthur Zamarin
commit: 0d4ea6a3a1f1c158da1f50c4ae03354b9c4e2ab2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:25 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d4ea6a3

sys-devel/clang-common: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/clang-common/clang-common-15.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang-common/clang-common-15.0.5.ebuild 
b/sys-devel/clang-common/clang-common-15.0.5.ebuild
index 88b647234abc..4605815e55f1 100644
--- a/sys-devel/clang-common/clang-common-15.0.5.ebuild
+++ b/sys-devel/clang-common/clang-common-15.0.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="
default-compiler-rt default-libcxx default-lld llvm-libunwind
stricter



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

2022-11-21 Thread Arthur Zamarin
commit: 160be5af5841a46db61c0301625964a6b635a393
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:26 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160be5af

sys-libs/libcxx: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/sys-libs/libcxx/libcxx-15.0.5.ebuild 
b/sys-libs/libcxx/libcxx-15.0.5.ebuild
index 8b5e382b8889..92d3ede4f699 100644
--- a/sys-libs/libcxx/libcxx-15.0.5.ebuild
+++ b/sys-libs/libcxx/libcxx-15.0.5.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv sparc ~x86 ~x64-macos"
 IUSE="+clang +libcxxabi static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"



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

2022-11-21 Thread Arthur Zamarin
commit: d25f44905c6fdf2aa2e018fe9532978d36c02ca3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25f4490

sys-devel/clang-runtime: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/clang-runtime/clang-runtime-15.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang-runtime/clang-runtime-15.0.5.ebuild 
b/sys-devel/clang-runtime/clang-runtime-15.0.5.ebuild
index a6f92c78cbf4..6495dc9564d3 100644
--- a/sys-devel/clang-runtime/clang-runtime-15.0.5.ebuild
+++ b/sys-devel/clang-runtime/clang-runtime-15.0.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://clang.llvm.org/;
 
 LICENSE="metapackage"
 SLOT="$(ver_cut 1-3)"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~riscv sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="+compiler-rt libcxx openmp +sanitize"
 REQUIRED_USE="sanitize? ( compiler-rt )"
 



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

2022-11-21 Thread Arthur Zamarin
commit: f37667125ea0cfb445cf2f573e546daabedf7751
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3766712

sys-libs/libcxxabi: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/sys-libs/libcxxabi/libcxxabi-15.0.5.ebuild 
b/sys-libs/libcxxabi/libcxxabi-15.0.5.ebuild
index b97740de2fbf..d8d3f74609d7 100644
--- a/sys-libs/libcxxabi/libcxxabi-15.0.5.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-15.0.5.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv sparc ~x86 ~x64-macos"
 IUSE="+clang static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: sys-libs/llvm-libunwind/

2022-11-21 Thread Arthur Zamarin
commit: 5f0488b4c5ff6063627e6434e1c08f2c768eea5e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f0488b4

sys-libs/llvm-libunwind: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-libs/llvm-libunwind/llvm-libunwind-15.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-15.0.5.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-15.0.5.ebuild
index 9323dc121cae..74722836ef03 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-15.0.5.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-15.0.5.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/docs/ExceptionHandling.html;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc ~x86 ~x64-macos"
 IUSE="+clang debug static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"



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

2022-11-21 Thread Arthur Zamarin
commit: 52ee62a34c539c3002205b53e82e026adfe9132c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 07:49:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 07:49:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ee62a3

dev-python/lit: Stabilize 15.0.5 sparc, #881855

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/lit/lit-15.0.5.ebuild b/dev-python/lit/lit-15.0.5.ebuild
index a79ebb91d54a..1573302cb8be 100644
--- a/dev-python/lit/lit-15.0.5.ebuild
+++ b/dev-python/lit/lit-15.0.5.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Sebastian Pipping
commit: c34225108256439100685ef87bf2074348b95f8b
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Tue Nov 22 02:13:36 2022 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Tue Nov 22 02:15:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3422510

x11-misc/safeeyes: 2.1.4 + EAPI 8 + py311 + Python USE fix for Xlib/tk

Signed-off-by: Sebastian Pipping  gentoo.org>

 x11-misc/safeeyes/Manifest  |  1 +
 x11-misc/safeeyes/safeeyes-2.1.4.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest
index 4bd148f1a32d..8978399f03aa 100644
--- a/x11-misc/safeeyes/Manifest
+++ b/x11-misc/safeeyes/Manifest
@@ -2,3 +2,4 @@ DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 
61f56b7c73964f1663eff4da7965c54ff41353
 DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 
0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e
 SHA512 
ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1
 DIST safeeyes-2.1.2.tar.gz 348431 BLAKE2B 
03d51c435f62e00703aba4c1224a5a961b1a187d22e3470993a7bb4c2537dc27dfe784d4c53403905853fa79aaa1ef8e8bfb2333045a2e0d2ec48452483baa7f
 SHA512 
2d67c198fbbf7d5813d900450c6608870f5ca692f533cbb68d36e7f34e197e2e9b52b3210b328318d5c64fc430092748ddd2dfa6e493a585fdada920f933a434
 DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 
5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723
 SHA512 
8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48
+DIST safeeyes-2.1.4.tar.gz 383245 BLAKE2B 
307d58fd589c0a8b01f0c20c21f06a0f81b0d8a43f81e71e79a273a124e00df7cdd2c7c498a4918f6b56abc03fa7cb58db231124a96806a2fe60d6f9dab7f6c8
 SHA512 
547d00f18e06679464e225ab62f76c43e8efb733e945ae93c02c7cf55ab0bcf5fc078ffc41ad2842a324fff2513050cced404e8bd53d63b78ba7fb1f862c1ad3

diff --git a/x11-misc/safeeyes/safeeyes-2.1.4.ebuild 
b/x11-misc/safeeyes/safeeyes-2.1.4.ebuild
new file mode 100644
index ..a23286174f04
--- /dev/null
+++ b/x11-misc/safeeyes/safeeyes-2.1.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_REQ_USE="tk"  # for site-packages/Xlib/ext/randr.py
+
+inherit xdg distutils-r1
+
+DESCRIPTION="Linux alternative to EyeLeo"
+HOMEPAGE="https://github.com/slgobinath/SafeEyes;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/libappindicator:3[introspection]
+   dev-python/Babel[${PYTHON_USEDEP}]
+   dev-python/croniter[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-xlib[${PYTHON_USEDEP}]
+   media-sound/alsa-utils
+   x11-apps/xprop
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]
+   x11-misc/xprintidle
+   "
+
+DOCS=(
+   README.md
+)
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



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

2022-11-21 Thread Sebastian Pipping
commit: 1cd78fd844008ef5e5e6d9b54d9a57cc30a2eb65
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Tue Nov 22 02:15:18 2022 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Tue Nov 22 02:15:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd78fd8

x11-misc/safeeyes: Drop old

Signed-off-by: Sebastian Pipping  gentoo.org>

 x11-misc/safeeyes/Manifest |  3 --
 x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild | 50 -
 x11-misc/safeeyes/safeeyes-2.1.1.ebuild| 51 --
 x11-misc/safeeyes/safeeyes-2.1.2.ebuild| 51 --
 x11-misc/safeeyes/safeeyes-2.1.3.ebuild| 51 --
 5 files changed, 206 deletions(-)

diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest
index 8978399f03aa..1566e3af3c85 100644
--- a/x11-misc/safeeyes/Manifest
+++ b/x11-misc/safeeyes/Manifest
@@ -1,5 +1,2 @@
-DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 
61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc
 SHA512 
6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2
-DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 
0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e
 SHA512 
ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1
-DIST safeeyes-2.1.2.tar.gz 348431 BLAKE2B 
03d51c435f62e00703aba4c1224a5a961b1a187d22e3470993a7bb4c2537dc27dfe784d4c53403905853fa79aaa1ef8e8bfb2333045a2e0d2ec48452483baa7f
 SHA512 
2d67c198fbbf7d5813d900450c6608870f5ca692f533cbb68d36e7f34e197e2e9b52b3210b328318d5c64fc430092748ddd2dfa6e493a585fdada920f933a434
 DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 
5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723
 SHA512 
8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48
 DIST safeeyes-2.1.4.tar.gz 383245 BLAKE2B 
307d58fd589c0a8b01f0c20c21f06a0f81b0d8a43f81e71e79a273a124e00df7cdd2c7c498a4918f6b56abc03fa7cb58db231124a96806a2fe60d6f9dab7f6c8
 SHA512 
547d00f18e06679464e225ab62f76c43e8efb733e945ae93c02c7cf55ab0bcf5fc078ffc41ad2842a324fff2513050cced404e8bd53d63b78ba7fb1f862c1ad3

diff --git a/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild 
b/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild
deleted file mode 100644
index aa561a0edce9..
--- a/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit xdg distutils-r1
-
-DESCRIPTION="Linux alternative to EyeLeo"
-HOMEPAGE="https://github.com/slgobinath/SafeEyes;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="${PYTHON_DEPS}"
-DEPEND="${CDEPEND}
-   >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}]
-   "
-RDEPEND="${CDEPEND}
-   dev-libs/libappindicator:3[introspection]
-   dev-python/Babel[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-xlib[${PYTHON_USEDEP}]
-   media-sound/alsa-utils
-   x11-apps/xprop
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]
-   x11-misc/xprintidle
-   "
-
-DOCS=(
-   README.md
-)
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-}

diff --git a/x11-misc/safeeyes/safeeyes-2.1.1.ebuild 
b/x11-misc/safeeyes/safeeyes-2.1.1.ebuild
deleted file mode 100644
index 3371d997dd1d..
--- a/x11-misc/safeeyes/safeeyes-2.1.1.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
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit xdg distutils-r1
-
-DESCRIPTION="Linux alternative to EyeLeo"
-HOMEPAGE="https://github.com/slgobinath/SafeEyes;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="${PYTHON_DEPS}"
-DEPEND="${CDEPEND}
-   >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}]
-   "
-RDEPEND="${CDEPEND}
-   dev-libs/libappindicator:3[introspection]
-   dev-python/Babel[${PYTHON_USEDEP}]
-   dev-python/croniter[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   

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

2022-11-21 Thread Ben Kohler
commit: e41d8af9840b4e732e3b53676951f8cbf5a33aa7
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Nov 22 02:59:27 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Nov 22 03:00:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41d8af9

dev-libs/newt: add 0.52.22

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

 dev-libs/newt/Manifest  |   1 +
 dev-libs/newt/files/newt-0.52.22-gold.patch |  13 
 dev-libs/newt/newt-0.52.22.ebuild   | 103 
 3 files changed, 117 insertions(+)

diff --git a/dev-libs/newt/Manifest b/dev-libs/newt/Manifest
index 0ca963110391..da5523561fab 100644
--- a/dev-libs/newt/Manifest
+++ b/dev-libs/newt/Manifest
@@ -1 +1,2 @@
 DIST newt-0.52.21_p20210816.tar.gz 128555 BLAKE2B 
97c791d7301b657bec68045f2cd9bbe16eef0b099a6304e2336414837b36492bd794be04d0bbcd9eadc6fcd000ba2563a5ab90be5d61249390a6ea5435091f97
 SHA512 
06c1d5634d88a6126de5eddd1c4d436639a4d739b100f391638b0429a3941eabcaa0ff7398f498d735ec0af5e88deb14178110ab11bf5301ef661f7953692bc4
+DIST newt-0.52.22.tar.gz 128543 BLAKE2B 
103ebe43ccd186068ffd468e56698e9f6f90ab5d687a14a27d454cfd68feb4ccd11710b6c472c07905a4aeb915efefd4f3b90c3c7822db7cdd5923c53996b7ae
 SHA512 
2881340f97afccb8be02b2915a6f1de26de6c1e7c7b97776b8d2c87386e3f3611697a47b7e9b1a043f334d72b6d2bdcb7fd3ff128a7d994fcb437f456873016c

diff --git a/dev-libs/newt/files/newt-0.52.22-gold.patch 
b/dev-libs/newt/files/newt-0.52.22-gold.patch
new file mode 100644
index ..add9ce872dfd
--- /dev/null
+++ b/dev-libs/newt/files/newt-0.52.22-gold.patch
@@ -0,0 +1,13 @@
+diff -ur a/configure.ac b/configure.ac
+--- a/configure.ac 2022-11-21 07:58:11.0 -0600
 b/configure.ac 2022-11-21 20:56:42.211913050 -0600
+@@ -24,7 +24,8 @@
+ AC_MSG_CHECKING([for GNU ld])
+ LD=$($CC -print-prog-name=ld 2>&5)
+ 
+-if test $($LD -v 2>&1 | $ac_cv_path_GREP -c "GNU ld") = 0; then
++if test $($LD -v 2>&1 | $ac_cv_path_GREP -c "GNU ld") = 0 -a \
++   test $($LD -v 2>&1 | $ac_cv_path_GREP -c "GNU gold") = 0; then
+   # Not
+   GNU_LD=""
+   AC_MSG_RESULT([no])

diff --git a/dev-libs/newt/newt-0.52.22.ebuild 
b/dev-libs/newt/newt-0.52.22.ebuild
new file mode 100644
index ..748ece132c15
--- /dev/null
+++ b/dev-libs/newt/newt-0.52.22.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit autotools python-r1 toolchain-funcs
+
+MY_PV="r$(ver_rs 1- -)"
+
+DESCRIPTION="Redhat's Newt windowing toolkit development files"
+HOMEPAGE="https://pagure.io/newt;
+SRC_URI="https://github.com/mlichvar/newt/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86"
+IUSE="gpm nls tcl"
+RESTRICT="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   >=dev-libs/popt-1.6
+   =sys-libs/slang-2*
+   gpm? ( sys-libs/gpm )
+   tcl? ( >=dev-lang/tcl-8.5:0 )
+   "
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/gettext"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.52.22-gold.patch
+   "${FILESDIR}"/${PN}-0.52.14-tcl.patch
+   "${FILESDIR}"/${PN}-0.52.21-python-sitedir.patch
+)
+
+S=${WORKDIR}/${PN}-${MY_PV}
+
+src_prepare() {
+   sed -i Makefile.in \
+   -e 's|$(SHCFLAGS) -o|$(LDFLAGS) &|g' \
+   -e 's|-g -o|$(CFLAGS) $(LDFLAGS) -o|g' \
+   -e 's|-shared -o|$(CFLAGS) $(LDFLAGS) &|g' \
+   -e 's|instroot|DESTDIR|g' \
+   -e 's|  make |  $(MAKE) |g' \
+   -e "s|  ar |$(tc-getAR) |g" \
+   || die "sed Makefile.in"
+
+   if [[ -n ${LINGUAS} ]]; then
+   local lang langs
+   for lang in ${LINGUAS}; do
+   test -r po/${lang}.po && langs="${langs} ${lang}.po"
+   done
+   sed -i po/Makefile \
+   -e "/^CATALOGS = /cCATALOGS = ${langs}" \
+   || die "sed po/Makefile"
+   fi
+
+   default
+   eautoreconf
+
+   # can't build out-of-source
+   python_copy_sources
+}
+
+src_configure() {
+   configuring() {
+   econf \
+   PYTHONVERS="${PYTHON}" \
+   $(use_with gpm gpm-support) \
+   $(use_with tcl) \
+   $(use_enable nls)
+   }
+   python_foreach_impl run_in_build_dir configuring
+}
+
+src_compile() {
+   building() {
+   emake PYTHONVERS="${EPYTHON}"
+   }
+   python_foreach_impl run_in_build_dir building
+}
+
+src_install() {
+   installit() {
+   emake \
+   DESTDIR="${D}" \
+   PYTHON_SITEDIR="$(python_get_sitedir)" \
+   PYTHONVERS="${EPYTHON}" \
+   install
+   

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/stgit/

2022-11-21 Thread Yixun Lan
commit: f17c504c742988d9d73f1ba453239c2dbf49e102
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Nov 16 13:41:20 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Nov 22 04:50:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f17c504c

dev-vcs/stgit: add new 2.0.3

stgit has been rewritten using rust lang,
so drop all other keywords

Signed-off-by: Yixun Lan  gentoo.org>

 dev-vcs/stgit/Manifest   | 115 
 dev-vcs/stgit/metadata.xml   |   1 -
 dev-vcs/stgit/stgit-2.0.3.ebuild | 157 +++
 3 files changed, 272 insertions(+), 1 deletion(-)

diff --git a/dev-vcs/stgit/Manifest b/dev-vcs/stgit/Manifest
index e21c088a4b96..02c47339b8ea 100644
--- a/dev-vcs/stgit/Manifest
+++ b/dev-vcs/stgit/Manifest
@@ -1 +1,116 @@
+DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
+DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 
86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e
 SHA512 
b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191
+DIST anyhow-1.0.66.crate 43770 BLAKE2B 
8d74397c47bd64c00f015cf7ee279fa020ea39191440208d77e4a5fdb35fca531e8bb9b765be223b24050d0fd1db76fa5b516146f450937f84a5c113c9eca997
 SHA512 
7b4078906df2805d491dc2f29c4eec85a9f43078c0dcd9c05261c2706ed655953b693c4f59fda62547681b29cda9ac7a0789f1359bb18110403cfe34e9fb0dc3
+DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
+DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
+DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
+DIST bstr-1.0.1.crate 340636 BLAKE2B 
5c5c67fd6ac1d7219eb0b47fab4a32dcaca91218316a0151e8cdcda0c94dbec06623cb1ac1cc8a2203bd77bfeaaed57042b2dfb401f5f4bd8d397d64a34d9e56
 SHA512 
b4896364458074cf478c8df412619860858f5eb96e2228e5d083f074dd11b49ec1076df314c5d593dd4f8da1a286305793cdfecbcd9aa5f417706e545c4e8585
+DIST bumpalo-3.11.1.crate 81207 BLAKE2B 
ba76008fb5a975aca12b6f893779e18dd353a22a42cbbeecd5870622a7cbc0cd7e37036af600c570b8a55f26ea8d07f44a9aa1a8373d977b6f75bd4276730292
 SHA512 
70e90bee1fa4e783ff5a3b18f192b9347bafab7daaa907e74913a415a66c29acfb073fcfb46150801aa7649ab0d2ec8a610de239551565dd167bac72ab13a9bc
+DIST bzip2-0.4.3.crate 34195 BLAKE2B 
946ff5824531de8b82241fa042638cd33e708c4b517fa40c99e49f77ac7fd7aabe614e4b560ed8f5484ef8fd06bf19041cb20b7a622f4f1dea9ba26c5b821c5e
 SHA512 
2d4622c336f204ab28970ccb369ba55829bfea426bfe96f15da376f2375c441a9bfb03c46f5da210990f23115740250cc15e9036309034b39a1c960dca542da2
+DIST bzip2-sys-0.1.11+1.0.8.crate 633444 BLAKE2B 
01578c512443134fc786669bea4f2ec4b9c457b9936c907315299d8b67ed78045d458c83ccc119f0fad511529fb5af5feff5fa2d983fdae832d2fcc1b343e102
 SHA512 
d0a86b9f03acb1e4e309d5739dc2e88cab582757d467a433afe0017017f0e5d2c0282529e3a117160958ed170d8d695ecae739805888305df0e35e4dc440582b
+DIST cc-1.0.77.crate 60723 BLAKE2B 
93720cee6c5721ec43b3f502b0879043afc44049e2ce528addebd8b6cf182a8e370143d67e32a965f1ef4fc07e55c87aaf95c0b1b5f9b85eb4e743a95b17bdf5
 SHA512 
38a421818bbb22fa6a6bd871a7d69add88932db68683ec91d1b4ce1ba68ea2b9272c42c35f437030614cb522f43db964e3a8f1223dcdef9158090b00d17afe2b
+DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
+DIST chrono-0.4.23.crate 187259 BLAKE2B 
b4a7cfb8d1921d396c9e2bf350e6c61d04480a78c170d153e525ff581e8298936583744b6c59769774fdb8ad433269d01ad792f967da96e6c19d33460de937f9
 SHA512 
697a78ee83eaf38d83011bdf2086b3149b830d3d270e8414828b98ed2426063df43ac6eb4324f2dd694662afb86e6e4f005dee6116dfdd97adaebedefffd43fa
+DIST clap-4.0.26.crate 205197 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/stgit/

2022-11-21 Thread Arthur Zamarin
commit: 8b557e21f1d8fa9477d2471e382379a62584b275
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 05:31:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 05:31:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b557e21

dev-vcs/stgit: Keyword 2.0.3 arm, #882437

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-vcs/stgit/stgit-2.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/stgit/stgit-2.0.3.ebuild b/dev-vcs/stgit/stgit-2.0.3.ebuild
index d528fbcab655..7cec28f6f387 100644
--- a/dev-vcs/stgit/stgit-2.0.3.ebuild
+++ b/dev-vcs/stgit/stgit-2.0.3.ebuild
@@ -131,7 +131,7 @@ RESTRICT="mirror"
 # use cargo-license for a more accurate license picture
 LICENSE="Apache-2.0 MIT BSD BSL-1.1 GPL-2 Unicode-DFS-2016 Unlicense ZLIB"
 SLOT="0/2"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
 IUSE="doc"
 
 DEPEND="doc? ( app-text/asciidoc )"



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/stgit/

2022-11-21 Thread Arthur Zamarin
commit: e25aa726ac41173a02cd1fd51e693861b5d223f4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 05:31:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 05:31:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25aa726

dev-vcs/stgit: Keyword 2.0.3 arm64, #882437

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-vcs/stgit/stgit-2.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/stgit/stgit-2.0.3.ebuild b/dev-vcs/stgit/stgit-2.0.3.ebuild
index 7cec28f6f387..5e33f55a7c0a 100644
--- a/dev-vcs/stgit/stgit-2.0.3.ebuild
+++ b/dev-vcs/stgit/stgit-2.0.3.ebuild
@@ -131,7 +131,7 @@ RESTRICT="mirror"
 # use cargo-license for a more accurate license picture
 LICENSE="Apache-2.0 MIT BSD BSL-1.1 GPL-2 Unicode-DFS-2016 Unlicense ZLIB"
 SLOT="0/2"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
 IUSE="doc"
 
 DEPEND="doc? ( app-text/asciidoc )"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-version-warning/

2022-11-21 Thread Anna Vyalkova
commit: 4ae37e19ad9f640120143d49be8a0d40bd18770e
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 05:55:11 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 05:55:11 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ae37e19

dev-python/sphinx-version-warning: new package, add 1.1.2

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/sphinx-version-warning/Manifest |  1 +
 dev-python/sphinx-version-warning/metadata.xml | 13 ++
 .../sphinx-version-warning-1.1.2.ebuild| 28 ++
 3 files changed, 42 insertions(+)

diff --git a/dev-python/sphinx-version-warning/Manifest 
b/dev-python/sphinx-version-warning/Manifest
new file mode 100644
index 0..388a250a9
--- /dev/null
+++ b/dev-python/sphinx-version-warning/Manifest
@@ -0,0 +1 @@
+DIST sphinx-version-warning-1.1.2.gh.tar.gz 88859 BLAKE2B 
9f5ab5f24ad8ef3784a6f2e8213b57c9f26f79d7d9801dffcf245f74a70938cccf04f7040749eab249034b58ff275e96e06e2272cc229d2605d8474098fbb2e3
 SHA512 
a629b9271507f812e3e814b4f11f78d1dc3cbd90b8db12b75a680e3d3bb17216bdc52ad246e985392a29cf5f4aa22ba14801019bebc306996d9f58e895b6494d

diff --git a/dev-python/sphinx-version-warning/metadata.xml 
b/dev-python/sphinx-version-warning/metadata.xml
new file mode 100644
index 0..d0d553a0c
--- /dev/null
+++ b/dev-python/sphinx-version-warning/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   https://sphinx-version-warning.readthedocs.io/
+   sphinx-version-warning
+   humitos/sphinx-version-warning
+   
+

diff --git 
a/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild 
b/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild
new file mode 100644
index 0..bb8e30908
--- /dev/null
+++ b/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Sphinx extension to add a warning banner"
+HOMEPAGE="
+   https://pypi.org/project/sphinx-version-warning/
+   https://github.com/humitos/sphinx-version-warning
+"
+SRC_URI="https://github.com/humitos/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-autoapi \
+   dev-python/sphinx-prompt \
+   dev-python/sphinx-tabs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxemoji



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

2022-11-21 Thread Anna Vyalkova
commit: 2a62c2c328a5b889120f78e8acf0e89df88680b0
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 04:48:39 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 04:48:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a62c2c3

dev-python/pymeeus: enable py3.11, pypy3

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/pymeeus/pymeeus-0.5.11.ebuild | 13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-python/pymeeus/pymeeus-0.5.11.ebuild 
b/dev-python/pymeeus/pymeeus-0.5.11.ebuild
index df8144df4..86fce5fe2 100644
--- a/dev-python/pymeeus/pymeeus-0.5.11.ebuild
+++ b/dev-python/pymeeus/pymeeus-0.5.11.ebuild
@@ -1,15 +1,19 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 
 MY_PN="PyMeeus"
 MY_P="${MY_PN}-${PV}"
 DESCRIPTION="Python implementation of Jean Meeus astronomical routines"
-HOMEPAGE="https://github.com/architest/pymeeus;
+HOMEPAGE="
+   https://pypi.org/project/PyMeeus/
+   https://github.com/architest/pymeeus
+"
 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 S="${WORKDIR}/${MY_P}"
 
@@ -19,4 +23,5 @@ KEYWORDS="~amd64"
 
 distutils_enable_tests pytest
 
-distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme
+distutils_enable_sphinx docs/source \
+   dev-python/sphinx_rtd_theme



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

2022-11-21 Thread Anna Vyalkova
commit: 8f1a57ce984ba29073045008b910c956a6163c43
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 05:19:24 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 05:19:24 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8f1a57ce

dev-python/myst-parser: new package, add 0.18.1

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/myst-parser/Manifest  |  1 +
 dev-python/myst-parser/metadata.xml  | 13 ++
 dev-python/myst-parser/myst-parser-0.18.1.ebuild | 53 
 3 files changed, 67 insertions(+)

diff --git a/dev-python/myst-parser/Manifest b/dev-python/myst-parser/Manifest
new file mode 100644
index 0..b45581ab9
--- /dev/null
+++ b/dev-python/myst-parser/Manifest
@@ -0,0 +1 @@
+DIST myst-parser-0.18.1.gh.tar.gz 769288 BLAKE2B 
77f21ae4277ef4ed9020caad86ef3ea92a1efca35f7ab61203fe2125e4fab31a74a740db7a1f1d6ea0a576c24706b0997beea296d782eb5a07ba4e91a0a9e52d
 SHA512 
4bc3a89480f175779da4f093aaa99a1516f76ab4107dcf8747b6614f347e91739f8596693f95529d76aedbb0c84b4efde4262517bc445aa7027d51e05e8b48bc

diff --git a/dev-python/myst-parser/metadata.xml 
b/dev-python/myst-parser/metadata.xml
new file mode 100644
index 0..4a9e5740c
--- /dev/null
+++ b/dev-python/myst-parser/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   https://myst-parser.readthedocs.io/
+   myst-parser
+   executablebooks/MyST-Parser
+   
+

diff --git a/dev-python/myst-parser/myst-parser-0.18.1.ebuild 
b/dev-python/myst-parser/myst-parser-0.18.1.ebuild
new file mode 100644
index 0..2dba9480e
--- /dev/null
+++ b/dev-python/myst-parser/myst-parser-0.18.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=flit
+inherit distutils-r1 optfeature
+
+MY_PN="MyST-Parser"
+DESCRIPTION="An extended commonmark compliant parser, with bridges to docutils 
& sphinx"
+HOMEPAGE="
+   https://pypi.org/project/myst-parser/
+   https://github.com/executablebooks/MyST-Parser
+"
+SRC_URI="https://github.com/executablebooks/${MY_PN}/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/markdown-it-py[${PYTHON_USEDEP}]
+   dev-python/mdit-py-plugins[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/pytest-param-files[${PYTHON_USEDEP}]
+   dev-python/pytest-regressions[${PYTHON_USEDEP}]
+   

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

2022-11-21 Thread Anna Vyalkova
commit: e8271c1a9f1f70f01e219fb71a30a395f0a7a6ef
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 05:22:21 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 05:22:25 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e8271c1a

dev-python/convertdate: enable py3.11 & docs

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/convertdate/Manifest | 2 +-
 dev-python/convertdate/convertdate-2.4.0.ebuild | 9 +
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/dev-python/convertdate/Manifest b/dev-python/convertdate/Manifest
index e5acebd36..edba38e8e 100644
--- a/dev-python/convertdate/Manifest
+++ b/dev-python/convertdate/Manifest
@@ -1,2 +1,2 @@
 DIST convertdate-2.3.2.tar.gz 52155 BLAKE2B 
607e5b0ec3c4bc664cec51c32c68ccec0676f72e839c9d094fb901ce1ae154c759f5bded34f5654562ae1e74111c4ee263159ae46cb545b2cfae81af343511f4
 SHA512 
a1c70564fafc697a5fb941d32603e8bfae565089a1a37bc3c2f8793bf926e6e97c752ffddb9192ae54e37ccafb0a02969b9f9086875595f1eb97cf264f96fde9
-DIST convertdate-2.4.0.tar.gz 52728 BLAKE2B 
1ee45f86c1a424f479a0a01d7f048a861cea9a25e82adade8dc26182064428b27dac98012d9a1e6afc7412f27366dd3d06ecc8d881eb6946d24a037305bb5c57
 SHA512 
d6b63000fd72640d69afa12b5f942684fa1c2f52880bc76e78780f144848040176a7869cd7b95a502abfd5b8fe1ebc3c844f3eb261e2ad547e6be493b11cd432
+DIST convertdate-2.4.0.gh.tar.gz 52728 BLAKE2B 
1ee45f86c1a424f479a0a01d7f048a861cea9a25e82adade8dc26182064428b27dac98012d9a1e6afc7412f27366dd3d06ecc8d881eb6946d24a037305bb5c57
 SHA512 
d6b63000fd72640d69afa12b5f942684fa1c2f52880bc76e78780f144848040176a7869cd7b95a502abfd5b8fe1ebc3c844f3eb261e2ad547e6be493b11cd432

diff --git a/dev-python/convertdate/convertdate-2.4.0.ebuild 
b/dev-python/convertdate/convertdate-2.4.0.ebuild
index c280e8bf7..05affc299 100644
--- a/dev-python/convertdate/convertdate-2.4.0.ebuild
+++ b/dev-python/convertdate/convertdate-2.4.0.ebuild
@@ -3,13 +3,13 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 
 DESCRIPTION="Utils for converting between date formats and calculating 
holidays"
 HOMEPAGE="https://github.com/fitnr/convertdate;
-SRC_URI="https://github.com/fitnr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/fitnr/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
@@ -19,5 +19,6 @@ RDEPEND="dev-python/pymeeus[${PYTHON_USEDEP}]"
 
 distutils_enable_tests pytest
 
-# TODO: requires myst_parser
-#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
+distutils_enable_sphinx docs \
+   dev-python/myst-parser \
+   dev-python/sphinx_rtd_theme



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

2022-11-21 Thread Anna Vyalkova
commit: 38929052cfa12c1f420cb51bc877a65f3341b4e5
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 06:08:54 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 06:08:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38929052

dev-python/sphinxcontrib-jquery: new package, add 3.0.0

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/sphinxcontrib-jquery/Manifest   |  1 +
 dev-python/sphinxcontrib-jquery/metadata.xml   | 12 
 .../sphinxcontrib-jquery-3.0.0.ebuild  | 35 ++
 3 files changed, 48 insertions(+)

diff --git a/dev-python/sphinxcontrib-jquery/Manifest 
b/dev-python/sphinxcontrib-jquery/Manifest
new file mode 100644
index 0..128c4662f
--- /dev/null
+++ b/dev-python/sphinxcontrib-jquery/Manifest
@@ -0,0 +1 @@
+DIST sphinxcontrib-jquery-3.0.0.gh.tar.gz 121750 BLAKE2B 
5b160fa1434b111683824442a0ecb0da230dba7f29161495859845282e1b6471faa256be6fffc2d34c6fc97e4e188bb1247284613bf65bf322fcb77463b6cf83
 SHA512 
a681f42734f2925b597f8d90c7b90a3f6df9549d1c97195799670542c5eabdc4d4d4aecfef29f56bd74ffad18ab179cc47f27b8395c11388259473690601901a

diff --git a/dev-python/sphinxcontrib-jquery/metadata.xml 
b/dev-python/sphinxcontrib-jquery/metadata.xml
new file mode 100644
index 0..fed772b31
--- /dev/null
+++ b/dev-python/sphinxcontrib-jquery/metadata.xml
@@ -0,0 +1,12 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   sphinxcontrib.jquery
+   sphinx-contrib/jquery
+   
+

diff --git a/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-3.0.0.ebuild 
b/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-3.0.0.ebuild
new file mode 100644
index 0..e4f4cfc38
--- /dev/null
+++ b/dev-python/sphinxcontrib-jquery/sphinxcontrib-jquery-3.0.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=flit
+inherit distutils-r1
+
+MY_PN=${PN#sphinxcontrib-}
+DESCRIPTION="Extension to include jQuery on newer Sphinx releases"
+HOMEPAGE="
+   https://pypi.org/project/sphinxcontrib-jquery/
+   https://github.com/sphinx-contrib/jquery
+"
+SRC_URI="https://github.com/sphinx-contrib/${MY_PN}/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="0BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/sphinx-testing[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( AUTHORS {CHANGES,README}.rst )
+
+distutils_enable_tests pytest



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

2022-11-21 Thread Anna Vyalkova
commit: bd6dea52d1c3ea36be563eae4ceac84349a5b420
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 06:50:33 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 06:50:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bd6dea52

dev-python/dateparser: new package, add 1.1.4

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/dateparser/Manifest|  1 +
 dev-python/dateparser/dateparser-1.1.4.ebuild | 51 +++
 dev-python/dateparser/metadata.xml| 12 +++
 3 files changed, 64 insertions(+)

diff --git a/dev-python/dateparser/Manifest b/dev-python/dateparser/Manifest
new file mode 100644
index 0..bb72cce7d
--- /dev/null
+++ b/dev-python/dateparser/Manifest
@@ -0,0 +1 @@
+DIST dateparser-1.1.4.tar.gz 294406 BLAKE2B 
5e13a76f1a11dfdb322494a06f288b404149f22481beaf991b0256874aaabb65120fb3e217da5f18d3152cd1786354e2dc8a237591821458be27d5cbac6beac0
 SHA512 
a20f821dea1ec8e6eb7033de91b1e74777607c4b31286a87e06d85c7278dad3c164ddc88640e0372d9f32eed72a40e28c58bea26a77fdc01c59d2d9fc70bb2d7

diff --git a/dev-python/dateparser/dateparser-1.1.4.ebuild 
b/dev-python/dateparser/dateparser-1.1.4.ebuild
new file mode 100644
index 0..7e8fdc2c1
--- /dev/null
+++ b/dev-python/dateparser/dateparser-1.1.4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Date parsing library designed to parse dates from HTML pages"
+HOMEPAGE="https://github.com/scrapinghub/dateparser;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-4"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/regex[${PYTHON_USEDEP}]
+   dev-python/tzlocal[${PYTHON_USEDEP}]
+"
+BDEPEND="test? (
+   dev-libs/fastText[python,${PYTHON_USEDEP}]
+   dev-python/convertdate[${PYTHON_USEDEP}]
+   dev-python/hijri-converter[${PYTHON_USEDEP}]
+   dev-python/langdetect[${PYTHON_USEDEP}]
+   dev-python/parameterized[${PYTHON_USEDEP}]
+)"
+
+EPYTEST_IGNORE=(
+   # GitPython fails to allocate memory
+   tests/test_dateparser_data_integrity.py
+)
+
+EPYTEST_DESELECT=(
+   # tests that require network
+   
tests/test_language_detect.py::CustomLangDetectParserTest::test_custom_language_detect_fast_text_{0,1}
+)
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme
+
+pkg_postinst() {
+   optfeature "calendars support" "dev-python/hijri-converter 
dev-python/convertdate"
+   optfeature "fasttext support" "dev-libs/fastText[python]"
+   optfeature "langdetect support" dev-python/langdetect
+}

diff --git a/dev-python/dateparser/metadata.xml 
b/dev-python/dateparser/metadata.xml
new file mode 100644
index 0..69d0caa11
--- /dev/null
+++ b/dev-python/dateparser/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   scrapinghub/dateparser
+   dateparser
+   
+



[gentoo-commits] repo/proj/guru:dev commit in: app-text/komikku/

2022-11-21 Thread Anna Vyalkova
commit: 667485dbc68a7d5368dcc5c383a99a6a9ca0dccd
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 07:32:10 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 07:32:10 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=667485db

app-text/komikku: new package, add 1.4.1

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 app-text/komikku/Manifest |  1 +
 app-text/komikku/komikku-1.4.1.ebuild | 91 +++
 app-text/komikku/metadata.xml | 11 +
 3 files changed, 103 insertions(+)

diff --git a/app-text/komikku/Manifest b/app-text/komikku/Manifest
new file mode 100644
index 0..117e700a1
--- /dev/null
+++ b/app-text/komikku/Manifest
@@ -0,0 +1 @@
+DIST Komikku-v1.4.1.tar.bz2 4306813 BLAKE2B 
f611b4596c86606f8b7d4840ea049d7547eebbe75ab594e2904dd639ad29006d648610c9e90993d065baa36f48de4f1c41cbc3b0a4462f6e342623007c946faf
 SHA512 
a4cb417fb65517d1245f32a220b7d16f42130e4f96edfce8dc33ac00b9f3664f451937036e0c6849984e8864e1d1b10ea57a4614d9256d164e8d4c04cb10

diff --git a/app-text/komikku/komikku-1.4.1.ebuild 
b/app-text/komikku/komikku-1.4.1.ebuild
new file mode 100644
index 0..0fa2a0727
--- /dev/null
+++ b/app-text/komikku/komikku-1.4.1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite(+),ssl(+)"
+DISTUTILS_USE_PEP517=no
+DISTUTILS_SINGLE_IMPL=1
+inherit distutils-r1 meson gnome2-utils virtualx xdg
+
+MY_PN="${PN^}"
+MY_P="${MY_PN}-v${PV}"
+DESCRIPTION="An online/offline manga reader for GNOME"
+HOMEPAGE="https://gitlab.com/valos/Komikku;
+SRC_URI="https://gitlab.com/valos/${MY_PN}/-/archive/v${PV}/${MY_P}.tar.bz2;
+S="${WORKDIR}/${MY_P}"
+
+KEYWORDS="~amd64"
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="test"
+
+RESTRICT="test"
+PROPERTIES="test_network"
+
+DEPEND="
+   dev-libs/glib:2
+   dev-libs/gobject-introspection[${PYTHON_SINGLE_USEDEP}]
+   >=gui-libs/gtk-4.8.2:4
+   >=gui-libs/libadwaita-1.2.0[introspection]
+   net-libs/webkit-gtk:5[introspection]
+"
+RDEPEND="
+   ${DEPEND}
+   $(python_gen_cond_dep '
+   app-arch/brotli[python,${PYTHON_USEDEP}]
+   dev-python/aiohttp[${PYTHON_USEDEP}]
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/cffi[${PYTHON_USEDEP}]
+   dev-python/cloudscraper[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/dateparser[${PYTHON_USEDEP}]
+   dev-python/emoji[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pure-protobuf[${PYTHON_USEDEP}]
+   dev-python/pygobject[${PYTHON_USEDEP}]
+   dev-python/python-magic[${PYTHON_USEDEP}]
+   dev-python/rarfile[compressed,${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/unidecode[${PYTHON_USEDEP}]
+   ')
+"
+BDEPEND="
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/pytest-steps[${PYTHON_USEDEP}]
+   ')
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   default
+
+   # fix broken shebang
+   sed "s|py_installation.path()|'${PYTHON}'|" -i bin/meson.build || die
+}
+
+src_test() {
+   virtx epytest
+}
+
+src_install() {
+   meson_src_install
+   python_optimize
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+   xdg_pkg_postinst
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+   xdg_pkg_postrm
+}

diff --git a/app-text/komikku/metadata.xml b/app-text/komikku/metadata.xml
new file mode 100644
index 0..f267a16e3
--- /dev/null
+++ b/app-text/komikku/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   valos/Komikku
+   
+



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

2022-11-21 Thread Anna Vyalkova
commit: 2f852fb59d0804e3d7de616aa17f236b1846b01e
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 06:22:25 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 06:22:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f852fb5

dev-python/w3lib: enable py3.11

update HOMEPAGE, SRC_URI

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/w3lib/Manifest   |  2 +-
 dev-python/w3lib/w3lib-2.0.1.ebuild | 17 +
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/dev-python/w3lib/Manifest b/dev-python/w3lib/Manifest
index 120f9925e..34b031804 100644
--- a/dev-python/w3lib/Manifest
+++ b/dev-python/w3lib/Manifest
@@ -1,2 +1,2 @@
 DIST w3lib-1.22.0.tar.gz 42682 BLAKE2B 
72e5a8f5313a5552d619c4d9ab3784f0575da46a23828ceeb0b4dd939607be2777f8d1e73fb98dc04aae3da2a8e6d48064ad4063ad3b178fa1d53e8eec345e1c
 SHA512 
14e12726ca46a60d0a86f670f8b19415c2a6e304eeb9a152008a2d1ea81267ddc5ff36b47fdd308bb476486961e2c243c20cfe85f79a8eb7e31ba85d46dd
-DIST w3lib-2.0.1.tar.gz 43905 BLAKE2B 
35d5ef1b326074a86f98341c50ed08f8ec8bc3e13433b7dc8ee6db453375fa0a1958f0f83d4274eeef89b95a177c3f92994c0927367c420d5a03c8400420cc91
 SHA512 
c4c1a00ad6d0c8f9a3a3a6581fb513328f89bfd9f797bf6289133580581c2579b04da8a2c815d14214bc0dbc87839de3d9f7949ad9398402312d3c522361414e
+DIST w3lib-2.0.1.tar.gz 43324 BLAKE2B 
cb3b16da08b37ff224a94c37987fab3da752490eec081dece6c9576067590e0012585f9c26d0af2bb86c99fc6ba0cf47213cb32d51847513ee1d35bf48bdb66b
 SHA512 
6d271d1d2858f2aef843cb3e99ca46cadef3d866f920a55696d7189c8b7da3ca3f9adbb066272301c9b5332a414ff4554222a044efa58ec622be8a3da79c04e3

diff --git a/dev-python/w3lib/w3lib-2.0.1.ebuild 
b/dev-python/w3lib/w3lib-2.0.1.ebuild
index 1693f3352..f5f9bec11 100644
--- a/dev-python/w3lib/w3lib-2.0.1.ebuild
+++ b/dev-python/w3lib/w3lib-2.0.1.ebuild
@@ -1,14 +1,19 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 
 DESCRIPTION="Library of web-related functions"
-HOMEPAGE="https://scrapy.org/;
-SRC_URI="https://github.com/scrapy/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+HOMEPAGE="
+   https://scrapy.org/
+   https://pypi.org/project/w3lib/
+   https://github.com/scrapy/w3lib
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT=0
@@ -18,6 +23,10 @@ RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 
 distutils_enable_tests pytest
 
+distutils_enable_sphinx docs \
+   dev-python/sphinx-hoverxref \
+   dev-python/sphinx-notfound-page
+
 EPYTEST_DESELECT=(
# https://github.com/scrapy/w3lib/issues/164
tests/test_url.py::UrlTests::test_add_or_replace_parameter



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

2022-11-21 Thread Anna Vyalkova
commit: d5816fe30eebbd4a8d223a5319b2eb709fafc12e
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 06:25:17 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 06:25:17 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d5816fe3

dev-python/parsel: add 1.7.0

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/parsel/Manifest|  1 +
 dev-python/parsel/parsel-1.7.0.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/dev-python/parsel/Manifest b/dev-python/parsel/Manifest
index 7912a5960..7b4db1cb9 100644
--- a/dev-python/parsel/Manifest
+++ b/dev-python/parsel/Manifest
@@ -1 +1,2 @@
 DIST parsel-1.6.0.tar.gz 100678 BLAKE2B 
9fe937013d84d168cab4e415affecece272f7b2af729448aaf802240d0d7aca553d85de5747cf06ecbd17099e2bd81c741a3afd6bbad803916afdfd3673c07d6
 SHA512 
d3161522e1102cceeb1f29ab020b33019d4ac7f096cfab8fbe40f54073e49afc24f02aa54206d86f56c8f92e3db2d0d2f8a3dbdfa6417492cf299201f2ae6604
+DIST parsel-1.7.0.tar.gz 46036 BLAKE2B 
e83b5f7f5a7a4274632a38586641be761482c6978670f6c747249d4063f5596bacc42d698d294da1aa9fb972bbaf21cbe3247e49560f1b9c29a3d79eee4dd00a
 SHA512 
850784cfb32fbf619dbcd53152edb569b199965e59f3ec088892a8d432aaf08c1a61f3562499c5c592d9578fb28f871d519e3d7b344e3b7a12fbaaca57909f89

diff --git a/dev-python/parsel/parsel-1.7.0.ebuild 
b/dev-python/parsel/parsel-1.7.0.ebuild
new file mode 100644
index 0..30d5eb07b
--- /dev/null
+++ b/dev-python/parsel/parsel-1.7.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Utility to extract data from XML/HTML documents using XPath or 
CSS selectors"
+HOMEPAGE="
+   https://scrapy.org/
+   https://pypi.org/project/parsel/
+   https://github.com/scrapy/parsel
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT=0
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/cssselect[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/w3lib[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/sybil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-notfound-page \
+   dev-python/sphinx_rtd_theme
+
+src_prepare() {
+   distutils-r1_src_prepare
+   sed "/pytest-runner/d" -i setup.py || die
+}
+
+python_test() {
+   epytest --ignore=docs
+}



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

2022-11-21 Thread Anna Vyalkova
commit: 9efc1e2d5f3ff633d3cd1a21893468df1f8fada5
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 05:26:54 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 05:26:58 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9efc1e2d

dev-python/langdetect: enable py3.11

also fix license

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/langdetect/langdetect-1.0.9.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/langdetect/langdetect-1.0.9.ebuild 
b/dev-python/langdetect/langdetect-1.0.9.ebuild
index aa0720c5d..194327d98 100644
--- a/dev-python/langdetect/langdetect-1.0.9.ebuild
+++ b/dev-python/langdetect/langdetect-1.0.9.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 
 DESCRIPTION="Port of Google's language-detection library to Python"
@@ -13,7 +14,7 @@ HOMEPAGE="
 "
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-LICENSE="MIT"
+LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64"
 



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

2022-11-21 Thread Anna Vyalkova
commit: 575033ad4d3eb7a9f8aded1d6f4dc4f509ef2766
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Nov 22 06:19:47 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Nov 22 06:19:47 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=575033ad

dev-python/sphinx-hoverxref: new package, add 1.3.0

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/sphinx-hoverxref/Manifest   |  1 +
 dev-python/sphinx-hoverxref/metadata.xml   | 13 ++
 .../sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild | 49 ++
 3 files changed, 63 insertions(+)

diff --git a/dev-python/sphinx-hoverxref/Manifest 
b/dev-python/sphinx-hoverxref/Manifest
new file mode 100644
index 0..2164c9d52
--- /dev/null
+++ b/dev-python/sphinx-hoverxref/Manifest
@@ -0,0 +1 @@
+DIST sphinx-hoverxref-1.3.0.gh.tar.gz 1720899 BLAKE2B 
dae94b9ba8fb46e76d669548d9cfb41cc858756d800c5be8bdc73fb58c44587d56dd1fdb2c402ef8cb685f03f5e09a58852dff51c4670de9116e0f35f39fdb66
 SHA512 
29b61e9391b973094acccfed8206dd9b49aa1954621727b7bf1e2914bf91f8840b3114937f8fde386f6d9dca680330192df66cade4f9eb995297de9f0cf7

diff --git a/dev-python/sphinx-hoverxref/metadata.xml 
b/dev-python/sphinx-hoverxref/metadata.xml
new file mode 100644
index 0..8b7f17e50
--- /dev/null
+++ b/dev-python/sphinx-hoverxref/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   https://sphinx-hoverxref.readthedocs.io/en/latest/
+   sphinx-hoverxref
+   readthedocs/sphinx-hoverxref
+   
+

diff --git a/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild 
b/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild
new file mode 100644
index 0..db85821d6
--- /dev/null
+++ b/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=flit
+inherit distutils-r1
+
+DESCRIPTION="Sphinx extension to show tooltips with content embedded when 
hover a reference"
+HOMEPAGE="
+   https://pypi.org/project/sphinx-hoverxref/
+   https://github.com/readthedocs/sphinx-hoverxref
+"
+SRC_URI="https://github.com/readthedocs/${PN}/archive/refs/tags/${PV}.tar.gz 
-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-jquery[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/sphinxcontrib-bibtex[${PYTHON_USEDEP}]
+   dev-python/sphinx-testing[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_DESELECT=(
+   # tests that require network
+   tests/test_htmltag.py::test_intersphinx_default_configs
+   tests/test_htmltag.py::test_intersphinx_python_mapping
+   tests/test_htmltag.py::test_intersphinx_all_mappings
+)
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-autoapi \
+   dev-python/sphinx-notfound-page \
+   dev-python/sphinx-prompt \
+   dev-python/sphinx-tabs \
+   dev-python/sphinx-version-warning \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-bibtex \
+   dev-python/sphinxemoji



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

2022-11-21 Thread Sam James
commit: a1915f04941d35bdd63e4f32af290caa456abb82
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 05:06:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 05:06:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1915f04

profiles/features/wd40: mask >=dev-vcs/stgit-2

Bug: https://bugs.gentoo.org/882437
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/features/wd40/package.mask 
b/profiles/features/wd40/package.mask
index 5ae09de9508f..ee1be4d25308 100644
--- a/profiles/features/wd40/package.mask
+++ b/profiles/features/wd40/package.mask
@@ -64,6 +64,7 @@ dev-util/cbindgen
 dev-util/git-delta
 dev-util/maturin
 dev-util/tree-sitter-cli
+>=dev-vcs/stgit-2
 gnome-base/gdm
 >=gnome-base/gnome-core-apps-3.36.5
 >=gnome-base/gnome-core-libs-3.36.5



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

2022-11-21 Thread Sam James
commit: 5c2affc67f9688e68bb462fd79f23cad4a2def1a
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 05:15:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 05:15:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c2affc6

sys-devel/autoconf: Stabilize 2.71-r5 ppc, #882433

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

 sys-devel/autoconf/autoconf-2.71-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.71-r5.ebuild 
b/sys-devel/autoconf/autoconf-2.71-r5.ebuild
index 0ebf744ac117..3da11497c7a6 100644
--- a/sys-devel/autoconf/autoconf-2.71-r5.ebuild
+++ b/sys-devel/autoconf/autoconf-2.71-r5.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI+=" 
https://dev.gentoo.org/~polynomial-c/${PATCH_TARBALL_NAME}.tar.xz;
 
if ! [[ ${PV} == *_beta* ]] ; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
fi
S="${WORKDIR}"/${MY_P}
 fi



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

2022-11-21 Thread Arthur Zamarin
commit: b9384f422c0fded86d33f8397bbe979a024e24a5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:06:20 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:06:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9384f42

sys-devel/autoconf: Stabilize 2.13-r7 ppc, #882429

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/autoconf/autoconf-2.13-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.13-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
index efc27a9a8250..5e9354c1d6b3 100644
--- a/sys-devel/autoconf/autoconf-2.13-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="${PV:0:3}"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Arthur Zamarin
commit: 3e12bdb3e5f138ec4ebb39410f101741c373ef2f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:06:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:06:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e12bdb3

sys-devel/autoconf: Stabilize 2.13-r7 arm, #882429

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/autoconf/autoconf-2.13-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.13-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
index 3593b3e30269..f4bf573ea9ce 100644
--- a/sys-devel/autoconf/autoconf-2.13-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="${PV:0:3}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Arthur Zamarin
commit: 1e32c4d7319b6607eb741f74e8a6a7ec3738b533
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:06:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:06:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e32c4d7

sys-devel/autoconf: Stabilize 2.13-r7 sparc, #882429

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/autoconf/autoconf-2.13-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.13-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
index 40fecfa3bc0d..08f26410df6c 100644
--- a/sys-devel/autoconf/autoconf-2.13-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="${PV:0:3}"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Arthur Zamarin
commit: 593e8752553a00c8569ee2a3c4dbcc7c096fd3af
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:06:17 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:06:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=593e8752

sys-devel/autoconf: Stabilize 2.13-r7 arm64, #882429

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/autoconf/autoconf-2.13-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.13-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
index f4bf573ea9ce..efc27a9a8250 100644
--- a/sys-devel/autoconf/autoconf-2.13-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="${PV:0:3}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Arthur Zamarin
commit: 6cf36767cb500d404ca071eb148891f2a56023a4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:06:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:06:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf36767

sys-devel/autoconf: Stabilize 2.13-r7 hppa, #882429

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/autoconf/autoconf-2.13-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.13-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
index 08f26410df6c..096e388190a1 100644
--- a/sys-devel/autoconf/autoconf-2.13-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="${PV:0:3}"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Arthur Zamarin
commit: cc62a0d0bdd7733b6a582d7919b585668a618322
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Nov 22 06:06:23 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Nov 22 06:06:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc62a0d0

sys-devel/autoconf: Stabilize 2.13-r7 ppc64, #882429

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-devel/autoconf/autoconf-2.13-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.13-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
index 5e9354c1d6b3..40fecfa3bc0d 100644
--- a/sys-devel/autoconf/autoconf-2.13-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="${PV:0:3}"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-21 Thread Sam James
commit: c8dde9737994ef92eb343086414230baa5c236fa
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:32:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8dde973

gnome-extra/cinnamon-desktop: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-desktop/Manifest  |  1 +
 .../cinnamon-desktop/cinnamon-desktop-5.6.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/gnome-extra/cinnamon-desktop/Manifest 
b/gnome-extra/cinnamon-desktop/Manifest
index 0845f10634c0..c73edcb9073f 100644
--- a/gnome-extra/cinnamon-desktop/Manifest
+++ b/gnome-extra/cinnamon-desktop/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-desktop-5.2.1.tar.gz 495131 BLAKE2B 
56b5e5018f5b1bdfa57af1550edc756e4336b079df75753f90445d51703efe64dc6e33c1e7635fcf2e2fcca1683008777b446d76570fd5222fb809b1a458f6f2
 SHA512 
383229a929f4bd18389851573c4c7decc3cb5d6ebfdeb86ab7628578486c75ca71a308755d2736243a4801d5d50f6b07d0a142712d48752e166f3a39c3b70466
 DIST cinnamon-desktop-5.4.2.tar.gz 502072 BLAKE2B 
eeae0a0eea25a36222e373f75a6a431fa6c4738d80ce61371ccd18ac8b36d361759a988032e3b397f8c32423985571d12d64187499f6c01361d1aadf9cc7be75
 SHA512 
33cf3376c7f0c985e712dd9648bb3ab511e396e8357d1d63455d20e480314598248b5c641f323703fff4ab8029f4e39a8fcf58181d78c11980cbff3f00777a17
+DIST cinnamon-desktop-5.6.0.tar.gz 501954 BLAKE2B 
19fa04135ece7d0b6bbf059df06eee63c58ca7c041be232354e33d0f6375fc2abe8bb40e874a9b6fc660aa84928f30f15043837b74b8075ebc687141b3b04d20
 SHA512 
8c66b61e4dbab29befd33f095090a34ecb4fe476d26d0f84b56fa5b7ef5bb9439455a187f7519964ef9690fe9cbed17aa858297987bc4a4c14e3e5405ca90988

diff --git a/gnome-extra/cinnamon-desktop/cinnamon-desktop-5.6.0.ebuild 
b/gnome-extra/cinnamon-desktop/cinnamon-desktop-5.6.0.ebuild
new file mode 100644
index ..eca47275a669
--- /dev/null
+++ b/gnome-extra/cinnamon-desktop/cinnamon-desktop-5.6.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit meson gnome2-utils python-any-r1
+
+DESCRIPTION="A collection of libraries and utilites used by Cinnamon"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-desktop;
+SRC_URI="https://github.com/linuxmint/cinnamon-desktop/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-1 GPL-2+ LGPL-2+ LGPL-2.1+ MIT"
+SLOT="0/4" # subslot = libcinnamon-desktop soname version
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-libs/glib-2.37.3:2[dbus]
+   >=dev-libs/gobject-introspection-0.10.2:=
+   >=gnome-base/gsettings-desktop-schemas-3.5.91
+   >=media-sound/pulseaudio-12.99.3[glib]
+   sys-apps/accountsservice
+   sys-apps/hwdata
+   x11-libs/cairo:=[X]
+   >=x11-libs/gdk-pixbuf-2.22:2[introspection]
+   >=x11-libs/gtk+-3.3.16:3[introspection]
+   x11-libs/libX11
+   >=x11-libs/libXext-1.1
+   x11-libs/libxkbfile
+   >=x11-libs/libXrandr-1.3
+   x11-misc/xkeyboard-config
+"
+DEPEND="
+   ${RDEPEND}
+   x11-base/xorg-proto
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   dev-util/glib-utils
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   python_fix_shebang install-scripts
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dpnp_ids="${EPREFIX}/usr/share/hwdata/pnp.ids"
+   )
+   meson_src_configure
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+}



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

2022-11-21 Thread Sam James
commit: 7202544c6a63931bc38c3798de5e0bfdf672e7da
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:29:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7202544c

gnome-extra/cinnamon-menus: drop 5.4.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-menus/Manifest|  1 -
 .../cinnamon-menus/cinnamon-menus-5.4.0.ebuild | 37 --
 2 files changed, 38 deletions(-)

diff --git a/gnome-extra/cinnamon-menus/Manifest 
b/gnome-extra/cinnamon-menus/Manifest
index 3e62092f9475..385705e0d4d9 100644
--- a/gnome-extra/cinnamon-menus/Manifest
+++ b/gnome-extra/cinnamon-menus/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-menus-5.2.0.tar.gz 95316 BLAKE2B 
150dbab3b5c1b1a5574c1d234ebc7978a9e517e027d3076f6e335f4c64ad1631689c5b57a9d7ca159daa7f9f832d00accd78b2f392f757552f2babbab25489d7
 SHA512 
822ad5f3bf20b6ecfa9f2e3aa4c6d85f6f7b54a68bf73b60a4c2ceec853d2ce8b7d1e42b308eff9395c993eb8b5dc1c580b714e89a8ff2153e264db380aa8dae
-DIST cinnamon-menus-5.4.0.tar.gz 96312 BLAKE2B 
248e9301fa9e0fab1a0cbbbadc4829af93876ef4a44d3a5f880fe26992f7290b36725e4d804b902456078322c018d8eb81c63d95e0f860b583a89c2122ee878b
 SHA512 
3fdec7f4389ea7560dcdd4bef6ae3bb5dde53bb272d7e352c6ad62d71c0eae47c947119ea23192acc5d89dec42e809a394ddef0ad5ce2e3cc80c0977e6b30767
 DIST cinnamon-menus-5.6.0.tar.gz 96166 BLAKE2B 
84b3d513b6dbea253135df1f0f8ad017d78299b8cdd2bd2e7def547b74b59e998d3c37e30d480532802fb85db261242d51485f8fbeb7742310eee288de909aa1
 SHA512 
023f1d4eededbc5a1052e219c4ede9808eb489fe399346d643b2209c8b37b8432647043ac05afd653666efa2830ebbd73222033bdfbc52f2904e7a1e1bbc27df

diff --git a/gnome-extra/cinnamon-menus/cinnamon-menus-5.4.0.ebuild 
b/gnome-extra/cinnamon-menus/cinnamon-menus-5.4.0.ebuild
deleted file mode 100644
index 686a2462f9f9..
--- a/gnome-extra/cinnamon-menus/cinnamon-menus-5.4.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson xdg
-
-DESCRIPTION="Cinnamon's library for the Desktop Menu fd.o specification"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-menus;
-SRC_URI="https://github.com/linuxmint/cinnamon-menus/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="gtk-doc"
-
-RDEPEND="
-   >=dev-libs/glib-2.29.15:2
-   >=dev-libs/gobject-introspection-1.58.3:=
-"
-DEPEND="
-   ${RDEPEND}
-   dev-libs/gobject-introspection-common
-"
-BDEPEND="
-   sys-devel/gettext
-   virtual/pkgconfig
-
-   gtk-doc? ( dev-util/gtk-doc )
-"
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use gtk-doc enable_docs)
-   )
-   meson_src_configure
-}



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

2022-11-21 Thread Sam James
commit: 415d29661d410a26efb8cd2f5a6ced1f25321a0d
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:23:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415d2966

gnome-extra/cinnamon-menus: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-menus/Manifest|  1 +
 .../cinnamon-menus/cinnamon-menus-5.6.0.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/gnome-extra/cinnamon-menus/Manifest 
b/gnome-extra/cinnamon-menus/Manifest
index 9fdfa1266e5f..3e62092f9475 100644
--- a/gnome-extra/cinnamon-menus/Manifest
+++ b/gnome-extra/cinnamon-menus/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-menus-5.2.0.tar.gz 95316 BLAKE2B 
150dbab3b5c1b1a5574c1d234ebc7978a9e517e027d3076f6e335f4c64ad1631689c5b57a9d7ca159daa7f9f832d00accd78b2f392f757552f2babbab25489d7
 SHA512 
822ad5f3bf20b6ecfa9f2e3aa4c6d85f6f7b54a68bf73b60a4c2ceec853d2ce8b7d1e42b308eff9395c993eb8b5dc1c580b714e89a8ff2153e264db380aa8dae
 DIST cinnamon-menus-5.4.0.tar.gz 96312 BLAKE2B 
248e9301fa9e0fab1a0cbbbadc4829af93876ef4a44d3a5f880fe26992f7290b36725e4d804b902456078322c018d8eb81c63d95e0f860b583a89c2122ee878b
 SHA512 
3fdec7f4389ea7560dcdd4bef6ae3bb5dde53bb272d7e352c6ad62d71c0eae47c947119ea23192acc5d89dec42e809a394ddef0ad5ce2e3cc80c0977e6b30767
+DIST cinnamon-menus-5.6.0.tar.gz 96166 BLAKE2B 
84b3d513b6dbea253135df1f0f8ad017d78299b8cdd2bd2e7def547b74b59e998d3c37e30d480532802fb85db261242d51485f8fbeb7742310eee288de909aa1
 SHA512 
023f1d4eededbc5a1052e219c4ede9808eb489fe399346d643b2209c8b37b8432647043ac05afd653666efa2830ebbd73222033bdfbc52f2904e7a1e1bbc27df

diff --git a/gnome-extra/cinnamon-menus/cinnamon-menus-5.6.0.ebuild 
b/gnome-extra/cinnamon-menus/cinnamon-menus-5.6.0.ebuild
new file mode 100644
index ..686a2462f9f9
--- /dev/null
+++ b/gnome-extra/cinnamon-menus/cinnamon-menus-5.6.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg
+
+DESCRIPTION="Cinnamon's library for the Desktop Menu fd.o specification"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-menus;
+SRC_URI="https://github.com/linuxmint/cinnamon-menus/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="gtk-doc"
+
+RDEPEND="
+   >=dev-libs/glib-2.29.15:2
+   >=dev-libs/gobject-introspection-1.58.3:=
+"
+DEPEND="
+   ${RDEPEND}
+   dev-libs/gobject-introspection-common
+"
+BDEPEND="
+   sys-devel/gettext
+   virtual/pkgconfig
+
+   gtk-doc? ( dev-util/gtk-doc )
+"
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use gtk-doc enable_docs)
+   )
+   meson_src_configure
+}



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

2022-11-21 Thread Sam James
commit: 7cdbe7094c9da8d89e349035e41c1b3b747fbd1e
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:36:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cdbe709

gnome-extra/cinnamon-desktop: drop 5.4.2

Closes: https://bugs.gentoo.org/878929
Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-desktop/Manifest  |  1 -
 .../cinnamon-desktop/cinnamon-desktop-5.4.2.ebuild | 63 --
 2 files changed, 64 deletions(-)

diff --git a/gnome-extra/cinnamon-desktop/Manifest 
b/gnome-extra/cinnamon-desktop/Manifest
index c73edcb9073f..cc7ade9161e5 100644
--- a/gnome-extra/cinnamon-desktop/Manifest
+++ b/gnome-extra/cinnamon-desktop/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-desktop-5.2.1.tar.gz 495131 BLAKE2B 
56b5e5018f5b1bdfa57af1550edc756e4336b079df75753f90445d51703efe64dc6e33c1e7635fcf2e2fcca1683008777b446d76570fd5222fb809b1a458f6f2
 SHA512 
383229a929f4bd18389851573c4c7decc3cb5d6ebfdeb86ab7628578486c75ca71a308755d2736243a4801d5d50f6b07d0a142712d48752e166f3a39c3b70466
-DIST cinnamon-desktop-5.4.2.tar.gz 502072 BLAKE2B 
eeae0a0eea25a36222e373f75a6a431fa6c4738d80ce61371ccd18ac8b36d361759a988032e3b397f8c32423985571d12d64187499f6c01361d1aadf9cc7be75
 SHA512 
33cf3376c7f0c985e712dd9648bb3ab511e396e8357d1d63455d20e480314598248b5c641f323703fff4ab8029f4e39a8fcf58181d78c11980cbff3f00777a17
 DIST cinnamon-desktop-5.6.0.tar.gz 501954 BLAKE2B 
19fa04135ece7d0b6bbf059df06eee63c58ca7c041be232354e33d0f6375fc2abe8bb40e874a9b6fc660aa84928f30f15043837b74b8075ebc687141b3b04d20
 SHA512 
8c66b61e4dbab29befd33f095090a34ecb4fe476d26d0f84b56fa5b7ef5bb9439455a187f7519964ef9690fe9cbed17aa858297987bc4a4c14e3e5405ca90988

diff --git a/gnome-extra/cinnamon-desktop/cinnamon-desktop-5.4.2.ebuild 
b/gnome-extra/cinnamon-desktop/cinnamon-desktop-5.4.2.ebuild
deleted file mode 100644
index 8e09e4a700f3..
--- a/gnome-extra/cinnamon-desktop/cinnamon-desktop-5.4.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit meson gnome2-utils python-any-r1
-
-DESCRIPTION="A collection of libraries and utilites used by Cinnamon"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-desktop;
-SRC_URI="https://github.com/linuxmint/cinnamon-desktop/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-1 GPL-2+ LGPL-2+ LGPL-2.1+ MIT"
-SLOT="0/4" # subslot = libcinnamon-desktop soname version
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-libs/glib-2.37.3:2[dbus]
-   >=dev-libs/gobject-introspection-0.10.2:=
-   >=gnome-base/gsettings-desktop-schemas-3.5.91
-   >=media-sound/pulseaudio-12.99.3[glib]
-   sys-apps/accountsservice
-   sys-apps/hwdata
-   x11-libs/cairo:=[X]
-   >=x11-libs/gdk-pixbuf-2.22:2[introspection]
-   >=x11-libs/gtk+-3.3.16:3[introspection]
-   x11-libs/libX11
-   >=x11-libs/libXext-1.1
-   x11-libs/libxkbfile
-   >=x11-libs/libXrandr-1.3
-   x11-misc/xkeyboard-config
-"
-DEPEND="
-   ${RDEPEND}
-   x11-base/xorg-proto
-"
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/glib-utils
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   python_fix_shebang install-scripts
-}
-
-src_configure() {
-   local emesonargs=(
-   -Dpnp_ids="${EPREFIX}/usr/share/hwdata/pnp.ids"
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-}



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

2022-11-21 Thread Sam James
commit: b508f6d71764530bb9778d80d4d6ba23c79b8f4d
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:42:28 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b508f6d7

gnome-extra/cjs: add 5.6.1

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cjs/Manifest |  1 +
 gnome-extra/cjs/cjs-5.6.1.ebuild | 88 
 2 files changed, 89 insertions(+)

diff --git a/gnome-extra/cjs/Manifest b/gnome-extra/cjs/Manifest
index fab89bbba281..5a68f4c3fe69 100644
--- a/gnome-extra/cjs/Manifest
+++ b/gnome-extra/cjs/Manifest
@@ -1,2 +1,3 @@
 DIST cjs-5.2.0.tar.gz 601982 BLAKE2B 
99fe183add425e5178863aa6b0af6aa0579de0dabee72ad9bcc86e2edf0ad13093ce659ac60ed365edb33ff1eb54d54766a7e0df1a65aa64b7da34e5559297c7
 SHA512 
0ce5cc07be036fa9af93c7d98a179881789f883578a2034c3c28255ef9da96d32b4203fc39311eaea0bdbe5148f13920d72dd24acb717c4e60302b390097a825
 DIST cjs-5.4.1.tar.gz 794618 BLAKE2B 
6da2cbb5c000d5ef649f64136fd8e886b3b75df6433d62859b2e82080fd52247bd148d4092a92c4b3448718d66254dc0ab6affdf45e13a8eec07d40eef1933a5
 SHA512 
8fae67c90cfba012420a17d28b94694e86f962c03b69e90e4192d699ce38ca01c9a7be2febf95c16c27a556f101a581006206a9549259486be614cfbd400ef6b
+DIST cjs-5.6.1.tar.gz 794907 BLAKE2B 
9ec6d5ffb33a28dca96d640da7b499e81751d5889dd0caec354fdf41de7b42c8d8edd737def68c2506c94af7a69a4d3433c459da2a5884f2668f14eac22163a0
 SHA512 
35662d78174d428610642198da2c19137cd61dce93de69011fea235b0f461a2072ff219da0f18ef36068c1e3e5c2dc88684493b900a12fc1cd0b32503ae5

diff --git a/gnome-extra/cjs/cjs-5.6.1.ebuild b/gnome-extra/cjs/cjs-5.6.1.ebuild
new file mode 100644
index ..6be01f34d1a5
--- /dev/null
+++ b/gnome-extra/cjs/cjs-5.6.1.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit flag-o-matic meson pax-utils python-any-r1 virtualx
+
+DESCRIPTION="Linux Mint's fork of gjs for Cinnamon"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cjs;
+SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD CC0-1.0 MIT MPL-2.0 || ( MPL-1.1 GPL-2+ LGPL-2.1+ )"
+SLOT="0"
+IUSE="+cairo examples readline sysprof test"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-lang/spidermonkey-78.2.0:78
+   >=dev-libs/glib-2.66.0:2
+   >=dev-libs/gobject-introspection-1.66.1:=
+   >=dev-libs/libffi-3.3:0=
+
+   cairo? ( x11-libs/cairo[glib,svg(+),X] )
+   readline? ( sys-libs/readline:0= )
+"
+DEPEND="
+   ${RDEPEND}
+   sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 )
+   test? (
+   sys-apps/dbus
+   x11-libs/gtk+:3[introspection]
+   )
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   python_fix_shebang build
+}
+
+src_configure() {
+   append-cppflags -DG_DISABLE_CAST_CHECKS
+
+   # On musl, it's required that either gjs, pixman or gnome-shell to be 
built
+   # with a larger stack otherwise librsvg fails to render a particular 
SVG, as
+   # a result we fail to get gdm or gnome-shell running (greeted with a 
fail
+   # whale screen). The bug has been reported to librsvg. This is ideally 
just
+   # a temporary workaround until we understand what exactly needs a larger
+   # stack size, as it's not sufficient to do just librsvg.
+   #
+   # Please refer to:
+   # https://gitlab.gnome.org/GNOME/librsvg/-/issues/686
+   # https://gitlab.gnome.org/GNOME/librsvg/-/issues/874
+   #
+   # TODO: Find an actual fix instead of increasing the stack
+   use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152
+
+   local emesonargs=(
+   $(meson_feature cairo)
+   $(meson_feature readline)
+   $(meson_feature sysprof profiler)
+   -Dinstalled_tests=false
+   $(meson_use !test skip_dbus_tests)
+   $(meson_use !test skip_gtk_tests)
+   )
+   meson_src_configure
+}
+
+src_test() {
+   virtx meson_src_test
+}
+
+src_install() {
+   meson_src_install
+
+   if use examples; then
+   docinto examples
+   dodoc "${S}"/examples/*
+   fi
+
+   # Required for cjs-console to run correctly on PaX systems
+   pax-mark mr "${ED}/usr/bin/cjs-console"
+}



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

2022-11-21 Thread Sam James
commit: 9c5fe1fcb231d00588c0b4070814547f9fd6f39a
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:55:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c5fe1fc

gnome-extra/cinnamon-session: drop 5.4.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-session/Manifest  |  1 -
 .../cinnamon-session/cinnamon-session-5.4.0.ebuild | 72 --
 2 files changed, 73 deletions(-)

diff --git a/gnome-extra/cinnamon-session/Manifest 
b/gnome-extra/cinnamon-session/Manifest
index 4e2247cff911..67dbb226b88b 100644
--- a/gnome-extra/cinnamon-session/Manifest
+++ b/gnome-extra/cinnamon-session/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-session-5.2.0.tar.gz 200208 BLAKE2B 
2efe8ef0cb5dc4a828866c91bc020ffcc8b400423f92ac8be8ab47391202001123805c947af8e82eda530675b89cf4960f082b06acf24c296f083d6bcb941217
 SHA512 
3962529fed8d6c4c74e2f4b75014529d1a9b3307cf2d014c90088d0e2d3066ce375ccc3bbf5f07e9a181c08bba5360b07d5800cdb6386796255b4f1cb5c4d385
-DIST cinnamon-session-5.4.0.tar.gz 199698 BLAKE2B 
44856e577f1a42fa373bfeb9ad834f3b8b73ce51b8bf2aa794d1e98bb24dacea6fc31ced30965399bc9d9405a8cd29f45764462e2370765bbd21be2ba4a221c5
 SHA512 
073edd1909a92af6c4bd0951dcd2ee35b71bcbdc57ae57eabd8f5cb53fd136c00d88990aef78d0c61f1d31ff0a50094e7c7834feeabc116d8e3e39f3d484a61b
 DIST cinnamon-session-5.6.0.tar.gz 199389 BLAKE2B 
ecd8152af4784affc8c9b8ae7ca48adaecca4355c2db5d64ca577f44abc0ff35cf27ef324fa9d3520c125bc979727bbab67f99209e5a641ad0329a26025698b5
 SHA512 
260acb2a4e7016af3be2865d51eb947774020fc4e333e6a4ce72664d182c098f663d1878ac2194607f04517c3ea6916d2bfc5e55749f8252a38205b227d40335

diff --git a/gnome-extra/cinnamon-session/cinnamon-session-5.4.0.ebuild 
b/gnome-extra/cinnamon-session/cinnamon-session-5.4.0.ebuild
deleted file mode 100644
index 90077e6be52a..
--- a/gnome-extra/cinnamon-session/cinnamon-session-5.4.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit meson gnome2-utils python-any-r1 xdg-utils
-
-DESCRIPTION="Cinnamon session manager"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-session;
-SRC_URI="https://github.com/linuxmint/cinnamon-session/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="ipv6 systemd"
-
-DEPEND="
-   >=dev-libs/glib-2.37.3:2
-   media-libs/libcanberra[pulseaudio]
-   virtual/opengl
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3:3
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXcomposite
-   x11-libs/libXext
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango[X]
-   >=x11-libs/xapp-2.2.15
-   x11-libs/xtrans
-
-   systemd? ( >=sys-apps/systemd-183 )
-   !systemd? ( sys-auth/elogind[policykit] )
-"
-RDEPEND="
-   ${DEPEND}
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-"
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/gdbus-codegen
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   python_fix_shebang data
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use ipv6)
-   -Dxtrans=true
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   gnome2_schemas_update
-}



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

2022-11-21 Thread Sam James
commit: 6631457f02e47bab59e544266e21b8f7a3526bf4
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:45:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6631457f

gnome-extra/cinnamon-translations: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-translations/Manifest |  1 +
 .../cinnamon-translations-5.6.0.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/gnome-extra/cinnamon-translations/Manifest 
b/gnome-extra/cinnamon-translations/Manifest
index 1cc56f1e19d8..cce52d44ca19 100644
--- a/gnome-extra/cinnamon-translations/Manifest
+++ b/gnome-extra/cinnamon-translations/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-translations-5.2.2.tar.gz 12587393 BLAKE2B 
9609f515b87381ee433aa40d4814fd7630a78e448edf2e88f45264c08d66c324ec25e403eaafb79c9976de2721999ebb4808600ede8333dcebc9f1c8e1629b0b
 SHA512 
2403faab704fd4415fa44c1c7b2c44db7c72fc2e489057c40355c75a2b18eb36d6de37757052c9c18a6ad6b0ca7dece2dac9ede1819420183ec9dda38d9c747a
 DIST cinnamon-translations-5.4.2.tar.gz 12650460 BLAKE2B 
7c67b5cf58d8565dfa631fb75cef38bf3a7e47ee2dc8157d6ac12add430e3422e18df41a60571857ab878ac3b4c2d2655d3bf910ac159213cb61de35fe745367
 SHA512 
4102de9500191d8991e5abb803c366e23e12792990913114672241bc275e15e871a054342d764d176be2a7c2dacf39a05a4bdbd1c3d28832e1a430766be9a7a8
+DIST cinnamon-translations-5.6.0.tar.gz 12649967 BLAKE2B 
fade858a52c52c18c44824699e11807529e0334916d7980b8757b685cb557e954743fd29b38513da66d2aab5bb73091dee0c494562a262e7c42549805ebf0233
 SHA512 
5bbed2fc33cd23ce978985ddf633cd41bc0ff326e1b2eac6de273be995823c2df6850fd13cf1f9439f70d0cacd03db8bb2478ad1f3ab1966e4e28b6935cf099b

diff --git 
a/gnome-extra/cinnamon-translations/cinnamon-translations-5.6.0.ebuild 
b/gnome-extra/cinnamon-translations/cinnamon-translations-5.6.0.ebuild
new file mode 100644
index ..822e84619979
--- /dev/null
+++ b/gnome-extra/cinnamon-translations/cinnamon-translations-5.6.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PLOCALES="aa af am an ar ary as ast ay az be be@latin ber bg bn bn_IN br bs ca 
ca@valencia crh cs csb cy da de dz el en@shaw en_AU en_CA en_GB en_IE en_NZ 
en_ZA eo es es_AR et eu fa fi fil fo fr fr_CA frp fur fy ga gd gl gu ha he hi 
hr hsb hu hy ia id ie ig is it ja jv ka kab kk km kn ko ksw ku ky la li lmo lo 
lt lv mai mg mi mk ml mn mo mr ms my nap nb nds ne nl nn no nso oc om or pa pap 
pl ps pt pt_BR ro ru rue rw sa sc sco shn si sk sl so sq sr sr@ijekavian 
sr@ijekavianlatin sr@latin sv sw szl ta te tg th tk tl tlh tpi tr ts tt ug uk 
ur uz uz@cyrillic vi wa xh yi yo zgh zh_CN zh_HK zh_TW zu"
+
+inherit plocale
+
+DESCRIPTION="Translation data for Cinnamon"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-translations;
+SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+
+BDEPEND="sys-devel/gettext"
+
+src_configure() { :; }
+
+src_install() {
+   # Cannot run before since locales are not in the expected place for 
this to work
+   plocale_find_changes "${S}"/usr/share/locale "" ""
+
+   install_locale() {
+   insinto /usr/share/locale
+   doins -r usr/share/locale/${1}
+   }
+   plocale_for_each_locale install_locale
+}



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

2022-11-21 Thread Sam James
commit: 551d75e8130367ed397bf16dd73d6b0899697251
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:42:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=551d75e8

gnome-extra/cjs: drop 5.4.1

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cjs/Manifest |  1 -
 gnome-extra/cjs/cjs-5.4.1.ebuild | 88 
 2 files changed, 89 deletions(-)

diff --git a/gnome-extra/cjs/Manifest b/gnome-extra/cjs/Manifest
index 5a68f4c3fe69..93cc3c014d4d 100644
--- a/gnome-extra/cjs/Manifest
+++ b/gnome-extra/cjs/Manifest
@@ -1,3 +1,2 @@
 DIST cjs-5.2.0.tar.gz 601982 BLAKE2B 
99fe183add425e5178863aa6b0af6aa0579de0dabee72ad9bcc86e2edf0ad13093ce659ac60ed365edb33ff1eb54d54766a7e0df1a65aa64b7da34e5559297c7
 SHA512 
0ce5cc07be036fa9af93c7d98a179881789f883578a2034c3c28255ef9da96d32b4203fc39311eaea0bdbe5148f13920d72dd24acb717c4e60302b390097a825
-DIST cjs-5.4.1.tar.gz 794618 BLAKE2B 
6da2cbb5c000d5ef649f64136fd8e886b3b75df6433d62859b2e82080fd52247bd148d4092a92c4b3448718d66254dc0ab6affdf45e13a8eec07d40eef1933a5
 SHA512 
8fae67c90cfba012420a17d28b94694e86f962c03b69e90e4192d699ce38ca01c9a7be2febf95c16c27a556f101a581006206a9549259486be614cfbd400ef6b
 DIST cjs-5.6.1.tar.gz 794907 BLAKE2B 
9ec6d5ffb33a28dca96d640da7b499e81751d5889dd0caec354fdf41de7b42c8d8edd737def68c2506c94af7a69a4d3433c459da2a5884f2668f14eac22163a0
 SHA512 
35662d78174d428610642198da2c19137cd61dce93de69011fea235b0f461a2072ff219da0f18ef36068c1e3e5c2dc88684493b900a12fc1cd0b32503ae5

diff --git a/gnome-extra/cjs/cjs-5.4.1.ebuild b/gnome-extra/cjs/cjs-5.4.1.ebuild
deleted file mode 100644
index 244d2a0ce443..
--- a/gnome-extra/cjs/cjs-5.4.1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit flag-o-matic meson pax-utils python-any-r1 virtualx
-
-DESCRIPTION="Linux Mint's fork of gjs for Cinnamon"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cjs;
-SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD CC0-1.0 MIT MPL-2.0 || ( MPL-1.1 GPL-2+ LGPL-2.1+ )"
-SLOT="0"
-IUSE="+cairo examples readline sysprof test"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-lang/spidermonkey-78.2.0:78
-   >=dev-libs/glib-2.66.0:2
-   >=dev-libs/gobject-introspection-1.66.1:=
-   >=dev-libs/libffi-3.3:0=
-
-   cairo? ( x11-libs/cairo[glib,svg(+),X] )
-   readline? ( sys-libs/readline:0= )
-"
-DEPEND="
-   ${RDEPEND}
-   sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 )
-   test? (
-   sys-apps/dbus
-   x11-libs/gtk+:3[introspection]
-   )
-"
-BDEPEND="
-   ${PYTHON_DEPS}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   python_fix_shebang build
-}
-
-src_configure() {
-   append-cppflags -DG_DISABLE_CAST_CHECKS
-
-   # On musl, it's required that either gjs, pixman or gnome-shell to be 
built
-   # with a larger stack otherwise librsvg fails to render a particular 
SVG, as
-   # a result we fail to get gdm or gnome-shell running (greeted with a 
fail
-   # whale screen). The bug has been reported to librsvg. This is ideally 
just
-   # a temporary workaround until we understand what exactly needs a larger
-   # stack size, as it's not sufficient to do just librsvg.
-   #
-   # Please refer to:
-   # https://gitlab.gnome.org/GNOME/librsvg/-/issues/686
-   # https://gitlab.gnome.org/GNOME/librsvg/-/issues/874
-   #
-   # TODO: Find an actual fix instead of increasing the stack
-   use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152
-
-   local emesonargs=(
-   $(meson_feature cairo)
-   $(meson_feature readline)
-   $(meson_feature sysprof profiler)
-   -Dinstalled_tests=false
-   $(meson_use !test skip_dbus_tests)
-   $(meson_use !test skip_gtk_tests)
-   )
-   meson_src_configure
-}
-
-src_test() {
-   virtx meson_src_test
-}
-
-src_install() {
-   meson_src_install
-
-   if use examples; then
-   docinto examples
-   dodoc "${S}"/examples/*
-   fi
-
-   # Required for cjs-console to run correctly on PaX systems
-   pax-mark mr "${ED}/usr/bin/cjs-console"
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-settings-daemon/

2022-11-21 Thread Sam James
commit: 4e95b2b4834753774f081fbb20577ace5dad89e7
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:02:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e95b2b4

gnome-extra/cinnamon-settings-daemon: drop 5.4.5

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-settings-daemon/Manifest  |  1 -
 .../cinnamon-settings-daemon-5.4.5.ebuild  | 91 --
 2 files changed, 92 deletions(-)

diff --git a/gnome-extra/cinnamon-settings-daemon/Manifest 
b/gnome-extra/cinnamon-settings-daemon/Manifest
index a14707ff5d51..1cc383b59a8a 100644
--- a/gnome-extra/cinnamon-settings-daemon/Manifest
+++ b/gnome-extra/cinnamon-settings-daemon/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-settings-daemon-5.2.0.tar.gz 662588 BLAKE2B 
aca6aac0a7b85fa9fb60f1101e0027d5faf3f6d95f7d306ae0ad9dd2e19bb1b48ab4333bbcdff5405b52c306f67eb34bfce895b37529d3ce015182aac41dcf07
 SHA512 
ae076956715bc7b47746868df0f1cb4034a8ce26b2d64878c74654f08a4498155063f16bf7972316fa138f72e10a82e8589fdb607f8072bbcd92e106bedbe98e
-DIST cinnamon-settings-daemon-5.4.5.tar.gz 573247 BLAKE2B 
a2075d74c7e05f9deda385577725d41b6d184a7de7b2c519c7c4167af99bd13d2882402b245ada5ff2e049189cce4a3b0f6e1a2c88ccad8c296fab9da8dd6b66
 SHA512 
7a3629361fac9d48b3ee64f4595e393b601553d8941762ccdb98bc362edc17ca27e1f8077e7b81b3c262445c4335f7740b8800745146237006547bdcf17a40d1
 DIST cinnamon-settings-daemon-5.6.0.tar.gz 572607 BLAKE2B 
d8b9a4ff4574251fc142840e81070eebd66ed322b64eadca97efcf2f6bc302bfef18e933d3e7d9bdfe236cc9fb30b24b4b98cbb539ed50c53767d1d2fd7a4a26
 SHA512 
69aff73deb5ae0278642b8d630b7e460daf4c84f4745f8809c73d2a74effc0642f404589651939fd5132cfe99010259155a9809cb4b074e34d52bb89f1266fd6

diff --git 
a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-5.4.5.ebuild 
b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-5.4.5.ebuild
deleted file mode 100644
index ca4bde3a4afd..
--- a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-5.4.5.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit meson gnome2-utils python-any-r1 xdg
-
-DESCRIPTION="Cinnamon's settings daemon"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-settings-daemon;
-SRC_URI="https://github.com/linuxmint/cinnamon-settings-daemon/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2+ LGPL-2.1 LGPL-2.1+ MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="+colord cups input_devices_wacom smartcard systemd"
-
-RDEPEND="
-   >=dev-libs/glib-2.40.0:2[dbus]
-   dev-libs/libgudev:=
-   >=gnome-base/libgnomekbd-3.6
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-   media-libs/fontconfig
-   >=media-libs/lcms-2.2:2
-   media-libs/libcanberra:0=[gtk3,pulseaudio]
-   >=media-sound/pulseaudio-0.9.16[glib]
-   >=sys-auth/polkit-0.97
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.14.0:3
-   >=x11-libs/libnotify-0.7.3:0=
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   >=x11-libs/libxklavier-5.0
-   >=x11-libs/pango-1.20.0
-   >=sys-power/upower-0.9.11
-
-   colord? ( >=x11-misc/colord-0.1.27:= )
-   cups? (
-   >=net-print/cups-1.4[dbus]
-   app-admin/system-config-printer
-   net-print/cups-pk-helper )
-   input_devices_wacom? (
-   >=dev-libs/libwacom-0.7:=
-   >=gnome-base/librsvg-2.36.2 )
-   smartcard? ( >=dev-libs/nss-3.11.2 )
-   systemd? ( sys-apps/systemd:0= )
-   !systemd? ( sys-auth/elogind:0= )
-"
-DEPEND="
-   ${RDEPEND}
-   dev-libs/libxml2:2
-   x11-base/xorg-proto
-"
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/glib-utils
-   dev-util/gdbus-codegen
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   python_fix_shebang install-scripts
-}
-
-src_configure() {
-   # gudev not optional on Linux platforms
-   local emesonargs=(
-   -Duse_gudev=enabled
-   -Duse_polkit=enabled
-   -Duse_logind=enabled
-   $(meson_feature colord use_color)
-   $(meson_feature cups use_cups)
-   $(meson_feature smartcard use_smartcard)
-   $(meson_feature input_devices_wacom use_wacom)
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-settings-daemon/

2022-11-21 Thread Sam James
commit: d5e9a7a2be7a349797185aded9d605bd7eff7b1e
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:02:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e9a7a2

gnome-extra/cinnamon-settings-daemon: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-settings-daemon/Manifest  |  1 +
 .../cinnamon-settings-daemon-5.6.0.ebuild  | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/gnome-extra/cinnamon-settings-daemon/Manifest 
b/gnome-extra/cinnamon-settings-daemon/Manifest
index 55a9ef2f2d77..a14707ff5d51 100644
--- a/gnome-extra/cinnamon-settings-daemon/Manifest
+++ b/gnome-extra/cinnamon-settings-daemon/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-settings-daemon-5.2.0.tar.gz 662588 BLAKE2B 
aca6aac0a7b85fa9fb60f1101e0027d5faf3f6d95f7d306ae0ad9dd2e19bb1b48ab4333bbcdff5405b52c306f67eb34bfce895b37529d3ce015182aac41dcf07
 SHA512 
ae076956715bc7b47746868df0f1cb4034a8ce26b2d64878c74654f08a4498155063f16bf7972316fa138f72e10a82e8589fdb607f8072bbcd92e106bedbe98e
 DIST cinnamon-settings-daemon-5.4.5.tar.gz 573247 BLAKE2B 
a2075d74c7e05f9deda385577725d41b6d184a7de7b2c519c7c4167af99bd13d2882402b245ada5ff2e049189cce4a3b0f6e1a2c88ccad8c296fab9da8dd6b66
 SHA512 
7a3629361fac9d48b3ee64f4595e393b601553d8941762ccdb98bc362edc17ca27e1f8077e7b81b3c262445c4335f7740b8800745146237006547bdcf17a40d1
+DIST cinnamon-settings-daemon-5.6.0.tar.gz 572607 BLAKE2B 
d8b9a4ff4574251fc142840e81070eebd66ed322b64eadca97efcf2f6bc302bfef18e933d3e7d9bdfe236cc9fb30b24b4b98cbb539ed50c53767d1d2fd7a4a26
 SHA512 
69aff73deb5ae0278642b8d630b7e460daf4c84f4745f8809c73d2a74effc0642f404589651939fd5132cfe99010259155a9809cb4b074e34d52bb89f1266fd6

diff --git 
a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-5.6.0.ebuild 
b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-5.6.0.ebuild
new file mode 100644
index ..344c6de57399
--- /dev/null
+++ b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-5.6.0.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit meson gnome2-utils python-any-r1 xdg
+
+DESCRIPTION="Cinnamon's settings daemon"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-settings-daemon;
+SRC_URI="https://github.com/linuxmint/cinnamon-settings-daemon/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+ LGPL-2.1 LGPL-2.1+ MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="+colord cups input_devices_wacom smartcard systemd"
+
+RDEPEND="
+   >=dev-libs/glib-2.40.0:2[dbus]
+   dev-libs/libgudev:=
+   >=gnome-base/libgnomekbd-3.6
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+   media-libs/fontconfig
+   >=media-libs/lcms-2.2:2
+   media-libs/libcanberra:0=[gtk3,pulseaudio]
+   >=media-sound/pulseaudio-0.9.16[glib]
+   >=sys-auth/polkit-0.97
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.14.0:3
+   >=x11-libs/libnotify-0.7.3:0=
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   >=x11-libs/libxklavier-5.0
+   >=x11-libs/pango-1.20.0
+   >=sys-power/upower-0.9.11
+
+   colord? ( >=x11-misc/colord-0.1.27:= )
+   cups? (
+   >=net-print/cups-1.4[dbus]
+   app-admin/system-config-printer
+   net-print/cups-pk-helper )
+   input_devices_wacom? (
+   >=dev-libs/libwacom-0.7:=
+   >=gnome-base/librsvg-2.36.2 )
+   smartcard? ( >=dev-libs/nss-3.11.2 )
+   systemd? ( sys-apps/systemd:0= )
+   !systemd? ( sys-auth/elogind:0= )
+"
+DEPEND="
+   ${RDEPEND}
+   dev-libs/libxml2:2
+   x11-base/xorg-proto
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   dev-util/glib-utils
+   dev-util/gdbus-codegen
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   python_fix_shebang install-scripts
+}
+
+src_configure() {
+   # gudev not optional on Linux platforms
+   local emesonargs=(
+   -Duse_gudev=enabled
+   -Duse_polkit=enabled
+   -Duse_logind=enabled
+   $(meson_feature colord use_color)
+   $(meson_feature cups use_cups)
+   $(meson_feature smartcard use_smartcard)
+   $(meson_feature input_devices_wacom use_wacom)
+   )
+   meson_src_configure
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2022-11-21 Thread Sam James
commit: 9214a2018c2022f76606a2ca03e69eea7956ba64
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:18:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9214a201

gnome-extra/cinnamon-screensaver: drop 5.4.4

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-screensaver/Manifest  |  1 -
 .../cinnamon-screensaver-5.4.4.ebuild  | 74 --
 2 files changed, 75 deletions(-)

diff --git a/gnome-extra/cinnamon-screensaver/Manifest 
b/gnome-extra/cinnamon-screensaver/Manifest
index 49c9001e35e8..0c11e68ab17c 100644
--- a/gnome-extra/cinnamon-screensaver/Manifest
+++ b/gnome-extra/cinnamon-screensaver/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-screensaver-5.2.1.tar.gz 154920 BLAKE2B 
a50508f6ad5ffee797db4f74295ef7ffdfdb0024e9a9ca005398f5ccac83687f356743c80d8911ccf1ee9b343a285e4e6c72ce864fe639e3494ed54701a84e8b
 SHA512 
db293f619df8ea3e43c209f5d32d649935f1efbc5763700369d5bd595866805a3e604930a3f70b6d43cbc4469c6d618f258b49cf4962f87c8b06447178ed1e7a
-DIST cinnamon-screensaver-5.4.4.tar.gz 154920 BLAKE2B 
bf955b686d7d1868e9cc2a8ca42c17d7420893c05e27de0b318ac3a00f43d96d0befb0b82868a230e279820389482dffddc0116be28bbab7984af78db30635a2
 SHA512 
24e413345bd8a8c0942bee4ff9378fc82d5a5a25b79fea4a5ddd018fad8276a079db78b1df94389b98c0673b9a2e3f943b947e6b9703ba6b0ef9343ab9c9c83b
 DIST cinnamon-screensaver-5.6.1.tar.gz 157262 BLAKE2B 
c5d0c6e5d06b52d28b9b9f9d503bf78618fba5ebc96b46986e5e2c9327ccde6d18d056882c8f283cd9d1e7e55dc6ed182312902744177d83e920df108795500b
 SHA512 
ee447ff7b1c1c9748f593f42af844039d383de85b52fdfaac3c9df50e56b427b1a4a77d2cec7bef5be28d372329a02c3fb19f46e90ba72ae99d1783e9c866d3f

diff --git a/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-5.4.4.ebuild 
b/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-5.4.4.ebuild
deleted file mode 100644
index 3248654bc1ea..
--- a/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-5.4.4.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit meson python-single-r1 xdg
-
-DESCRIPTION="Screensaver for Cinnamon"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-screensaver;
-SRC_URI="https://github.com/linuxmint/cinnamon-screensaver/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2+ MIT"
-SLOT="0"
-IUSE="systemd xinerama"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   >=dev-libs/glib-2.37.3:2[dbus]
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-   sys-apps/dbus
-   sys-libs/pam
-   >=x11-libs/gtk+-3.22:3[introspection]
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXrandr
-   x11-misc/xdotool
-   x11-themes/adwaita-icon-theme
-
-   xinerama? ( x11-libs/libXinerama )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-   >=app-accessibility/caribou-0.3
-   sys-apps/accountsservice[introspection]
-   $(python_gen_cond_dep '
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/setproctitle[${PYTHON_USEDEP}]
-   >=dev-python/python3-xapp-2.2.2[${PYTHON_USEDEP}]
-   ')
-
-   systemd? ( >=sys-apps/systemd-31 )
-   !systemd? ( sys-auth/elogind )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   x11-base/xorg-proto
-"
-BDEPEND="
-   dev-util/gdbus-codegen
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   python_fix_shebang install-scripts src
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use xinerama)
-   )
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-   python_optimize "${ED}"/usr/share/cinnamon-screensaver/
-}



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

2022-11-21 Thread Sam James
commit: 6c94ff46dc226abeb80a6c04204dd0083faf693c
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:18:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c94ff46

gnome-extra/cinnamon-screensaver: add 5.6.1

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-screensaver/Manifest  |  1 +
 .../cinnamon-screensaver-5.6.1.ebuild  | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/gnome-extra/cinnamon-screensaver/Manifest 
b/gnome-extra/cinnamon-screensaver/Manifest
index a6ce80d74cf5..49c9001e35e8 100644
--- a/gnome-extra/cinnamon-screensaver/Manifest
+++ b/gnome-extra/cinnamon-screensaver/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-screensaver-5.2.1.tar.gz 154920 BLAKE2B 
a50508f6ad5ffee797db4f74295ef7ffdfdb0024e9a9ca005398f5ccac83687f356743c80d8911ccf1ee9b343a285e4e6c72ce864fe639e3494ed54701a84e8b
 SHA512 
db293f619df8ea3e43c209f5d32d649935f1efbc5763700369d5bd595866805a3e604930a3f70b6d43cbc4469c6d618f258b49cf4962f87c8b06447178ed1e7a
 DIST cinnamon-screensaver-5.4.4.tar.gz 154920 BLAKE2B 
bf955b686d7d1868e9cc2a8ca42c17d7420893c05e27de0b318ac3a00f43d96d0befb0b82868a230e279820389482dffddc0116be28bbab7984af78db30635a2
 SHA512 
24e413345bd8a8c0942bee4ff9378fc82d5a5a25b79fea4a5ddd018fad8276a079db78b1df94389b98c0673b9a2e3f943b947e6b9703ba6b0ef9343ab9c9c83b
+DIST cinnamon-screensaver-5.6.1.tar.gz 157262 BLAKE2B 
c5d0c6e5d06b52d28b9b9f9d503bf78618fba5ebc96b46986e5e2c9327ccde6d18d056882c8f283cd9d1e7e55dc6ed182312902744177d83e920df108795500b
 SHA512 
ee447ff7b1c1c9748f593f42af844039d383de85b52fdfaac3c9df50e56b427b1a4a77d2cec7bef5be28d372329a02c3fb19f46e90ba72ae99d1783e9c866d3f

diff --git a/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-5.6.1.ebuild 
b/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-5.6.1.ebuild
new file mode 100644
index ..696f12db17ed
--- /dev/null
+++ b/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-5.6.1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit meson python-single-r1 xdg
+
+DESCRIPTION="Screensaver for Cinnamon"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-screensaver;
+SRC_URI="https://github.com/linuxmint/cinnamon-screensaver/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+ MIT"
+SLOT="0"
+IUSE="systemd xinerama"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+
+COMMON_DEPEND="
+   ${PYTHON_DEPS}
+   >=dev-libs/glib-2.37.3:2[dbus]
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+   sys-apps/dbus
+   sys-libs/pam
+   >=x11-libs/gtk+-3.22:3[introspection]
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXrandr
+   x11-misc/xdotool
+   x11-themes/adwaita-icon-theme
+
+   xinerama? ( x11-libs/libXinerama )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   >=app-accessibility/caribou-0.3
+   sys-apps/accountsservice[introspection]
+   $(python_gen_cond_dep '
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   >=dev-python/python3-xapp-2.4.0[${PYTHON_USEDEP}]
+   ')
+
+   systemd? ( >=sys-apps/systemd-31 )
+   !systemd? ( sys-auth/elogind )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   x11-base/xorg-proto
+"
+BDEPEND="
+   dev-util/gdbus-codegen
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   python_fix_shebang install-scripts src
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use xinerama)
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+   python_optimize "${ED}"/usr/share/cinnamon-screensaver/
+}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-control-center/

2022-11-21 Thread Sam James
commit: 67ed0c925bdcfd2ec5f568dd18cb4de38e4a69c6
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:30:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ed0c92

gnome-extra/cinnamon-control-center: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-control-center/Manifest   |   1 +
 .../cinnamon-control-center-5.6.0.ebuild   | 100 +
 2 files changed, 101 insertions(+)

diff --git a/gnome-extra/cinnamon-control-center/Manifest 
b/gnome-extra/cinnamon-control-center/Manifest
index c6eccbee9935..9eb11161140d 100644
--- a/gnome-extra/cinnamon-control-center/Manifest
+++ b/gnome-extra/cinnamon-control-center/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-control-center-5.2.1.tar.gz 3863530 BLAKE2B 
826494b8f8a4dead32d6031d7b4b2a44d357b3e8fedf1065b61193caa86ad433ba68fd9344f70bbce77bb94e086ae15f8854dc73916a5f60c49b1b2bd9e7101c
 SHA512 
d322a9b460f13c697d327dda75a3ea16dd96414ed52ffbcdfc19479533178585da795c064ae441b36ef02f1aa779704db039328ca4ac4c373f363967948f2301
 DIST cinnamon-control-center-5.4.7.tar.gz 3873806 BLAKE2B 
136ee3328f9ee19fabc70ac6f9da7e92f2e8748bebdda59228b866382122580a918630781935a49bd95401181661a84c498499ff46ed3ad62a7cf687848e9806
 SHA512 
b7d45e41984d53a169a08472d8b4f58b03acf670df3e8e741636155bfad3189cb8dc5ea929e887a7e4f29b354722dd344cb02f8d00b42de010ba4e24d106e08d
+DIST cinnamon-control-center-5.6.0.tar.gz 3872303 BLAKE2B 
c0db21dbad031e3a3e06ea2f6253421c548b993eef323e2be1ad131e0a8e980b7b3a93d9a7a6d1feaf13ebe8c5f77fd286f0cb56b7d22c7cb447e46178c6f328
 SHA512 
336c554c93212c28df4f163b6a06d2c287901c167dc8e5563dbb44ddd69119db36d15086b6b1e78ff1b199424a4a24ac9605d59877a3f8174fd1f406a0f7ca4f

diff --git 
a/gnome-extra/cinnamon-control-center/cinnamon-control-center-5.6.0.ebuild 
b/gnome-extra/cinnamon-control-center/cinnamon-control-center-5.6.0.ebuild
new file mode 100644
index ..2d9a5bb44676
--- /dev/null
+++ b/gnome-extra/cinnamon-control-center/cinnamon-control-center-5.6.0.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit meson gnome2-utils python-any-r1 xdg virtualx
+
+DESCRIPTION="Cinnamons's main interface to configure various aspects of the 
desktop"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-control-center;
+SRC_URI="https://github.com/linuxmint/cinnamon-control-center/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+IUSE="+colord input_devices_wacom +networkmanager +modemmanager 
gnome-online-accounts systemd test"
+REQUIRED_USE="modemmanager? ( networkmanager )"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.44.0:2
+   >=gnome-base/libgnomekbd-3.0.0:0=
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+   >=gnome-extra/cinnamon-menus-5.6:0=
+   media-libs/fontconfig
+   >=sys-auth/polkit-0.103
+   >=sys-power/upower-0.99.8
+   >=x11-libs/gdk-pixbuf-2.23.0:2
+   >=x11-libs/gtk+-3.16.0:3
+   >=dev-libs/libgudev-232
+   >=x11-libs/libnotify-0.7.3:0=
+   x11-libs/libX11
+   >=x11-libs/libxklavier-5.1
+
+   colord? ( >=x11-misc/colord-0.1.14:0= )
+   input_devices_wacom? (
+   >=dev-libs/libwacom-0.7:=
+   >=x11-libs/libXi-1.2 )
+   networkmanager? (
+   >=gnome-extra/nm-applet-1.2.0
+   >=net-libs/libnma-1.8.34
+   >=net-misc/networkmanager-1.2.0:=[modemmanager?]
+
+   modemmanager? ( >=net-misc/modemmanager-0.7 )
+   )
+   gnome-online-accounts? (
+   >=net-libs/gnome-online-accounts-3.18.0
+   )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   x11-themes/adwaita-icon-theme
+
+   colord? ( >=gnome-extra/gnome-color-manager-3 )
+   input_devices_wacom? ( 
gnome-extra/cinnamon-settings-daemon[input_devices_wacom] )
+   systemd? ( >=sys-apps/systemd-31 )
+   !systemd? ( app-admin/openrc-settingsd )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   app-text/iso-codes
+   x11-base/xorg-proto
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   dev-util/glib-utils
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   python_fix_shebang meson_install_schemas.py
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use colord color)
+   $(meson_use modemmanager)
+   $(meson_use networkmanager)
+   $(meson_use gnome-online-accounts onlineaccounts)
+   $(meson_use input_devices_wacom wacom)
+   )
+   meson_src_configure
+}
+
+src_test() {
+   virtx meson_src_test
+}
+

[gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/

2022-11-21 Thread Sam James
commit: 5d574cfc6373da5689f30c218bb15cecbf25552e
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:24:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d574cfc

x11-wm/muffin: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 x11-wm/muffin/Manifest|   1 +
 x11-wm/muffin/muffin-5.6.0.ebuild | 120 ++
 2 files changed, 121 insertions(+)

diff --git a/x11-wm/muffin/Manifest b/x11-wm/muffin/Manifest
index 5cae8e03137a..22ecb40c8dc8 100644
--- a/x11-wm/muffin/Manifest
+++ b/x11-wm/muffin/Manifest
@@ -1,2 +1,3 @@
 DIST muffin-5.2.1.tar.gz 5197177 BLAKE2B 
9703a2e2c5ef75c7d4da3e201b60033a7ba549d94106df33aa9b89d0029f52c06fb4be00dd4c4d996bb083a790635a8227c8ff729dc43940f70b679e1b46924d
 SHA512 
fa88a88f77a1cb84c2159fac8ab3ed38ae1054d3a01bb100aa264e8b91493a744da6e83ffad9190f0f7a07bd26022fea12d13a60e213d57f289685fba1810eb6
 DIST muffin-5.4.7.tar.gz 4515845 BLAKE2B 
53e2debb404f1712b2c23b7d46cf020389acff50067f39ed8a99272688b0ec95fe8e1e14a1c032a36ae4e80a55099390cebaec156bd6da81d3a89629e627e8b3
 SHA512 
12789c9ad1c69b59b0dbff6a3853eca42851a48d949b913dc851e676dc92b95c9b1b73d5bc8550dc5cf46fc9b659a6a4c04431ec16c9aeeddab408d2066e
+DIST muffin-5.6.0.tar.gz 4516015 BLAKE2B 
19136768b7060186db9228bcfc01b4f5f94a3e66222cf21ad07d67ada415fd7bcf40fa13b0f4f292a2468671ce9ff15e24fa39553009109a557ffc1bbb8080b3
 SHA512 
9d36ac4f9e9ee91c2712c51b7a7ec0223ddb3178739b6b2e644d54e425420ceb99bd72e5da129d2f8a42c5693eba144a4b0713bc550f09339a3d15136d0953dd

diff --git a/x11-wm/muffin/muffin-5.6.0.ebuild 
b/x11-wm/muffin/muffin-5.6.0.ebuild
new file mode 100644
index ..85ef3c165c15
--- /dev/null
+++ b/x11-wm/muffin/muffin-5.6.0.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome2-utils meson xdg-utils virtualx
+
+DESCRIPTION="Compositing window manager forked from Mutter for use with 
Cinnamon"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/muffin;
+SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+ MIT SGI-B-2.0"
+SLOT="0"
+IUSE="input_devices_wacom +introspection screencast sysprof test udev"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+
+# Dependencies listed in meson order
+COMDEPEND="
+   x11-libs/libX11
+   >=media-libs/graphene-1.9.3[introspection?]
+   >=x11-libs/gtk+-3.19.8:3[X,introspection?]
+   x11-libs/gdk-pixbuf:2[introspection?]
+   >=x11-libs/pango-1.20.0[introspection?]
+   >=x11-libs/cairo-1.10.0:=[X]
+   >=dev-libs/fribidi-1.0.0
+   >=dev-libs/glib-2.61.1:2
+   >=dev-libs/json-glib-0.12.0[introspection?]
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+   >=x11-libs/libXcomposite-0.4
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   >=x11-libs/libXfixes-3
+   >=x11-libs/libXi-1.7.4
+   x11-libs/libXtst
+   x11-libs/libxkbfile
+   x11-misc/xkeyboard-config
+   >=x11-libs/libxkbcommon-0.4.3[X]
+   x11-libs/libXrender
+   >=x11-libs/libXrandr-1.5.0
+   x11-libs/libxcb:=
+   x11-libs/libXinerama
+   x11-libs/libXau
+   x11-libs/libICE
+   || (
+   >=app-accessibility/at-spi2-core-2.46.0:2[introspection?]
+   >=dev-libs/atk-2.5.3[introspection?]
+   )
+   >=media-libs/libcanberra-0.26
+   sys-apps/dbus
+   media-libs/libglvnd[X]
+   media-libs/mesa[X(+),egl(+)]
+   x11-libs/libSM
+   >=x11-libs/startup-notification-0.7:=
+
+   input_devices_wacom? ( >=dev-libs/libwacom-0.13:= )
+   introspection? ( >=dev-libs/gobject-introspection-1.41.3:= )
+   screencast? ( >=media-video/pipewire-0.3.0:= )
+   sysprof? ( >=dev-util/sysprof-capture-3.35.2:3 )
+   udev? ( >=virtual/libudev-228:=
+   >=dev-libs/libgudev-232 )
+"
+RDEPEND="${COMDEPEND}
+   gnome-extra/zenity
+"
+DEPEND="${COMDEPEND}
+   x11-base/xorg-proto
+
+   sysprof? ( dev-util/sysprof-common )
+"
+BDEPEND="
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+# Wayland is not supported upstream.
+src_configure() {
+   local emesonargs=(
+   -Dopengl=true
+   #opengl_libname
+   #gles2_libname
+   -Dgles2=false # wayland
+   -Degl=true
+   -Dglx=true
+   $(meson_use screencast remote_desktop)
+   $(meson_use udev)
+   $(meson_use input_devices_wacom libwacom)
+   -Dpango_ft2=true
+   -Dstartup_notification=true
+   -Dsm=true
+   $(meson_use introspection)
+   

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

2022-11-21 Thread Sam James
commit: 27a734780feb83255e554a43905962d0eec21727
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Mon Nov 21 22:04:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27a73478

gnome-extra/nemo: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/nemo/Manifest  |   1 +
 gnome-extra/nemo/nemo-5.6.0.ebuild | 135 +
 2 files changed, 136 insertions(+)

diff --git a/gnome-extra/nemo/Manifest b/gnome-extra/nemo/Manifest
index fe165f093841..aab9276d650b 100644
--- a/gnome-extra/nemo/Manifest
+++ b/gnome-extra/nemo/Manifest
@@ -1,2 +1,3 @@
 DIST nemo-5.2.4.tar.gz 1492077 BLAKE2B 
dc6efb24921d5408938ff5b8660653789a77d6607e2e023d73eb5722a0a8bc75cd22d1241f5e852d0429d05f6ec4fd1abb798b8be1ecf513eeed108a256e506c
 SHA512 
0aa3f7e0c2bdb9d7f1874c17caea0e4a3da062fc243de1f1657bdb83090a1afb099baa404f211092f83cf6852c423b244482faf0ad6beaaddc072cbce17cc6d4
 DIST nemo-5.4.3.tar.gz 1495378 BLAKE2B 
1135f1190e23bb259967352afb1da11bd8aad14b30ed2256fc1e00b932845b8e8129648134e21459a47d7fa7a88cc8c08f3de21760e07ff1f7911c28ed4e784b
 SHA512 
3bb509c6999f145e463a437cd1e45bb32d1aaea10531d22b46c46811a7c196d5a26db77b357c082c03621a0cc545feb10ad218a7af81dfecdffbffa381a047da
+DIST nemo-5.6.0.tar.gz 1496505 BLAKE2B 
00fa26ed9215f0047571eabe3d5c4270e759d1ee0be08972f55af14c6bf793d426ed7a171b4b32804b0369a0356070a2063f55772b0a06f6d9944d95583d0249
 SHA512 
92956e8a42c4a9dcc6021433c7c6f793b9f0eb173e3209a721c0d5a2b17e19da104e06a2b26f1d0f7b4d89a5a9648838f75d4f97c36b3ac33ca2af104c3dee03

diff --git a/gnome-extra/nemo/nemo-5.6.0.ebuild 
b/gnome-extra/nemo/nemo-5.6.0.ebuild
new file mode 100644
index ..a1590557ed37
--- /dev/null
+++ b/gnome-extra/nemo/nemo-5.6.0.ebuild
@@ -0,0 +1,135 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit meson gnome2-utils python-single-r1 readme.gentoo-r1 virtualx xdg
+
+DESCRIPTION="A file manager for Cinnamon, forked from Nautilus"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/nemo;
+SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ FDL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="exif gtk-doc +nls selinux test xmp"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# https://github.com/linuxmint/nemo/issues/2501
+RESTRICT="test"
+
+COMMON_DEPEND="
+   ${PYTHON_DEPS}
+   || (
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   dev-libs/atk
+   )
+   >=dev-libs/glib-2.45.7:2[dbus]
+   >=dev-libs/gobject-introspection-0.9.12:=
+   >=dev-libs/libxml2-2.7.8:2
+   gnome-base/dconf:0=
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+   gnome-extra/libgsf:=
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.10.0:3[introspection]
+   x11-libs/libX11
+   >=x11-libs/pango-1.40.0
+   >=x11-libs/xapp-2.4.1
+
+   exif? ( >=media-libs/libexif-0.6.20:= )
+   selinux? ( sys-libs/libselinux )
+   xmp? ( >=media-libs/exempi-2.2.0:= )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   $(python_gen_cond_dep '
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+   x11-themes/adwaita-icon-theme
+
+   nls? ( >=gnome-extra/cinnamon-translations-5.6 )
+"
+PDEPEND="
+   >=gnome-base/gvfs-0.1.2
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   x11-base/xorg-proto
+"
+BDEPEND="
+   >=dev-util/gdbus-codegen-2.31.0
+   >=dev-util/intltool-0.40.1
+   sys-devel/gettext
+   virtual/pkgconfig
+
+   gtk-doc? ( dev-util/gtk-doc )
+"
+
+PATCHES=(
+   # Undo the switch to untex as it's not packaged.
+   "${FILESDIR}/${PN}-5.0.3-use-detex.patch"
+)
+
+DISABLE_AUTOFORMATTING="yes"
+FORCE_PRINT_ELOG="yes"
+DOC_CONTENTS="
+${PN} functionality can be extended by installing other packages.
+
+sys-apps/gnome-disk-utility - Mount archive files
+gnome-extra/nemo-fileroller - Extract/Create archive files
+
+${PN} search capabilities can be extended through external
+helpers. Install any of the following packages to make
+their associated file types searchable.
+
+epub - app-arch/unzip and app-text/html2text
+Image metadata   - media-gfx/exif
+MP3 tags - media-sound/id3
+Microsoft Office .doc- app-text/catdoc
+Microsoft Office .xls- dev-python/xlrd
+OpenDocument/LibreOffice - app-text/odt2txt or app-office/unoconv
+PDF  - app-text/poppler[utils]
+PostScript   - app-text/ghostscript-gpl
+TeX  - app-text/texlive-core
+"
+
+src_prepare() {
+   default
+   python_fix_shebang files/usr/share/nemo/actions install-scripts
+}
+

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

2022-11-21 Thread Sam James
commit: 2b4e0ff3beb992080d8ce206bb69d4489f455422
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Mon Nov 21 22:08:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4e0ff3

gnome-extra/nemo-fileroller: drop 5.4.1

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/nemo-fileroller/Manifest   |  1 -
 .../nemo-fileroller/nemo-fileroller-5.4.1.ebuild   | 25 --
 2 files changed, 26 deletions(-)

diff --git a/gnome-extra/nemo-fileroller/Manifest 
b/gnome-extra/nemo-fileroller/Manifest
index a1602296425d..7e3132c37429 100644
--- a/gnome-extra/nemo-fileroller/Manifest
+++ b/gnome-extra/nemo-fileroller/Manifest
@@ -1,3 +1,2 @@
 DIST nemo-extensions-5.2.0.tar.gz 533607 BLAKE2B 
0c9ca96e2ac57a42765f3b598d4681e1f8a00b7804edd0ae500e80ce8d013f3fcdfafdd1ccba7d13d33639e6128aed54b5909baa463c040fd88d64d56d14dcdd
 SHA512 
deaf8c8582119f75b13f65dd60e8b5a2db68dece6a3237e2d31c11adf35ca8fc3ea9b16d53b21a0ddb3772759b8a8993779da6e9ee4cf765889515fdcb03998d
-DIST nemo-extensions-5.4.0.tar.gz 534549 BLAKE2B 
29d3f90bf646855d4c0ac591bd3490f30c0c7e18839f09c3d6a8f0a69cc3bc910a3c16d5a6f9b5e3f066e58ab78540e38ad8d89676dc0cf45f20ded66aee723b
 SHA512 
d5114a393a659b1b4065a80d59fbdc721975a4b3a86683dad877dcda6dc4ff74f80c0f212fb1aafbfb4bc83a7ac22ad3b027c21689a20559d40f7cd7c3ac799e
 DIST nemo-extensions-5.6.0.tar.gz 535288 BLAKE2B 
49dd9683aeae036c042f791ff52d3bf12226034e07972ac150ffcfba34543a60b3776db6426429a37d404aa11c828b42b1fc28c5ba0180fce65674960d14bd4c
 SHA512 
fa819aa3e0f07205a15a7016eb92bfc1b69814a30da61c90cf657edd6eea1daa96c4911dbdbf898dfd023074562e6f8240ac7787084b9a004bf823985ae42ea7

diff --git a/gnome-extra/nemo-fileroller/nemo-fileroller-5.4.1.ebuild 
b/gnome-extra/nemo-fileroller/nemo-fileroller-5.4.1.ebuild
deleted file mode 100644
index f6f02bbe1356..
--- a/gnome-extra/nemo-fileroller/nemo-fileroller-5.4.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="Nemo file-roller integration"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/nemo-extensions;
-SRC_URI="https://github.com/linuxmint/nemo-extensions/archive/5.4.0.tar.gz -> 
nemo-extensions-5.4.0.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-DEPEND="
-   >=dev-libs/glib-2.14.0
-   >=gnome-extra/nemo-2.0.0
-"
-RDEPEND="
-   ${DEPEND}
-   app-arch/file-roller
-"
-
-S="${WORKDIR}/nemo-extensions-5.4.0/${PN}"



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

2022-11-21 Thread Sam James
commit: 7044d687dc0324bda39efbfc90a3fca9f3530521
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Mon Nov 21 22:05:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7044d687

gnome-extra/nemo: drop 5.4.3

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/nemo/Manifest  |   1 -
 gnome-extra/nemo/nemo-5.4.3.ebuild | 135 -
 2 files changed, 136 deletions(-)

diff --git a/gnome-extra/nemo/Manifest b/gnome-extra/nemo/Manifest
index aab9276d650b..2c700092e9fd 100644
--- a/gnome-extra/nemo/Manifest
+++ b/gnome-extra/nemo/Manifest
@@ -1,3 +1,2 @@
 DIST nemo-5.2.4.tar.gz 1492077 BLAKE2B 
dc6efb24921d5408938ff5b8660653789a77d6607e2e023d73eb5722a0a8bc75cd22d1241f5e852d0429d05f6ec4fd1abb798b8be1ecf513eeed108a256e506c
 SHA512 
0aa3f7e0c2bdb9d7f1874c17caea0e4a3da062fc243de1f1657bdb83090a1afb099baa404f211092f83cf6852c423b244482faf0ad6beaaddc072cbce17cc6d4
-DIST nemo-5.4.3.tar.gz 1495378 BLAKE2B 
1135f1190e23bb259967352afb1da11bd8aad14b30ed2256fc1e00b932845b8e8129648134e21459a47d7fa7a88cc8c08f3de21760e07ff1f7911c28ed4e784b
 SHA512 
3bb509c6999f145e463a437cd1e45bb32d1aaea10531d22b46c46811a7c196d5a26db77b357c082c03621a0cc545feb10ad218a7af81dfecdffbffa381a047da
 DIST nemo-5.6.0.tar.gz 1496505 BLAKE2B 
00fa26ed9215f0047571eabe3d5c4270e759d1ee0be08972f55af14c6bf793d426ed7a171b4b32804b0369a0356070a2063f55772b0a06f6d9944d95583d0249
 SHA512 
92956e8a42c4a9dcc6021433c7c6f793b9f0eb173e3209a721c0d5a2b17e19da104e06a2b26f1d0f7b4d89a5a9648838f75d4f97c36b3ac33ca2af104c3dee03

diff --git a/gnome-extra/nemo/nemo-5.4.3.ebuild 
b/gnome-extra/nemo/nemo-5.4.3.ebuild
deleted file mode 100644
index 55cfe951d0ad..
--- a/gnome-extra/nemo/nemo-5.4.3.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit meson gnome2-utils python-single-r1 readme.gentoo-r1 virtualx xdg
-
-DESCRIPTION="A file manager for Cinnamon, forked from Nautilus"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/nemo;
-SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ FDL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="exif gtk-doc +nls selinux test xmp"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# https://github.com/linuxmint/nemo/issues/2501
-RESTRICT="test"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   || (
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   dev-libs/atk
-   )
-   >=dev-libs/glib-2.45.7:2[dbus]
-   >=dev-libs/gobject-introspection-0.9.12:=
-   >=dev-libs/libxml2-2.7.8:2
-   gnome-base/dconf:0=
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-   gnome-extra/libgsf:=
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.10.0:3[introspection]
-   x11-libs/libX11
-   >=x11-libs/pango-1.40.0
-   >=x11-libs/xapp-2.2.15
-
-   exif? ( >=media-libs/libexif-0.6.20:= )
-   selinux? ( sys-libs/libselinux )
-   xmp? ( >=media-libs/exempi-2.2.0:= )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-   $(python_gen_cond_dep '
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   ')
-   x11-themes/adwaita-icon-theme
-
-   nls? ( >=gnome-extra/cinnamon-translations-5.4 )
-"
-PDEPEND="
-   >=gnome-base/gvfs-0.1.2
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   x11-base/xorg-proto
-"
-BDEPEND="
-   >=dev-util/gdbus-codegen-2.31.0
-   >=dev-util/intltool-0.40.1
-   sys-devel/gettext
-   virtual/pkgconfig
-
-   gtk-doc? ( dev-util/gtk-doc )
-"
-
-PATCHES=(
-   # Undo the switch to untex as it's not packaged.
-   "${FILESDIR}/${PN}-5.0.3-use-detex.patch"
-)
-
-DISABLE_AUTOFORMATTING="yes"
-FORCE_PRINT_ELOG="yes"
-DOC_CONTENTS="
-${PN} functionality can be extended by installing other packages.
-
-sys-apps/gnome-disk-utility - Mount archive files
-gnome-extra/nemo-fileroller - Extract/Create archive files
-
-${PN} search capabilities can be extended through external
-helpers. Install any of the following packages to make
-their associated file types searchable.
-
-epub - app-arch/unzip and app-text/html2text
-Image metadata   - media-gfx/exif
-MP3 tags - media-sound/id3
-Microsoft Office .doc- app-text/catdoc
-Microsoft Office .xls- dev-python/xlrd
-OpenDocument/LibreOffice - app-text/odt2txt or app-office/unoconv
-PDF  - app-text/poppler[utils]
-PostScript   - app-text/ghostscript-gpl
-TeX  - app-text/texlive-core
-"
-
-src_prepare() {
-   default
-   python_fix_shebang files/usr/share/nemo/actions install-scripts
-}
-

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-control-center/

2022-11-21 Thread Sam James
commit: 222cac211c8fa75e8fb6c0b1293e1d3a1cc377f1
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:31:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=222cac21

gnome-extra/cinnamon-control-center: drop 5.4.7

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-control-center/Manifest   |   1 -
 .../cinnamon-control-center-5.4.7.ebuild   | 101 -
 2 files changed, 102 deletions(-)

diff --git a/gnome-extra/cinnamon-control-center/Manifest 
b/gnome-extra/cinnamon-control-center/Manifest
index 9eb11161140d..c528413952a1 100644
--- a/gnome-extra/cinnamon-control-center/Manifest
+++ b/gnome-extra/cinnamon-control-center/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-control-center-5.2.1.tar.gz 3863530 BLAKE2B 
826494b8f8a4dead32d6031d7b4b2a44d357b3e8fedf1065b61193caa86ad433ba68fd9344f70bbce77bb94e086ae15f8854dc73916a5f60c49b1b2bd9e7101c
 SHA512 
d322a9b460f13c697d327dda75a3ea16dd96414ed52ffbcdfc19479533178585da795c064ae441b36ef02f1aa779704db039328ca4ac4c373f363967948f2301
-DIST cinnamon-control-center-5.4.7.tar.gz 3873806 BLAKE2B 
136ee3328f9ee19fabc70ac6f9da7e92f2e8748bebdda59228b866382122580a918630781935a49bd95401181661a84c498499ff46ed3ad62a7cf687848e9806
 SHA512 
b7d45e41984d53a169a08472d8b4f58b03acf670df3e8e741636155bfad3189cb8dc5ea929e887a7e4f29b354722dd344cb02f8d00b42de010ba4e24d106e08d
 DIST cinnamon-control-center-5.6.0.tar.gz 3872303 BLAKE2B 
c0db21dbad031e3a3e06ea2f6253421c548b993eef323e2be1ad131e0a8e980b7b3a93d9a7a6d1feaf13ebe8c5f77fd286f0cb56b7d22c7cb447e46178c6f328
 SHA512 
336c554c93212c28df4f163b6a06d2c287901c167dc8e5563dbb44ddd69119db36d15086b6b1e78ff1b199424a4a24ac9605d59877a3f8174fd1f406a0f7ca4f

diff --git 
a/gnome-extra/cinnamon-control-center/cinnamon-control-center-5.4.7.ebuild 
b/gnome-extra/cinnamon-control-center/cinnamon-control-center-5.4.7.ebuild
deleted file mode 100644
index 4992bab03f57..
--- a/gnome-extra/cinnamon-control-center/cinnamon-control-center-5.4.7.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-inherit meson gnome2-utils python-any-r1 xdg virtualx
-
-DESCRIPTION="Cinnamons's main interface to configure various aspects of the 
desktop"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-control-center;
-SRC_URI="https://github.com/linuxmint/cinnamon-control-center/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ MIT"
-SLOT="0"
-IUSE="+colord input_devices_wacom +networkmanager +modemmanager 
gnome-online-accounts systemd test"
-REQUIRED_USE="modemmanager? ( networkmanager )"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-RESTRICT="test"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.44.0:2
-   >=gnome-base/libgnomekbd-3.0.0:0=
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-   >=gnome-extra/cinnamon-menus-5.4:0=
-   media-libs/fontconfig
-   >=sys-auth/polkit-0.103
-   >=sys-power/upower-0.99.8
-   >=x11-libs/gdk-pixbuf-2.23.0:2
-   >=x11-libs/gtk+-3.16.0:3
-   >=dev-libs/libgudev-232
-   >=x11-libs/libnotify-0.7.3:0=
-   x11-libs/libX11
-   >=x11-libs/libxklavier-5.1
-
-   colord? ( >=x11-misc/colord-0.1.14:0= )
-   input_devices_wacom? (
-   >=dev-libs/libwacom-0.7:=
-   >=gnome-extra/cinnamon-settings-daemon-5.4:0=
-   >=x11-libs/libXi-1.2 )
-   networkmanager? (
-   >=gnome-extra/nm-applet-1.2.0
-   >=net-libs/libnma-1.8.34
-   >=net-misc/networkmanager-1.2.0:=[modemmanager?]
-
-   modemmanager? ( >=net-misc/modemmanager-0.7 )
-   )
-   gnome-online-accounts? (
-   >=net-libs/gnome-online-accounts-3.18.0
-   )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-
-   colord? ( >=gnome-extra/gnome-color-manager-3 )
-   input_devices_wacom? ( 
gnome-extra/cinnamon-settings-daemon[input_devices_wacom] )
-   systemd? ( >=sys-apps/systemd-31 )
-   !systemd? ( app-admin/openrc-settingsd )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   app-text/iso-codes
-   x11-base/xorg-proto
-"
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/glib-utils
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   python_fix_shebang meson_install_schemas.py
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use colord color)
-   $(meson_use modemmanager)
-   $(meson_use networkmanager)
-   $(meson_use gnome-online-accounts onlineaccounts)
-   $(meson_use input_devices_wacom wacom)
-   )
-   meson_src_configure
-}

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

2022-11-21 Thread Sam James
commit: 2fe8457ff2d4793c0e8e88b96931239e10176ba6
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:55:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe8457f

gnome-extra/cinnamon-session: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-session/Manifest  |  1 +
 .../cinnamon-session/cinnamon-session-5.6.0.ebuild | 72 ++
 2 files changed, 73 insertions(+)

diff --git a/gnome-extra/cinnamon-session/Manifest 
b/gnome-extra/cinnamon-session/Manifest
index c2899607dde3..4e2247cff911 100644
--- a/gnome-extra/cinnamon-session/Manifest
+++ b/gnome-extra/cinnamon-session/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-session-5.2.0.tar.gz 200208 BLAKE2B 
2efe8ef0cb5dc4a828866c91bc020ffcc8b400423f92ac8be8ab47391202001123805c947af8e82eda530675b89cf4960f082b06acf24c296f083d6bcb941217
 SHA512 
3962529fed8d6c4c74e2f4b75014529d1a9b3307cf2d014c90088d0e2d3066ce375ccc3bbf5f07e9a181c08bba5360b07d5800cdb6386796255b4f1cb5c4d385
 DIST cinnamon-session-5.4.0.tar.gz 199698 BLAKE2B 
44856e577f1a42fa373bfeb9ad834f3b8b73ce51b8bf2aa794d1e98bb24dacea6fc31ced30965399bc9d9405a8cd29f45764462e2370765bbd21be2ba4a221c5
 SHA512 
073edd1909a92af6c4bd0951dcd2ee35b71bcbdc57ae57eabd8f5cb53fd136c00d88990aef78d0c61f1d31ff0a50094e7c7834feeabc116d8e3e39f3d484a61b
+DIST cinnamon-session-5.6.0.tar.gz 199389 BLAKE2B 
ecd8152af4784affc8c9b8ae7ca48adaecca4355c2db5d64ca577f44abc0ff35cf27ef324fa9d3520c125bc979727bbab67f99209e5a641ad0329a26025698b5
 SHA512 
260acb2a4e7016af3be2865d51eb947774020fc4e333e6a4ce72664d182c098f663d1878ac2194607f04517c3ea6916d2bfc5e55749f8252a38205b227d40335

diff --git a/gnome-extra/cinnamon-session/cinnamon-session-5.6.0.ebuild 
b/gnome-extra/cinnamon-session/cinnamon-session-5.6.0.ebuild
new file mode 100644
index ..2d063afc1a30
--- /dev/null
+++ b/gnome-extra/cinnamon-session/cinnamon-session-5.6.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit meson gnome2-utils python-any-r1 xdg-utils
+
+DESCRIPTION="Cinnamon session manager"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-session;
+SRC_URI="https://github.com/linuxmint/cinnamon-session/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="ipv6 systemd"
+
+DEPEND="
+   >=dev-libs/glib-2.37.3:2
+   media-libs/libcanberra[pulseaudio]
+   virtual/opengl
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3:3
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libXcomposite
+   x11-libs/libXext
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango[X]
+   >=x11-libs/xapp-2.4.1
+   x11-libs/xtrans
+
+   systemd? ( >=sys-apps/systemd-183 )
+   !systemd? ( sys-auth/elogind[policykit] )
+"
+RDEPEND="
+   ${DEPEND}
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   dev-util/gdbus-codegen
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   python_fix_shebang data
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use ipv6)
+   -Dxtrans=true
+   )
+   meson_src_configure
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   gnome2_schemas_update
+}



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

2022-11-21 Thread Sam James
commit: 5746e89bed0a24bfd58eedf5f4d388e90421014b
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Sun Nov 20 21:45:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5746e89b

gnome-extra/cinnamon: drop 5.4.12

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Closes: https://github.com/gentoo/gentoo/pull/28378
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon/Manifest   |   1 -
 gnome-extra/cinnamon/cinnamon-5.4.12.ebuild | 182 
 2 files changed, 183 deletions(-)

diff --git a/gnome-extra/cinnamon/Manifest b/gnome-extra/cinnamon/Manifest
index 2f54b3d74f50..9e1b78ab7b61 100644
--- a/gnome-extra/cinnamon/Manifest
+++ b/gnome-extra/cinnamon/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-5.2.7.tar.gz 2423949 BLAKE2B 
f4ce9ec4c79eab3daadff958c0a334d49757548203078ab657ebe2450f3f179c942df9d0f9089efe313c268c929628d724db43371e12338606d284a2738ed62c
 SHA512 
62cbbe2f719574b3f70a4895c231be9ad65a41220d2755cc1557bc06bb2b31ced93621c356f2973376d127d5a1e59f9295498bbc4812d428e8605e8f4882c733
-DIST cinnamon-5.4.12.tar.gz 2472187 BLAKE2B 
3ecd2a628ddf62bff6fe5e054f0b9c3e47efb532f6d310e5f9ddcca0763f35bc41872878d25dd3a50adb937c74a5e00dcfe7c25e3e4074d5a2fdd23745b41fff
 SHA512 
62982a277ea00660b4e39f780d77fdca87c425f8da8dba404c2b6bd806d56c5967c6cc3999281318eace2ab902e35f4b9f8f723f9bb57abb0e7111d1a30752d7
 DIST cinnamon-5.6.1.tar.gz 2482117 BLAKE2B 
9b7f9f9c045adb1497875d7d735b3d8b684869695c3e476f3f8f671840b31a6bd043c8d9f7aca2ab8d1e3fa90d85da454cb612e16a9489e5bfaa7df590a91d3b
 SHA512 
3ec7ce8cd1b2e98283ab84dd55a7e2e1693f6ad5cc7c6db8241808b9d96ab7c375c8739c470b99a83e3b6560ffcc50c070d2439dea71ab0d0792ef7c3bd8cd38

diff --git a/gnome-extra/cinnamon/cinnamon-5.4.12.ebuild 
b/gnome-extra/cinnamon/cinnamon-5.4.12.ebuild
deleted file mode 100644
index 488f5e3d3327..
--- a/gnome-extra/cinnamon/cinnamon-5.4.12.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit meson gnome2-utils pax-utils python-single-r1 xdg
-
-DESCRIPTION="A fork of GNOME Shell with layout similar to GNOME 2"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon;
-SRC_URI="https://github.com/linuxmint/cinnamon/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD GPL-2+ GPL-3+ GPL-3-with-openssl-exception LGPL-2+ LGPL-2.1 
LGPL-2.1+ MIT"
-SLOT="0"
-IUSE="+eds +gstreamer gtk-doc +nls +networkmanager"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   || (
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   ( app-accessibility/at-spi2-atk dev-libs/atk )
-   )
-   >=dev-libs/glib-2.52.0:2[dbus]
-   >=dev-libs/gobject-introspection-1.29.15:=
-   dev-libs/libxml2:2
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-   >=gnome-extra/cinnamon-menus-5.4
-   >=gnome-extra/cjs-5.4[cairo]
-   sys-apps/dbus
-   >=sys-auth/polkit-0.100[introspection]
-   virtual/opengl
-   x11-libs/gdk-pixbuf:2[introspection]
-   >=x11-libs/gtk+-3.12.0:3[introspection]
-   >=x11-libs/libnotify-0.7.3:0=[introspection]
-   x11-libs/libX11
-   >=x11-libs/libXfixes-5.0
-   x11-libs/pango[introspection]
-   >=x11-libs/xapp-2.2.15[introspection]
-   >=x11-wm/muffin-5.4[introspection]
-
-   eds? (
-   gnome-extra/evolution-data-server
-   )
-   gstreamer? (
-   media-libs/gst-plugins-base:1.0
-   media-libs/gstreamer:1.0
-   )
-   networkmanager? (
-   net-misc/networkmanager[introspection]
-   )
-"
-# caribou used by onscreen keyboard
-# libtimezonemap used by datetime settings
-# iso-flag-png (unpackaged) used by keyboard layout settings
-RDEPEND="
-   ${DEPEND}
-   >=app-accessibility/caribou-0.3
-   dev-libs/keybinder:3[introspection]
-   dev-libs/libtimezonemap
-   $(python_gen_cond_dep '
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinotify[${PYTHON_USEDEP}]
-   dev-python/python-pam[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/setproctitle[${PYTHON_USEDEP}]
-   dev-python/tinycss2[${PYTHON_USEDEP}]
-   >=dev-python/python3-xapp-2.2.2[${PYTHON_USEDEP}]
-   ')
-   >=gnome-base/dconf-0.4.1
-   

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

2022-11-21 Thread Sam James
commit: ef84e0919788ca69ea7cfc8cc769c89ce46d030d
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Tue Nov 22 05:47:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:19:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef84e091

app-text/wgetpaste: use optfeature.eclass

Use optfeature.eclass to notify users about support for stripping ANSI
codes and xclip integration if app-text/ansifilter and/or x11-misc/xclip
are not installed, respectively.

Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28379
Signed-off-by: Sam James  gentoo.org>

 .../wgetpaste/{wgetpaste-2.33.ebuild => wgetpaste-2.33-r1.ebuild}  | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/app-text/wgetpaste/wgetpaste-2.33.ebuild 
b/app-text/wgetpaste/wgetpaste-2.33-r1.ebuild
similarity index 83%
rename from app-text/wgetpaste/wgetpaste-2.33.ebuild
rename to app-text/wgetpaste/wgetpaste-2.33-r1.ebuild
index f6662506f9ae..c8592f26415d 100644
--- a/app-text/wgetpaste/wgetpaste-2.33.ebuild
+++ b/app-text/wgetpaste/wgetpaste-2.33-r1.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit optfeature
+
 DESCRIPTION="Command-line interface to various pastebins"
 HOMEPAGE="https://wgetpaste.zlin.dk/;
 SRC_URI="https://github.com/zlin/wgetpaste/releases/download/${PV}/${P}.tar.xz;
@@ -36,3 +38,8 @@ src_install() {
insinto /usr/share/zsh/site-functions
doins _wgetpaste
 }
+
+pkg_postinst() {
+   optfeature "ANSI (color code) stripping support" app-text/ansifilter
+   optfeature "xclip support" x11-misc/xclip
+}



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

2022-11-21 Thread Sam James
commit: f74562c77ebffa6c9b9c67d4258c78ef6a3f7e67
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Mon Nov 21 22:08:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74562c7

gnome-extra/nemo-fileroller: add 5.6.0

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/nemo-fileroller/Manifest   |  1 +
 .../nemo-fileroller/nemo-fileroller-5.6.0.ebuild   | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/gnome-extra/nemo-fileroller/Manifest 
b/gnome-extra/nemo-fileroller/Manifest
index bbc002f7b93e..a1602296425d 100644
--- a/gnome-extra/nemo-fileroller/Manifest
+++ b/gnome-extra/nemo-fileroller/Manifest
@@ -1,2 +1,3 @@
 DIST nemo-extensions-5.2.0.tar.gz 533607 BLAKE2B 
0c9ca96e2ac57a42765f3b598d4681e1f8a00b7804edd0ae500e80ce8d013f3fcdfafdd1ccba7d13d33639e6128aed54b5909baa463c040fd88d64d56d14dcdd
 SHA512 
deaf8c8582119f75b13f65dd60e8b5a2db68dece6a3237e2d31c11adf35ca8fc3ea9b16d53b21a0ddb3772759b8a8993779da6e9ee4cf765889515fdcb03998d
 DIST nemo-extensions-5.4.0.tar.gz 534549 BLAKE2B 
29d3f90bf646855d4c0ac591bd3490f30c0c7e18839f09c3d6a8f0a69cc3bc910a3c16d5a6f9b5e3f066e58ab78540e38ad8d89676dc0cf45f20ded66aee723b
 SHA512 
d5114a393a659b1b4065a80d59fbdc721975a4b3a86683dad877dcda6dc4ff74f80c0f212fb1aafbfb4bc83a7ac22ad3b027c21689a20559d40f7cd7c3ac799e
+DIST nemo-extensions-5.6.0.tar.gz 535288 BLAKE2B 
49dd9683aeae036c042f791ff52d3bf12226034e07972ac150ffcfba34543a60b3776db6426429a37d404aa11c828b42b1fc28c5ba0180fce65674960d14bd4c
 SHA512 
fa819aa3e0f07205a15a7016eb92bfc1b69814a30da61c90cf657edd6eea1daa96c4911dbdbf898dfd023074562e6f8240ac7787084b9a004bf823985ae42ea7

diff --git a/gnome-extra/nemo-fileroller/nemo-fileroller-5.6.0.ebuild 
b/gnome-extra/nemo-fileroller/nemo-fileroller-5.6.0.ebuild
new file mode 100644
index ..1a7211a7ccac
--- /dev/null
+++ b/gnome-extra/nemo-fileroller/nemo-fileroller-5.6.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Nemo file-roller integration"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/nemo-extensions;
+SRC_URI="https://github.com/linuxmint/nemo-extensions/archive/5.6.0.tar.gz -> 
nemo-extensions-5.6.0.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+DEPEND="
+   >=dev-libs/glib-2.14.0
+   >=gnome-extra/nemo-2.0.0
+"
+RDEPEND="
+   ${DEPEND}
+   app-arch/file-roller
+"
+
+S="${WORKDIR}/nemo-extensions-5.6.0/${PN}"



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

2022-11-21 Thread Sam James
commit: 430f236d1f1041d537bbf04a172087e3ed00f334
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Sun Nov 20 21:43:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=430f236d

gnome-extra/cinnamon: add 5.6.1

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon/Manifest  |   1 +
 gnome-extra/cinnamon/cinnamon-5.6.1.ebuild | 185 +
 2 files changed, 186 insertions(+)

diff --git a/gnome-extra/cinnamon/Manifest b/gnome-extra/cinnamon/Manifest
index b529d4986673..2f54b3d74f50 100644
--- a/gnome-extra/cinnamon/Manifest
+++ b/gnome-extra/cinnamon/Manifest
@@ -1,2 +1,3 @@
 DIST cinnamon-5.2.7.tar.gz 2423949 BLAKE2B 
f4ce9ec4c79eab3daadff958c0a334d49757548203078ab657ebe2450f3f179c942df9d0f9089efe313c268c929628d724db43371e12338606d284a2738ed62c
 SHA512 
62cbbe2f719574b3f70a4895c231be9ad65a41220d2755cc1557bc06bb2b31ced93621c356f2973376d127d5a1e59f9295498bbc4812d428e8605e8f4882c733
 DIST cinnamon-5.4.12.tar.gz 2472187 BLAKE2B 
3ecd2a628ddf62bff6fe5e054f0b9c3e47efb532f6d310e5f9ddcca0763f35bc41872878d25dd3a50adb937c74a5e00dcfe7c25e3e4074d5a2fdd23745b41fff
 SHA512 
62982a277ea00660b4e39f780d77fdca87c425f8da8dba404c2b6bd806d56c5967c6cc3999281318eace2ab902e35f4b9f8f723f9bb57abb0e7111d1a30752d7
+DIST cinnamon-5.6.1.tar.gz 2482117 BLAKE2B 
9b7f9f9c045adb1497875d7d735b3d8b684869695c3e476f3f8f671840b31a6bd043c8d9f7aca2ab8d1e3fa90d85da454cb612e16a9489e5bfaa7df590a91d3b
 SHA512 
3ec7ce8cd1b2e98283ab84dd55a7e2e1693f6ad5cc7c6db8241808b9d96ab7c375c8739c470b99a83e3b6560ffcc50c070d2439dea71ab0d0792ef7c3bd8cd38

diff --git a/gnome-extra/cinnamon/cinnamon-5.6.1.ebuild 
b/gnome-extra/cinnamon/cinnamon-5.6.1.ebuild
new file mode 100644
index ..c677198a6ae4
--- /dev/null
+++ b/gnome-extra/cinnamon/cinnamon-5.6.1.ebuild
@@ -0,0 +1,185 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit meson gnome2-utils pax-utils python-single-r1 xdg
+
+DESCRIPTION="A fork of GNOME Shell with layout similar to GNOME 2"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon;
+SRC_URI="https://github.com/linuxmint/cinnamon/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-2+ GPL-3+ GPL-3-with-openssl-exception LGPL-2+ LGPL-2.1 
LGPL-2.1+ MIT"
+SLOT="0"
+IUSE="+eds +gstreamer gtk-doc +nls +networkmanager"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   || (
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   ( app-accessibility/at-spi2-atk dev-libs/atk )
+   )
+   >=dev-libs/glib-2.52.0:2[dbus]
+   >=dev-libs/gobject-introspection-1.29.15:=
+   dev-libs/libxml2:2
+   >=gnome-extra/cinnamon-desktop-5.6:0=
+   >=gnome-extra/cinnamon-menus-5.6
+   >=gnome-extra/cjs-5.6[cairo]
+   sys-apps/dbus
+   >=sys-auth/polkit-0.100[introspection]
+   virtual/opengl
+   x11-libs/gdk-pixbuf:2[introspection]
+   >=x11-libs/gtk+-3.12.0:3[introspection]
+   >=x11-libs/libnotify-0.7.3:0=[introspection]
+   x11-libs/libX11
+   >=x11-libs/libXfixes-5.0
+   x11-libs/pango[introspection]
+   >=x11-libs/xapp-2.4.1[introspection]
+   >=x11-wm/muffin-5.6[introspection]
+
+   eds? (
+   gnome-extra/evolution-data-server
+   )
+   gstreamer? (
+   media-libs/gst-plugins-base:1.0
+   media-libs/gstreamer:1.0
+   )
+   networkmanager? (
+   net-misc/networkmanager[introspection]
+   )
+"
+# caribou used by onscreen keyboard
+# libtimezonemap used by datetime settings
+# iso-flag-png (unpackaged) used by keyboard layout settings
+RDEPEND="
+   ${DEPEND}
+   >=app-accessibility/caribou-0.3
+   dev-libs/keybinder:3[introspection]
+   dev-libs/libtimezonemap
+   $(python_gen_cond_dep '
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinotify[${PYTHON_USEDEP}]
+   dev-python/python-pam[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   dev-python/tinycss2[${PYTHON_USEDEP}]
+   >=dev-python/python3-xapp-2.4.0[${PYTHON_USEDEP}]
+   ')
+   >=gnome-base/dconf-0.4.1
+   >=gnome-base/gsettings-desktop-schemas-2.91.91
+   

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

2022-11-21 Thread Sam James
commit: 7bc096bf6c5fd818b9c4ebd188b50ec9a59e65be
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 05:45:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc096bf

gnome-extra/cinnamon-translations: drop 5.4.2

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 gnome-extra/cinnamon-translations/Manifest |  1 -
 .../cinnamon-translations-5.4.2.ebuild | 31 --
 2 files changed, 32 deletions(-)

diff --git a/gnome-extra/cinnamon-translations/Manifest 
b/gnome-extra/cinnamon-translations/Manifest
index cce52d44ca19..b98d4d148fd4 100644
--- a/gnome-extra/cinnamon-translations/Manifest
+++ b/gnome-extra/cinnamon-translations/Manifest
@@ -1,3 +1,2 @@
 DIST cinnamon-translations-5.2.2.tar.gz 12587393 BLAKE2B 
9609f515b87381ee433aa40d4814fd7630a78e448edf2e88f45264c08d66c324ec25e403eaafb79c9976de2721999ebb4808600ede8333dcebc9f1c8e1629b0b
 SHA512 
2403faab704fd4415fa44c1c7b2c44db7c72fc2e489057c40355c75a2b18eb36d6de37757052c9c18a6ad6b0ca7dece2dac9ede1819420183ec9dda38d9c747a
-DIST cinnamon-translations-5.4.2.tar.gz 12650460 BLAKE2B 
7c67b5cf58d8565dfa631fb75cef38bf3a7e47ee2dc8157d6ac12add430e3422e18df41a60571857ab878ac3b4c2d2655d3bf910ac159213cb61de35fe745367
 SHA512 
4102de9500191d8991e5abb803c366e23e12792990913114672241bc275e15e871a054342d764d176be2a7c2dacf39a05a4bdbd1c3d28832e1a430766be9a7a8
 DIST cinnamon-translations-5.6.0.tar.gz 12649967 BLAKE2B 
fade858a52c52c18c44824699e11807529e0334916d7980b8757b685cb557e954743fd29b38513da66d2aab5bb73091dee0c494562a262e7c42549805ebf0233
 SHA512 
5bbed2fc33cd23ce978985ddf633cd41bc0ff326e1b2eac6de273be995823c2df6850fd13cf1f9439f70d0cacd03db8bb2478ad1f3ab1966e4e28b6935cf099b

diff --git 
a/gnome-extra/cinnamon-translations/cinnamon-translations-5.4.2.ebuild 
b/gnome-extra/cinnamon-translations/cinnamon-translations-5.4.2.ebuild
deleted file mode 100644
index 822e84619979..
--- a/gnome-extra/cinnamon-translations/cinnamon-translations-5.4.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PLOCALES="aa af am an ar ary as ast ay az be be@latin ber bg bn bn_IN br bs ca 
ca@valencia crh cs csb cy da de dz el en@shaw en_AU en_CA en_GB en_IE en_NZ 
en_ZA eo es es_AR et eu fa fi fil fo fr fr_CA frp fur fy ga gd gl gu ha he hi 
hr hsb hu hy ia id ie ig is it ja jv ka kab kk km kn ko ksw ku ky la li lmo lo 
lt lv mai mg mi mk ml mn mo mr ms my nap nb nds ne nl nn no nso oc om or pa pap 
pl ps pt pt_BR ro ru rue rw sa sc sco shn si sk sl so sq sr sr@ijekavian 
sr@ijekavianlatin sr@latin sv sw szl ta te tg th tk tl tlh tpi tr ts tt ug uk 
ur uz uz@cyrillic vi wa xh yi yo zgh zh_CN zh_HK zh_TW zu"
-
-inherit plocale
-
-DESCRIPTION="Translation data for Cinnamon"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/cinnamon-translations;
-SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-
-BDEPEND="sys-devel/gettext"
-
-src_configure() { :; }
-
-src_install() {
-   # Cannot run before since locales are not in the expected place for 
this to work
-   plocale_find_changes "${S}"/usr/share/locale "" ""
-
-   install_locale() {
-   insinto /usr/share/locale
-   doins -r usr/share/locale/${1}
-   }
-   plocale_for_each_locale install_locale
-}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/

2022-11-21 Thread Sam James
commit: 42e8c167692e97dd06fa2780585d3d0d1df59a1f
Author: Matthew S. Turnbull  bluefang-logic  com>
AuthorDate: Fri Nov 18 06:24:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:17:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e8c167

x11-wm/muffin: drop 5.4.7-r1

Signed-off-by: Matthew S. Turnbull  bluefang-logic.com>
Signed-off-by: Sam James  gentoo.org>

 x11-wm/muffin/Manifest   |   1 -
 x11-wm/muffin/muffin-5.4.7-r1.ebuild | 120 ---
 2 files changed, 121 deletions(-)

diff --git a/x11-wm/muffin/Manifest b/x11-wm/muffin/Manifest
index 22ecb40c8dc8..69776f3fc8d8 100644
--- a/x11-wm/muffin/Manifest
+++ b/x11-wm/muffin/Manifest
@@ -1,3 +1,2 @@
 DIST muffin-5.2.1.tar.gz 5197177 BLAKE2B 
9703a2e2c5ef75c7d4da3e201b60033a7ba549d94106df33aa9b89d0029f52c06fb4be00dd4c4d996bb083a790635a8227c8ff729dc43940f70b679e1b46924d
 SHA512 
fa88a88f77a1cb84c2159fac8ab3ed38ae1054d3a01bb100aa264e8b91493a744da6e83ffad9190f0f7a07bd26022fea12d13a60e213d57f289685fba1810eb6
-DIST muffin-5.4.7.tar.gz 4515845 BLAKE2B 
53e2debb404f1712b2c23b7d46cf020389acff50067f39ed8a99272688b0ec95fe8e1e14a1c032a36ae4e80a55099390cebaec156bd6da81d3a89629e627e8b3
 SHA512 
12789c9ad1c69b59b0dbff6a3853eca42851a48d949b913dc851e676dc92b95c9b1b73d5bc8550dc5cf46fc9b659a6a4c04431ec16c9aeeddab408d2066e
 DIST muffin-5.6.0.tar.gz 4516015 BLAKE2B 
19136768b7060186db9228bcfc01b4f5f94a3e66222cf21ad07d67ada415fd7bcf40fa13b0f4f292a2468671ce9ff15e24fa39553009109a557ffc1bbb8080b3
 SHA512 
9d36ac4f9e9ee91c2712c51b7a7ec0223ddb3178739b6b2e644d54e425420ceb99bd72e5da129d2f8a42c5693eba144a4b0713bc550f09339a3d15136d0953dd

diff --git a/x11-wm/muffin/muffin-5.4.7-r1.ebuild 
b/x11-wm/muffin/muffin-5.4.7-r1.ebuild
deleted file mode 100644
index 766de49a6edd..
--- a/x11-wm/muffin/muffin-5.4.7-r1.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils meson xdg-utils virtualx
-
-DESCRIPTION="Compositing window manager forked from Mutter for use with 
Cinnamon"
-HOMEPAGE="https://projects.linuxmint.com/cinnamon/ 
https://github.com/linuxmint/muffin;
-SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+ MIT SGI-B-2.0"
-SLOT="0"
-IUSE="input_devices_wacom +introspection screencast sysprof test udev"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-
-# Dependencies listed in meson order
-COMDEPEND="
-   x11-libs/libX11
-   >=media-libs/graphene-1.9.3[introspection?]
-   >=x11-libs/gtk+-3.19.8:3[X,introspection?]
-   x11-libs/gdk-pixbuf:2[introspection?]
-   >=x11-libs/pango-1.20.0[introspection?]
-   >=x11-libs/cairo-1.10.0:=[X]
-   >=dev-libs/fribidi-1.0.0
-   >=dev-libs/glib-2.61.1:2
-   >=dev-libs/json-glib-0.12.0[introspection?]
-   >=gnome-extra/cinnamon-desktop-5.4:0=
-   >=x11-libs/libXcomposite-0.4
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   >=x11-libs/libXfixes-3
-   >=x11-libs/libXi-1.7.4
-   x11-libs/libXtst
-   x11-libs/libxkbfile
-   x11-misc/xkeyboard-config
-   >=x11-libs/libxkbcommon-0.4.3[X]
-   x11-libs/libXrender
-   >=x11-libs/libXrandr-1.5.0
-   x11-libs/libxcb:=
-   x11-libs/libXinerama
-   x11-libs/libXau
-   x11-libs/libICE
-   || (
-   >=app-accessibility/at-spi2-core-2.46.0:2[introspection?]
-   >=dev-libs/atk-2.5.3[introspection?]
-   )
-   >=media-libs/libcanberra-0.26
-   sys-apps/dbus
-   media-libs/libglvnd[X]
-   media-libs/mesa[X(+),egl(+)]
-   x11-libs/libSM
-   >=x11-libs/startup-notification-0.7:=
-
-   input_devices_wacom? ( >=dev-libs/libwacom-0.13:= )
-   introspection? ( >=dev-libs/gobject-introspection-1.41.3:= )
-   screencast? ( >=media-video/pipewire-0.3.0:= )
-   sysprof? ( >=dev-util/sysprof-capture-3.35.2:3 )
-   udev? ( >=virtual/libudev-228:=
-   >=dev-libs/libgudev-232 )
-"
-RDEPEND="${COMDEPEND}
-   gnome-extra/zenity
-"
-DEPEND="${COMDEPEND}
-   x11-base/xorg-proto
-
-   sysprof? ( dev-util/sysprof-common )
-"
-BDEPEND="
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-# Wayland is not supported upstream.
-src_configure() {
-   local emesonargs=(
-   -Dopengl=true
-   #opengl_libname
-   #gles2_libname
-   -Dgles2=false # wayland
-   -Degl=true
-   -Dglx=true
-   $(meson_use screencast remote_desktop)
-   $(meson_use udev)
-   $(meson_use input_devices_wacom libwacom)
-   -Dpango_ft2=true
-   -Dstartup_notification=true
-   -Dsm=true
-   $(meson_use introspection)
-  

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

2022-11-21 Thread John Helmert III
commit: d3883dbf44e95ba6f9091f691225de271b895fb9
Author: John Helmert III  gentoo  org>
AuthorDate: Tue Nov 22 06:18:40 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Tue Nov 22 06:20:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3883dbf

app-emulation/qemu: sync live

Bug: https://bugs.gentoo.org/873190
Signed-off-by: John Helmert III  gentoo.org>

 app-emulation/qemu/qemu-.ebuild | 31 +++
 1 file changed, 3 insertions(+), 28 deletions(-)

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index 671b13b12e50..3616ee03475f 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -61,7 +61,7 @@ IUSE="accessibility +aio alsa bpf bzip2 capstone +caps +curl 
debug ${QEMU_DOC_US
plugins +png pulseaudio python rbd sasl +seccomp sdl sdl-image selinux
+slirp
smartcard snappy spice ssh static static-user systemtap test udev usb
-   usbredir vde +vhost-net vhost-user-fs virgl virtfs +vnc vte xattr xen
+   usbredir vde +vhost-net virgl virtfs +vnc vte xattr xen
zstd"
 
 COMMON_TARGETS="
@@ -118,7 +118,8 @@ IUSE+=" ${use_softmmu_targets} ${use_user_targets}"
 RESTRICT="!test? ( test )"
 # Allow no targets to be built so that people can get a tools-only build.
 # Block USE flag configurations known to not work.
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
+REQUIRED_USE="caps seccomp
+   ${PYTHON_REQUIRED_USE}
qemu_softmmu_targets_arm? ( fdt )
qemu_softmmu_targets_microblaze? ( fdt )
qemu_softmmu_targets_mips64el? ( fdt )
@@ -130,7 +131,6 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
sdl-image? ( sdl )
static? ( static-user !alsa !gtk !jack !opengl !pam !pulseaudio 
!plugins !rbd !snappy !udev )
static-user? ( !plugins )
-   vhost-user-fs? ( caps seccomp )
virgl? ( opengl )
virtfs? ( caps xattr )
vnc? ( gnutls )
@@ -637,16 +637,6 @@ qemu_src_configure() {
--disable-tools
)
local static_flag="static"
-
-   for target in ${IUSE_SOFTMMU_TARGETS}; do
-   if use "qemu_softmmu_targets_${target}"; then
-   conf_opts+=(
-   # For some reason, adding this with the 
setting set
-   # to on *or* off makes the build always 
fail.
-   # --with-devices-${target}=gentoo
-   )
-   fi
-   done
;;
tools)
conf_opts+=(
@@ -698,21 +688,6 @@ src_configure() {
if use "qemu_softmmu_targets_${target}"; then
softmmu_targets+=",${target}-softmmu"
softmmu_bins+=( "qemu-system-${target}" )
-
-   # Needed to rework vhost-user-fs handling thanks to 
https://gitlab.com/qemu-project/qemu/-/commit/5166dab
-   # The option was converted into being configurable by
-   # Kconfig's. So, to enable it, we insert the necessary
-   # options into each arch's softmmu target gentoo.mak 
file,
-   # then configure with --with-devices-${target}=gentoo.
-   if use vhost-user-fs; then
-   echo "CONFIG_VHOST_USER_FS=y for 
${target}-softmmu" || die
-   echo "CONFIG_VIRTIO=y" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   echo "CONFIG_VHOST_USER_FS=y" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   else
-   echo "CONFIG_VHOST_USER_FS=n for 
${target}-softmmu" || die
-   echo "CONFIG_VIRTIO=n" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   echo "CONFIG_VHOST_USER_FS=n" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   fi
fi
done
 



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

2022-11-21 Thread John Helmert III
commit: dacf2f8b487b4e9fbbe356ada9b77847ee24aa66
Author: John Helmert III  gentoo  org>
AuthorDate: Tue Nov 22 06:17:48 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Tue Nov 22 06:20:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacf2f8b

app-emulation/qemu: force on vhost-user-fs

Bug: https://bugs.gentoo.org/873190
Signed-off-by: John Helmert III  gentoo.org>

 ...u-7.2.0_rc1.ebuild => qemu-7.2.0_rc1-r1.ebuild} | 31 +++---
 1 file changed, 3 insertions(+), 28 deletions(-)

diff --git a/app-emulation/qemu/qemu-7.2.0_rc1.ebuild 
b/app-emulation/qemu/qemu-7.2.0_rc1-r1.ebuild
similarity index 95%
rename from app-emulation/qemu/qemu-7.2.0_rc1.ebuild
rename to app-emulation/qemu/qemu-7.2.0_rc1-r1.ebuild
index ae0ca6960545..55f7d11a7162 100644
--- a/app-emulation/qemu/qemu-7.2.0_rc1.ebuild
+++ b/app-emulation/qemu/qemu-7.2.0_rc1-r1.ebuild
@@ -60,7 +60,7 @@ IUSE="accessibility +aio alsa bpf bzip2 capstone +caps +curl 
debug ${QEMU_DOC_US
plugins +png pulseaudio python rbd sasl +seccomp sdl sdl-image selinux
+slirp
smartcard snappy spice ssh static static-user systemtap test udev usb
-   usbredir vde +vhost-net vhost-user-fs virgl virtfs +vnc vte xattr xen
+   usbredir vde +vhost-net virgl virtfs +vnc vte xattr xen
zstd"
 
 COMMON_TARGETS="
@@ -117,7 +117,8 @@ IUSE+=" ${use_softmmu_targets} ${use_user_targets}"
 RESTRICT="!test? ( test )"
 # Allow no targets to be built so that people can get a tools-only build.
 # Block USE flag configurations known to not work.
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
+REQUIRED_USE="caps seccomp
+   ${PYTHON_REQUIRED_USE}
qemu_softmmu_targets_arm? ( fdt )
qemu_softmmu_targets_microblaze? ( fdt )
qemu_softmmu_targets_mips64el? ( fdt )
@@ -129,7 +130,6 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
sdl-image? ( sdl )
static? ( static-user !alsa !gtk !jack !opengl !pam !pulseaudio 
!plugins !rbd !snappy !udev )
static-user? ( !plugins )
-   vhost-user-fs? ( caps seccomp )
virgl? ( opengl )
virtfs? ( caps xattr )
vnc? ( gnutls )
@@ -636,16 +636,6 @@ qemu_src_configure() {
--disable-tools
)
local static_flag="static"
-
-   for target in ${IUSE_SOFTMMU_TARGETS}; do
-   if use "qemu_softmmu_targets_${target}"; then
-   conf_opts+=(
-   # For some reason, adding this with the 
setting set
-   # to on *or* off makes the build always 
fail.
-   # --with-devices-${target}=gentoo
-   )
-   fi
-   done
;;
tools)
conf_opts+=(
@@ -697,21 +687,6 @@ src_configure() {
if use "qemu_softmmu_targets_${target}"; then
softmmu_targets+=",${target}-softmmu"
softmmu_bins+=( "qemu-system-${target}" )
-
-   # Needed to rework vhost-user-fs handling thanks to 
https://gitlab.com/qemu-project/qemu/-/commit/5166dab
-   # The option was converted into being configurable by
-   # Kconfig's. So, to enable it, we insert the necessary
-   # options into each arch's softmmu target gentoo.mak 
file,
-   # then configure with --with-devices-${target}=gentoo.
-   if use vhost-user-fs; then
-   echo "CONFIG_VHOST_USER_FS=y for 
${target}-softmmu" || die
-   echo "CONFIG_VIRTIO=y" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   echo "CONFIG_VHOST_USER_FS=y" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   else
-   echo "CONFIG_VHOST_USER_FS=n for 
${target}-softmmu" || die
-   echo "CONFIG_VIRTIO=n" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   echo "CONFIG_VHOST_USER_FS=n" >> 
"configs/devices/${target}-softmmu/gentoo.mak" || die
-   fi
fi
done
 



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

2022-11-21 Thread Sam James
commit: d9c1405f941ee131c15fdd24a46fcd6536773068
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Mon Nov 21 06:28:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 06:21:45 2022 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=d9c1405f

Remove Jython compat

Jython is stuck in Python 2-land. Remove Jython compatibility code.

Bug: https://bugs.gentoo.org/424259
Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/portage/pull/942
Signed-off-by: Sam James  gentoo.org>

 NEWS|  2 ++
 bin/ebuild  | 10 ++
 bin/ebuild-ipc.py   | 10 ++
 bin/egencache   | 10 ++
 bin/emerge  | 10 ++
 lib/portage/tests/process/test_PopenProcess.py  |  9 ++---
 .../tests/process/test_PopenProcessBlockingIO.py|  7 +--
 lib/portage/tests/runTests.py   | 10 ++
 lib/portage/util/_async/PipeReaderBlockingIO.py | 17 -
 9 files changed, 31 insertions(+), 54 deletions(-)

diff --git a/NEWS b/NEWS
index 76a8eb462..286f96bb2 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,8 @@ Features:
 * sets: Tests added for VariableSet changes to check @golang-rebuild works as
   intended.
 
+* cleanups: Drop long-obsolete Jython compatibility code.
+
 Bug fixes:
 * sync: Clobber repositories using sync-type=git to match rsync behavior. This
   helps with issues where git-synced repositories can become confused

diff --git a/bin/ebuild b/bin/ebuild
index ff2b4fe92..5368d030b 100755
--- a/bin/ebuild
+++ b/bin/ebuild
@@ -1,9 +1,8 @@
 #!/usr/bin/env python
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import argparse
-import platform
 import signal
 import sys
 import textwrap
@@ -32,12 +31,7 @@ def debug_signal(_signum, _frame):
 pdb.set_trace()
 
 
-if platform.python_implementation() == "Jython":
-debug_signum = signal.SIGUSR2  # bug #424259
-else:
-debug_signum = signal.SIGUSR1
-
-signal.signal(debug_signum, debug_signal)
+signal.signal(signal.SIGUSR1, debug_signal)
 
 import io
 import os

diff --git a/bin/ebuild-ipc.py b/bin/ebuild-ipc.py
index bc5dda27d..c0b24c542 100755
--- a/bin/ebuild-ipc.py
+++ b/bin/ebuild-ipc.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright 2010-2021 Gentoo Authors
+# Copyright 2010-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 #
 # This is a helper which ebuild processes can use
@@ -24,7 +24,6 @@ except KeyboardInterrupt:
 import errno
 import logging
 import pickle
-import platform
 import sys
 import time
 
@@ -35,12 +34,7 @@ def debug_signal(signum, frame):
 pdb.set_trace()
 
 
-if platform.python_implementation() == "Jython":
-debug_signum = signal.SIGUSR2  # bug #424259
-else:
-debug_signum = signal.SIGUSR1
-
-signal.signal(debug_signum, debug_signal)
+signal.signal(signal.SIGUSR1, debug_signal)
 
 if os.path.isfile(
 os.path.join(

diff --git a/bin/egencache b/bin/egencache
index 4d920ea3b..f5e7fb7b6 100755
--- a/bin/egencache
+++ b/bin/egencache
@@ -1,9 +1,8 @@
 #!/usr/bin/env python
-# Copyright 2009-2021 Gentoo Authors
+# Copyright 2009-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import argparse
-import platform
 import signal
 import stat
 import sys
@@ -29,12 +28,7 @@ def debug_signal(_signum, _frame):
 pdb.set_trace()
 
 
-if platform.python_implementation() == "Jython":
-debug_signum = signal.SIGUSR2  # bug #424259
-else:
-debug_signum = signal.SIGUSR1
-
-signal.signal(debug_signum, debug_signal)
+signal.signal(signal.SIGUSR1, debug_signal)
 
 import functools
 import io

diff --git a/bin/emerge b/bin/emerge
index d1a8d9f52..459db2c1f 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -1,8 +1,7 @@
 #!/usr/bin/env python
-# Copyright 2006-2021 Gentoo Authors
+# Copyright 2006-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-import platform
 import signal
 import sys
 
@@ -28,12 +27,7 @@ try:
 
 pdb.set_trace()
 
-if platform.python_implementation() == "Jython":
-debug_signum = signal.SIGUSR2  # bug #424259
-else:
-debug_signum = signal.SIGUSR1
-
-signal.signal(debug_signum, debug_signal)
+signal.signal(signal.SIGUSR1, debug_signal)
 
 from os import path as osp
 

diff --git a/lib/portage/tests/process/test_PopenProcess.py 
b/lib/portage/tests/process/test_PopenProcess.py
index 0ffc8d31b..770053fa5 100644
--- a/lib/portage/tests/process/test_PopenProcess.py
+++ b/lib/portage/tests/process/test_PopenProcess.py
@@ -1,4 +1,4 @@
-# Copyright 2012-2013 Gentoo Foundation
+# Copyright 2012-2022 Gentoo Authors
 # 

[gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-osmosdr/

2022-11-21 Thread Thomas Beierlein
commit: 674f17ba512d4c44fe388d1f26fbdb634326b80b
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Nov 22 07:09:57 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Nov 22 07:15:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674f17ba

net-wireless/gr-osmosdr: drop 0.2.3, 0.2.3_p20210128

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

 net-wireless/gr-osmosdr/Manifest   |  1 -
 net-wireless/gr-osmosdr/gr-osmosdr-0.2.3.ebuild| 78 -
 .../gr-osmosdr/gr-osmosdr-0.2.3_p20210128.ebuild   | 81 --
 3 files changed, 160 deletions(-)

diff --git a/net-wireless/gr-osmosdr/Manifest b/net-wireless/gr-osmosdr/Manifest
index 0eba2d41db44..5ba742254b25 100644
--- a/net-wireless/gr-osmosdr/Manifest
+++ b/net-wireless/gr-osmosdr/Manifest
@@ -1,2 +1 @@
-DIST gr-osmosdr-0.2.3.tar.gz 252727 BLAKE2B 
04fe86496c09a274058bfd812fc14d7843d7e9db2648cf2cf5292e50494a859e22b1ab211f7078f2b6964c786c5f5ad5c3c9d2dd44ec5fc96d240b96f2cb63f4
 SHA512 
3c82a39972a309aa5b023b9c5e61f1fc80b797380b7a6c6c23cd4fe278cfaba3ab3019f32d38ebc01300868bb892f67f12c9ee9b7ab5ba3e38817a40bf3e
 DIST gr-osmosdr-0.2.3_p20210128.tar.gz 257938 BLAKE2B 
1bdb3b57ec6a2f942769770c34d41b4e3db5b62f8c337d724b0099f9a2fe5bdb7231bc0727dfe4bd01cd62918b4847ea2f8780208c0960bced5853c716ec6f02
 SHA512 
4dcb6b2c10eeb2252111ba691be179fe5b6dc9598fa7e6129a3b214ee74d43ca2d67ab5eafa73cea2abb25729c24be0592585d149e13c7285f2ce330e52a6470

diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.2.3.ebuild 
b/net-wireless/gr-osmosdr/gr-osmosdr-0.2.3.ebuild
deleted file mode 100644
index 3f5284e25139..
--- a/net-wireless/gr-osmosdr/gr-osmosdr-0.2.3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-
-inherit cmake python-single-r1
-
-DESCRIPTION="GNU Radio source block for OsmoSDR and rtlsdr and hackrf"
-HOMEPAGE="http://sdr.osmocom.org/trac/wiki/GrOsmoSDR;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/osmocom/gr-osmosdr.git;
-else
-   SRC_URI="https://github.com/osmocom/gr-osmosdr/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~riscv ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-IUSE="airspy bladerf hackrf iqbalance python rtlsdr sdrplay soapy uhd xtrx"
-
-RDEPEND="${PYTHON_DEPS}
-   dev-libs/boost:=
-   dev-libs/log4cpp
-   =net-wireless/gnuradio-3.8*:0=[${PYTHON_SINGLE_USEDEP}]
-   sci-libs/volk:=
-   airspy? ( net-wireless/airspy )
-   bladerf? ( >=net-wireless/bladerf-2018.08_rc1:= )
-   hackrf? ( net-libs/libhackrf:= )
-   iqbalance? ( net-wireless/gr-iqbal:=[${PYTHON_SINGLE_USEDEP}] )
-   rtlsdr? ( >=net-wireless/rtl-sdr-0.5.4:= )
-   sdrplay? ( net-wireless/sdrplay )
-   soapy? ( net-wireless/soapysdr:= )
-   uhd? ( net-wireless/uhd:=[${PYTHON_SINGLE_USEDEP}] )
-   xtrx? ( net-wireless/libxtrx )
-   "
-DEPEND="${RDEPEND}
-   dev-lang/swig
-   "
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-PATCHES=(
-   "${FILESDIR}/${P}-use_xtrx_open_string.patch"
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_DEFAULT=OFF
-   -DPYTHON_EXECUTABLE="${PYTHON}"
-   -DENABLE_FILE=ON
-   -DENABLE_AIRSPY="$(usex airspy ON OFF)"
-   -DENABLE_BLADERF="$(usex bladerf ON OFF)"
-   -DENABLE_HACKRF="$(usex hackrf ON OFF)"
-   -DENABLE_IQBALANCE="$(usex iqbalance ON OFF)"
-   -DENABLE_PYTHON="$(usex python ON OFF)"
-   -DENABLE_RTL="$(usex rtlsdr ON OFF)"
-   -DENABLE_RTL_TCP="$(usex rtlsdr ON OFF)"
-   -DENABLE_SDRPLAY="$(usex sdrplay ON OFF)"
-   -DENABLE_NONFREE="$(usex sdrplay ON OFF)"
-   -DENABLE_SOAPY="$(usex soapy ON OFF)"
-   -DENABLE_UHD="$(usex uhd ON OFF)"
-   -DENABLE_XTRX="$(usex xtrx ON OFF)"
-   )
-
-   cmake_src_configure
-}
-
-src_install() {
-   cmake_src_install
-   if use python; then
-   python_fix_shebang "${ED}"/usr/bin
-   python_optimize
-   fi
-   mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${P}"
-}

diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.2.3_p20210128.ebuild 
b/net-wireless/gr-osmosdr/gr-osmosdr-0.2.3_p20210128.ebuild
deleted file mode 100644
index a481ca03c6f3..
--- a/net-wireless/gr-osmosdr/gr-osmosdr-0.2.3_p20210128.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit cmake python-single-r1
-
-DESCRIPTION="GNU Radio source block for OsmoSDR and rtlsdr and hackrf"
-HOMEPAGE="http://sdr.osmocom.org/trac/wiki/GrOsmoSDR;
-
-if [[ ${PV} == * ]]; then
-   

[gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-scopy/

2022-11-21 Thread Thomas Beierlein
commit: c57cda14717136130f416d63b6a8970649fab464
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Nov 22 07:00:40 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Nov 22 07:15:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c57cda14

net-wireless/gr-scopy: drop 0.0_p20201005

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

 net-wireless/gr-scopy/Manifest |  1 -
 .../gr-scopy/gr-scopy-0.0_p20201005.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/net-wireless/gr-scopy/Manifest b/net-wireless/gr-scopy/Manifest
index 624db6f795f1..9426081f5c6c 100644
--- a/net-wireless/gr-scopy/Manifest
+++ b/net-wireless/gr-scopy/Manifest
@@ -1,2 +1 @@
-DIST gr-scopy-0.0_p20201005.tar.gz 204034 BLAKE2B 
17d797822c7920186a6d875119d582fda7b74f9c23248d9821ba172f59b1df1433520e723e4dc6b1eca1f08fb7256893767794b584d7c0bd53aa2ede80cd2b92
 SHA512 
12c0e76008b0a7570a85707afe28a102541e02f10a55346c76cb7984e8435e20281e6406c86ee22e8b4fbe0211bb6657f88f36bdf6b3b76d4e24b2a3f12e6350
 DIST gr-scopy-0.0_p20220602.tar.gz 213557 BLAKE2B 
9dcd1b1beb62fa8f18c478f8990339cbe064a6c60c2e68516f49634d838f42559f2b25527fed78b124b9373be5f9c475c66a4dcc57ea30e69127e7227220742f
 SHA512 
28983f1380943b1cc02c34fe21c7f295e5d4bbf4611fdddc313b9f63624845485a8366bcae6e215d9fe228a51f004d051895af756b157d382c6da2f51a1ca432

diff --git a/net-wireless/gr-scopy/gr-scopy-0.0_p20201005.ebuild 
b/net-wireless/gr-scopy/gr-scopy-0.0_p20201005.ebuild
deleted file mode 100644
index f633fe307051..
--- a/net-wireless/gr-scopy/gr-scopy-0.0_p20201005.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-
-inherit cmake python-single-r1
-
-DESCRIPTION="Scopy IIO blocks for GNU Radio"
-HOMEPAGE="https://github.com/analogdevicesinc/gr-scopy;
-if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="https://github.com/analogdevicesinc/gr-scopy.git;
-   inherit git-r3
-else
-   COMMIT="f48b45cabe2a81f491137dbc220032ea65f080c3"
-   
SRC_URI="https://github.com/analogdevicesinc/gr-scopy/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${COMMIT}"
-   KEYWORDS="~amd64 ~x86"
-fi
-LICENSE="GPL-3+"
-SLOT="0"
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-   =net-wireless/gnuradio-3.8*:=
-   sci-libs/volk:=
-   dev-libs/log4cpp:=
-   "
-DEPEND="${RDEPEND}"
-
-src_install() {
-   cmake_src_install
-   python_optimize
-}



[gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-osmosdr/

2022-11-21 Thread Thomas Beierlein
commit: acc6b2e0a45059a95ff0941a62eb8d2ef5ca35e8
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Nov 22 07:14:10 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Nov 22 07:15:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc6b2e0

net-wireless/gr-osmosdr: Add github remote-id

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

 net-wireless/gr-osmosdr/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-wireless/gr-osmosdr/metadata.xml 
b/net-wireless/gr-osmosdr/metadata.xml
index 24c34cfdeb22..db6d50d6b8cc 100644
--- a/net-wireless/gr-osmosdr/metadata.xml
+++ b/net-wireless/gr-osmosdr/metadata.xml
@@ -16,4 +16,7 @@
Build with Ettus Research USRP Hardware Driver 
support
Build with xtrx Hardware Driver support
 
+
+   bastibl/gr-rds
+
 



[gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-paint/

2022-11-21 Thread Thomas Beierlein
commit: ff8279fd924f1f3f5280bc94a6d8565c5f49b3bd
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Nov 22 07:05:49 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Nov 22 07:15:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff8279fd

net-wireless/gr-paint: drop 0.0_p20200517-r2

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

 net-wireless/gr-paint/Manifest |  1 -
 .../gr-paint/gr-paint-0.0_p20200517-r2.ebuild  | 59 --
 2 files changed, 60 deletions(-)

diff --git a/net-wireless/gr-paint/Manifest b/net-wireless/gr-paint/Manifest
index df99fab8f292..06c2ea89ed35 100644
--- a/net-wireless/gr-paint/Manifest
+++ b/net-wireless/gr-paint/Manifest
@@ -1,2 +1 @@
-DIST gr-paint-0.0_p20200517.tar.gz 1588114 BLAKE2B 
dffae6fdd6832ef7a39911b5f20d385e1691021e49659c36244c4aa1086fa74f4f59aceb4f208a24dd76854455183644c8f7db7e6ed0600664dc02f08e6682c5
 SHA512 
00b508b08baafd02e69197028a6408da81f5d1bf3dfe6d3229f248d60503ccec48f3fa0491bb785ed1ece40ea90d34544bc3b62e4506459488d56540b9d519c2
 DIST gr-paint-0.0_p20220320.tar.gz 2089721 BLAKE2B 
50327bd2349177029e1c2fc3a7b3fe6df929487c456a6ae90f1233df7f8db02721bd0233e496cf4a00a9fa2164db705d995b1c2ec25e0a516a0672a6c2b5178d
 SHA512 
b017fa41d8797182d752ad12bfe7511282d33bdfd87ea92dc86f6f01bbe5411759ed6bbfb0adb69368881fa231ee38e4c1eab47aebccdd64bd274f1f55ccac14

diff --git a/net-wireless/gr-paint/gr-paint-0.0_p20200517-r2.ebuild 
b/net-wireless/gr-paint/gr-paint-0.0_p20200517-r2.ebuild
deleted file mode 100644
index 35476b32adf0..
--- a/net-wireless/gr-paint/gr-paint-0.0_p20200517-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/drmpeg/gr-paint38.git;
-else
-   COMMIT="9cb4eabe3b570ccd1f53837681607d73501b5c1e"
-   SRC_URI="https://github.com/drmpeg/gr-paint38/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/${PN}38-${COMMIT}"
-   KEYWORDS="~amd64"
-fi
-inherit cmake python-single-r1
-
-DESCRIPTION="Paints monochrome images into the waterfall of a receiver"
-HOMEPAGE="https://github.com/drmpeg/gr-paint;
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="doc"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-#< drmpeg> What tests?
-RESTRICT="test"
-
-DEPEND="${PYTHON_DEPS}
-   $(python_gen_cond_dep '
-   dev-libs/boost:=[python,${PYTHON_USEDEP}]
-   ')
-   dev-libs/gmp
-   sci-libs/volk:=
-   =net-wireless/gnuradio-3.8*:=[${PYTHON_SINGLE_USEDEP}]
-"
-RDEPEND="${DEPEND}
-   media-gfx/imagemagick
-"
-BDEPEND="
-   dev-lang/swig
-   dev-util/cppunit
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_DOXYGEN=$(usex doc)
-   -DPYTHON_EXECUTABLE="${PYTHON}"
-   )
-   cmake_src_configure
-}
-
-src_install() {
-   cmake_src_install
-   python_optimize
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/mockito/

2022-11-21 Thread Miroslav Šulc
commit: 61c09e05fef8b95d8f4dfccd3683d3600eb53fa0
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Tue Nov 22 07:08:10 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Nov 22 07:15:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c09e05

dev-java/mockito: drop 4.8.0

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/mockito/Manifest |  1 -
 dev-java/mockito/mockito-4.8.0.ebuild | 56 ---
 2 files changed, 57 deletions(-)

diff --git a/dev-java/mockito/Manifest b/dev-java/mockito/Manifest
index dd53caddb1a6..02907aed67b4 100644
--- a/dev-java/mockito/Manifest
+++ b/dev-java/mockito/Manifest
@@ -1,3 +1,2 @@
-DIST mockito-4.8.0.tar.gz 1044264 BLAKE2B 
cbd8fa0db3b652ad882c6bb8c5f86116cf21772869814ddabe88532ff2522e399e8d7e9d68935b10844c0c496755834dee66c88dc7b2e0231757f7c79233c1fb
 SHA512 
1f1ea9aac907d8ba42874eb6a6870cd5cb46b80a4a9f841c7eca8ff8f651e13baa92a4c3512d95d6596dd7da60e627a606c74e4b1dc56d11b06a14f44e3d53f3
 DIST mockito-4.8.1.tar.gz 1045454 BLAKE2B 
82efc18afa8efae2495fdd5b0db58ddde8ea5cae9b7dfb554075924e343f5c0290a7f5d63b18c217b33a11c31a13ac40fcd28a752b0deae737c4bd75ea13c044
 SHA512 
dd2adc2211637daa86f5174e333744c5a1ff29dcccf9866a33933e2ba945d99781d5860c6059e6fa06a649d9a45417ab13066f8c8e896cb753b6e0869f0e2b03
 DIST mockito-core-1.9.5-sources.jar 723074 BLAKE2B 
e553a923542a1a2574ee0cda5979d168cc3e9644dbbc9fceed2301ae1bac150c4e35dbc4432d50e2479efea2a6cd35ec19c62c3598f61709f1f5dc8959cc0155
 SHA512 
271e626c3b5be9a7d7c82a2f0bf44077aabd51924b0956a88633ace7fe8c134d8cd1f89ce348ce0d15ccce55a50027e303836d2d2f430500317b6136d308d3d4

diff --git a/dev-java/mockito/mockito-4.8.0.ebuild 
b/dev-java/mockito/mockito-4.8.0.ebuild
deleted file mode 100644
index a4e19e4bfaf2..
--- a/dev-java/mockito/mockito-4.8.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Tests not enabled, wants junit-jupiter.
-# "${S}/settings.gradle.kts"
-JAVA_PKG_IUSE="doc source"
-MAVEN_ID="org.mockito:mockito-core:4.8.0"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Mockito mock objects library core API and implementation"
-HOMEPAGE="https://github.com/mockito/mockito;
-SRC_URI="https://github.com/mockito/mockito/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="4"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-CP_DEPEND="
-   dev-java/asm:9
-   >=dev-java/byte-buddy-1.12.13:0
-   dev-java/objenesis:0
-"
-
-DEPEND="
-   dev-java/junit:4
-   >=dev-java/opentest4j-1.2.0-r1:0
-   >=virtual/jdk-1.8:*
-   ${CP_DEPEND}
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-   ${CP_DEPEND}
-"
-
-S="${WORKDIR}/${P}"
-
-JAVA_CLASSPATH_EXTRA="
-   junit-4
-   opentest4j
-"
-
-JAVA_SRC_DIR="src/main/java"
-JAVA_AUTOMATIC_MODULE_NAME="org.mockito"
-
-src_prepare() {
-   default
-   # dev-java/byte-buddy is built from byte-buddy-dep without shaded stuff.
-   sed \
-   -e 's:net.bytebuddy.jar.asm:org.objectweb.asm:' \
-   -i 
src/main/java/org/mockito/internal/creation/bytebuddy/MockMethodAdvice.java \
-   -i 
src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
 || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/poi/

2022-11-21 Thread Miroslav Šulc
commit: 8b2e699060fd068a55eae7e7747e6ffb25793844
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Tue Nov 22 07:09:07 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Nov 22 07:15:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b2e6990

dev-java/poi: drop 5.2.2

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/28380
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/poi/Manifest |  1 -
 dev-java/poi/poi-5.2.2.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/dev-java/poi/Manifest b/dev-java/poi/Manifest
index 8554a4c8a5fc..9057f75a73c0 100644
--- a/dev-java/poi/Manifest
+++ b/dev-java/poi/Manifest
@@ -1,2 +1 @@
-DIST poi-src-5.2.2-20220312.tgz 117042913 BLAKE2B 
ef2ab433158ac51fc163e9bfa65268d246a686c7892234cdd2332bef526c69b59dd0959bdabc6a486a99e20dfcc144ff6aff775a6412136112bb6a36f10968d3
 SHA512 
858d6c1af8a29a22aa24bef0422b3c8329141ff026131b8354a97c87acc31ef06c91f1b9cabeb71738b3687ddc8283f19b2ac42865b7e98e91cb0d5aa6b89b40
 DIST poi-src-5.2.3-20220909.tgz 117839114 BLAKE2B 
8b62f212dbbb6c7c20900dad97eaee20d416129d1529f42d3f3d15c42dd737af389f3d46c0891f733ba6ce143fa30c73aa921a2f007e68ecbfcd2a61da27baec
 SHA512 
15d1d9387a3003fa30dc77cb42721daefb07a0f8ef1a69873107fd2266d66ae5c0138f47f2867d49154bbde4f28939ac1aa1b49e367230408e67c05099addc1c

diff --git a/dev-java/poi/poi-5.2.2.ebuild b/dev-java/poi/poi-5.2.2.ebuild
deleted file mode 100644
index d5068b84b33d..
--- a/dev-java/poi/poi-5.2.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom 
poi-5.2.2/sonar/main/pom.xml --download-uri 
https://archive.apache.org/dist/poi/release/src/poi-src-5.2.2-20210120.tar.gz 
--slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild poi-5.0.0.ebuild
-
-EAPI=8
-
-# tests depend on junit-jupiter which is not packaged
-# https://github.com/apache/poi/blob/REL_5_2_2/poi/build.gradle#L51-L56
-JAVA_PKG_IUSE="doc source"
-MAVEN_ID="org.apache.poi:poi-main:5.2.2"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Maven build of Apache POI for Sonar checks"
-HOMEPAGE="https://poi.apache.org/;
-RELEASE_DATE="20220312"
-SRC_URI="mirror://apache/poi/release/src/poi-src-${PV}-${RELEASE_DATE}.tgz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-DEPEND="
-   >=dev-java/commons-codec-1.15-r1:0
-   >=dev-java/commons-collections-4.4-r1:4
-   >=dev-java/commons-io-2.11.0-r1:1
-   >=dev-java/commons-math-3.6.1-r2:3
-   dev-java/log4j-api:2
-   dev-java/sparsebitset:0
-   >=virtual/jdk-11:*
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*"
-
-S="${WORKDIR}/poi-src-${PV}-${RELEASE_DATE}"
-
-JAVA_CLASSPATH_EXTRA="
-   commons-codec
-   commons-collections-4
-   commons-io-1
-   commons-math-3
-   log4j-api-2
-   sparsebitset
-   "
-JAVA_SRC_DIR=( poi/src/main/java{,9} )
-JAVA_RESOURCE_DIRS="poi/src/main/resources"
-
-src_prepare() {
-   default
-   sed \
-   -e "s:@VERSION@:${PV}:g" \
-   -e "s:@DSTAMP@:${RELEASE_DATE}:g" \
-   poi/src/main/version/Version.java.template \
-   > poi/src/main/java/org/apache/poi/Version.java || die
-   # Neither log4j-api nor SparseBitSet provide Automatic-Module
-   sed \
-   -e '/SparseBitSet/d' \
-   -e '/org.apache.logging.log4j/d' \
-   -i poi/src/main/java9/module-info.java || die
-}



[gentoo-commits] proj/releng:master commit in: tools/

2022-11-21 Thread Andreas K. Hüttel
commit: 3a97b22d570388e163809b7a4718f3daec54b291
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Nov 21 23:52:25 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Nov 21 23:52:42 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=3a97b22d

Add missing upload instructions

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 tools/catalyst-auto-qemu-mips-common | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/tools/catalyst-auto-qemu-mips-common 
b/tools/catalyst-auto-qemu-mips-common
index 576be618..e36acad6 100644
--- a/tools/catalyst-auto-qemu-mips-common
+++ b/tools/catalyst-auto-qemu-mips-common
@@ -73,9 +73,15 @@ post_build() {
stage3-mips2-o32-openrc.spec)
upload stage3-mips2-openrc-${TIMESTAMP}.tar.xz*
;;
+   stage3-mips2-o32-systemd.spec)
+   upload stage3-mips2-systemd-${TIMESTAMP}.tar.xz*
+   ;;
stage3-mipsel2-o32-openrc.spec)
upload stage3-mipsel2-openrc-${TIMESTAMP}.tar.xz*
;;
+   stage3-mipsel2-o32-systemd.spec)
+   upload stage3-mipsel2-systemd-${TIMESTAMP}.tar.xz*
+   ;;
stage3-mips32-o32-openrc.spec)
upload stage3-mips32-openrc-${TIMESTAMP}.tar.xz*
;;



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

2022-11-21 Thread Yixun Lan
commit: aa0b40c41d6f546f5774091831f7b9e7f66d01da
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Nov 22 01:27:27 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Nov 22 01:27:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0b40c4

net-libs/libcloudproviders: Keyword 0.3.1 riscv, #879581

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/net-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild 
b/net-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
index 1f0591244067..d72e8c7c15b0 100644
--- a/net-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
+++ b/net-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
 IUSE="gtk-doc +introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 DEPEND=">=dev-libs/glib-2.51.2:2
introspection? ( dev-libs/gobject-introspection )"



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/espresso-ab/

2022-11-21 Thread Sam James
commit: 735772c723a031765941f538be3f35585c03
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 03:54:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 03:54:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735772c7

sci-electronics/espresso-ab: fix configure w/ clang 16

Closes: https://bugs.gentoo.org/879757
Signed-off-by: Sam James  gentoo.org>

 ...{espresso-ab-1.0-r2.ebuild => espresso-ab-1.0-r3.ebuild} | 13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild 
b/sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild
similarity index 75%
rename from sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild
rename to sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild
index cd0bd9019c95..2937cb028c81 100644
--- a/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild
+++ b/sci-electronics/espresso-ab/espresso-ab-1.0-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-inherit flag-o-matic
+inherit autotools flag-o-matic
 
 DESCRIPTION="POSIX compliant version of the espresso logic minimization tool"
 HOMEPAGE="http://www.cs.man.ac.uk/apt/projects/balsa/;
@@ -13,6 +13,13 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ~ppc ~sparc x86"
 
+src_prepare() {
+   default
+
+   # Clang 16
+   eautoreconf
+}
+
 src_configure() {
append-cflags "-std=gnu89"
default



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

2022-11-21 Thread Sam James
commit: a7bce7f8b0c74d29140634887de8aa9d53b0d300
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 03:41:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 03:41:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7bce7f8

net-libs/libntlm: add gitlab upstream metadata

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

 net-libs/libntlm/metadata.xml | 19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/net-libs/libntlm/metadata.xml b/net-libs/libntlm/metadata.xml
index 267630277384..055fabccb709 100644
--- a/net-libs/libntlm/metadata.xml
+++ b/net-libs/libntlm/metadata.xml
@@ -1,12 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-
-libntlm is a library that implement Microsoft's NTLM authentication. However,
-the packaging of libntlm lacked certain things, such as having build problems,
-lacking shared library support, lacking autoconf macro for use in other
-applications, lacking pkg-config support, and more. So this page distributes an
-improved version of the library; called Libntlm.
-
+   
+   
+   libntlm is a library that implement Microsoft's NTLM authentication. 
However,
+   the packaging of libntlm lacked certain things, such as having build 
problems,
+   lacking shared library support, lacking autoconf macro for use in other
+   applications, lacking pkg-config support, and more. So this page 
distributes an
+   improved version of the library; called Libntlm.
+   
+   
+   gsasl/libntlm
+   
 



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

2022-11-21 Thread Sam James
commit: 2c09d9fef937da91a4bc945e9d834997364acedd
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 03:34:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 03:35:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c09d9fe

media-libs/rnnoise: EAPI 8, fix configure w/ clang 16

Closes: https://bugs.gentoo.org/879709
Signed-off-by: Sam James  gentoo.org>

 media-libs/rnnoise/Manifest|   2 +-
 ...rnnoise-0.4.1_p20210122-configure-clang16.patch | 127 +
 ...22.ebuild => rnnoise-0.4.1_p20210122-r1.ebuild} |   6 +-
 3 files changed, 133 insertions(+), 2 deletions(-)

diff --git a/media-libs/rnnoise/Manifest b/media-libs/rnnoise/Manifest
index f20a2761d4c4..a166e616a429 100644
--- a/media-libs/rnnoise/Manifest
+++ b/media-libs/rnnoise/Manifest
@@ -1 +1 @@
-DIST rnnoise-0.4.1_p20210122.tar.gz 173787 BLAKE2B 
33ecee81eb54a00e89c6fc0a2c9a3c66250c853cbef420f6b1fc9f7141b3b9862fe34fb31951de407c8912e940ac7e9917f68cb649261117d729b7b380d3476c
 SHA512 
7d16f7d68a0a28ecdaaea098df5482d55adf7948292cab8ed78ae5cc6652ebdfc48e623f193ee356fcf527e54883e9d3938195f2fd52c20dff895fd2515617f3
+DIST rnnoise-1cbdbcf1283499bbb2230a6b0f126eb9b236defd.tar.bz2 137650 BLAKE2B 
a129c57116903770c8af2b8e34efc1e718370b9d7c2d211cdebd59b6dcc22bfe736a6a75564cab89a2bc0bb7fdf9e0b08ec02f686e5d42cbcd826b68e46686e4
 SHA512 
81e47dfe39502d3b5374b19374b2decd124a77dbfaa3dc7391f518a56f6a564100c8cd67d54f25aad10654f8aafab87b14d1950ba6479163af9eea08a69d9948

diff --git 
a/media-libs/rnnoise/files/rnnoise-0.4.1_p20210122-configure-clang16.patch 
b/media-libs/rnnoise/files/rnnoise-0.4.1_p20210122-configure-clang16.patch
new file mode 100644
index ..7eb6aef278c9
--- /dev/null
+++ b/media-libs/rnnoise/files/rnnoise-0.4.1_p20210122-configure-clang16.patch
@@ -0,0 +1,127 @@
+https://gitlab.xiph.org/xiph/rnnoise/-/merge_requests/3
+
+From 027d4dae07f6968e63db179b2e4bbe69b0a0da40 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Tue, 22 Nov 2022 02:59:20 +
+Subject: [PATCH 1/2] m4: fix -Wstrict-protoypes
+
+In preparation for C23. Fixes the following error if Clang 16 is
+cranked up to be stricter:
+```
+-warning: a function declaration without a prototype is deprecated in all 
versions of C [-Wstrict-prototypes]
++error: a function declaration without a prototype is deprecated in all 
versions of C [-Werror,-Wstrict-prototypes]
+```
+
+Bug: https://bugs.gentoo.org/879709
+Signed-off-by: Sam James 
+--- a/m4/attributes.m4
 b/m4/attributes.m4
+@@ -39,7 +39,7 @@ AC_DEFUN([CC_CHECK_CFLAGS_SILENT], [
+   AC_CACHE_VAL(AS_TR_SH([cc_cv_cflags_$1]),
+ [ac_save_CFLAGS="$CFLAGS"
+  CFLAGS="$CFLAGS $1"
+- AC_LINK_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
++ AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return 0; }])],
+[eval "AS_TR_SH([cc_cv_cflags_$1])='yes'"],
+[eval "AS_TR_SH([cc_cv_cflags_$1])='no'"])
+  CFLAGS="$ac_save_CFLAGS"
+@@ -89,7 +89,7 @@ AC_DEFUN([CC_CHECK_LDFLAGS], [
+ AS_TR_SH([cc_cv_ldflags_$1]),
+ [ac_save_LDFLAGS="$LDFLAGS"
+  LDFLAGS="$LDFLAGS $1"
+- AC_LINK_IFELSE([AC_LANG_SOURCE([int main() { return 1; }])],
++ AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return 1; }])],
+[eval "AS_TR_SH([cc_cv_ldflags_$1])='yes'"],
+[eval "AS_TR_SH([cc_cv_ldflags_$1])="])
+  LDFLAGS="$ac_save_LDFLAGS"
+@@ -165,16 +165,16 @@ AC_DEFUN([CC_CHECK_ATTRIBUTE], [
+ AC_DEFUN([CC_ATTRIBUTE_CONSTRUCTOR], [
+   CC_CHECK_ATTRIBUTE(
+ [constructor],,
+-[extern void foo();
+- void __attribute__((constructor)) ctor() { foo(); }],
++[extern void foo(void);
++ void __attribute__((constructor)) ctor(void) { foo(); }],
+ [$1], [$2])
+ ])
+ 
+ AC_DEFUN([CC_ATTRIBUTE_DESTRUCTOR], [
+   CC_CHECK_ATTRIBUTE(
+ [destructor],,
+-[extern void foo();
+- void __attribute__((destructor)) dtor() { foo(); }],
++[extern void foo(void);
++ void __attribute__((destructor)) dtor(void) { foo(); }],
+ [$1], [$2])
+ ])
+ 
+@@ -195,7 +195,7 @@ AC_DEFUN([CC_ATTRIBUTE_FORMAT_ARG], [
+ AC_DEFUN([CC_ATTRIBUTE_VISIBILITY], [
+   CC_CHECK_ATTRIBUTE(
+ [visibility_$1], [visibility("$1")],
+-[void __attribute__((visibility("$1"))) $1_function() { }],
++[void __attribute__((visibility("$1"))) $1_function(void) { }],
+ [$2], [$3])
+ ])
+ 
+@@ -306,7 +306,7 @@ AC_DEFUN([CC_ATTRIBUTE_ALIGNED], [
+  CFLAGS="$CFLAGS $cc_cv_werror"
+  for cc_attribute_align_try in 64 32 16 8 4 2; do
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
+-  int main() {
++  int main(void) {
+ static char c __attribute__ ((aligned($cc_attribute_align_try))) 
= 0;
+ return c;
+   }])], [cc_cv_attribute_aligned=$cc_attribute_align_try; break])
+GitLab
+From a1a2194784443e55ad7b194a8d82860a8a25e1a2 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Tue, 22 Nov 2022 03:30:17 +
+Subject: [PATCH 2/2] Fix -Wstrict-prototypes

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

2022-11-21 Thread Sam James
commit: 95439b8d062f62f459368954b8729f18a76d8a4b
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:37:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:37:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95439b8d

sys-devel/autoconf: Stabilize 2.69-r8 arm64, #882431

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

 sys-devel/autoconf/autoconf-2.69-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.69-r8.ebuild 
b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
index 7d975c7e31d6..b3bb891bbfe3 100644
--- a/sys-devel/autoconf/autoconf-2.69-r8.ebuild
+++ b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
@@ -10,7 +10,7 @@ else
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.xz

https://dev.gentoo.org/~polynomial-c/dist/${P}-runstatedir_patches.tar.xz;
-   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"
 fi
 
 inherit toolchain-autoconf



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

2022-11-21 Thread Sam James
commit: 6deae4c5c2bb4c91c283863a46f2847d829e601e
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:37:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:37:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6deae4c5

sys-devel/autoconf: Stabilize 2.69-r8 ppc64, #882431

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

 sys-devel/autoconf/autoconf-2.69-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.69-r8.ebuild 
b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
index b3bb891bbfe3..31360ef1bbe8 100644
--- a/sys-devel/autoconf/autoconf-2.69-r8.ebuild
+++ b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
@@ -10,7 +10,7 @@ else
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.xz

https://dev.gentoo.org/~polynomial-c/dist/${P}-runstatedir_patches.tar.xz;
-   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"
 fi
 
 inherit toolchain-autoconf



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

2022-11-21 Thread Sam James
commit: 8e87acdafce0d858fa81432be630af3cb27ebd32
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:37:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:37:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e87acda

sys-devel/autoconf: Stabilize 2.69-r8 arm, #882431

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

 sys-devel/autoconf/autoconf-2.69-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.69-r8.ebuild 
b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
index 99a57065b509..7d975c7e31d6 100644
--- a/sys-devel/autoconf/autoconf-2.69-r8.ebuild
+++ b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
@@ -10,7 +10,7 @@ else
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.xz

https://dev.gentoo.org/~polynomial-c/dist/${P}-runstatedir_patches.tar.xz;
-   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"
 fi
 
 inherit toolchain-autoconf



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

2022-11-21 Thread Sam James
commit: c8fb05c7eeed8b256e91e0b6597db1eaae0dcfd3
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 22 04:37:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 22 04:37:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8fb05c7

sys-devel/autoconf: Stabilize 2.69-r8 ppc, #882431

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

 sys-devel/autoconf/autoconf-2.69-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.69-r8.ebuild 
b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
index 31360ef1bbe8..379d6d1b0a0c 100644
--- a/sys-devel/autoconf/autoconf-2.69-r8.ebuild
+++ b/sys-devel/autoconf/autoconf-2.69-r8.ebuild
@@ -10,7 +10,7 @@ else
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.xz

https://dev.gentoo.org/~polynomial-c/dist/${P}-runstatedir_patches.tar.xz;
-   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"
 fi
 
 inherit toolchain-autoconf



[gentoo-commits] repo/gentoo:master commit in: app-arch/dpkg/files/, app-arch/dpkg/

2022-11-21 Thread Georgy Yakovlev
commit: c3ae0b29591523de6da75104d72fe4bbdb367acb
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov 22 06:49:13 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov 22 07:18:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ae0b29

app-arch/dpkg: add 1.20.12

fix printf conftest missing include
Bug: https://bugs.gentoo.org/869884

Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-arch/dpkg/Manifest  |  1 +
 app-arch/dpkg/dpkg-1.20.12.ebuild   | 97 +
 app-arch/dpkg/files/dpkg-1.20.12-m4-stdio.patch | 25 +++
 3 files changed, 123 insertions(+)

diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest
index 0a8fe927e70a..aeb836e08cf1 100644
--- a/app-arch/dpkg/Manifest
+++ b/app-arch/dpkg/Manifest
@@ -1,2 +1,3 @@
+DIST dpkg_1.20.12.tar.xz 5009108 BLAKE2B 
47ecb53c331503c72081a4c472acd6e94a5b7fca2032358809aa8c546cfd6c1542c7cdfad2a5ceff0e40dc454a61974ec47233061b98cf99aabbb8e53621858c
 SHA512 
ce20b1b00b972e6fa5d5cd6427003415a92a78742dc02a9055fee6f00db22b037c54560170e657d7b74c2ae542fff4b7eba46f642adf911dc2f3b90eebefc3ff
 DIST dpkg_1.20.9.tar.xz 4954428 BLAKE2B 
4e04f7a90c8696971895081e18b220d9dee4bc5930428f131556ae71c673e61e18c363e279b566c2218da60a5aca421807c14cf518952502e707c7397769097b
 SHA512 
904a4742f5f340dc65b2137364dce102a0b2eb42ccedb2a73f79c207362c699fbffaaf1379f1f6c8b8b0e490321af1d03c34b50ebe0c703f5ce8a7f75f17a839
 DIST dpkg_1.21.1.tar.xz 4986936 BLAKE2B 
f5b0f9fe7ac5fe7ba47191a9e467356e748418846ce0fc9f3c61d731e035eb096932848b15e6a85a15938d3bbd6fa069c786ab0e89c77119958fe632a91c309f
 SHA512 
3f3f263e1300f3e4b55e84521847703dcfe465aa54829a69c31c174a2ad5e8b6a8a251da7c6020d31a38e9e6744113924a71e9579469e32289328e91a48db07f

diff --git a/app-arch/dpkg/dpkg-1.20.12.ebuild 
b/app-arch/dpkg/dpkg-1.20.12.ebuild
new file mode 100644
index ..52f5a6b4baf6
--- /dev/null
+++ b/app-arch/dpkg/dpkg-1.20.12.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Package maintenance system for Debian"
+HOMEPAGE="https://packages.qa.debian.org/dpkg;
+SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="+bzip2 libmd +lzma nls selinux static-libs test unicode 
+update-alternatives +zlib"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-lang/perl-5.14.2:=
+   bzip2? ( app-arch/bzip2 )
+   libmd? ( app-crypt/libmd )
+   lzma? ( app-arch/xz-utils )
+   nls? ( virtual/libintl )
+   selinux? ( sys-libs/libselinux )
+   zlib? ( >=sys-libs/zlib-1.1.4 )
+"
+DEPEND="
+   ${RDEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig
+   test? (
+   dev-perl/IO-String
+   dev-perl/Test-Pod
+   virtual/perl-Test-Harness
+   )
+"
+BDEPEND="
+   sys-devel/flex
+   nls? (
+   app-text/po4a
+   >=sys-devel/gettext-0.18.2
+   )
+"
+DOCS=(
+   ChangeLog
+   THANKS
+   TODO
+)
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.18.12-flags.patch
+   "${FILESDIR}"/${PN}-1.18.12-rsyncable.patch
+   "${FILESDIR}"/${PN}-1.20.5-dpkg_buildpackage-test.patch
+   "${FILESDIR}"/${PN}-1.20.12-m4-stdio.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i -e 's|\|${AR}|g' t-func/deb-format.at t-func/testsuite || 
die
+
+   eautoreconf
+}
+
+src_configure() {
+   tc-export AR CC
+
+   econf \
+   $(use_enable nls) \
+   $(use_enable unicode) \
+   $(use_enable update-alternatives) \
+   $(use_with bzip2 libbz2) \
+   $(use_with libmd) \
+   $(use_with lzma liblzma) \
+   $(use_with selinux libselinux) \
+   $(use_with zlib libz) \
+   --disable-compiler-warnings \
+   --disable-dselect \
+   --disable-start-stop-daemon \
+   --localstatedir="${EPREFIX}"/var
+}
+
+src_compile() {
+   emake AR="$(tc-getAR)"
+}
+
+src_install() {
+   default
+
+   keepdir \
+   /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} \
+   /var/lib/dpkg/{alternatives,info,parts,updates}
+
+   find "${ED}" -name '*.la' -delete || die
+
+   if ! use static-libs; then
+   find "${ED}" -name '*.a' -delete || die
+   fi
+}

diff --git a/app-arch/dpkg/files/dpkg-1.20.12-m4-stdio.patch 
b/app-arch/dpkg/files/dpkg-1.20.12-m4-stdio.patch
new file mode 100644
index ..5124c54b43ed
--- /dev/null
+++ b/app-arch/dpkg/files/dpkg-1.20.12-m4-stdio.patch
@@ -0,0 +1,25 @@
+From 9a1c670b66818fc0044eaa9a95a13da553bebcd3 Mon Sep 17 00:00:00 2001
+From: Georgy Yakovlev 
+Date: Mon, 21 Nov 2022 23:09:59 -0800
+Subject: 

  1   2   3   4   5   >