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

2021-08-13 Thread Joonas Niilola
commit: 58664abc9f47ff39f0fcd97eea52bead58d3b47e
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Aug  8 21:14:50 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:51:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58664abc

dev-util/clion: update to 2021.2

Fixed error with clazy-standalone, removed arm ccustom libraries,
fsnotifier now is single binary.

Closes: https://bugs.gentoo.org/806025
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21920
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/clion/Manifest|  1 +
 dev-util/clion/clion-2021.2.ebuild | 97 ++
 2 files changed, 98 insertions(+)

diff --git a/dev-util/clion/Manifest b/dev-util/clion/Manifest
index 4dd8422c03c..82150abe966 100644
--- a/dev-util/clion/Manifest
+++ b/dev-util/clion/Manifest
@@ -1 +1,2 @@
 DIST CLion-2021.1.2.tar.gz 724314199 BLAKE2B 
4e1ecb9023529f6f9b8a638d8d75beca25c97d61eed6c489bdf9062368d47f182e776f58fdf387766e22dc67c5f593ad85a6f5790a65cad51d8e6c217b7ff838
 SHA512 
f16b57e4af6f4b0feb44f1698e5e3268d3599e8484a06bfc3770268e98025ff6231f0577c08605743bc79800401a66792fde97a864574e656690a61608b93f4e
+DIST CLion-2021.2.tar.gz 750721029 BLAKE2B 
d967a7fe1f633f06b78a35ff01839e4ab427dd68065882533b8d69cb0daea46988e6742564ba2f2310411f2fc068a6565b01b8a9b57c7042dcd6a1347a19e6a9
 SHA512 
9742c29f57ecf2ca4b69fa323241d12bb7660cd64b875d953cbf720bc54daaaf7dab14c487ef113368c8ad7cbb6733d34a4740bb0997d9ceb8ca702f1e30da32

diff --git a/dev-util/clion/clion-2021.2.ebuild 
b/dev-util/clion/clion-2021.2.ebuild
new file mode 100644
index 000..616d0cf8e04
--- /dev/null
+++ b/dev-util/clion/clion-2021.2.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop wrapper
+
+DESCRIPTION="A complete toolset for C and C++ development"
+HOMEPAGE="https://www.jetbrains.com/clion;
+SRC_URI="https://download.jetbrains.com/cpp/CLion-${PV}.tar.gz;
+
+LICENSE="|| ( IDEA IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )
+   Apache-1.1 Apache-2.0 BSD BSD-2 CC0-1.0 CDDL-1.1 CPL-0.5 CPL-1.0
+   EPL-1.0 EPL-2.0 GPL-2 GPL-2-with-classpath-exception GPL-3 ISC JDOM
+   LGPL-2.1+ LGPL-3 MIT MPL-1.0 MPL-1.1 OFL public-domain PSF-2 UoI-NCSA 
ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="bindist mirror splitdebug"
+
+BDEPEND="dev-util/patchelf"
+
+# RDEPENDS may cause false positives in repoman.
+# clion requires cmake and gdb at runtime to build and debug C/C++ projects
+RDEPEND="
+   app-accessibility/at-spi2-atk
+   app-accessibility/at-spi2-core
+   dev-libs/atk
+   dev-libs/libdbusmenu
+   dev-libs/nss
+   dev-util/cmake
+   media-libs/alsa-lib
+   media-libs/freetype
+   media-libs/mesa
+   net-print/cups
+   sys-devel/gdb
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXtst
+   x11-libs/libXxf86vm
+   x11-libs/libdrm
+   x11-libs/libxkbcommon
+   x11-libs/pango"
+
+QA_PREBUILT="opt/${P}/*"
+
+src_prepare() {
+   default
+
+   local remove_me=(
+   bin/gdb/linux
+   bin/lldb/linux
+   bin/cmake
+   license/CMake*
+   lib/pty4j-native/linux/aarch64
+   lib/pty4j-native/linux/arm
+   lib/pty4j-native/linux/mips64el
+   lib/pty4j-native/linux/ppc64le
+   )
+
+   use amd64 || remove_me+=( lib/pty4j-native/linux/x86_64)
+   use x86 || remove_me+=( lib/pty4j-native/linux/x86)
+
+   rm -rv "${remove_me[@]}" || die
+
+   for file in "jbr/lib/"/{libjcef.so,jcef_helper}
+   do
+   if [[ -f "${file}" ]]; then
+   patchelf --set-rpath '$ORIGIN' ${file} || die
+   fi
+   done
+}
+
+src_install() {
+   local dir="/opt/${P}"
+
+   insinto "${dir}"
+   doins -r *
+   fperms 755 
"${dir}"/bin/{clion.sh,fsnotifier,clang/linux/{clangd,clang-tidy,clazy-standalone}}
+
+   if [[ -d jbr ]]; then
+   fperms 755 
"${dir}"/jbr/bin/{jaotc,java,javac,jdb,jjs,jrunscript,keytool,pack200,rmid,rmiregistry,serialver,unpack200}
+   # Fix #763582
+   fperms 755 
"${dir}"/jbr/lib/{chrome-sandbox,jcef_helper,jexec,jspawnhelper}
+   fi
+
+   make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
+   newicon "bin/${PN}.svg" "${PN}.svg"
+   make_desktop_entry "${PN}" "clion" "${PN}" "Development;IDE;"
+
+   # recommended by: 
https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
+   dodir /usr/lib/sysctl.d/
+   echo "fs.inotify.max_user_watches = 524288" > 

[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2021-08-13 Thread Joonas Niilola
commit: 9af44e2b5917cedbdcb346c9af932e33b0a8fd77
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Aug 14 05:47:06 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:47:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af44e2b

net-im/mattermost-desktop-bin: add missing deps

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

 .../mattermost-desktop-bin-4.7.1.ebuild| 18 +-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
index 0a11fd428ca..e767c09c1e0 100644
--- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
@@ -22,13 +22,29 @@ KEYWORDS="~amd64 ~x86"
 RDEPEND="
app-accessibility/at-spi2-atk:2
app-accessibility/at-spi2-core:2[X]
+   dev-libs/atk
dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
dev-libs/nss
media-libs/alsa-lib
+   media-libs/mesa
net-print/cups
sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3[X]
-   x11-libs/libXScrnSaver
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libdrm
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libxshmfence
+   x11-libs/pango
 "
 
 QA_PREBUILT="



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

2021-08-13 Thread Joonas Niilola
commit: 2c7cb63474820da9e83338dd23c0de832a6eba65
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Aug 14 05:53:54 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:53:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c7cb634

dev-util/clion: add missing deps to 2021.2

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

 dev-util/clion/clion-2021.2.ebuild | 19 +--
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/dev-util/clion/clion-2021.2.ebuild 
b/dev-util/clion/clion-2021.2.ebuild
index 41d7337f81b..daf59355c8c 100644
--- a/dev-util/clion/clion-2021.2.ebuild
+++ b/dev-util/clion/clion-2021.2.ebuild
@@ -22,28 +22,35 @@ BDEPEND="dev-util/patchelf"
 # RDEPENDS may cause false positives in repoman.
 # clion requires cmake and gdb at runtime to build and debug C/C++ projects
 RDEPEND="
-   app-accessibility/at-spi2-atk
-   app-accessibility/at-spi2-core
+   app-accessibility/at-spi2-atk:2
+   app-accessibility/at-spi2-core:2
dev-libs/atk
-   dev-libs/libdbusmenu
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
dev-libs/nss
dev-util/cmake
media-libs/alsa-lib
-   media-libs/freetype
+   media-libs/freetype:2
media-libs/mesa
net-print/cups
+   sys-apps/dbus
sys-devel/gdb
-   x11-libs/libXScrnSaver
+   sys-libs/zlib
+   x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXtst
x11-libs/libXxf86vm
x11-libs/libdrm
+   x11-libs/libxcb
x11-libs/libxkbcommon
-   x11-libs/pango"
+   x11-libs/libxshmfence"
 
 QA_PREBUILT="opt/${P}/*"
 



[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2021-08-13 Thread Joonas Niilola
commit: d6460619d677e43d02f6489a08087a05cda6d3d0
Author: Viorel Munteanu  gmail  com>
AuthorDate: Sun Aug  8 10:58:35 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:45:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6460619

net-im/mattermost-desktop-bin: drop v4.7.0

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Viorel Munteanu  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21914
Signed-off-by: Joonas Niilola  gentoo.org>

 net-im/mattermost-desktop-bin/Manifest |  2 -
 .../mattermost-desktop-bin-4.7.0.ebuild| 72 --
 2 files changed, 74 deletions(-)

diff --git a/net-im/mattermost-desktop-bin/Manifest 
b/net-im/mattermost-desktop-bin/Manifest
index 0fd3d8b46af..8d52861daf6 100644
--- a/net-im/mattermost-desktop-bin/Manifest
+++ b/net-im/mattermost-desktop-bin/Manifest
@@ -1,4 +1,2 @@
-DIST mattermost-desktop-4.7.0-linux-ia32.tar.gz 83111746 BLAKE2B 
81b7f50570e29a562b5abb9f84296212d7e0b48f9346a0cd9b3f46411010aaf4da05ce96508743f083f7519b2e5ee6fdaedae211228d2e9ea1a00b62eda4d70e
 SHA512 
7520384b61efa0cf80feb9028fcb632d5e4fc29b907a53436c59359aa1d4f2ebbed0be4da41ead97f7450fe389815e69f2513acc9e63cd3cea2286a49e96ff83
-DIST mattermost-desktop-4.7.0-linux-x64.tar.gz 84882264 BLAKE2B 
b9667ee63fe9fe756d431efbe53c259a96cccf05d29a8a47e660f835ebad3ae826bc274aa8a8daa481c333a28d38bce9025b5a22dd730927bab901d87538c5de
 SHA512 
225fa12e684f3735f4c55869ee27ee3cf26385bdfadeedc01c1fe070ebe585277fd701611a7275bd5bc894a0d0460e484ff31f959aa41a0b0b98c19d486986b6
 DIST mattermost-desktop-4.7.1-linux-ia32.tar.gz 83083553 BLAKE2B 
75a914adab3d080ca95f76cb2bd8e11a1e9bb7b434ffd55c477ff38295b84e57c01f22596810ba6b4beb28e663e134ce36fce18ed71440213f0595db4b3ad256
 SHA512 
3d9264030f1b68ce052c5d453259e8e68f8b09a84e4854c84db1fb48beff5e0d67b0be5ac31a6b650c30baf53cd5eb2b024df8bafe37706ad1b721bfd8ef7f02
 DIST mattermost-desktop-4.7.1-linux-x64.tar.gz 84864146 BLAKE2B 
f0166d52fa49babd4ab13258edabd567f5114544af9dc9c59f094d5751cc3bfc26085523fa345d9cd252f7bc81763ecbeac55b921988a4ca9571fec9e5d5321e
 SHA512 
2698e2fab7bf53554138618b20c54a70feb022d4a0d822f3e65d800cd9de8d0cdf53145f79074f7beb3dc29168c5a9c67f05dae3b3e628db1881c7cdd6c699b6

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.0.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.0.ebuild
deleted file mode 100644
index c160cee4a14..000
--- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN%-*}"
-
-inherit desktop
-
-DESCRIPTION="Mattermost Desktop application"
-HOMEPAGE="https://about.mattermost.com/;
-
-SRC_URI="
-   amd64? ( 
https://releases.mattermost.com/desktop/${PV}/mattermost-desktop-${PV}-linux-x64.tar.gz
 )
-   x86?   ( 
https://releases.mattermost.com/desktop/${PV}/mattermost-desktop-${PV}-linux-ia32.tar.gz
 )
-"
-
-LICENSE="Apache-2.0 GPL-2+ LGPL-2.1+ MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-accessibility/at-spi2-atk:2
-   app-accessibility/at-spi2-core:2[X]
-   dev-libs/expat
-   dev-libs/nss
-   media-libs/alsa-lib
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/gtk+:3[X]
-   x11-libs/libXScrnSaver
-"
-
-QA_PREBUILT="
-   opt/mattermost-desktop/mattermost-desktop
-   opt/mattermost-desktop/libnode.so
-   opt/mattermost-desktop/libffmpeg.so
-   opt/mattermost-desktop/libGLESv2.so
-   opt/mattermost-desktop/libEGL.so
-   opt/mattermost-desktop/libvk_swiftshader.so
-"
-
-DOCS=(
-   NOTICE.txt
-)
-
-S="${WORKDIR}"
-
-src_install() {
-   if use amd64; then
-   cd "${WORKDIR}/mattermost-desktop-${PV}-linux-x64" || die
-   elif use x86; then
-   cd "${WORKDIR}/mattermost-desktop-${PV}-linux-ia32" || die
-   fi
-
-   insinto "/opt/${MY_PN}/locales"
-   doins locales/*.pak
-
-   insinto "/opt/${MY_PN}/resources"
-   doins resources/*.asar
-
-   insinto "/opt/${MY_PN}"
-   doins *.pak *.bin *.dat
-   exeinto "/opt/${MY_PN}"
-   doexe *.so "${MY_PN}"
-
-   dosym "../../opt/${MY_PN}/${MY_PN}" "/usr/bin/${MY_PN}"
-
-   make_desktop_entry "${MY_PN}" Mattermost "${MY_PN}"
-
-   einstalldocs
-}



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

2021-08-13 Thread Joonas Niilola
commit: 935933cffaa5bf0f621138c23701e82982b1d541
Author: Matt Smith  offtopica  uk>
AuthorDate: Fri Jul 30 11:26:51 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:35:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=935933cf

dev-lang/nasm: Adopt package

Also update upstream remote, bump to EAPI 8, and drop unused eclass.

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Matt Smith  offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/21836
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lang/nasm/metadata.xml| 11 +--
 dev-lang/nasm/nasm-2.15.05.ebuild | 11 +++
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/dev-lang/nasm/metadata.xml b/dev-lang/nasm/metadata.xml
index 9d9747cb876..86d32bc3da0 100644
--- a/dev-lang/nasm/metadata.xml
+++ b/dev-lang/nasm/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+  
+m...@offtopica.uk
+Matt Smith
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
   
 The Netwide Assembler, NASM, is an 80x86 assembler designed for portability
 and modularity. It supports a range of object file formats, including Linux
@@ -11,7 +18,7 @@ and easy to understand, similar to Intel's but less complex. 
It supports
 Pentium, P6, MMX, 3DNow!, SSE and SSE2 opcodes, and has macro capability.
   
   
-nasm
+netwide-assembler/nasm
 https://bugzilla.nasm.us/
   
 

diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild 
b/dev-lang/nasm/nasm-2.15.05.ebuild
index c8a16b87337..297cea8bba3 100644
--- a/dev-lang/nasm/nasm-2.15.05.ebuild
+++ b/dev-lang/nasm/nasm-2.15.05.ebuild
@@ -1,21 +1,18 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit flag-o-matic
-
 DESCRIPTION="groovy little assembler"
 HOMEPAGE="https://www.nasm.us/;
 SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz;
+S="${WORKDIR}"/${P/_}
 
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm64 ~ia64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
-RDEPEND=""
-DEPEND=""
 # [fonts note] doc/psfonts.ph defines ordered list of font preference.
 # Currently 'media-fonts/source-pro' is most preferred and is able to
 # satisfy all 6 font flavours: tilt, chapter, head, etc.
@@ -30,8 +27,6 @@ BDEPEND="
)
 "
 
-S=${WORKDIR}/${P/_}
-
 PATCHES=(
"${FILESDIR}"/${PN}-2.15-bsd-cp-doc.patch
 )
@@ -43,5 +38,5 @@ src_compile() {
 
 src_install() {
default
-   emake DESTDIR="${D}" install_rdf $(usex doc install_doc '')
+   emake DESTDIR="${ED}" install_rdf $(usex doc install_doc '')
 }



[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2021-08-13 Thread Joonas Niilola
commit: e531e49db4ad8801257bff19c9652fb52baa5172
Author: Viorel Munteanu  gmail  com>
AuthorDate: Sun Aug  8 10:58:02 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:45:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e531e49d

net-im/mattermost-desktop-bin: bump to v4.7.1

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Viorel Munteanu  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-im/mattermost-desktop-bin/Manifest |  2 +
 .../mattermost-desktop-bin-4.7.1.ebuild| 72 ++
 2 files changed, 74 insertions(+)

diff --git a/net-im/mattermost-desktop-bin/Manifest 
b/net-im/mattermost-desktop-bin/Manifest
index 117bf7fa808..0fd3d8b46af 100644
--- a/net-im/mattermost-desktop-bin/Manifest
+++ b/net-im/mattermost-desktop-bin/Manifest
@@ -1,2 +1,4 @@
 DIST mattermost-desktop-4.7.0-linux-ia32.tar.gz 83111746 BLAKE2B 
81b7f50570e29a562b5abb9f84296212d7e0b48f9346a0cd9b3f46411010aaf4da05ce96508743f083f7519b2e5ee6fdaedae211228d2e9ea1a00b62eda4d70e
 SHA512 
7520384b61efa0cf80feb9028fcb632d5e4fc29b907a53436c59359aa1d4f2ebbed0be4da41ead97f7450fe389815e69f2513acc9e63cd3cea2286a49e96ff83
 DIST mattermost-desktop-4.7.0-linux-x64.tar.gz 84882264 BLAKE2B 
b9667ee63fe9fe756d431efbe53c259a96cccf05d29a8a47e660f835ebad3ae826bc274aa8a8daa481c333a28d38bce9025b5a22dd730927bab901d87538c5de
 SHA512 
225fa12e684f3735f4c55869ee27ee3cf26385bdfadeedc01c1fe070ebe585277fd701611a7275bd5bc894a0d0460e484ff31f959aa41a0b0b98c19d486986b6
+DIST mattermost-desktop-4.7.1-linux-ia32.tar.gz 83083553 BLAKE2B 
75a914adab3d080ca95f76cb2bd8e11a1e9bb7b434ffd55c477ff38295b84e57c01f22596810ba6b4beb28e663e134ce36fce18ed71440213f0595db4b3ad256
 SHA512 
3d9264030f1b68ce052c5d453259e8e68f8b09a84e4854c84db1fb48beff5e0d67b0be5ac31a6b650c30baf53cd5eb2b024df8bafe37706ad1b721bfd8ef7f02
+DIST mattermost-desktop-4.7.1-linux-x64.tar.gz 84864146 BLAKE2B 
f0166d52fa49babd4ab13258edabd567f5114544af9dc9c59f094d5751cc3bfc26085523fa345d9cd252f7bc81763ecbeac55b921988a4ca9571fec9e5d5321e
 SHA512 
2698e2fab7bf53554138618b20c54a70feb022d4a0d822f3e65d800cd9de8d0cdf53145f79074f7beb3dc29168c5a9c67f05dae3b3e628db1881c7cdd6c699b6

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
new file mode 100644
index 000..c160cee4a14
--- /dev/null
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN%-*}"
+
+inherit desktop
+
+DESCRIPTION="Mattermost Desktop application"
+HOMEPAGE="https://about.mattermost.com/;
+
+SRC_URI="
+   amd64? ( 
https://releases.mattermost.com/desktop/${PV}/mattermost-desktop-${PV}-linux-x64.tar.gz
 )
+   x86?   ( 
https://releases.mattermost.com/desktop/${PV}/mattermost-desktop-${PV}-linux-ia32.tar.gz
 )
+"
+
+LICENSE="Apache-2.0 GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-accessibility/at-spi2-atk:2
+   app-accessibility/at-spi2-core:2[X]
+   dev-libs/expat
+   dev-libs/nss
+   media-libs/alsa-lib
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/gtk+:3[X]
+   x11-libs/libXScrnSaver
+"
+
+QA_PREBUILT="
+   opt/mattermost-desktop/mattermost-desktop
+   opt/mattermost-desktop/libnode.so
+   opt/mattermost-desktop/libffmpeg.so
+   opt/mattermost-desktop/libGLESv2.so
+   opt/mattermost-desktop/libEGL.so
+   opt/mattermost-desktop/libvk_swiftshader.so
+"
+
+DOCS=(
+   NOTICE.txt
+)
+
+S="${WORKDIR}"
+
+src_install() {
+   if use amd64; then
+   cd "${WORKDIR}/mattermost-desktop-${PV}-linux-x64" || die
+   elif use x86; then
+   cd "${WORKDIR}/mattermost-desktop-${PV}-linux-ia32" || die
+   fi
+
+   insinto "/opt/${MY_PN}/locales"
+   doins locales/*.pak
+
+   insinto "/opt/${MY_PN}/resources"
+   doins resources/*.asar
+
+   insinto "/opt/${MY_PN}"
+   doins *.pak *.bin *.dat
+   exeinto "/opt/${MY_PN}"
+   doexe *.so "${MY_PN}"
+
+   dosym "../../opt/${MY_PN}/${MY_PN}" "/usr/bin/${MY_PN}"
+
+   make_desktop_entry "${MY_PN}" Mattermost "${MY_PN}"
+
+   einstalldocs
+}



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

2021-08-13 Thread Joonas Niilola
commit: 93326c42c5a9694225e10ae85851096eff74137f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Aug 14 05:51:54 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:51:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93326c42

dev-util/clion: update EAPI 7 -> 8

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

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

diff --git a/dev-util/clion/clion-2021.2.ebuild 
b/dev-util/clion/clion-2021.2.ebuild
index 616d0cf8e04..41d7337f81b 100644
--- a/dev-util/clion/clion-2021.2.ebuild
+++ b/dev-util/clion/clion-2021.2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit desktop wrapper
 



[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2021-08-13 Thread Joonas Niilola
commit: 8898cb8d92e42ac47f5fadabb89f7a41de33fc79
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Aug 14 05:45:24 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 14 05:45:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8898cb8d

net-im/mattermost-desktop-bin: update EAPI 7 -> 8

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

 net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
index c160cee4a14..0a11fd428ca 100644
--- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.7.1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 MY_PN="${PN%-*}"
 



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

2021-08-13 Thread Sam James
commit: d076978bb53de7e3ec624f13c7ad3d1e74dcecb4
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:53:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:53:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d076978b

sys-kernel/gentoo-kernel-bin: fix 5.4.137-r1 (arm64) SRC_URI

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

 ...rnel-bin-5.4.137-r1.ebuild => gentoo-kernel-bin-5.4.137-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.137-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.137-r2.ebuild
similarity index 93%
rename from sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.137-r1.ebuild
rename to sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.137-r2.ebuild
index fe6e6023d32..5541c8bb8d9 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.137-r1.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.137-r2.ebuild
@@ -13,8 +13,8 @@ DESCRIPTION="Pre-built Linux kernel with genpatches"
 HOMEPAGE="https://www.kernel.org/;
 SRC_URI+="
https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
-   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
-   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
arm64? (

https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
-> ${BINPKG}.arm64.xpak



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

2021-08-13 Thread Sam James
commit: baa4781e4a30a955ef9ba8f5d24493cbddd3c517
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:54:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:54:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa4781e

sys-kernel/gentoo-kernel-bin: fix 5.10.55-r1 (arm64) SRC_URI

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

 ...rnel-bin-5.10.55-r1.ebuild => gentoo-kernel-bin-5.10.55-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.55-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.55-r2.ebuild
similarity index 93%
rename from sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.55-r1.ebuild
rename to sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.55-r2.ebuild
index 9f8ae493e21..d56af60a578 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.55-r1.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.55-r2.ebuild
@@ -13,8 +13,8 @@ DESCRIPTION="Pre-built Linux kernel with genpatches"
 HOMEPAGE="https://www.kernel.org/;
 SRC_URI+="
https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
-   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
-   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
arm64? (

https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
-> ${BINPKG}.arm64.xpak



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

2021-08-13 Thread Sam James
commit: a720be83148c7c3a89bee3336e2b066a15f3df61
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:49:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:52:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a720be83

sys-kernel/gentoo-kernel-bin: bump to 5.4.140-r1 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.4.140-r1.ebuild| 113 +
 2 files changed, 114 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 7cc2ca84aef..77a11bc7e2c 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -104,6 +104,7 @@ DIST gentoo-kernel-5.4.139-1.amd64.xpak 61366933 BLAKE2B 
27ae32ce446930ba96fab8b
 DIST gentoo-kernel-5.4.139-1.arm64.xpak 57992677 BLAKE2B 
b194275b4c4e5fc42a20a74f47c300c3ec3b26f6f02ac75ca8ea9b2b582153bc2922f9a525e5e2d005d74e9fa91b5013649cb96f40624985a6ab47d941967f70
 SHA512 
f7214dfa120ff96e8d6f327c79ef59d8bbbfd9c7c1b3236fb531f04cc0340f7d4dc8745740bd7c0edcdeacd23449cc73c0d415ae3fe8100f589aa2cef4901f3a
 DIST gentoo-kernel-5.4.139-1.x86.xpak 53173145 BLAKE2B 
e516100fcd8f4f52df93deb22939ae24f59d67ffe797c79cf7a91b36ce76df04f7ef52b158b2f94cbb2c9c9534d0405fb936243548f8759f05ee096c7d93ed36
 SHA512 
a464719010c35edeb307e1004fb97d7d3be5e8dc143219697081fe73f1812fe57f316a6ed97db86147ffda10bad16b18d1e753c0360d778d6354e6d4876d7f0f
 DIST gentoo-kernel-5.4.140-1.amd64.xpak 61369693 BLAKE2B 
5f869206ad8102cca2e6cc72237ae026763bae7450fc90009a78439789f958cbc133ac5f8a207caf7c0d59c71df124c9fd6de4805ea4a4e701902f7fb44a4ddf
 SHA512 
ceae6f100fe5a28d87fd32daac43d43c3e52a6bd96dd4fbcf73b5593ed21f4641e0ded5e55eb2b443b212bd312a0550f5020ebe34b94504f16e1ad905e077c70
+DIST gentoo-kernel-5.4.140-1.arm64.xpak 57965446 BLAKE2B 
560b269104ff385823bfe067483d0c6cc3bce3e41b1a156316e9af57b9bd9a2d1fcc8f7b698a330bde5c926e2c0e6f61d372085e79aee02e97295b1c7cbf
 SHA512 
74c346964e6b21cd1073140b4e0559ba2fd166a73696d091d09c8656ce95c08f89662a70344deb0806c3b4cb14c081418abfae8d4442fbc792c2f7958f51e510
 DIST gentoo-kernel-5.4.140-1.x86.xpak 53160196 BLAKE2B 
9230edc3d36d4aae621bbdf79262b824a8b9810c7a253b4b09ba7bc0974baedb53f43c70fd6cfaf67b470a50f82fb119a7cf33d425f63e9e50fca4a9570c322f
 SHA512 
29aa547d20e415a50738b3615f25c9f4ebddbcd8d4e9db43aaa8651f40b1e1a93f953ba66963a3c0ba3cdd46d259a638107711e0d3830013359e34346ccf78ea
 DIST linux-5.10.tar.xz 116606704 BLAKE2B 
b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1
 SHA512 
95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e
 DIST linux-5.12.tar.xz 118112412 BLAKE2B 
842d921b9a73d2aaade763dbd2ec67bdfe0275baa6d628b775f5c87574ad7dc86f0419afcd48c10c1235f4bffa16084243f2cf4556e6afcd391e975fe8ba530b
 SHA512 
be03b6fee1d1ea8087b09874d27c0a602c0b04fd90ad38b975bd2c8455a07e83c29b56814aaf1389e82305fae0e4c2d1701075a7f0a7295dd28149f967ec5b3d

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.140-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.140-r1.ebuild
new file mode 100644
index 000..fe6e6023d32
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.140-r1.ebuild
@@ -0,0 +1,113 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 4 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default
+}
+
+src_configure() {
+ 

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

2021-08-13 Thread Sam James
commit: 16fd569a90ba50a87e72b6c74dd947b23d389396
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:49:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:52:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16fd569a

sys-kernel/gentoo-kernel-bin: bump to 5.13.10-r1 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.13.10-r1.ebuild| 113 +
 2 files changed, 114 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index f613525b9e1..b28b1e8779a 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -67,6 +67,7 @@ DIST gentoo-kernel-5.12.19-1.amd64.xpak 66346655 BLAKE2B 
a03cbcdcd1a90d48d7e11e9
 DIST gentoo-kernel-5.12.19-1.arm64.xpak 60043529 BLAKE2B 
8746081847a39e1847b8e9f35fcd68565370b116d6418edf803c4cdca9d750ac8ada58c4a7fd377480a1c75b3c805864d419c02ee21675bc77ac195731385a18
 SHA512 
d1a8a9210a1ab3d3c1894be1fe524e64b859b0a02763feacfed1a24655540ade6c28af751b23e924fcc04fb9abd56e84c43d634ad80bbb4d5de79ed533b5ea50
 DIST gentoo-kernel-5.12.19-1.x86.xpak 58076509 BLAKE2B 
0e4aca91c834b23fb169bb6fabab13130de811c15f89e6341ad2a36ac230071ced6c6d7bd30be0f0f3860d09968449c1933cd33ed021213c667304070b80f9a7
 SHA512 
9786f106ed59661546d9f035e25c39f4c7a4a41f51afa96700867e47bab19e148e8a42c79bc3b7780967c2f82f1fef6920f220fb5fccd6f267a2c6e6a3081126
 DIST gentoo-kernel-5.13.10-1.amd64.xpak 67265148 BLAKE2B 
834bbccb256b81be3baef78f53a3ab38a228c3090b3fdc93e7b95cd31877cf16f80fe63ad9448f0921cc6d36cc0508daac88b90aa1004304b6cdcd5b17198a5d
 SHA512 
33898bf8a51fa576aa7b39dca494ec191725d5160ef6366df2deb64a11067c6403dfa320b5817b62f35bbc8c76d8bcd8f4a6844b97c27de6b3d756ed4ae05ae3
+DIST gentoo-kernel-5.13.10-1.arm64.xpak 62771380 BLAKE2B 
59773ce3ff9db43dbf8e120eef8f1cdd0b73f1107fa418dd293e225916455e31124409ddedea8b59f7a1b2ddb8c2abc3002d8164dcdf2983c8d2050f03c98a71
 SHA512 
5c15119feecbbef1905840c3867b3624cb172c5ffd6634ebbac32d7952ee8a3cc747e0021ca70604ceb050eb76ed2f427c9ef3d5655dd08de4891c2fd8f4fb01
 DIST gentoo-kernel-5.13.10-1.x86.xpak 58503973 BLAKE2B 
8b10972522c16da49313987b08d34a9597cac4cf4218b08e50a899b48f2806f1a3dd7e913cd2a505e415bc7d7c6daf5d0262bcc5e23a1bfc4ef41b674d2b77c2
 SHA512 
61b1073e12788f9086ba074dfd880695c5a73adeb1e03cb3afd5e50af60d231b107d5618d812ba6bf0158da2953b138b7d5cdedd89c6d4a6d5e116e9b49a82fb
 DIST gentoo-kernel-5.13.4-1.arm64.xpak 62698454 BLAKE2B 
110da7beab919c6a3c95cae947afa030cb4aa9483fbe39f416a7ef391c70904f99f129089b7b7b5c197b2372cabebe751f5451b7daa7544153e8cb6c7c2dcb3b
 SHA512 
e8b7a6250fbb9b71af6eb58926d7127bf48df1dc1cd669089723c3b9641dc71df15072b3e973a6d75ec053cbe0b7aad4bfa8da67544f564fe095a93fbc35e5c6
 DIST gentoo-kernel-5.13.4-2.amd64.xpak 67284746 BLAKE2B 
945d5bb6271142f32f421702969ebffe70ca5232f54bd8a1b48a559971510eb623e7a9b803b044cd17273d27606ad37744e8fbd2812cacf46973f3152ee91939
 SHA512 
af4cb262af32136138754401682de9f7c781929a0a950d2453738300025b06973a3001d1f2c23496e04a3367f12e07ef897ff858ca9325de59309924c04fdc98

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.10-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.10-r1.ebuild
new file mode 100644
index 000..56164dd0991
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.10-r1.ebuild
@@ -0,0 +1,113 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 2 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default
+}
+

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

2021-08-13 Thread Sam James
commit: 0d7084a10139a6a1c71ce3e9c45f2997a6df9d3a
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:51:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:52:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7084a1

sys-kernel/gentoo-kernel-bin: fix 5.13.8-r1 (arm64) SRC_URI

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

 ...kernel-bin-5.13.8-r1.ebuild => gentoo-kernel-bin-5.13.8-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.8-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.8-r2.ebuild
similarity index 93%
rename from sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.8-r1.ebuild
rename to sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.8-r2.ebuild
index 2f16601a52d..56164dd0991 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.8-r1.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.8-r2.ebuild
@@ -13,8 +13,8 @@ DESCRIPTION="Pre-built Linux kernel with genpatches"
 HOMEPAGE="https://www.kernel.org/;
 SRC_URI+="
https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
-   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz
-   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
arm64? (

https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
-> ${BINPKG}.arm64.xpak



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

2021-08-13 Thread Sam James
commit: 72b89b88d4c561abce87ba0f7cc522672d22cbeb
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:50:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:52:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72b89b88

sys-kernel/gentoo-kernel-bin: fix 5.13.9-r1 (arm64) SRC_URI

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

 ...kernel-bin-5.13.9-r1.ebuild => gentoo-kernel-bin-5.13.9-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.9-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.9-r2.ebuild
similarity index 93%
rename from sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.9-r1.ebuild
rename to sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.9-r2.ebuild
index 2f16601a52d..56164dd0991 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.9-r1.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.13.9-r2.ebuild
@@ -13,8 +13,8 @@ DESCRIPTION="Pre-built Linux kernel with genpatches"
 HOMEPAGE="https://www.kernel.org/;
 SRC_URI+="
https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
-   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz
-   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
arm64? (

https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
-> ${BINPKG}.arm64.xpak



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

2021-08-13 Thread Sam James
commit: 86fcffe7b2ba9726782cd90fc388eb13de7ec228
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:49:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:52:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86fcffe7

sys-kernel/gentoo-kernel-bin: bump to 5.10.58-r1 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.10.58-r1.ebuild| 113 +
 2 files changed, 114 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 77a11bc7e2c..f613525b9e1 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -61,6 +61,7 @@ DIST gentoo-kernel-5.10.57-1.amd64.xpak 65495321 BLAKE2B 
01150f9e47ca9e1032ba922
 DIST gentoo-kernel-5.10.57-1.arm64.xpak 61180038 BLAKE2B 
09554216e2510e3175683828b1b64175b959e382a7a2b46644e4c0c88bdd0dfea9961e526348b46263c818abb04570817ac33231db3e5d358ff4046dd3178ab2
 SHA512 
fd0ffcd2b7771ff3fb92f55f07262ea3363cfced08442b097fce1a80eb4469d731c3c6e3bdbd874813ed53d25abbe6c29a6df36c479c746d5e1f2ef551f6ad95
 DIST gentoo-kernel-5.10.57-1.x86.xpak 57232710 BLAKE2B 
61912226342f10ef313ce335572c4a13dfe139ff562e6b0b392b28981aaa7aace9581d61196ff595b05cc2f54f4d07341c95c46de67e48898d5ebc36d47caedb
 SHA512 
6d51e5c3b601e26a37310941054611f16113d3b8711d6216a240408712ed032aa73cef5158dd83916458635aea19df7d8a6462371593d594f17b9070e81c925f
 DIST gentoo-kernel-5.10.58-1.amd64.xpak 65511736 BLAKE2B 
48f3bf825208658a833549ee54145725cc3e1d3b3428dfb431214f2272c449c6cf274dbad1123fa1a346614661f4b9112fd47f9f075ace1d39cb79371eb4ee9c
 SHA512 
22ac10e934cfd3e9b878457824e1a57c229e1364d0ccd45e60153d4e114097974262a7be364e573aefab83c7eb42b6afdfdaeda6807a7b52066f1771d8ecdede
+DIST gentoo-kernel-5.10.58-1.arm64.xpak 61161741 BLAKE2B 
fdeea503d632971e80739ae7abe10da20febfc1a5f7b1ccf73f8937f40a8daecf141b36e780b41903ebd3dd8a60eae66e7ce40b697f1b53b9fec13b1092ab320
 SHA512 
f48fcbdc395cc57c6a5c5e2d5e2e79598b563df843d11f10d9be2f209f36c78dc1700f23aaad2b1052a847dffac6b74eaf8f86df6caaea560199b1e250bd7c33
 DIST gentoo-kernel-5.10.58-1.x86.xpak 57234241 BLAKE2B 
03e1fe1c0ee4a571564fba7b8095540e901e5f74e856f67ea03a389bcd3ab0f8a482aee0b74eb13494afe471b528748b58b24cbe653b4963466142e3a38126ef
 SHA512 
01b4b4b33de3dd396d92d0b3e99c33413c5e936c85ca038caba94d53ed671b885312e5b1508897edf39de045e13c05d546b9053c9ef5b7700058a4a02db8cdd0
 DIST gentoo-kernel-5.12.19-1.amd64.xpak 66346655 BLAKE2B 
a03cbcdcd1a90d48d7e11e988d03efa43980f4d5d8af4b74e4c81f195faa01803af45fb38f7dc1f5af7e9b5338a53bc6f34837c37f7e853c088ec6c1dc084e44
 SHA512 
3d7f78c488ecee2532f8a8ad61e3aa0f5e238e4cd520d29288715a3dc5c488670d7378f3dc5bc110252dff10108dfbda27a54722c6b044151999428d002b34e1
 DIST gentoo-kernel-5.12.19-1.arm64.xpak 60043529 BLAKE2B 
8746081847a39e1847b8e9f35fcd68565370b116d6418edf803c4cdca9d750ac8ada58c4a7fd377480a1c75b3c805864d419c02ee21675bc77ac195731385a18
 SHA512 
d1a8a9210a1ab3d3c1894be1fe524e64b859b0a02763feacfed1a24655540ade6c28af751b23e924fcc04fb9abd56e84c43d634ad80bbb4d5de79ed533b5ea50

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.58-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.58-r1.ebuild
new file mode 100644
index 000..9f8ae493e21
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.58-r1.ebuild
@@ -0,0 +1,113 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 6 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default

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

2021-08-13 Thread Michael Palimaka
commit: e9cb96ab57cb97d07bee40b9e82bc71245f721c4
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Aug 14 04:43:47 2021 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Aug 14 04:43:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9cb96ab

dev-util/rpmdevtools: version bump 9.5

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-util/rpmdevtools/Manifest   |  1 +
 dev-util/rpmdevtools/rpmdevtools-9.5.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-util/rpmdevtools/Manifest b/dev-util/rpmdevtools/Manifest
index db413516194..33847d59e04 100644
--- a/dev-util/rpmdevtools/Manifest
+++ b/dev-util/rpmdevtools/Manifest
@@ -1,2 +1,3 @@
 DIST rpmdevtools-9.2.tar.xz 95528 BLAKE2B 
2485b4a1f27bc07b2c865804829fe2692383d54ce976d32919ee717b52b32aec93c1e50382e8e74cdbb630fda1655d68c840057e61428a45ab40ac31bc5b4ae1
 SHA512 
fbfe1123421775eb892776362f39144ce0e7c6519bdf23c7d9eb746c867d998d6a0ecce376ceaffec82e786040e41f2494dbec3170af1fa74a204447a4965fff
 DIST rpmdevtools-9.3.tar.xz 96292 BLAKE2B 
40a9c53396c1186b1317971b5edca51e3b29e8d35c703434f8da05d07f101c9af266b306efa472a24254af2bfd0daeedc42fcc811f80c195209db2078e380965
 SHA512 
87dc8fe2885db2760a7520bc2486655f64e778bce0b6b3c2904ba9f3689e13f5b8d186b6fcebd60f24e958333aae66d06c0690fe2db633c2f508068dd4215f9f
+DIST rpmdevtools-9.5.tar.xz 96724 BLAKE2B 
a406581be0286a6cb4b611289820f5a2db4306b731b0963881091e27b04b213c155243aeb95eadb41a27ab7a481bf1464d27d31fb52c6b10c3cedb23c1b22d21
 SHA512 
d2a110e7557eb149113560d64b3ec1ce75e5ee5ee541de3b4ed88f2bf11ef0248c864383bbffb49f8c32920563704da94004a8f9c099ce3610e6168aabfe440a

diff --git a/dev-util/rpmdevtools/rpmdevtools-9.5.ebuild 
b/dev-util/rpmdevtools/rpmdevtools-9.5.ebuild
new file mode 100644
index 000..81d2411641d
--- /dev/null
+++ b/dev-util/rpmdevtools/rpmdevtools-9.5.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_7,3_8,3_9} )
+inherit python-single-r1
+
+DESCRIPTION="Collection of rpm packaging related utilities"
+HOMEPAGE="https://pagure.io/rpmdevtools;
+SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="emacs"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   app-arch/rpm[python,${PYTHON_SINGLE_USEDEP}]
+   dev-lang/perl:*
+   $(python_gen_cond_dep 'dev-python/progressbar2[${PYTHON_USEDEP}]')
+   $(python_gen_cond_dep 'dev-python/requests_download[${PYTHON_USEDEP}]')
+"
+RDEPEND="${DEPEND}
+   net-misc/curl
+   emacs? ( app-emacs/rpm-spec-mode )
+"
+BDEPEND="sys-apps/help2man"
+
+src_prepare() {
+   default
+   python_fix_shebang 
rpmdev-{bumpspec,checksig,rmdevelrpms.py,sort,spectool,vercmp}
+}



[gentoo-commits] repo/gentoo:master commit in: dev-games/tiled/

2021-08-13 Thread Michael Palimaka
commit: 9c402b007352d063986fea43ffae525f035728e0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Aug 14 04:39:37 2021 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Aug 14 04:40:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c402b00

dev-games/tiled: version bump 1.7.2

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-games/tiled/Manifest   |  1 +
 dev-games/tiled/tiled-1.7.2.ebuild | 73 ++
 2 files changed, 74 insertions(+)

diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest
index eab39c8a358..7db18163e7a 100644
--- a/dev-games/tiled/Manifest
+++ b/dev-games/tiled/Manifest
@@ -1,3 +1,4 @@
 DIST tiled-1.4.3.tar.gz 17806808 BLAKE2B 
81b5a32cc1e6f5f3b4af5520752d34572f0e78aad90df435d075b53ac18b39961aa22d23cff614cd83f0883fd2fd2bca69026160cb8b1b727fddaeff5764babe
 SHA512 
1e75e323733e05563bf542364778d95f2f22484ec0d85b4a9e7fac782c117934b37b049724979be5c83de86a3900c7ca2e9f3c5a660c530d2ecd0f023eb22c2e
 DIST tiled-1.5.0.tar.gz 16694406 BLAKE2B 
ccab3ec9f5ac807126ddf5d26e4eaa06357e67ffbd63550bdad93e814ff02350f9138f62114a56b5e64bc6c7fd3f6664ab7da836cab7e478ea7075111fa1cae7
 SHA512 
eb25affdab481db29ab2bbaeb4abafd453b2b43ae47e4b8f9f2fd1ed0d8ed55fdb45ec1bdc0b484ba9a2d63afad5a0c9ba6376304ed4b1eab3918c36a0af29c9
 DIST tiled-1.7.1.tar.gz 16741752 BLAKE2B 
2f9d2d43aa3aa52a2999a6e9e56bfe3846e095ac41236921e9ab42df40b93d0c3373d2f5f13a5f7c9a945ea0c03c4fe6b123ea6a8b3bc71ddc9863c714fccc17
 SHA512 
ed6ba20015434d9de6ae02aecb165a7fb7569a3d74471a7baec5d0f1b78b7905dd12cd565e1f9d1e41ff47e225cdfb81915ae09e3672efc21f16cefb39e03998
+DIST tiled-1.7.2.tar.gz 16743422 BLAKE2B 
0d8ae95b2fc68326d0a4989b26535cd72900ddf9674ad892c287f9d7df2f551fc46c9fa9c8991315f55ae90663a9a5b9c4239fd2ed61c240a36a60102b2710b3
 SHA512 
6d766adbfcb642279eb0ba27410858c54a29ed8e697445b6fb96ce210d0b1433b1ed4715e1d78af3aea8ec71a87b24eea52216bf6236159e0c8fdf87a2339a59

diff --git a/dev-games/tiled/tiled-1.7.2.ebuild 
b/dev-games/tiled/tiled-1.7.2.ebuild
new file mode 100644
index 000..e5119614dc1
--- /dev/null
+++ b/dev-games/tiled/tiled-1.7.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+inherit python-single-r1 qmake-utils xdg-utils
+
+DESCRIPTION="A general purpose tile map editor"
+HOMEPAGE="https://www.mapeditor.org/;
+SRC_URI="https://github.com/bjorn/tiled/archive/v${PV}/${P}.tar.gz;
+
+LICENSE="BSD BSD-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   app-arch/zstd:=
+   >=dev-qt/qtcore-5.15:5
+   >=dev-qt/qtdbus-5.15:5
+   >=dev-qt/qtdeclarative-5.15:5
+   >=dev-qt/qtgui-5.15:5
+   >=dev-qt/qtnetwork-5.15:5
+   >=dev-qt/qtwidgets-5.15:5
+   sys-libs/zlib
+   python? ( ${PYTHON_DEPS} )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-qt/linguist-tools:5
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS COPYING NEWS.md README.md )
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   eqmake5 \
+   LIBDIR="/usr/$(get_libdir)" \
+   PREFIX="/usr" \
+   SYSTEM_ZSTD="yes" \
+   DISABLE_PYTHON_PLUGIN="$(usex !python)" \
+   USE_FHS_PLUGIN_PATH="true"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+
+   einstalldocs
+
+   if use examples ; then
+   docompress -x /usr/share/doc/${PF}/examples
+   dodoc -r examples
+   fi
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-games/tiled/

2021-08-13 Thread Michael Palimaka
commit: 6f62db4e0d35619ae02f2e0566bcfc2c9929749b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Aug 14 04:40:01 2021 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Aug 14 04:40:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f62db4e

dev-games/tiled: remove 1.5.0

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-games/tiled/Manifest   |  1 -
 dev-games/tiled/tiled-1.5.0.ebuild | 72 --
 2 files changed, 73 deletions(-)

diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest
index 7db18163e7a..71bff4742ba 100644
--- a/dev-games/tiled/Manifest
+++ b/dev-games/tiled/Manifest
@@ -1,4 +1,3 @@
 DIST tiled-1.4.3.tar.gz 17806808 BLAKE2B 
81b5a32cc1e6f5f3b4af5520752d34572f0e78aad90df435d075b53ac18b39961aa22d23cff614cd83f0883fd2fd2bca69026160cb8b1b727fddaeff5764babe
 SHA512 
1e75e323733e05563bf542364778d95f2f22484ec0d85b4a9e7fac782c117934b37b049724979be5c83de86a3900c7ca2e9f3c5a660c530d2ecd0f023eb22c2e
-DIST tiled-1.5.0.tar.gz 16694406 BLAKE2B 
ccab3ec9f5ac807126ddf5d26e4eaa06357e67ffbd63550bdad93e814ff02350f9138f62114a56b5e64bc6c7fd3f6664ab7da836cab7e478ea7075111fa1cae7
 SHA512 
eb25affdab481db29ab2bbaeb4abafd453b2b43ae47e4b8f9f2fd1ed0d8ed55fdb45ec1bdc0b484ba9a2d63afad5a0c9ba6376304ed4b1eab3918c36a0af29c9
 DIST tiled-1.7.1.tar.gz 16741752 BLAKE2B 
2f9d2d43aa3aa52a2999a6e9e56bfe3846e095ac41236921e9ab42df40b93d0c3373d2f5f13a5f7c9a945ea0c03c4fe6b123ea6a8b3bc71ddc9863c714fccc17
 SHA512 
ed6ba20015434d9de6ae02aecb165a7fb7569a3d74471a7baec5d0f1b78b7905dd12cd565e1f9d1e41ff47e225cdfb81915ae09e3672efc21f16cefb39e03998
 DIST tiled-1.7.2.tar.gz 16743422 BLAKE2B 
0d8ae95b2fc68326d0a4989b26535cd72900ddf9674ad892c287f9d7df2f551fc46c9fa9c8991315f55ae90663a9a5b9c4239fd2ed61c240a36a60102b2710b3
 SHA512 
6d766adbfcb642279eb0ba27410858c54a29ed8e697445b6fb96ce210d0b1433b1ed4715e1d78af3aea8ec71a87b24eea52216bf6236159e0c8fdf87a2339a59

diff --git a/dev-games/tiled/tiled-1.5.0.ebuild 
b/dev-games/tiled/tiled-1.5.0.ebuild
deleted file mode 100644
index fdbcb6753cd..000
--- a/dev-games/tiled/tiled-1.5.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-inherit python-single-r1 qmake-utils xdg-utils
-
-DESCRIPTION="A general purpose tile map editor"
-HOMEPAGE="https://www.mapeditor.org/;
-SRC_URI="https://github.com/bjorn/tiled/archive/v${PV}/${P}.tar.gz;
-
-LICENSE="BSD BSD-2 GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="examples python"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   app-arch/zstd:=
-   >=dev-qt/qtcore-5.15:5
-   >=dev-qt/qtdeclarative-5.15:5
-   >=dev-qt/qtgui-5.15:5
-   >=dev-qt/qtnetwork-5.15:5
-   >=dev-qt/qtwidgets-5.15:5
-   sys-libs/zlib
-   python? ( ${PYTHON_DEPS} )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-qt/linguist-tools:5
-   virtual/pkgconfig
-"
-
-DOCS=( AUTHORS COPYING NEWS.md README.md )
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
-   eqmake5 \
-   LIBDIR="/usr/$(get_libdir)" \
-   PREFIX="/usr" \
-   SYSTEM_ZSTD="yes" \
-   DISABLE_PYTHON_PLUGIN="$(usex !python)" \
-   USE_FHS_PLUGIN_PATH="true"
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-
-   einstalldocs
-
-   if use examples ; then
-   docompress -x /usr/share/doc/${PF}/examples
-   dodoc -r examples
-   fi
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}



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

2021-08-13 Thread Sam James
commit: 18ab15081aaf20413ba59f41277a65d665538df7
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:26:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:26:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ab1508

media-sound/mpg123: add note on SDL 2 support

See: 5e4bae804bb7687033836e506188865e7f05ba19
Signed-off-by: Sam James  gentoo.org>

 media-sound/mpg123/mpg123-1.28.1-r1.ebuild | 3 +++
 media-sound/mpg123/mpg123-1.28.2-r1.ebuild | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/media-sound/mpg123/mpg123-1.28.1-r1.ebuild 
b/media-sound/mpg123/mpg123-1.28.1-r1.ebuild
index a7a65a2ca63..4afe46cf0ce 100644
--- a/media-sound/mpg123/mpg123-1.28.1-r1.ebuild
+++ b/media-sound/mpg123/mpg123-1.28.1-r1.ebuild
@@ -15,6 +15,9 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 
sparc x86 ~amd64-li
 IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa 
coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio 
sdl cpu_flags_x86_sse"
 
 # No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.
+# Note: build system prefers libsdl2 > libsdl. We could in theory add both
+# but it's tricky when it comes to handling switching between them properly.
+# We'd need a USE flag for both sdl1 and sdl2 and to make them clash.
 RDEPEND="
dev-libs/libltdl:0
alsa? ( media-libs/alsa-lib )

diff --git a/media-sound/mpg123/mpg123-1.28.2-r1.ebuild 
b/media-sound/mpg123/mpg123-1.28.2-r1.ebuild
index b54ad5de3c4..29a2b1f3de7 100644
--- a/media-sound/mpg123/mpg123-1.28.2-r1.ebuild
+++ b/media-sound/mpg123/mpg123-1.28.2-r1.ebuild
@@ -15,6 +15,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 
~ppc64 ~riscv ~sparc
 IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa 
coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio 
sdl cpu_flags_x86_sse"
 
 # No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.
+# Note: build system prefers libsdl2 > libsdl. We could in theory add both
+# but it's tricky when it comes to handling switching between them properly.
+# We'd need a USE flag for both sdl1 and sdl2 and to make them clash.
 RDEPEND="
dev-libs/libltdl:0
alsa? ( media-libs/alsa-lib )



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

2021-08-13 Thread Sam James
commit: 871363bb0b65513ed306134f5fd3da66ece9ff87
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 04:10:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 04:10:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=871363bb

net-analyzer/wireshark: add additional missing subslot operator on zstd

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

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

diff --git a/net-analyzer/wireshark/wireshark-.ebuild 
b/net-analyzer/wireshark/wireshark-.ebuild
index fcfa50a0391..9b37d156c11 100644
--- a/net-analyzer/wireshark/wireshark-.ebuild
+++ b/net-analyzer/wireshark/wireshark-.ebuild
@@ -65,7 +65,7 @@ CDEPEND="
sshdump? ( >=net-libs/libssh-0.6 )
ssl? ( net-libs/gnutls:= )
zlib? ( sys-libs/zlib )
-   zstd? ( app-arch/zstd )
+   zstd? ( app-arch/zstd:= )
 "
 # We need perl for `pod2html`. The rest of the perl stuff is to block older
 # and broken installs. #455122



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

2021-08-13 Thread Joshua Kinard
commit: bcd0debe8de4869ed15483c16ae3895927072e14
Author: Joshua Kinard  gentoo  org>
AuthorDate: Sat Aug 14 04:04:04 2021 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Sat Aug 14 04:04:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcd0debe

sys-kernel/mips-sources: Add 'symlink' to IUSE

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.20, Repoman-3.0.3

 sys-kernel/mips-sources/mips-sources-4.14.243.ebuild | 2 +-
 sys-kernel/mips-sources/mips-sources-4.19.203.ebuild | 2 +-
 sys-kernel/mips-sources/mips-sources-5.4.140.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/mips-sources/mips-sources-4.14.243.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.14.243.ebuild
index d94fd01dbe4..0db2aa7260a 100644
--- a/sys-kernel/mips-sources/mips-sources-4.14.243.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.14.243.ebuild
@@ -35,7 +35,7 @@ BASE_KV="$(ver_cut 1-2).0"
 # Portage Vars
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS;
 KEYWORDS="-* ~mips"
-IUSE="experimental ip27 ip28 ip30"
+IUSE="experimental ip27 ip28 ip30 symlink"
 
 # Specify any patches or patch familes to NOT apply here.
 # Use only the 4-digit number followed by a '*'.

diff --git a/sys-kernel/mips-sources/mips-sources-4.19.203.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.19.203.ebuild
index 47378db0cbd..4a6e74a5e68 100644
--- a/sys-kernel/mips-sources/mips-sources-4.19.203.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.19.203.ebuild
@@ -34,7 +34,7 @@ BASE_KV="$(ver_cut 1-2).0"
 # Portage Vars
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS;
 KEYWORDS="-* ~mips"
-IUSE="experimental ip27 ip28 ip30"
+IUSE="experimental ip27 ip28 ip30 symlink"
 
 # Specify any patches or patch familes to NOT apply here.
 # Use only the 4-digit number followed by a '*'.

diff --git a/sys-kernel/mips-sources/mips-sources-5.4.140.ebuild 
b/sys-kernel/mips-sources/mips-sources-5.4.140.ebuild
index 7bf71ea9c61..94978afac91 100644
--- a/sys-kernel/mips-sources/mips-sources-5.4.140.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-5.4.140.ebuild
@@ -34,7 +34,7 @@ BASE_KV="$(ver_cut 1-2)"
 # Portage Vars
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:MIPS;
 KEYWORDS="-* ~mips"
-IUSE="experimental ip27 ip28 ip30"
+IUSE="experimental ip27 ip28 ip30 symlink"
 
 # Specify any patches or patch familes to NOT apply here.
 # Use only the 4-digit number followed by a '*'.



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: c4325c2a30aef078b3adaef10146e631992fe556
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:51:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:53:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4325c2a

games-strategy/warzone2100: minor tidyups

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

 .../warzone2100/warzone2100-4.1.3-r1.ebuild  | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index ef7e9bcae1d..ab190710681 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -17,12 +17,11 @@ S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 )"
 SLOT="0"
-#[[ "${PV}" == *_beta* ]] || \
 KEYWORDS="~amd64 ~x86"
-# upstream requested debug support
+# Upstream requested debug support
 IUSE="debug discord nls videos vulkan"
 
-# TODO: unbundle miniupnpc and quesoglc
+# TODO: unbundle miniupnpc and quesoglc, bug #477610
 # quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
 CDEPEND="
>=dev-games/physfs-2[zip]
@@ -74,8 +73,8 @@ src_prepare() {
# Delete translations we're not using
cleanup_po() {
local locale=${1}
-   einfo "Cleaning up disabled locale: ${1}"
-   rm po/${1}.po || die
+   einfo "Cleaning up disabled locale: ${locale}"
+   rm po/${locale}.po || die
}
 
plocale_for_each_disabled_locale cleanup_po
@@ -86,12 +85,13 @@ src_prepare() {
 src_configure() {
local mycmakeargs=(
-DWZ_DISTRIBUTOR="Gentoo Linux"
-   -DWZ_ENABLE_WARNINGS_AS_ERRORS="OFF"
-   -DWZ_ENABLE_BACKEND_VULKAN="$(usex vulkan)"
-   -DBUILD_SHARED_LIBS="OFF"
-   -DENABLE_NLS="$(usex nls)"
-   -DENABLE_DISCORD="$(usex discord)"
+   -DWZ_ENABLE_WARNINGS_AS_ERRORS=OFF
+   -DWZ_ENABLE_BACKEND_VULKAN=$(usex vulkan)
+   -DBUILD_SHARED_LIBS=OFF
+   -DENABLE_NLS=$(usex nls)
+   -DENABLE_DISCORD=$(usex discord)
)
+
cmake_src_configure
 }
 



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

2021-08-13 Thread Sam James
commit: a22ece3cedc4c02017af1186c6d347cb73ecc4c1
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:49:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:49:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a22ece3c

net-libs/nodejs: Stabilize 12.22.5-r1 amd64, #807775

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

 net-libs/nodejs/nodejs-12.22.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nodejs/nodejs-12.22.5-r1.ebuild 
b/net-libs/nodejs/nodejs-12.22.5-r1.ebuild
index e9e058b5a4e..ec373926c7b 100644
--- a/net-libs/nodejs/nodejs-12.22.5-r1.ebuild
+++ b/net-libs/nodejs/nodejs-12.22.5-r1.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz;
SLOT="0/$(ver_cut 1)"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x64-macos"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x64-macos"
S="${WORKDIR}/node-v${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/

2021-08-13 Thread Sam James
commit: e62f8b806e31d9482c71a439381a417900fa790f
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:49:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:49:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e62f8b80

net-dns/c-ares: Stabilize 1.17.2 amd64, #807775

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

 net-dns/c-ares/c-ares-1.17.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.17.2.ebuild 
b/net-dns/c-ares/c-ares-1.17.2.ebuild
index 4db3832180f..87c0e4720e4 100644
--- a/net-dns/c-ares/c-ares-1.17.2.ebuild
+++ b/net-dns/c-ares/c-ares-1.17.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz;
 # Subslot = SONAME of libcares.so.2
 SLOT="0/2"
 LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc64-solaris"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 



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

2021-08-13 Thread Sam James
commit: 38433cf427e5bb9639bfd32024756fffbe07207d
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:50:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:50:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38433cf4

net-libs/nodejs: Stabilize 14.17.5-r1 amd64, #807775

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

 net-libs/nodejs/nodejs-14.17.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nodejs/nodejs-14.17.5-r1.ebuild 
b/net-libs/nodejs/nodejs-14.17.5-r1.ebuild
index dcf510a542a..db0eeada210 100644
--- a/net-libs/nodejs/nodejs-14.17.5-r1.ebuild
+++ b/net-libs/nodejs/nodejs-14.17.5-r1.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz;
SLOT="0/$(ver_cut 1)"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x64-macos"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x64-macos"
S="${WORKDIR}/node-v${PV}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: 1cce177142ef87e4d3110964b3aaab41ad37
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:47:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cce1771

games-strategy/warzone2100: drop 4.0.1-r1

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

 games-strategy/warzone2100/Manifest|   1 -
 .../warzone2100/warzone2100-4.0.1-r1.ebuild| 116 -
 2 files changed, 117 deletions(-)

diff --git a/games-strategy/warzone2100/Manifest 
b/games-strategy/warzone2100/Manifest
index d459950e2cd..2f0c2669e2c 100644
--- a/games-strategy/warzone2100/Manifest
+++ b/games-strategy/warzone2100/Manifest
@@ -1,4 +1,3 @@
-DIST warzone2100-4.0.1.tar.xz 337713608 BLAKE2B 
4f1bf79e71c13cd507890f2fe4131687fd70bc3b302aea68c7f17314a0d596797a34d9ab46a6736e98d823122199fb0dfcfb62b1f6b702c6d8ba99eb3c338c9e
 SHA512 
820ab41ebc0ca3e81aff67f90eb3946f6a889776b243795c0cab8dbea44d4c5c3620c849cb70fa45c40af14b9a5667823373f9887078bb2b4feb30d2af007180
 DIST warzone2100-4.1.2.tar.xz 337480924 BLAKE2B 
2042aedd43a3515bf6ccfc210dd02502bc20d487ff96ce763f573f0dd92ef08577ee21fd54237b4cf4f99c31ed33197febc70edd25d0e0a515e286167d815f9d
 SHA512 
7218f98757e421d8ccf6c36de5e310060b52506d4e10c3cba6e32d1917da30b9deb52b8081026d8efc84ef44842a7db8604d4a86157409281a30bbcc52b556f6
 DIST warzone2100-4.1.3.tar.xz 337479212 BLAKE2B 
07d1788fc2f8e5073a15231d5bf0c8c50dc0413522ea1589b064190144906fb58008faab66a295cec7759a1036f4d007ef8a42cffd9ef588fde1116b6cd7a38b
 SHA512 
64126a1a5aab8b766cdfc70b8d96465ad451bd6a31e33be963eb89664b062dfe58e195ac3cbc087a9c008519c0e13003d9750bcb428b0e0ff12c82bf9940be3f
 DIST warzone2100-videos-2.2.wz 571937134 BLAKE2B 
60b70a71bd920e2d72ded5d519b17db2f3db4b0289edadeb58059a21aba7038b95219dc44cb807754461d1a9bdca60f0d7698be68622b8bd64a55efa949622d3
 SHA512 
ca1a1af51296afdaca137114821508c5783f077090e665eae0f6df895855f57c43f84434706309e819417f5f35d1c649bd14e96dc9fbbb1252d30a4f9a223cf6

diff --git a/games-strategy/warzone2100/warzone2100-4.0.1-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.0.1-r1.ebuild
deleted file mode 100644
index d014990820b..000
--- a/games-strategy/warzone2100/warzone2100-4.0.1-r1.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop xdg
-
-MY_PV=$(ver_cut 1-2)
-VIDEOS_PV=2.2
-VIDEOS_P=${PN}-videos-${VIDEOS_PV}.wz
-DESCRIPTION="3D real-time strategy game"
-HOMEPAGE="https://wz2100.net/;
-SRC_URI="mirror://sourceforge/warzone2100/releases/${PV}/${PN}_src.tar.xz -> 
${P}.tar.xz
-   videos? ( 
mirror://sourceforge/warzone2100/warzone2100/Videos/${VIDEOS_PV}/high-quality-en/sequences.wz
 -> ${VIDEOS_P} )"
-
-LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain"
-SLOT="0"
-#[[ "${PV}" == *_beta* ]] || \
-KEYWORDS="~amd64 ~x86"
-# upstream requested debug support
-IUSE="debug discord nls videos vulkan"
-
-# TODO: unbundle miniupnpc and quesoglc
-# quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
-CDEPEND="
-   >=dev-games/physfs-2[zip]
-   >=dev-libs/libsodium-1.0.14:=
-   dev-libs/openssl:0=
-   media-libs/freetype:2
-   media-libs/glew:=
-   media-libs/harfbuzz:=
-   media-libs/libogg
-   media-libs/libpng:=
-   media-libs/libsdl2[opengl,video,X]
-   media-libs/libtheora
-   media-libs/libvorbis
-   media-libs/openal
-   sys-libs/zlib
-   virtual/glu
-   virtual/opengl
-   x11-libs/libX11
-   x11-libs/libXrandr
-   nls? ( virtual/libintl )
-   vulkan? ( media-libs/libsdl2:=[vulkan] )
-"
-DEPEND="
-   ${CDEPEND}
-   app-text/asciidoc
-   dev-libs/fribidi
-   media-libs/fontconfig
-"
-RDEPEND="
-   ${CDEPEND}
-   media-fonts/dejavu
-"
-BDEPEND="
-   app-arch/zip
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-"
-
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
-   unpack ${P}.tar.xz
-}
-
-src_prepare() {
-   default
-
-   sed -i -e 's/#top_builddir/top_builddir/' po/Makevars || die
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWZ_DISTRIBUTOR="Gentoo"
-   -DWZ_ENABLE_WARNINGS_AS_ERRORS="OFF"
-   -DWZ_ENABLE_BACKEND_VULKAN="$(usex vulkan)"
-   -DWZ_PORTABLE="OFF"
-   -DBUILD_SHARED_LIBS="OFF"
-   -DENABLE_NLS="$(usex nls)"
-   -DENABLE_DISCORD="$(usex discord)"
-   )
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile
-
-   asciidoc -b html5 doc/quickstartguide.asciidoc || die
-}
-
-src_install() {
-   local HTML_DOCS=( doc/quickstartguide.html doc/docbook-xsl.css 
doc/ScriptingManual.htm )
-   local DOCS=( README.md doc/images doc/Scripting.md doc/js-globals.md )
-   default
-
-   insinto /usr/bin
-   dobin "${BUILD_DIR}"/src/${PN}
-
-  

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

2021-08-13 Thread Sam James
commit: 98d0ddd0c25f080ab9811a8994105b6475074e21
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:09:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d0ddd0

sys-apps/iproute2: add missing subslot dependencies

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

 .../{iproute2-5.10.0-r1.ebuild => iproute2-5.10.0-r2.ebuild}| 4 ++--
 .../iproute2/{iproute2-5.12.0.ebuild => iproute2-5.12.0-r1.ebuild}  | 6 +++---
 .../iproute2/{iproute2-5.13.0.ebuild => iproute2-5.13.0-r1.ebuild}  | 6 +++---
 sys-apps/iproute2/iproute2-.ebuild  | 6 +++---
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-5.10.0-r1.ebuild 
b/sys-apps/iproute2/iproute2-5.10.0-r2.ebuild
similarity index 98%
rename from sys-apps/iproute2/iproute2-5.10.0-r1.ebuild
rename to sys-apps/iproute2/iproute2-5.10.0-r2.ebuild
index cf963710340..09e05b28c60 100644
--- a/sys-apps/iproute2/iproute2-5.10.0-r1.ebuild
+++ b/sys-apps/iproute2/iproute2-5.10.0-r2.ebuild
@@ -23,11 +23,11 @@ IUSE="atm berkdb caps elf +iptables ipv6 libbsd minimal 
selinux"
 # We could make libmnl optional, but it's tiny, so eh
 RDEPEND="
!net-misc/arpd
-   !minimal? ( net-libs/libmnl )
+   !minimal? ( net-libs/libmnl:= )
atm? ( net-dialup/linux-atm )
berkdb? ( sys-libs/db:= )
caps? ( sys-libs/libcap )
-   elf? ( virtual/libelf )
+   elf? ( virtual/libelf:= )
iptables? ( >=net-firewall/iptables-1.4.20:= )
libbsd? ( dev-libs/libbsd )
selinux? ( sys-libs/libselinux )

diff --git a/sys-apps/iproute2/iproute2-5.12.0.ebuild 
b/sys-apps/iproute2/iproute2-5.12.0-r1.ebuild
similarity index 98%
rename from sys-apps/iproute2/iproute2-5.12.0.ebuild
rename to sys-apps/iproute2/iproute2-5.12.0-r1.ebuild
index ae69e78cd83..14d225e3e58 100644
--- a/sys-apps/iproute2/iproute2-5.12.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.12.0-r1.ebuild
@@ -23,12 +23,12 @@ IUSE="atm berkdb bpf caps elf +iptables ipv6 libbsd minimal 
selinux"
 # We could make libmnl optional, but it's tiny, so eh
 RDEPEND="
!net-misc/arpd
-   !minimal? ( net-libs/libmnl )
+   !minimal? ( net-libs/libmnl:= )
atm? ( net-dialup/linux-atm )
berkdb? ( sys-libs/db:= )
-   bpf? ( dev-libs/libbpf )
+   bpf? ( dev-libs/libbpf:= )
caps? ( sys-libs/libcap )
-   elf? ( virtual/libelf )
+   elf? ( virtual/libelf:= )
iptables? ( >=net-firewall/iptables-1.4.20:= )
libbsd? ( dev-libs/libbsd )
selinux? ( sys-libs/libselinux )

diff --git a/sys-apps/iproute2/iproute2-5.13.0.ebuild 
b/sys-apps/iproute2/iproute2-5.13.0-r1.ebuild
similarity index 98%
rename from sys-apps/iproute2/iproute2-5.13.0.ebuild
rename to sys-apps/iproute2/iproute2-5.13.0-r1.ebuild
index cf3d0a74aee..87577d20ec6 100644
--- a/sys-apps/iproute2/iproute2-5.13.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.13.0-r1.ebuild
@@ -23,12 +23,12 @@ IUSE="atm berkdb bpf caps elf +iptables ipv6 libbsd minimal 
selinux"
 # We could make libmnl optional, but it's tiny, so eh
 RDEPEND="
!net-misc/arpd
-   !minimal? ( net-libs/libmnl )
+   !minimal? ( net-libs/libmnl:= )
atm? ( net-dialup/linux-atm )
berkdb? ( sys-libs/db:= )
-   bpf? ( dev-libs/libbpf )
+   bpf? ( dev-libs/libbpf:= )
caps? ( sys-libs/libcap )
-   elf? ( virtual/libelf )
+   elf? ( virtual/libelf:= )
iptables? ( >=net-firewall/iptables-1.4.20:= )
libbsd? ( dev-libs/libbsd )
selinux? ( sys-libs/libselinux )

diff --git a/sys-apps/iproute2/iproute2-.ebuild 
b/sys-apps/iproute2/iproute2-.ebuild
index ae69e78cd83..14d225e3e58 100644
--- a/sys-apps/iproute2/iproute2-.ebuild
+++ b/sys-apps/iproute2/iproute2-.ebuild
@@ -23,12 +23,12 @@ IUSE="atm berkdb bpf caps elf +iptables ipv6 libbsd minimal 
selinux"
 # We could make libmnl optional, but it's tiny, so eh
 RDEPEND="
!net-misc/arpd
-   !minimal? ( net-libs/libmnl )
+   !minimal? ( net-libs/libmnl:= )
atm? ( net-dialup/linux-atm )
berkdb? ( sys-libs/db:= )
-   bpf? ( dev-libs/libbpf )
+   bpf? ( dev-libs/libbpf:= )
caps? ( sys-libs/libcap )
-   elf? ( virtual/libelf )
+   elf? ( virtual/libelf:= )
iptables? ( >=net-firewall/iptables-1.4.20:= )
libbsd? ( dev-libs/libbsd )
selinux? ( sys-libs/libselinux )



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

2021-08-13 Thread Sam James
commit: 05b39e0c43918b1bcc4ad2168bd97f45ad2b03c6
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:12:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b39e0c

net-libs/nodejs: add missing subslot dependencies

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

 net-libs/nodejs/{nodejs-12.22.1.ebuild => nodejs-12.22.1-r1.ebuild} | 6 +++---
 net-libs/nodejs/{nodejs-12.22.3.ebuild => nodejs-12.22.3-r1.ebuild} | 6 +++---
 net-libs/nodejs/{nodejs-12.22.5.ebuild => nodejs-12.22.5-r1.ebuild} | 6 +++---
 net-libs/nodejs/{nodejs-14.16.1.ebuild => nodejs-14.16.1-r1.ebuild} | 6 +++---
 net-libs/nodejs/{nodejs-14.17.3.ebuild => nodejs-14.17.3-r1.ebuild} | 6 +++---
 net-libs/nodejs/{nodejs-14.17.5.ebuild => nodejs-14.17.5-r1.ebuild} | 6 +++---
 net-libs/nodejs/{nodejs-16.6.1.ebuild => nodejs-16.6.1-r1.ebuild}   | 6 +++---
 net-libs/nodejs/{nodejs-16.6.2.ebuild => nodejs-16.6.2-r1.ebuild}   | 6 +++---
 net-libs/nodejs/nodejs-.ebuild  | 6 +++---
 9 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/net-libs/nodejs/nodejs-12.22.1.ebuild 
b/net-libs/nodejs/nodejs-12.22.1-r1.ebuild
similarity index 98%
rename from net-libs/nodejs/nodejs-12.22.1.ebuild
rename to net-libs/nodejs/nodejs-12.22.1-r1.ebuild
index 930eb364bbf..3d3ce369fbb 100644
--- a/net-libs/nodejs/nodejs-12.22.1.ebuild
+++ b/net-libs/nodejs/nodejs-12.22.1-r1.ebuild
@@ -25,11 +25,11 @@ REQUIRED_USE="
 "
 
 RDEPEND="
-   >=app-arch/brotli-1.0.9
+   >=app-arch/brotli-1.0.9:=
>=dev-libs/libuv-1.39.0:=
-   >=net-dns/c-ares-1.16.0
+   >=net-dns/c-ares-1.16.0:=
>=net-libs/http-parser-2.9.3:=
-   >=net-libs/nghttp2-1.40.0
+   >=net-libs/nghttp2-1.40.0:=
sys-libs/zlib
icu? ( >=dev-libs/icu-64.2:= )
system-ssl? (

diff --git a/net-libs/nodejs/nodejs-12.22.3.ebuild 
b/net-libs/nodejs/nodejs-12.22.3-r1.ebuild
similarity index 98%
rename from net-libs/nodejs/nodejs-12.22.3.ebuild
rename to net-libs/nodejs/nodejs-12.22.3-r1.ebuild
index b8cc085d244..27428510de8 100644
--- a/net-libs/nodejs/nodejs-12.22.3.ebuild
+++ b/net-libs/nodejs/nodejs-12.22.3-r1.ebuild
@@ -33,11 +33,11 @@ REQUIRED_USE="
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-   >=app-arch/brotli-1.0.9
+   >=app-arch/brotli-1.0.9:=
>=dev-libs/libuv-1.39.0:=
-   >=net-dns/c-ares-1.16.0
+   >=net-dns/c-ares-1.16.0:=
>=net-libs/http-parser-2.9.3:=
-   >=net-libs/nghttp2-1.40.0
+   >=net-libs/nghttp2-1.40.0:=
sys-libs/zlib
icu? ( >=dev-libs/icu-64.2:= )
system-ssl? (

diff --git a/net-libs/nodejs/nodejs-12.22.5.ebuild 
b/net-libs/nodejs/nodejs-12.22.5-r1.ebuild
similarity index 98%
rename from net-libs/nodejs/nodejs-12.22.5.ebuild
rename to net-libs/nodejs/nodejs-12.22.5-r1.ebuild
index a8662cb49d0..e9e058b5a4e 100644
--- a/net-libs/nodejs/nodejs-12.22.5.ebuild
+++ b/net-libs/nodejs/nodejs-12.22.5-r1.ebuild
@@ -33,11 +33,11 @@ REQUIRED_USE="
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-   >=app-arch/brotli-1.0.9
+   >=app-arch/brotli-1.0.9:=
>=dev-libs/libuv-1.39.0:=
-   >=net-dns/c-ares-1.17.2
+   >=net-dns/c-ares-1.17.2:=
>=net-libs/http-parser-2.9.3:=
-   >=net-libs/nghttp2-1.40.0
+   >=net-libs/nghttp2-1.40.0:=
sys-libs/zlib
icu? ( >=dev-libs/icu-64.2:= )
system-ssl? (

diff --git a/net-libs/nodejs/nodejs-14.16.1.ebuild 
b/net-libs/nodejs/nodejs-14.16.1-r1.ebuild
similarity index 98%
rename from net-libs/nodejs/nodejs-14.16.1.ebuild
rename to net-libs/nodejs/nodejs-14.16.1-r1.ebuild
index 6143804f9ac..472fe628bfe 100644
--- a/net-libs/nodejs/nodejs-14.16.1.ebuild
+++ b/net-libs/nodejs/nodejs-14.16.1-r1.ebuild
@@ -25,10 +25,10 @@ REQUIRED_USE="inspector? ( icu ssl )
 # FIXME: test-fs-mkdir fails with "no such file or directory". Investigate.
 RESTRICT="test"
 
-RDEPEND=">=app-arch/brotli-1.0.9
+RDEPEND=">=app-arch/brotli-1.0.9:=
>=dev-libs/libuv-1.40.0:=
-   >=net-dns/c-ares-1.16.1
-   >=net-libs/nghttp2-1.41.0
+   >=net-dns/c-ares-1.16.1:=
+   >=net-libs/nghttp2-1.41.0:=
sys-libs/zlib
system-icu? ( >=dev-libs/icu-67:= )
system-ssl? (

diff --git a/net-libs/nodejs/nodejs-14.17.3.ebuild 
b/net-libs/nodejs/nodejs-14.17.3-r1.ebuild
similarity index 98%
rename from net-libs/nodejs/nodejs-14.17.3.ebuild
rename to net-libs/nodejs/nodejs-14.17.3-r1.ebuild
index 50bc635ffea..e18f47e1cf7 100644
--- a/net-libs/nodejs/nodejs-14.17.3.ebuild
+++ b/net-libs/nodejs/nodejs-14.17.3-r1.ebuild
@@ -31,10 +31,10 @@ REQUIRED_USE="inspector? ( icu ssl )
 
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=app-arch/brotli-1.0.9
+RDEPEND=">=app-arch/brotli-1.0.9:=
>=dev-libs/libuv-1.40.0:=
-   >=net-dns/c-ares-1.16.1
-   >=net-libs/nghttp2-1.41.0
+   >=net-dns/c-ares-1.16.1:=
+   >=net-libs/nghttp2-1.41.0:=
sys-libs/zlib
   

[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: c47ce3628b55548b199680b1aa57985bc314fa87
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:43:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c47ce362

games-strategy/warzone2100: install translations

Use the CMake install target instead of our own
logic in src_install - this gives us the translations for free.

We now use plocale.eclass to install the right subset
of translations/localised strings requested by the user.

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

 .../warzone2100/warzone2100-4.1.3-r1.ebuild| 31 +++---
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index d0b3cf7236a..a76f0c0ace4 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=7
 
-inherit cmake desktop xdg
+PLOCALES="af_ZA bg_BG ca_ES cs da de el en_GB eo es et_EE fa_IR fi fr fy ga 
he_IL hr hu id_ID id it ko la lt nb nl pl pt_BR pt ro ru sk sl tr tt_RU uk_UA 
zh_CN zh_TW"
+inherit cmake desktop plocale xdg
 
 MY_PV=$(ver_cut 1-2)
 VIDEOS_PV=2.2
@@ -70,6 +71,15 @@ src_prepare() {
 
sed -i -e 's/#top_builddir/top_builddir/' po/Makevars || die
 
+   # Delete translations we're not using
+   cleanup_po() {
+   local locale=${1}
+   einfo "Cleaning up disabled locale: ${1}"
+   rm po/${1}.po || die
+   }
+
+   plocale_for_each_disabled_locale cleanup_po
+
cmake_src_prepare
 }
 
@@ -92,24 +102,15 @@ src_compile() {
 }
 
 src_install() {
-   default
+   cmake_src_install
 
-   insinto /usr/bin
-   dobin "${BUILD_DIR}"/src/${PN}
+   rm "${ED}"/usr/bin/.portable || die
 
-   insinto /usr/share/${PN}
-   doins "${BUILD_DIR}"/data/base.wz
-   doins "${BUILD_DIR}"/data/mp.wz
+   # We cover licencing within the ebuild itself
+   rm "${ED}"/usr/share/doc/${PF}/COPYING* \
+   "${ED}"/usr/share/doc/${PF}/copyright || die
 
if use videos ; then
newins "${DISTDIR}"/${VIDEOS_P} sequences.wz
fi
-
-   insinto /usr/share/${PN}
-   doins -r data/music
-
-   doman "${BUILD_DIR}"/doc/warzone2100.6
-
-   doicon -s 128 icons/warzone2100.png
-   domenu icons/warzone2100.desktop
 }



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

2021-08-13 Thread Sam James
commit: e3b49a82ab22c1df1945b891e0bbdb06b3c4ccad
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:56:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b49a82

media-sound/ogmtools: add missing libogg, libvorbis deps (+ subslot deps)

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

 .../ogmtools/{ogmtools-1.5-r2.ebuild => ogmtools-1.5-r3.ebuild}   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-sound/ogmtools/ogmtools-1.5-r2.ebuild 
b/media-sound/ogmtools/ogmtools-1.5-r3.ebuild
similarity index 92%
rename from media-sound/ogmtools/ogmtools-1.5-r2.ebuild
rename to media-sound/ogmtools/ogmtools-1.5-r3.ebuild
index 31e8539b757..818583eb094 100644
--- a/media-sound/ogmtools/ogmtools-1.5-r2.ebuild
+++ b/media-sound/ogmtools/ogmtools-1.5-r3.ebuild
@@ -15,8 +15,10 @@ KEYWORDS="amd64 ppc ppc64 sparc x86"
 IUSE="dvd"
 
 RDEPEND="
+   media-libs/libogg
+   media-libs/libvorbis
media-sound/vorbis-tools
-   dvd? ( media-libs/libdvdread )"
+   dvd? ( media-libs/libdvdread:= )"
 DEPEND="${RDEPEND}"
 
 PATCHES=(



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

2021-08-13 Thread Sam James
commit: 4d944853edf7e11bb6d3f00c9587b947871375ac
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:04:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d944853

net-misc/curl: add missing subslot dependencies

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

 net-misc/curl/{curl-7.77.0-r1.ebuild => curl-7.77.0-r2.ebuild} | 4 ++--
 net-misc/curl/{curl-7.78.0.ebuild => curl-7.78.0-r1.ebuild}| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-misc/curl/curl-7.77.0-r1.ebuild 
b/net-misc/curl/curl-7.77.0-r2.ebuild
similarity index 98%
rename from net-misc/curl/curl-7.77.0-r1.ebuild
rename to net-misc/curl/curl-7.77.0-r2.ebuild
index 384c3258752..6d26aadf08f 100644
--- a/net-misc/curl/curl-7.77.0-r1.ebuild
+++ b/net-misc/curl/curl-7.77.0-r2.ebuild
@@ -55,14 +55,14 @@ RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
app-misc/ca-certificates
)
)
-   http2? ( net-libs/nghttp2[${MULTILIB_USEDEP}] )
+   http2? ( net-libs/nghttp2:=[${MULTILIB_USEDEP}] )
nghttp3? (
net-libs/nghttp3[${MULTILIB_USEDEP}]
net-libs/ngtcp2[ssl,${MULTILIB_USEDEP}]
)
quiche? ( >=net-libs/quiche-0.3.0[${MULTILIB_USEDEP}] )
idn? ( net-dns/libidn2:0=[static-libs?,${MULTILIB_USEDEP}] )
-   adns? ( net-dns/c-ares:0[${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0=[${MULTILIB_USEDEP}] )
kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
metalink? ( >=media-libs/libmetalink-0.1.1[${MULTILIB_USEDEP}] )
rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )

diff --git a/net-misc/curl/curl-7.78.0.ebuild 
b/net-misc/curl/curl-7.78.0-r1.ebuild
similarity index 98%
rename from net-misc/curl/curl-7.78.0.ebuild
rename to net-misc/curl/curl-7.78.0-r1.ebuild
index 2de4ba10d80..140887e01d1 100644
--- a/net-misc/curl/curl-7.78.0.ebuild
+++ b/net-misc/curl/curl-7.78.0-r1.ebuild
@@ -55,14 +55,14 @@ RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
app-misc/ca-certificates
)
)
-   http2? ( net-libs/nghttp2[${MULTILIB_USEDEP}] )
+   http2? ( net-libs/nghttp2:=[${MULTILIB_USEDEP}] )
nghttp3? (
net-libs/nghttp3[${MULTILIB_USEDEP}]
net-libs/ngtcp2[ssl,${MULTILIB_USEDEP}]
)
quiche? ( >=net-libs/quiche-0.3.0[${MULTILIB_USEDEP}] )
idn? ( net-dns/libidn2:0=[static-libs?,${MULTILIB_USEDEP}] )
-   adns? ( net-dns/c-ares:0[${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0=[${MULTILIB_USEDEP}] )
kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
ssh? ( net-libs/libssh2[${MULTILIB_USEDEP}] )



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: bae6d3953e48c31853a15a28c0794eac039f904e
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:45:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae6d395

games-strategy/warzone2100: update LICENSE for Vulkan

The Vulkan support is licensed under GPLv3.

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

 games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index 75248ab7584..ef7e9bcae1d 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://sourceforge/warzone2100/releases/${PV}/${PN}_src.tar.xz -> ${P
videos? ( 
mirror://sourceforge/warzone2100/warzone2100/Videos/${VIDEOS_PV}/high-quality-en/sequences.wz
 -> ${VIDEOS_P} )"
 S="${WORKDIR}/${PN}"
 
-LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain"
+LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 )"
 SLOT="0"
 #[[ "${PV}" == *_beta* ]] || \
 KEYWORDS="~amd64 ~x86"



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

2021-08-13 Thread Sam James
commit: aa7ac6eeae88f2cc06b9b889656526a77be1871c
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:21:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa7ac6ee

fixup! net-analyzer/wireshark: add missing subslot dependencies

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

 net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild | 10 +-
 net-analyzer/wireshark/wireshark-.ebuild | 12 ++--
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild 
b/net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild
index 0f1c44767c2..f0021c06774 100644
--- a/net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild
+++ b/net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild
@@ -33,18 +33,18 @@ CDEPEND="
acct-group/pcap
>=dev-libs/glib-2.32:2
>=net-dns/c-ares-1.5:=
-   dev-libs/libgcrypt:0:=
+   dev-libs/libgcrypt:=
bcg729? ( media-libs/bcg729 )
-   brotli? ( app-arch/brotli )
+   brotli? ( app-arch/brotli:= )
ciscodump? ( >=net-libs/libssh-0.6 )
filecaps? ( sys-libs/libcap )
-   http2? ( net-libs/nghttp2 )
+   http2? ( net-libs/nghttp2:= )
ilbc? ( media-libs/libilbc )
kerberos? ( virtual/krb5 )
libxml2? ( dev-libs/libxml2 )
lua? ( ${LUA_DEPS} )
-   lz4? ( app-arch/lz4 )
-   maxminddb? ( dev-libs/libmaxminddb )
+   lz4? ( app-arch/lz4:= )
+   maxminddb? ( dev-libs/libmaxminddb:= )
minizip? ( sys-libs/zlib[minizip] )
netlink? ( dev-libs/libnl:3 )
opus? ( media-libs/opus )

diff --git a/net-analyzer/wireshark/wireshark-.ebuild 
b/net-analyzer/wireshark/wireshark-.ebuild
index 7fd9e324e1a..fcfa50a0391 100644
--- a/net-analyzer/wireshark/wireshark-.ebuild
+++ b/net-analyzer/wireshark/wireshark-.ebuild
@@ -32,19 +32,19 @@ IUSE+=" sdjournal test +text2pcap tfshark +tshark +udpdump 
zlib +zstd"
 CDEPEND="
acct-group/pcap
>=dev-libs/glib-2.32:2
-   >=net-dns/c-ares-1.5
-   dev-libs/libgcrypt:0
+   >=net-dns/c-ares-1.5:=
+   dev-libs/libgcrypt:=
bcg729? ( media-libs/bcg729 )
-   brotli? ( app-arch/brotli )
+   brotli? ( app-arch/brotli:= )
ciscodump? ( >=net-libs/libssh-0.6 )
filecaps? ( sys-libs/libcap )
-   http2? ( net-libs/nghttp2 )
+   http2? ( net-libs/nghttp2:= )
ilbc? ( media-libs/libilbc )
kerberos? ( virtual/krb5 )
libxml2? ( dev-libs/libxml2 )
lua? ( ${LUA_DEPS} )
-   lz4? ( app-arch/lz4 )
-   maxminddb? ( dev-libs/libmaxminddb )
+   lz4? ( app-arch/lz4:= )
+   maxminddb? ( dev-libs/libmaxminddb:= )
minizip? ( sys-libs/zlib[minizip] )
netlink? ( dev-libs/libnl:3 )
opus? ( media-libs/opus )



[gentoo-commits] repo/gentoo:master commit in: sys-block/parted/

2021-08-13 Thread Sam James
commit: 952bf963ac1a0ec992200b2b61e4cd2c3d6566fd
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:06:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=952bf963

sys-block/parted: add sys-apps/util-linux dependency for libuuid

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

 sys-block/parted/parted-3.4.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-block/parted/parted-3.4.ebuild 
b/sys-block/parted/parted-3.4.ebuild
index 2e26bc74904..dc49893faa3 100644
--- a/sys-block/parted/parted-3.4.ebuild
+++ b/sys-block/parted/parted-3.4.ebuild
@@ -15,8 +15,10 @@ SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 IUSE="+debug device-mapper nls readline"
 
+# util-linux for libuuid
 RDEPEND="
>=sys-fs/e2fsprogs-1.27
+   sys-apps/util-linux
device-mapper? ( >=sys-fs/lvm2-2.02.45 )
readline? (
>=sys-libs/ncurses-5.7-r7:0=



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: 5d3ca252fc391a042c493986c48588e25a74a433
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:43:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d3ca252

games-strategy/warzone2100: add missing subslot dependencies

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

 .../{warzone2100-4.0.1.ebuild => warzone2100-4.0.1-r1.ebuild}   | 6 +++---
 .../{warzone2100-4.1.2.ebuild => warzone2100-4.1.2-r1.ebuild}   | 6 +++---
 .../{warzone2100-4.1.3.ebuild => warzone2100-4.1.3-r1.ebuild}   | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/games-strategy/warzone2100/warzone2100-4.0.1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.0.1-r1.ebuild
similarity index 97%
rename from games-strategy/warzone2100/warzone2100-4.0.1.ebuild
rename to games-strategy/warzone2100/warzone2100-4.0.1-r1.ebuild
index d1a62cac086..d014990820b 100644
--- a/games-strategy/warzone2100/warzone2100-4.0.1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.0.1-r1.ebuild
@@ -24,13 +24,13 @@ IUSE="debug discord nls videos vulkan"
 # quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
 CDEPEND="
>=dev-games/physfs-2[zip]
-   >=dev-libs/libsodium-1.0.14
+   >=dev-libs/libsodium-1.0.14:=
dev-libs/openssl:0=
media-libs/freetype:2
media-libs/glew:=
-   media-libs/harfbuzz
+   media-libs/harfbuzz:=
media-libs/libogg
-   media-libs/libpng:0
+   media-libs/libpng:=
media-libs/libsdl2[opengl,video,X]
media-libs/libtheora
media-libs/libvorbis

diff --git a/games-strategy/warzone2100/warzone2100-4.1.2.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.2-r1.ebuild
similarity index 97%
rename from games-strategy/warzone2100/warzone2100-4.1.2.ebuild
rename to games-strategy/warzone2100/warzone2100-4.1.2-r1.ebuild
index cb780494cdd..78e0c7a0374 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.2.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.2-r1.ebuild
@@ -25,13 +25,13 @@ IUSE="debug discord nls videos vulkan"
 # quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
 CDEPEND="
>=dev-games/physfs-2[zip]
-   >=dev-libs/libsodium-1.0.14
+   >=dev-libs/libsodium-1.0.14:=
dev-libs/openssl:0=
media-libs/freetype:2
media-libs/glew:=
-   media-libs/harfbuzz
+   media-libs/harfbuzz:=
media-libs/libogg
-   media-libs/libpng:0
+   media-libs/libpng:=
media-libs/libsdl2[opengl,video,X]
media-libs/libtheora
media-libs/libvorbis

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
similarity index 97%
rename from games-strategy/warzone2100/warzone2100-4.1.3.ebuild
rename to games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index cb780494cdd..78e0c7a0374 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -25,13 +25,13 @@ IUSE="debug discord nls videos vulkan"
 # quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
 CDEPEND="
>=dev-games/physfs-2[zip]
-   >=dev-libs/libsodium-1.0.14
+   >=dev-libs/libsodium-1.0.14:=
dev-libs/openssl:0=
media-libs/freetype:2
media-libs/glew:=
-   media-libs/harfbuzz
+   media-libs/harfbuzz:=
media-libs/libogg
-   media-libs/libpng:0
+   media-libs/libpng:=
media-libs/libsdl2[opengl,video,X]
media-libs/libtheora
media-libs/libvorbis



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

2021-08-13 Thread Sam James
commit: 66bb79755be9ebe3ec62d4128d7b15845c715e8f
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:13:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66bb7975

net-libs/libnsl: add net-libs/libtirpc:= subslot dependency

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

 net-libs/libnsl/{libnsl-1.3.0-r1.ebuild => libnsl-1.3.0-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libnsl/libnsl-1.3.0-r1.ebuild 
b/net-libs/libnsl/libnsl-1.3.0-r2.ebuild
similarity index 94%
rename from net-libs/libnsl/libnsl-1.3.0-r1.ebuild
rename to net-libs/libnsl/libnsl-1.3.0-r2.ebuild
index f17bbe4bec4..cdf792d8334 100644
--- a/net-libs/libnsl/libnsl-1.3.0-r1.ebuild
+++ b/net-libs/libnsl/libnsl-1.3.0-r2.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 ~riscv ~s390 s
 IUSE="static-libs"
 
 DEPEND="
-   >=net-libs/libtirpc-1.2.0[${MULTILIB_USEDEP}]
+   >=net-libs/libtirpc-1.2.0:=[${MULTILIB_USEDEP}]
 "
 RDEPEND="${DEPEND}
!

[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: fd5cd4a4f86d066787fb6b21e2d4e72c2ed2fbef
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:44:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5cd4a4

games-strategy/warzone2100: app-text/asciidoc belongs in BDEPEND

We use it on CBUILD to generate documentation in src_compile.

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

 games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index a76f0c0ace4..75248ab7584 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -45,7 +45,6 @@ CDEPEND="
 "
 DEPEND="
${CDEPEND}
-   app-text/asciidoc
dev-libs/fribidi
media-libs/fontconfig
 "
@@ -55,6 +54,7 @@ RDEPEND="
 "
 BDEPEND="
app-arch/zip
+   app-text/asciidoc
virtual/pkgconfig
nls? ( sys-devel/gettext )
 "



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

2021-08-13 Thread Sam James
commit: 5e4bae804bb7687033836e506188865e7f05ba19
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:55:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e4bae80

media-sound/mpg123: now uses SDL 2

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

 media-sound/mpg123/{mpg123-1.28.1.ebuild => mpg123-1.28.1-r1.ebuild} | 2 +-
 media-sound/mpg123/{mpg123-1.28.2.ebuild => mpg123-1.28.2-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/mpg123/mpg123-1.28.1.ebuild 
b/media-sound/mpg123/mpg123-1.28.1-r1.ebuild
similarity index 98%
rename from media-sound/mpg123/mpg123-1.28.1.ebuild
rename to media-sound/mpg123/mpg123-1.28.1-r1.ebuild
index b43f88f17c2..a7a65a2ca63 100644
--- a/media-sound/mpg123/mpg123-1.28.1.ebuild
+++ b/media-sound/mpg123/mpg123-1.28.1-r1.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
nas? ( media-libs/nas )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
-   sdl? ( media-libs/libsdl )"
+   sdl? ( media-libs/libsdl2 )"
 DEPEND="${RDEPEND}"
 BDEPEND="
sys-devel/libtool

diff --git a/media-sound/mpg123/mpg123-1.28.2.ebuild 
b/media-sound/mpg123/mpg123-1.28.2-r1.ebuild
similarity index 98%
rename from media-sound/mpg123/mpg123-1.28.2.ebuild
rename to media-sound/mpg123/mpg123-1.28.2-r1.ebuild
index e4b097ab419..b54ad5de3c4 100644
--- a/media-sound/mpg123/mpg123-1.28.2.ebuild
+++ b/media-sound/mpg123/mpg123-1.28.2-r1.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
nas? ( media-libs/nas )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
-   sdl? ( media-libs/libsdl )"
+   sdl? ( media-libs/libsdl2 )"
 DEPEND="${RDEPEND}"
 BDEPEND="
sys-devel/libtool



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

2021-08-13 Thread Sam James
commit: d1437757461e44cff0d658ae3d3ed0f4a8b82d6b
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:14:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1437757

net-libs/libnftnl: add net-libs/libmnl:= subslot dependency

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

 net-libs/libnftnl/{libnftnl-1.1.9.ebuild => libnftnl-1.1.9-r1.ebuild} | 2 +-
 net-libs/libnftnl/{libnftnl-1.2.0.ebuild => libnftnl-1.2.0-r1.ebuild} | 2 +-
 net-libs/libnftnl/libnftnl-.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libnftnl/libnftnl-1.1.9.ebuild 
b/net-libs/libnftnl/libnftnl-1.1.9-r1.ebuild
similarity index 96%
rename from net-libs/libnftnl/libnftnl-1.1.9.ebuild
rename to net-libs/libnftnl/libnftnl-1.1.9-r1.ebuild
index 2592a59415c..6b04d75ee35 100644
--- a/net-libs/libnftnl/libnftnl-1.1.9.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.1.9-r1.ebuild
@@ -16,7 +16,7 @@ IUSE="examples static-libs test"
 
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=net-libs/libmnl-1.0.4"
+RDEPEND=">=net-libs/libmnl-1.0.4:="
 BDEPEND="virtual/pkgconfig"
 DEPEND="${RDEPEND}"
 

diff --git a/net-libs/libnftnl/libnftnl-1.2.0.ebuild 
b/net-libs/libnftnl/libnftnl-1.2.0-r1.ebuild
similarity index 97%
rename from net-libs/libnftnl/libnftnl-1.2.0.ebuild
rename to net-libs/libnftnl/libnftnl-1.2.0-r1.ebuild
index 1f505eec9c0..412e1e9f3a4 100644
--- a/net-libs/libnftnl/libnftnl-1.2.0.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.2.0-r1.ebuild
@@ -22,7 +22,7 @@ IUSE="examples static-libs test"
 
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=net-libs/libmnl-1.0.4"
+RDEPEND=">=net-libs/libmnl-1.0.4:="
 BDEPEND="virtual/pkgconfig"
 DEPEND="${RDEPEND}"
 

diff --git a/net-libs/libnftnl/libnftnl-.ebuild 
b/net-libs/libnftnl/libnftnl-.ebuild
index 434a775727d..75e1ab39a6c 100644
--- a/net-libs/libnftnl/libnftnl-.ebuild
+++ b/net-libs/libnftnl/libnftnl-.ebuild
@@ -22,7 +22,7 @@ IUSE="examples static-libs test"
 
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=net-libs/libmnl-1.0.4"
+RDEPEND=">=net-libs/libmnl-1.0.4:="
 BDEPEND="virtual/pkgconfig"
 DEPEND="${RDEPEND}"
 



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

2021-08-13 Thread Sam James
commit: 98e247492a43097253daea6c652ee7e6e6e9e20e
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:59:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e24749

net-analyzer/wireshark: add missing subslot dependencies

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

 .../wireshark/{wireshark-3.4.7.ebuild => wireshark-3.4.7-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/wireshark/wireshark-3.4.7.ebuild 
b/net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild
similarity index 98%
rename from net-analyzer/wireshark/wireshark-3.4.7.ebuild
rename to net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild
index 234f7872444..0f1c44767c2 100644
--- a/net-analyzer/wireshark/wireshark-3.4.7.ebuild
+++ b/net-analyzer/wireshark/wireshark-3.4.7-r1.ebuild
@@ -32,8 +32,8 @@ IUSE+=" sdjournal test +text2pcap tfshark +tshark +udpdump 
zlib +zstd"
 CDEPEND="
acct-group/pcap
>=dev-libs/glib-2.32:2
-   >=net-dns/c-ares-1.5
-   dev-libs/libgcrypt:0
+   >=net-dns/c-ares-1.5:=
+   dev-libs/libgcrypt:0:=
bcg729? ( media-libs/bcg729 )
brotli? ( app-arch/brotli )
ciscodump? ( >=net-libs/libssh-0.6 )
@@ -65,7 +65,7 @@ CDEPEND="
sshdump? ( >=net-libs/libssh-0.6 )
ssl? ( net-libs/gnutls:= )
zlib? ( sys-libs/zlib )
-   zstd? ( app-arch/zstd )
+   zstd? ( app-arch/zstd:= )
 "
 # We need perl for `pod2html`. The rest of the perl stuff is to block older
 # and broken installs. #455122



[gentoo-commits] repo/gentoo:master commit in: net-firewall/ipset/

2021-08-13 Thread Sam James
commit: a12c0fee4a9a9a0bee0c5b9549a886cede1b2787
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 03:00:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a12c0fee

net-firewall/ipset: add net-libs/libmnl:= subslot dependency

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

 net-firewall/ipset/{ipset-7.11.ebuild => ipset-7.11-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/ipset/ipset-7.11.ebuild 
b/net-firewall/ipset/ipset-7.11-r1.ebuild
similarity index 99%
rename from net-firewall/ipset/ipset-7.11.ebuild
rename to net-firewall/ipset/ipset-7.11-r1.ebuild
index ef2705b37cb..c7dfc5a9b0c 100644
--- a/net-firewall/ipset/ipset-7.11.ebuild
+++ b/net-firewall/ipset/ipset-7.11-r1.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="amd64 ~arm arm64 ppc ~ppc64 x86"
 BDEPEND="virtual/pkgconfig"
 
 RDEPEND=">=net-firewall/iptables-1.4.7
-   net-libs/libmnl"
+   net-libs/libmnl:="
 DEPEND="${RDEPEND}"
 
 DOCS=( ChangeLog INSTALL README UPGRADE )



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: 692d5f068c1af08caa0dd721daee4796a0f5e188
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:46:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=692d5f06

games-strategy/warzone2100: drop obsolete X, OpenGL dependencies

This is all handled via SDL now.

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

 games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index 9cddc719f08..d0b3cf7236a 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -39,10 +39,6 @@ CDEPEND="
media-libs/openal
net-misc/curl
sys-libs/zlib
-   virtual/glu
-   virtual/opengl
-   x11-libs/libX11
-   x11-libs/libXrandr
nls? ( virtual/libintl )
vulkan? ( media-libs/libsdl2:=[vulkan] )
 "



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

2021-08-13 Thread Sam James
commit: 7df431f3de45b64e932c986a9c6a8bf43ceb7d3d
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:38:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7df431f3

app-text/texlive-core: add missing subslot dependencies

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

 .../{texlive-core-2021.ebuild => texlive-core-2021-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/texlive-core/texlive-core-2021.ebuild 
b/app-text/texlive-core/texlive-core-2021-r1.ebuild
similarity index 99%
rename from app-text/texlive-core/texlive-core-2021.ebuild
rename to app-text/texlive-core/texlive-core-2021-r1.ebuild
index 1372c2a1984..58d08c4cf2b 100644
--- a/app-text/texlive-core/texlive-core-2021.ebuild
+++ b/app-text/texlive-core/texlive-core-2021-r1.ebuild
@@ -89,7 +89,7 @@ COMMON_DEPEND="${MODULAR_X_DEPEND}
!app-text/epspdf
!app-text/pdfjam
sys-libs/zlib
-   >=media-libs/harfbuzz-1.4.5[icu,graphite]
+   >=media-libs/harfbuzz-1.4.5:=[icu,graphite]
>=media-libs/libpng-1.2.43-r2:0=
media-libs/gd[png]
media-gfx/graphite2
@@ -107,7 +107,7 @@ COMMON_DEPEND="${MODULAR_X_DEPEND}
xindy? ( dev-lisp/clisp:= )
media-libs/freetype:2
>=dev-libs/icu-50:=
-   >=dev-libs/kpathsea-6.3.2"
+   >=dev-libs/kpathsea-6.3.2:="
 
 BDEPEND="sys-apps/ed
sys-devel/flex



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

2021-08-13 Thread Sam James
commit: e18bbaacce7552fbcd732ac3fb1255f7674e8d63
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:52:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18bbaac

media-libs/wxsvg: subscribe to media-libs/harfbuzz:= subslot

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

 media-libs/wxsvg/{wxsvg-1.5.11.ebuild => wxsvg-1.5.11-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/wxsvg/wxsvg-1.5.11.ebuild 
b/media-libs/wxsvg/wxsvg-1.5.11-r1.ebuild
similarity index 97%
rename from media-libs/wxsvg/wxsvg-1.5.11.ebuild
rename to media-libs/wxsvg/wxsvg-1.5.11-r1.ebuild
index 29f3e8102c2..3ea1ba63e3a 100644
--- a/media-libs/wxsvg/wxsvg-1.5.11.ebuild
+++ b/media-libs/wxsvg/wxsvg-1.5.11-r1.ebuild
@@ -20,6 +20,7 @@ RDEPEND=">=dev-libs/expat-2:=
dev-libs/libxml2:=
media-libs/fontconfig:=
media-libs/freetype:2=
+   media-libs/harfbuzz:=
x11-libs/cairo:=
x11-libs/pango:=
x11-libs/wxGTK:${WX_GTK_VER}=[X]



[gentoo-commits] repo/gentoo:master commit in: games-simulation/openttd/

2021-08-13 Thread Sam James
commit: f8bd31ff711cb72f8c7da25c92cc7e8c2e04d66b
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:42:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8bd31ff

games-simulation/openttd: subscribe to dev-libs/icu-layoutex:= subslot

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

 .../openttd/{openttd-1.11.2.ebuild => openttd-1.11.2-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-simulation/openttd/openttd-1.11.2.ebuild 
b/games-simulation/openttd/openttd-1.11.2-r1.ebuild
similarity index 99%
rename from games-simulation/openttd/openttd-1.11.2.ebuild
rename to games-simulation/openttd/openttd-1.11.2-r1.ebuild
index cb7671437c5..104f633add0 100644
--- a/games-simulation/openttd/openttd-1.11.2.ebuild
+++ b/games-simulation/openttd/openttd-1.11.2-r1.ebuild
@@ -23,7 +23,7 @@ RDEPEND="
allegro? ( media-libs/allegro:5 )
fluidsynth? ( media-sound/fluidsynth )
icu? (
-   dev-libs/icu-layoutex
+   dev-libs/icu-layoutex:=
dev-libs/icu-le-hb
>=dev-libs/icu-58.1:=
)



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

2021-08-13 Thread Sam James
commit: 4f0d3f75120c6a36ff3d17db3da49dd55930deb3
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:31:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f0d3f75

app-text/ps2pkm: subscribe to dev-libs/kpathsea:= subslot

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

 .../{ps2pkm-1.8_p20210325.ebuild => ps2pkm-1.8_p20210325-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ps2pkm/ps2pkm-1.8_p20210325.ebuild 
b/app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild
similarity index 95%
rename from app-text/ps2pkm/ps2pkm-1.8_p20210325.ebuild
rename to app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild
index 5296e0bb44c..c1d0a1b552d 100644
--- a/app-text/ps2pkm/ps2pkm-1.8_p20210325.ebuild
+++ b/app-text/ps2pkm/ps2pkm-1.8_p20210325-r1.ebuild
@@ -11,7 +11,7 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 
-DEPEND=">=dev-libs/kpathsea-6.2.1"
+DEPEND=">=dev-libs/kpathsea-6.2.1:="
 RDEPEND="${DEPEND}"
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2021-08-13 Thread Sam James
commit: 93146e6d850aef5037243cd2ab9de8a5a0c7ce58
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:45:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93146e6d

games-strategy/warzone2100: add missing sqlite, curl dependencies

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

 games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild 
b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
index 78e0c7a0374..9cddc719f08 100644
--- a/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-4.1.3-r1.ebuild
@@ -25,6 +25,7 @@ IUSE="debug discord nls videos vulkan"
 # quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828
 CDEPEND="
>=dev-games/physfs-2[zip]
+   dev-db/sqlite
>=dev-libs/libsodium-1.0.14:=
dev-libs/openssl:0=
media-libs/freetype:2
@@ -36,6 +37,7 @@ CDEPEND="
media-libs/libtheora
media-libs/libvorbis
media-libs/openal
+   net-misc/curl
sys-libs/zlib
virtual/glu
virtual/opengl



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

2021-08-13 Thread Sam James
commit: e56770117e603f707a0d93cac76eda2f5ef60867
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:40:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5677011

dev-libs/ptexenc: subscribe to dev-libs/kpathsea:= subslot

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

 ...ptexenc-1.3.9_p20210325.ebuild => ptexenc-1.3.9_p20210325-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild 
b/dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild
similarity index 98%
rename from dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild
rename to dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild
index 4226eb4c86a..5da28cacc4e 100644
--- a/dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild
+++ b/dev-libs/ptexenc/ptexenc-1.3.9_p20210325-r1.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 
~riscv ~s390 sparc x
 IUSE="iconv"
 
 DEPEND="
-   dev-libs/kpathsea
+   dev-libs/kpathsea:=
iconv? ( virtual/libiconv )"
 RDEPEND="${DEPEND}"
 



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

2021-08-13 Thread Sam James
commit: 3e4c73584484211bc611f5e5f3be0a017374d8a4
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:50:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e4c7358

media-libs/libass: subscribe to media-libs/harfbuzz:= subslot

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

 media-libs/libass/{libass-0.15.1-r1.ebuild => libass-0.15.1-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libass/libass-0.15.1-r1.ebuild 
b/media-libs/libass/libass-0.15.1-r2.ebuild
similarity index 94%
rename from media-libs/libass/libass-0.15.1-r1.ebuild
rename to media-libs/libass/libass-0.15.1-r2.ebuild
index 579a5c1beb5..37b64e258e0 100644
--- a/media-libs/libass/libass-0.15.1-r1.ebuild
+++ b/media-libs/libass/libass-0.15.1-r2.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
>=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}]
>=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}]
>=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
-   >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}]
+   >=media-libs/harfbuzz-0.9.12:=[truetype,${MULTILIB_USEDEP}]
fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] )
 "
 DEPEND="${RDEPEND}"



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

2021-08-13 Thread Sam James
commit: c3075f4c3d23c0b37ef263446bbefdbaeb59943a
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 14 02:57:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 03:48:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3075f4c

media-sound/sox: add sys-apps/file dep for libmagic

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

 .../sox/{sox-14.4.2_p20200803.ebuild => sox-14.4.2_p20200803-r1.ebuild}  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-sound/sox/sox-14.4.2_p20200803.ebuild 
b/media-sound/sox/sox-14.4.2_p20200803-r1.ebuild
similarity index 99%
rename from media-sound/sox/sox-14.4.2_p20200803.ebuild
rename to media-sound/sox/sox-14.4.2_p20200803-r1.ebuild
index 00dfb2eb983..4c431212e18 100644
--- a/media-sound/sox/sox-14.4.2_p20200803.ebuild
+++ b/media-sound/sox/sox-14.4.2_p20200803-r1.ebuild
@@ -29,6 +29,7 @@ BDEPEND="
 RDEPEND="
dev-libs/libltdl:0=
>=media-sound/gsm-1.0.12-r1
+   sys-apps/file
alsa? ( media-libs/alsa-lib )
amr? ( media-libs/opencore-amr )
ao? ( media-libs/libao )



[gentoo-commits] repo/gentoo:master commit in: net-ftp/vsftpd/

2021-08-13 Thread Mike Gilbert
commit: 7123e409ac015189a9e5c173f542180926a0e428
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Aug 14 02:45:42 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Aug 14 02:46:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7123e409

net-ftp/vsftpd: drop pkg-config use

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

 net-ftp/vsftpd/vsftpd-3.0.5.ebuild | 19 ---
 1 file changed, 4 insertions(+), 15 deletions(-)

diff --git a/net-ftp/vsftpd/vsftpd-3.0.5.ebuild 
b/net-ftp/vsftpd/vsftpd-3.0.5.ebuild
index c417498f044..e4ecfb256b8 100644
--- a/net-ftp/vsftpd/vsftpd-3.0.5.ebuild
+++ b/net-ftp/vsftpd/vsftpd-3.0.5.ebuild
@@ -14,10 +14,6 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE="pam ssl tcpd"
 
-BDEPEND="
-   virtual/pkgconfig
-"
-
 DEPEND="
>=sys-libs/libcap-2
pam? ( sys-libs/pam )
@@ -49,13 +45,7 @@ undef() {
 }
 
 src_configure() {
-   cflags=()
-   libs=()
-
-   local PKG_CONFIG=$(tc-getPKG_CONFIG)
-
-   cflags+=( $(${PKG_CONFIG} --cflags libcap) ) || die
-   libs+=( $(${PKG_CONFIG} --libs libcap) ) || die
+   libs=( -lcap )
 
if use pam; then
libs+=( -lpam )
@@ -66,8 +56,7 @@ src_configure() {
 
if use ssl; then
define VSF_BUILD_SSL
-   cflags+=( $(${PKG_CONFIG} --cflags libcrypto libssl) ) || die
-   libs+=( $(${PKG_CONFIG} --libs libcrypto libssl) ) || die
+   libs+=( -lcrypto -lssl )
fi
 
if use tcpd; then
@@ -79,8 +68,8 @@ src_configure() {
 src_compile() {
local args=(
CC="$(tc-getCC)"
-   CFLAGS="${CFLAGS} ${cflags[*]}"
-   LDFLAGS="${CFLAGS} ${LDFLAGS}"
+   CFLAGS="${CFLAGS}"
+   LDFLAGS="${LDFLAGS}"
LIBS="${libs[*]}"
)
emake "${args[@]}"



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

2021-08-13 Thread Alessandro Barbieri
commit: 46047303fe5ae62fad3139c7c738f4a6f06375f0
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sat Aug 14 02:26:14 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Sat Aug 14 02:27:42 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46047303

profiles: mask the-omega-project[gui]

Signed-off-by: Alessandro Barbieri  gmail.com>

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

diff --git a/profiles/package.use.mask b/profiles/package.use.mask
index cb8cda1d5..2a9b57fb2 100644
--- a/profiles/package.use.mask
+++ b/profiles/package.use.mask
@@ -26,3 +26,8 @@ sys-kernel/xpmem modules
 # sys-cluster/SOS doesn't get recognized as valid openshmem
 # https://github.com/bsc-performance-tools/extrae/issues/35
 sys-cluster/extrae openshmem
+
+# Alessandro Barbieri  (2021-08-14)
+# petit gui doesn't build
+# https://github.com/davewathaverford/the-omega-project/issues/5
+sci-mathematics/the-omega-project gui



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

2021-08-13 Thread Sam James
commit: 46664472272593f89f2e19213366f4ebdf93392e
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 01:58:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:49:47 2021 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=46664472

profiles: mention PMS as the main source of documentation

While `man portage` may be a useful source of information,
it's not the "source of truth" on profiles - PMS is.

Reported-by: Joshua Kinard  gentoo.org>
Signed-off-by: Sam James  gentoo.org>
Closes: https://github.com/gentoo/devmanual/pull/240
Signed-off-by: Sam James  gentoo.org>

 profiles/text.xml | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/profiles/text.xml b/profiles/text.xml
index 3269d33..f652088 100644
--- a/profiles/text.xml
+++ b/profiles/text.xml
@@ -5,8 +5,12 @@
 
 
 
-This section provides details on the profiles/ directory. All of these 
files
-are also documented in man portage.
+This section provides details on the profiles/ directory. All of these
+files are also documented in man portage, but the canonical reference
+for profiles is within
+https://projects.gentoo.org/pms/8/pms.html#x1-320004.4;>PMS.
+
+Portage-specific behaviour must not be relied upon in the repository.
 
 
 



[gentoo-commits] proj/devmanual:master commit in: ebuild-writing/file-format/

2021-08-13 Thread Sam James
commit: 969156f60e46ca8fd299c38483a42f9776047a1c
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 02:53:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:46:15 2021 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=969156f6

ebuild-writing/file-format: rewrap long paragraph

Signed-off-by: Sam James  gentoo.org>
Closes: https://github.com/gentoo/devmanual/pull/242
Signed-off-by: Sam James  gentoo.org>

 ebuild-writing/file-format/text.xml | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/ebuild-writing/file-format/text.xml 
b/ebuild-writing/file-format/text.xml
index d9b0758..0065b22 100644
--- a/ebuild-writing/file-format/text.xml
+++ b/ebuild-writing/file-format/text.xml
@@ -135,11 +135,12 @@ algorithm can be found in PMS.
 
 
 
-When packaging a snapshot of a source repository, there are two commonly used 
formats. The first
-treats the snapshot as a patch to the previous version, and so the ebuild 
version is in the format
-$(last-released-version)_pMMDD. Alternatively, the snapshot may be treated 
as a pre-release to
-an upcoming version, usually used when a release is anticipated but not out 
yet. The format for this
-is $(upcoming-version)_preMMDD.
+When packaging a snapshot of a source repository, there are two commonly used
+formats. The first treats the snapshot as a patch to the previous version, and
+so the ebuild version is in the format $(last-released-version)_pMMDD.
+Alternatively, the snapshot may be treated as a pre-release to an upcoming
+version, usually used when a release is anticipated but not out yet. The format
+for this is $(upcoming-version)_preMMDD.
 
 
 



[gentoo-commits] proj/devmanual:master commit in: ebuild-writing/file-format/

2021-08-13 Thread Sam James
commit: c11712867f71a9c7ece52c31444b26a59e9873d1
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 02:18:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:46:14 2021 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=c1171286

ebuild-writing/file-format: link to PMS for version specification

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

 ebuild-writing/file-format/text.xml | 8 
 1 file changed, 8 insertions(+)

diff --git a/ebuild-writing/file-format/text.xml 
b/ebuild-writing/file-format/text.xml
index 65adca6..d9b0758 100644
--- a/ebuild-writing/file-format/text.xml
+++ b/ebuild-writing/file-format/text.xml
@@ -120,6 +120,14 @@ EAPI 7 version commands may be used to manipulate 
and extract
 ebuild version components.
 
 
+
+The formal specification of version
+https://projects.gentoo.org/pms/8/pms.html#x1-250003.2;>
+format and the comparison
+https://projects.gentoo.org/pms/8/pms.html#x1-260003.3;>
+algorithm can be found in PMS.
+
+
 
 
 



[gentoo-commits] proj/devmanual:master commit in: ebuild-writing/functions/src_compile/building/

2021-08-13 Thread Sam James
commit: d0bced7586bcab1a00a8db11baae895bd4f0a646
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 02:28:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:42:58 2021 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d0bced75

ebuild-writing/functions/src_compile/building: don't call CC directly

Bug: https://bugs.gentoo.org/243502
Bug: https://bugs.gentoo.org/726034
Signed-off-by: Sam James  gentoo.org>
Closes: https://github.com/gentoo/devmanual/pull/243
Signed-off-by: Sam James  gentoo.org>

 ebuild-writing/functions/src_compile/building/text.xml | 9 +
 1 file changed, 9 insertions(+)

diff --git a/ebuild-writing/functions/src_compile/building/text.xml 
b/ebuild-writing/functions/src_compile/building/text.xml
index f78c482..e1887ab 100644
--- a/ebuild-writing/functions/src_compile/building/text.xml
+++ b/ebuild-writing/functions/src_compile/building/text.xml
@@ -39,6 +39,15 @@ Other similar functions are available  these are 
documented in
 man toolchain-funcs.eclass.
 
 
+
+Note that packages should always respect the user's CC preference
+and must not rely on convenience symlinks such as /usr/bin/cc
+or /usr/bin/gcc. A tracker https://bugs.gentoo.org/243502;>
+bug exists to document such issues. Additional documentation exists on 
the
+https://wiki.gentoo.org/wiki/Project:Toolchain/use_native_symlinks;>
+wiki.
+
+
 
 It is not correct to use the ${CC} variable for this purpose.
 



[gentoo-commits] proj/devmanual: Branch deleted: src_compile-cc-directly

2021-08-13 Thread Sam James
commit: 
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:42:18 2021 +

Branch deleted: src_compile-cc-directly




[gentoo-commits] proj/devmanual: New branch: src_compile-cc-directly

2021-08-13 Thread Sam James
commit: 
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:41:55 2021 +

New branch: src_compile-cc-directly




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

2021-08-13 Thread Sam James
commit: a5fcdc1cca7e40b489e6e72eb1e7965007aa59bf
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 02:12:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 14 01:35:53 2021 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=a5fcdc1c

profiles/categories: consult gentoo-dev ML before adding a new category

This is quite a big change which should be discussed on gentoo-dev first.

Closes: https://github.com/gentoo/devmanual/pull/241
Signed-off-by: Sam James  gentoo.org>

 profiles/categories/text.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/categories/text.xml b/profiles/categories/text.xml
index 6a4de2d..b54331d 100644
--- a/profiles/categories/text.xml
+++ b/profiles/categories/text.xml
@@ -10,6 +10,10 @@ the valid categories in the Gentoo repository. When adding a 
new category, remem
 to update and commit this file before making any related commits.
 
 
+
+Please consult the gentoo-dev mailing list before adding a new category.
+
+
 
 The categories file is a straight list. For descriptions, see .



[gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/files/, net-p2p/deluge/

2021-08-13 Thread Craig Andrews
commit: ea7a178756c5cee2e4659280423c208e67972271
Author: Craig Andrews  gentoo  org>
AuthorDate: Sat Aug 14 01:10:19 2021 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sat Aug 14 01:10:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7a1787

net-p2p/deluge: Fix twisted logging error

Closes: https://bugs.gentoo.org/807997
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Craig Andrews  gentoo.org>

 .../deluge/{deluge-.ebuild => deluge-2.0.3-r9.ebuild}   |  8 
 net-p2p/deluge/deluge-.ebuild   |  4 +++-
 net-p2p/deluge/files/deluge-2.0.3-log.patch | 13 +
 3 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/net-p2p/deluge/deluge-.ebuild 
b/net-p2p/deluge/deluge-2.0.3-r9.ebuild
similarity index 96%
copy from net-p2p/deluge/deluge-.ebuild
copy to net-p2p/deluge/deluge-2.0.3-r9.ebuild
index 0fe6fe0a53f..6878f1f82c5 100644
--- a/net-p2p/deluge/deluge-.ebuild
+++ b/net-p2p/deluge/deluge-2.0.3-r9.ebuild
@@ -5,7 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python3_{8,9} )
 DISTUTILS_SINGLE_IMPL=1
-inherit xdg distutils-r1 systemd
+inherit distutils-r1 systemd
 
 DESCRIPTION="BitTorrent client with a client/server model"
 HOMEPAGE="https://deluge-torrent.org/;
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.deluge-torrent.org/${PN};
 else
SRC_URI="http://download.deluge-torrent.org/source/2.0/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
 fi
 
 LICENSE="GPL-2"
@@ -62,6 +62,8 @@ PATCHES=(
"${FILESDIR}/${PN}-2.0.3-setup.py.patch"
"${FILESDIR}/${PN}-2.0.3-UI-status.patch"
"${FILESDIR}/${PN}-2.0.3-gettext.patch"
+   "${FILESDIR}/${P}-fix-pickle.patch"
+   "${FILESDIR}/${P}-log.patch"
 )
 
 python_prepare_all() {
@@ -121,8 +123,6 @@ python_install_all() {
 }
 
 pkg_postinst() {
-   xdg_pkg_postinst
-
elog
elog "If, after upgrading, deluge doesn't work, please remove the"
elog "'~/.config/deluge' directory and try again, but make a backup"

diff --git a/net-p2p/deluge/deluge-.ebuild 
b/net-p2p/deluge/deluge-.ebuild
index 0fe6fe0a53f..0d7b3a317c0 100644
--- a/net-p2p/deluge/deluge-.ebuild
+++ b/net-p2p/deluge/deluge-.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.deluge-torrent.org/${PN};
 else
SRC_URI="http://download.deluge-torrent.org/source/2.0/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
 fi
 
 LICENSE="GPL-2"
@@ -62,6 +62,8 @@ PATCHES=(
"${FILESDIR}/${PN}-2.0.3-setup.py.patch"
"${FILESDIR}/${PN}-2.0.3-UI-status.patch"
"${FILESDIR}/${PN}-2.0.3-gettext.patch"
+   "${FILESDIR}/${P}-fix-pickle.patch"
+   "${FILESDIR}/${P}-log.patch"
 )
 
 python_prepare_all() {

diff --git a/net-p2p/deluge/files/deluge-2.0.3-log.patch 
b/net-p2p/deluge/files/deluge-2.0.3-log.patch
new file mode 100644
index 000..45dd9896a91
--- /dev/null
+++ b/net-p2p/deluge/files/deluge-2.0.3-log.patch
@@ -0,0 +1,13 @@
+https://dev.deluge-torrent.org/changeset/351664ec071daa04
+https://dev.deluge-torrent.org/ticket/3327
+Index: deluge/log.py
+===
+--- a/deluge/log.py
 b/deluge/log.py
+@@ -87,5 +87,5 @@
+ yield LoggingLoggerClass.exception(self, msg, *args, **kwargs)
+ 
+-def findCaller(self, stack_info=False):  # NOQA: N802
++def findCaller(self, *args, **kwargs):  # NOQA: N802
+ f = logging.currentframe().f_back
+ rv = '(unknown file)', 0, '(unknown function)'



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

2021-08-13 Thread Louis Sautier
commit: 9ae46dc5935bd6aaae4a3302a0843e12004a8cd2
Author: Louis Sautier  gentoo  org>
AuthorDate: Sat Aug 14 01:03:31 2021 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sat Aug 14 01:04:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ae46dc5

dev-python/zeep: add github upstream metadata

Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/zeep/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/zeep/metadata.xml b/dev-python/zeep/metadata.xml
index 94ae180241f..84a2d90bd70 100644
--- a/dev-python/zeep/metadata.xml
+++ b/dev-python/zeep/metadata.xml
@@ -10,5 +10,7 @@


zeep
+   mvantellingen/python-zeep
+   
https://github.com/mvantellingen/python-zeep/issues

 



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/riscv/, media-libs/libcddb/

2021-08-13 Thread Marek Szuba
commit: 4e5d6aeac699e74d33600a18f072c8dd0d38f7ef
Author: Marek Szuba  gentoo  org>
AuthorDate: Sat Aug 14 00:24:02 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sat Aug 14 00:38:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5d6aea

media-libs/libcddb: keyword 1.3.2-r1 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 media-libs/libcddb/libcddb-1.3.2-r1.ebuild | 2 +-
 profiles/arch/riscv/package.use.mask   | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/media-libs/libcddb/libcddb-1.3.2-r1.ebuild 
b/media-libs/libcddb/libcddb-1.3.2-r1.ebuild
index 18a3a1f4777..641f403c5db 100644
--- a/media-libs/libcddb/libcddb-1.3.2-r1.ebuild
+++ b/media-libs/libcddb/libcddb-1.3.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="doc static-libs"
 
 RDEPEND=">=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]"

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index 306a494d393..039e4b978bb 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -98,8 +98,6 @@ app-editors/vim sound
 app-misc/lirc ftdi inputlirc
 #  - app-xemacs/ruby-modes (and by extension xemacs itself)
 dev-lang/ruby xemacs
-#  - media-libs/libcddb
-dev-libs/libcdio cddb
 #  - dev-ruby/asciidoctor
 dev-libs/nanomsg doc
 #  - sci-libs/gdal



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

2021-08-13 Thread Marek Szuba
commit: cc5b696a986ef8c9f375e9ed3df3367170e01119
Author: Marek Szuba  gentoo  org>
AuthorDate: Sat Aug 14 00:37:10 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sat Aug 14 00:38:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5b696a

profiles/arch/riscv: update MySQL/MariaDB-related USE masks

These now fall under "tested but either not working or problematic".

Signed-off-by: Marek Szuba  gentoo.org>

 profiles/arch/riscv/package.use.mask | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index 039e4b978bb..0458d862d36 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -1,6 +1,16 @@
 # Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Marek Szuba  (2021-08-14)
+# virtual/mysql & co. round-up:
+#  dev-db/mariadb fails tests here, see Bug #807995
+#  >=dev-db/mysql-8.0.22 do not support this arch
+#  dev-db/percona-server not tested yet, WIP
+#  dev-db/mariadb-galera has been absent from the tree since June 2019
+#  dev-db/mysql-cluster not tested yet, seriously outdated
+sci-libs/gdal mysql
+sys-cluster/slurm slurmdbd
+
 # Marek Szuba  (2021-08-11)
 # dev-ruby/httpclient not keyworded here due to failing tests
 # (Bug #807727). That said, with httpclient-2.8.3 installed manually
@@ -130,8 +140,8 @@ net-misc/connman iwd ofono
 sys-block/thin-provisioning-tools test
 #  - sys-cluster/knem, sys-fabric/infinipath-psm
 sys-cluster/openmpi openmpi_fabrics_knem openmpi_fabrics_psm
-#  - sys-fabric/ofed, dev-db/mariadb | dev-db/mysql
-sys-cluster/slurm ofed slurmdbd
+#  - sys-fabric/ofed
+sys-cluster/slurm ofed
 
 # Yixun Lan  (2021-05-24)
 # Dependencies not keyworded, not tested



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

2021-08-13 Thread Marek Szuba
commit: 1c9224e916ee878b18b60c9de6104f972fd98582
Author: Marek Szuba  gentoo  org>
AuthorDate: Sat Aug 14 00:17:37 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sat Aug 14 00:38:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c9224e9

dev-ruby/open4: keyword 1.3.4 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 dev-ruby/open4/open4-1.3.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/open4/open4-1.3.4.ebuild 
b/dev-ruby/open4/open4-1.3.4.ebuild
index 1f35a41c060..a38e99cc38d 100644
--- a/dev-ruby/open4/open4-1.3.4.ebuild
+++ b/dev-ruby/open4/open4-1.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/ahoward/open4;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/minitest )"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ReadLine-Perl/

2021-08-13 Thread Andreas K. Hüttel
commit: 745573af5e3bf643cad906578cd850be65157d18
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:31:30 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=745573af

dev-perl/Term-ReadLine-Perl: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 30.300-r2.ebuild => Term-ReadLine-Perl-1.30.300-r3.ebuild} | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Term-ReadLine-Perl/Term-ReadLine-Perl-1.30.300-r2.ebuild 
b/dev-perl/Term-ReadLine-Perl/Term-ReadLine-Perl-1.30.300-r3.ebuild
similarity index 88%
rename from dev-perl/Term-ReadLine-Perl/Term-ReadLine-Perl-1.30.300-r2.ebuild
rename to dev-perl/Term-ReadLine-Perl/Term-ReadLine-Perl-1.30.300-r3.ebuild
index 22a97feb1f7..47952290d88 100644
--- a/dev-perl/Term-ReadLine-Perl/Term-ReadLine-Perl-1.30.300-r2.ebuild
+++ b/dev-perl/Term-ReadLine-Perl/Term-ReadLine-Perl-1.30.300-r3.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=ILYAZ
 DIST_SECTION=modules
@@ -13,13 +13,15 @@ DESCRIPTION="Quick implementation of readline utilities"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
 
 PATCHES=(
"${FILESDIR}/${PN}-1.0303-nointeractive.patch"
"${FILESDIR}/${PN}-1.0303-packlistcollision.patch"
 )
-RDEPEND="dev-perl/TermReadKey"
-DEPEND="${RDEPEND}
+
+RDEPEND="
+   dev-perl/TermReadKey
+"
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
 "



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ReadLine-Gnu/

2021-08-13 Thread Andreas K. Hüttel
commit: 8f08598a88ab37289964422f7f46b2c0a166223d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:29:53 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f08598a

dev-perl/Term-ReadLine-Gnu: Remove old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Term-ReadLine-Gnu/Manifest|  1 -
 .../Term-ReadLine-Gnu-1.360.0-r1.ebuild| 23 --
 2 files changed, 24 deletions(-)

diff --git a/dev-perl/Term-ReadLine-Gnu/Manifest 
b/dev-perl/Term-ReadLine-Gnu/Manifest
index 8af9be25b71..aee645a28f2 100644
--- a/dev-perl/Term-ReadLine-Gnu/Manifest
+++ b/dev-perl/Term-ReadLine-Gnu/Manifest
@@ -1,2 +1 @@
-DIST Term-ReadLine-Gnu-1.36.tar.gz 128336 BLAKE2B 
03791d1e486bec605c65b88a4549a023b2ca51c8fa96f36dd05d573516a7c776e6a827446a2b0d3907120262cec3dbbba4a770a3e0bd5e3ee27091ae70fb4778
 SHA512 
be576c45808744b9e6ae703ba170fc19f8cc4a63e6c8d74486159ff44c6763815bded11c7a414a491553e82041da2e4c5f197785e91a461118b4efa7fde240e9
 DIST Term-ReadLine-Gnu-1.42.tar.gz 197745 BLAKE2B 
9b824310d81257f097ea9fd7848bf1f49cacb1e5d903d953771704a0ea5882da6a0fd0a293046345b8dd64ccc3d132cbd1db572912e593015b9e2d9f2f740115
 SHA512 
8f62cb14432f9364b1a3cea708d3d648bc7df2bb7fed2b3ec7af389fa183bfbe1bec3020b184b19a267217d47a3547f52a20d75f17c13ba89684759084f24471

diff --git a/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.360.0-r1.ebuild 
b/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.360.0-r1.ebuild
deleted file mode 100644
index a0a27fbf34f..000
--- a/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.360.0-r1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=HAYASHI
-DIST_VERSION=1.36
-DIST_EXAMPLES=("eg/*")
-inherit perl-module
-
-DESCRIPTION="GNU Readline XS library wrapper"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="
-   >=sys-libs/readline-6.2:0=
-   sys-libs/ncurses:0=
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ProgressBar-Simple/

2021-08-13 Thread Andreas K. Hüttel
commit: 6e514fb0202a3226bc2f8e62b77c258f516560eb
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:27:17 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e514fb0

dev-perl/Term-ProgressBar-Simple: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...mple-0.30.0.ebuild => Term-ProgressBar-Simple-0.30.0-r1.ebuild} | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git 
a/dev-perl/Term-ProgressBar-Simple/Term-ProgressBar-Simple-0.30.0.ebuild 
b/dev-perl/Term-ProgressBar-Simple/Term-ProgressBar-Simple-0.30.0-r1.ebuild
similarity index 78%
rename from 
dev-perl/Term-ProgressBar-Simple/Term-ProgressBar-Simple-0.30.0.ebuild
rename to 
dev-perl/Term-ProgressBar-Simple/Term-ProgressBar-Simple-0.30.0-r1.ebuild
index d2fc85b80f0..8bc581a1d83 100644
--- a/dev-perl/Term-ProgressBar-Simple/Term-ProgressBar-Simple-0.30.0.ebuild
+++ b/dev-perl/Term-ProgressBar-Simple/Term-ProgressBar-Simple-0.30.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=EVDB
 DIST_VERSION=0.03
@@ -11,11 +11,10 @@ DESCRIPTION="Simple progess bars"
 
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE=""
 
 RDEPEND="
dev-perl/Term-ProgressBar-Quiet
 "
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
 "



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-08-13 Thread Andreas K. Hüttel
commit: a85da0441512210d6fd149686a8bdd62b0cf7232
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:29:11 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85da044

dev-perl/TermReadKey: Version  bump 2.38

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/TermReadKey/Manifest   |  1 +
 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index 7af905beb9f..043cc721cf2 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1 +1,2 @@
 DIST TermReadKey-2.37.tar.gz 85082 BLAKE2B 
59c24455b6c4165897c7650209a98b5097c7fffd1044de005b8823d0867f6b16a835d5188c4a671b58109312ac2aa70012edd84d4a485b1534241f9525ab
 SHA512 
b602d612be17ec4a56fe50742728dae17733f251ef399e8fb69cc8eb22885d7e1c1073c735fb23826137e80be8d3597e60f496ac63180739752d070957880eea
+DIST TermReadKey-2.38.tar.gz 85164 BLAKE2B 
7fe1b7af17d66598dd39b81a667e0a16061694fcd37521dccb355295ff2980836e2d5e58cafd22ed370e790b33d39c2232a64785aa01d9c2cc6c30d6bafe9484
 SHA512 
fb09f013f9f0d8a4397e39f6f3db7a6d023259219af8f76744094e396437a01b19141b3cdb39a158d3b518903fb010088bc37406763bfbeb3fcab810bb0bb157

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
new file mode 100644
index 000..9347beae861
--- /dev/null
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=JSTOWE
+DIST_VERSION=2.38
+DIST_EXAMPLES=("example/*")
+inherit perl-module
+
+DESCRIPTION="Change terminal modes, and perform non-blocking reads"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+BDEPEND="
+   >=virtual/perl-ExtUtils-MakeMaker-6.580.0
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ReadLine-TTYtter/

2021-08-13 Thread Andreas K. Hüttel
commit: e0c4c4ecdeeb5c3d43c889927260cebaa2e4db17
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:32:36 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0c4c4ec

dev-perl/Term-ReadLine-TTYtter: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...400.0-r1.ebuild => Term-ReadLine-TTYtter-1.400.0-r2.ebuild} | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/dev-perl/Term-ReadLine-TTYtter/Term-ReadLine-TTYtter-1.400.0-r1.ebuild 
b/dev-perl/Term-ReadLine-TTYtter/Term-ReadLine-TTYtter-1.400.0-r2.ebuild
similarity index 76%
rename from 
dev-perl/Term-ReadLine-TTYtter/Term-ReadLine-TTYtter-1.400.0-r1.ebuild
rename to dev-perl/Term-ReadLine-TTYtter/Term-ReadLine-TTYtter-1.400.0-r2.ebuild
index 4ff8c314430..b3731cccaec 100644
--- a/dev-perl/Term-ReadLine-TTYtter/Term-ReadLine-TTYtter-1.400.0-r1.ebuild
+++ b/dev-perl/Term-ReadLine-TTYtter/Term-ReadLine-TTYtter-1.400.0-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=CKAISER
 DIST_VERSION=1.4
@@ -12,7 +12,9 @@ DESCRIPTION="Quick implementation of readline utilities for 
ttytter"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 PATCHES=( "${FILESDIR}/${PN}-1.4-nointeractive.patch" )
-RDEPEND="dev-perl/TermReadKey"
+
+RDEPEND="
+   dev-perl/TermReadKey
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ReadPassword/

2021-08-13 Thread Andreas K. Hüttel
commit: 13904dc19fa354d50add808945db0cfc56d4a6a1
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:33:51 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13904dc1

dev-perl/Term-ReadPassword: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...ssword-0.110.0-r2.ebuild => Term-ReadPassword-0.110.0-r3.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild 
b/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r3.ebuild
similarity index 81%
rename from dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild
rename to dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r3.ebuild
index aa2ac077e15..2f981a3c67c 100644
--- a/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild
+++ b/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=PHOENIX
 DIST_VERSION=0.11
@@ -11,5 +11,5 @@ DESCRIPTION="Asking the user for a password"
 
 SLOT="0"
 KEYWORDS="amd64 ~ppc64 x86"
-IUSE=""
+
 PERL_RM_FILES=( "t/2_interactive.t" )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-Encoding/

2021-08-13 Thread Andreas K. Hüttel
commit: 60e133e478676db32fc3a60a5b5a76ecda797994
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:21:54 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:34:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e133e4

dev-perl/Term-Encoding: Version bump 0.03

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Term-Encoding/Manifest|  1 +
 dev-perl/Term-Encoding/Term-Encoding-0.30.0.ebuild | 13 +
 2 files changed, 14 insertions(+)

diff --git a/dev-perl/Term-Encoding/Manifest b/dev-perl/Term-Encoding/Manifest
index 6e825eaad04..c6af75ac9e5 100644
--- a/dev-perl/Term-Encoding/Manifest
+++ b/dev-perl/Term-Encoding/Manifest
@@ -1 +1,2 @@
 DIST Term-Encoding-0.02.tar.gz 11373 BLAKE2B 
5bb0f410e75ed8196eb3d4bba3af9d184800be455753621856a37a4bb3704bcf73d50ec37f0ef104164abf83bbad46075bf6a0ff0d2ab5c2ff95b81c99dd80cd
 SHA512 
cd4cee9991d857c40b8e8747a645429dcb1f416552d9bb6bd59da609bc4eb11c295a9b4d4c9b1a6e738af57fbc7179419d07387f3342658bf7ec6da90256efad
+DIST Term-Encoding-0.03.tar.gz 10151 BLAKE2B 
1d611baf4b69f8aee6fb7e94993bb05267ed792780b3fb3c8360ba75a776e1523b85674eeb54b2fdcc6069e90cd1f699449fe02e87102178e7acbc92a9e2
 SHA512 
781be5087b65e90267daa3efa95bd03b3f2b2f8b3c8aac492238159c0dea3dfef7a82acded856b9551d389e2fcf5baf19a4ff9924da35377d28616b49015a0ce

diff --git a/dev-perl/Term-Encoding/Term-Encoding-0.30.0.ebuild 
b/dev-perl/Term-Encoding/Term-Encoding-0.30.0.ebuild
new file mode 100644
index 000..c345ef78632
--- /dev/null
+++ b/dev-perl/Term-Encoding/Term-Encoding-0.30.0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=MIYAGAWA
+DIST_VERSION=0.03
+inherit perl-module
+
+DESCRIPTION="Detect encoding of the current terminal"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ANSIScreen/

2021-08-13 Thread Andreas K. Hüttel
commit: c1638fd8b0cdace1283326be9049d8c9c350317f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:20:11 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:34:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1638fd8

dev-perl/Term-ANSIScreen: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...en-1.500.0-r1.ebuild => Term-ANSIScreen-1.500.0-r2.ebuild} | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/dev-perl/Term-ANSIScreen/Term-ANSIScreen-1.500.0-r1.ebuild 
b/dev-perl/Term-ANSIScreen/Term-ANSIScreen-1.500.0-r2.ebuild
similarity index 70%
rename from dev-perl/Term-ANSIScreen/Term-ANSIScreen-1.500.0-r1.ebuild
rename to dev-perl/Term-ANSIScreen/Term-ANSIScreen-1.500.0-r2.ebuild
index 3237fb1544d..e26c142f8bd 100644
--- a/dev-perl/Term-ANSIScreen/Term-ANSIScreen-1.500.0-r1.ebuild
+++ b/dev-perl/Term-ANSIScreen/Term-ANSIScreen-1.500.0-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-MODULE_AUTHOR=AUDREYT
-MODULE_VERSION=1.50
+DIST_AUTHOR=AUDREYT
+DIST_VERSION=1.50
 inherit perl-module
 
 DESCRIPTION="Terminal control using ANSI escape sequences"
@@ -12,8 +12,5 @@ DESCRIPTION="Terminal control using ANSI escape sequences"
 LICENSE="CC0-1.0"
 SLOT="0"
 KEYWORDS="amd64 ~hppa ~ppc x86"
-IUSE=""
-
-SRC_TEST="do"
 
 PATCHES=( "${FILESDIR}"/${PN}-1.50-no-dot-inc.patch )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ProgressBar-Quiet/

2021-08-13 Thread Andreas K. Hüttel
commit: 1461941f3969978e2577ee77664364079c040c0e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:26:22 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1461941f

dev-perl/Term-ProgressBar-Quiet: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...0.310.0-r1.ebuild => Term-ProgressBar-Quiet-0.310.0-r2.ebuild} | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git 
a/dev-perl/Term-ProgressBar-Quiet/Term-ProgressBar-Quiet-0.310.0-r1.ebuild 
b/dev-perl/Term-ProgressBar-Quiet/Term-ProgressBar-Quiet-0.310.0-r2.ebuild
similarity index 79%
rename from 
dev-perl/Term-ProgressBar-Quiet/Term-ProgressBar-Quiet-0.310.0-r1.ebuild
rename to 
dev-perl/Term-ProgressBar-Quiet/Term-ProgressBar-Quiet-0.310.0-r2.ebuild
index 5c9ed7f644d..16789e37e02 100644
--- a/dev-perl/Term-ProgressBar-Quiet/Term-ProgressBar-Quiet-0.310.0-r1.ebuild
+++ b/dev-perl/Term-ProgressBar-Quiet/Term-ProgressBar-Quiet-0.310.0-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=LBROCARD
 DIST_VERSION=0.31
@@ -11,15 +11,13 @@ DESCRIPTION="Provide a progress meter if run interactively"
 
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
dev-perl/IO-Interactive
dev-perl/Term-ProgressBar
dev-perl/Test-MockObject
 "
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
virtual/perl-Test-Simple



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ProgressBar/

2021-08-13 Thread Andreas K. Hüttel
commit: 064d9f4441888ae83ee5c4665f812839e364633a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:24:37 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=064d9f44

dev-perl/Term-ProgressBar: Version bump 2.22

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Term-ProgressBar/Manifest |  1 +
 .../Term-ProgressBar-2.220.0.ebuild| 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-perl/Term-ProgressBar/Manifest 
b/dev-perl/Term-ProgressBar/Manifest
index 823b11ce612..170941fa242 100644
--- a/dev-perl/Term-ProgressBar/Manifest
+++ b/dev-perl/Term-ProgressBar/Manifest
@@ -1 +1,2 @@
 DIST Term-ProgressBar-2.21.tar.gz 19309 BLAKE2B 
0f5997c581f6f31eb82ed552c396c4c64f1f281724888a1b04e70f7339e155742980886a1c0a58f52e2b1a5f2aa2915332eabb06b4f7f93206c66d5d028d6766
 SHA512 
0d778b86edffe095c8a320b52b4e9f482937e75ef17d0dcb5b3bd6cba8acc8e0fe26c893fa2b48bb5482ae13d4901d26273a796bc77152839eb5b14165b7d617
+DIST Term-ProgressBar-2.22.tar.gz 19506 BLAKE2B 
9c1fb861a15d516b915c4d918c9fc2024d68825f13ba2329c9a7c96028f962546c24751e3a687fb8c788a7d75feae61152895301fe6d107ccbf850efe06aeeca
 SHA512 
4274eb837c4d7f978ede2fe6b2705284a43df58cdd2cd0e2a8b96a3b71ef78f60cdb622416ede994a0ea79f3a72efcbaa4cd5b47645918235c8bbed6f9e64ad9

diff --git a/dev-perl/Term-ProgressBar/Term-ProgressBar-2.220.0.ebuild 
b/dev-perl/Term-ProgressBar/Term-ProgressBar-2.220.0.ebuild
new file mode 100644
index 000..ac86517c2ec
--- /dev/null
+++ b/dev-perl/Term-ProgressBar/Term-ProgressBar-2.220.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=MANWAR
+DIST_VERSION=2.22
+DIST_EXAMPLES=( "examples/*" )
+inherit perl-module
+
+DESCRIPTION="Provide a progress meter on a standard terminal"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-linux"
+
+RDEPEND="
+   virtual/perl-Carp
+   >=dev-perl/Class-MethodMaker-1.20.0
+   >=dev-perl/TermReadKey-2.140.0
+   virtual/perl-autodie
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=dev-perl/Test-Exception-0.310.0
+   >=dev-perl/Capture-Tiny-0.130.0
+   >=virtual/perl-Test-Simple-0.800.0
+   )
+"



[gentoo-commits] repo/gentoo:master commit in: virtual/imap-c-client/

2021-08-13 Thread Marek Szuba
commit: 07eab81f40af9be4bb797b83c879b0b1860418ba
Author: Marek Szuba  gentoo  org>
AuthorDate: Sat Aug 14 00:13:56 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sat Aug 14 00:14:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07eab81f

virtual/imap-c-client: remove net-mail/uw-imap from RDEPEND

Last-rited and subsequently removed from the tree in early 2019, and it
still being mentioned in this ebuild throws off nattka.

Signed-off-by: Marek Szuba  gentoo.org>

 virtual/imap-c-client/imap-c-client-2.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/virtual/imap-c-client/imap-c-client-2.ebuild 
b/virtual/imap-c-client/imap-c-client-2.ebuild
index 8d5baefe94c..50b6020c706 100644
--- a/virtual/imap-c-client/imap-c-client-2.ebuild
+++ b/virtual/imap-c-client/imap-c-client-2.ebuild
@@ -1,12 +1,11 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="Virtual for IMAP c-client"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
 IUSE="kerberos ssl"
 
-RDEPEND=" || ( net-libs/c-client[kerberos=,ssl=]
-   net-mail/uw-imap[kerberos=,ssl=] )"
+RDEPEND="net-libs/c-client[kerberos=,ssl=]"



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

2021-08-13 Thread Marek Szuba
commit: 5a3c29c8673cf422a5e6c0234722da5f8f68ddbf
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Aug 13 23:49:32 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sat Aug 14 00:05:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3c29c8

profiles/arch/riscv: remove portaudio-related USE masks

Signed-off-by: Marek Szuba  gentoo.org>

 profiles/arch/riscv/package.use.mask | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index e39693e2b55..306a494d393 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -20,12 +20,6 @@ media-gfx/gimp lua unwind
 # dependency on PyQt5[bluetooth].
 dev-python/ipython qt5
 
-# Alex Fan  (2021-08-08)
-# portaudio is not tested yet
-app-accessibility/espeak portaudio
-media-libs/openal portaudio
-media-sound/mpg123 portaudio
-
 # Alex Fan  (2021-08-05)
 # pdfannotextractor depends on java, not (sustainably) supported yet
 app-text/texlive pdfannotextractor
@@ -100,8 +94,8 @@ app-crypt/heimdal afs
 app-editors/emacs gconf m17n-lib
 #  - media-libs/libcanberra
 app-editors/vim sound
-#  - media-libs/portaudio, dev-embedded/libftdi, app-misc/inputlircd
-app-misc/lirc audio ftdi inputlirc
+#  - dev-embedded/libftdi, app-misc/inputlircd
+app-misc/lirc ftdi inputlirc
 #  - app-xemacs/ruby-modes (and by extension xemacs itself)
 dev-lang/ruby xemacs
 #  - media-libs/libcddb



[gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop/, net-im/telegram-desktop/files/

2021-08-13 Thread Georgy Yakovlev
commit: 1e74d5871b7aff2cd35b2fce381aa65b7df39fac
Author: Esteve Varela Colominas  gmail  com>
AuthorDate: Fri Aug 13 07:41:55 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Aug 13 23:29:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e74d587

net-im/telegram-desktop: Fix building with tg_owt[-screencast]

Removed a patch from tg_owt forgetting it actually refused to build
without. Upstream's current solution is a patch in telegram-desktop
itself.

Closes: https://bugs.gentoo.org/807907
Thanks-to: Teun Blok  msn.com>
Signed-off-by: Esteve Varela Colominas  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21974
Signed-off-by: Georgy Yakovlev  gentoo.org>

 ...desktop-2.8.11-fix-build-without-pipewire.patch | 26 ++
 .../telegram-desktop-2.8.11-r2.ebuild  |  1 +
 2 files changed, 27 insertions(+)

diff --git 
a/net-im/telegram-desktop/files/tdesktop-2.8.11-fix-build-without-pipewire.patch
 
b/net-im/telegram-desktop/files/tdesktop-2.8.11-fix-build-without-pipewire.patch
new file mode 100644
index 000..ecfc63abeb5
--- /dev/null
+++ 
b/net-im/telegram-desktop/files/tdesktop-2.8.11-fix-build-without-pipewire.patch
@@ -0,0 +1,26 @@
+Fix build without pipewire
+
+set_allow_pipewire isn't available if WEBRTC_USE_PIPEWIRE isn't set
+
+--- 
tdesktop-2.8.11-full.orig/Telegram/ThirdParty/tgcalls/tgcalls/desktop_capturer/DesktopCaptureSourceHelper.cpp
 
tdesktop-2.8.11-full/Telegram/ThirdParty/tgcalls/tgcalls/desktop_capturer/DesktopCaptureSourceHelper.cpp
+@@ -286,7 +286,7 @@
+ options.set_allow_use_magnification_api(false);
+ #elif defined WEBRTC_MAC
+ options.set_allow_iosurface(true);
+-#elif defined WEBRTC_LINUX
++#elif defined WEBRTC_USE_PIPEWIRE
+ options.set_allow_pipewire(true);
+ #endif // WEBRTC_WIN || WEBRTC_MAC
+ 
+--- 
tdesktop-2.8.11-full.orig/Telegram/ThirdParty/tgcalls/tgcalls/desktop_capturer/DesktopCaptureSourceManager.cpp
 
tdesktop-2.8.11-full/Telegram/ThirdParty/tgcalls/tgcalls/desktop_capturer/DesktopCaptureSourceManager.cpp
+@@ -33,7 +33,7 @@
+ result.set_allow_use_magnification_api(false);
+ #elif defined WEBRTC_MAC
+ result.set_allow_iosurface(type == DesktopCaptureType::Screen);
+-#elif defined WEBRTC_LINUX
++#elif defined WEBRTC_USE_PIPEWIRE
+ result.set_allow_pipewire(true);
+ #endif // WEBRTC_WIN || WEBRTC_MAC
+ result.set_detect_updated_region(true);

diff --git a/net-im/telegram-desktop/telegram-desktop-2.8.11-r2.ebuild 
b/net-im/telegram-desktop/telegram-desktop-2.8.11-r2.ebuild
index becc983ec4b..940c5b1aed2 100644
--- a/net-im/telegram-desktop/telegram-desktop-2.8.11-r2.ebuild
+++ b/net-im/telegram-desktop/telegram-desktop-2.8.11-r2.ebuild
@@ -79,6 +79,7 @@ PATCHES=(
"${FILESDIR}/tdesktop-2.8.10-jemalloc-only-telegram.patch"
# Already upstream
"${FILESDIR}/tdesktop-2.8.11-load-gtk-with-qlibrary.patch"
+   "${FILESDIR}/tdesktop-2.8.11-fix-build-without-pipewire.patch"
 )
 
 pkg_pretend() {



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

2021-08-13 Thread Sam James
commit: 53e56a3ec1c4a1451633e4d36eaef26504250eb1
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 23:24:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53e56a3e

profiles/arch: media-video/mjpg-streamer[input-raspicam] on non-arm(64)

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

 profiles/arch/arm/package.use.mask   | 4 
 profiles/arch/arm64/package.use.mask | 4 
 profiles/arch/base/package.use.mask  | 4 
 3 files changed, 12 insertions(+)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index f7ea396466a..56bf6c3d285 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-08-14)
+# Needs Raspberry Pi specific applications
+media-video/mjpg-streamer -input-raspicam
+
 # Marek Szuba  (2021-08-11)
 # dev-ruby/tty-editor not keyworded here yet (Bug #807685)
 app-text/htmltidy test

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 00ef2512e12..695b70d4318 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-08-14)
+# Needs Raspberry Pi specific applications
+media-video/mjpg-streamer -input-raspicam
+
 # Marek Szuba  (2021-08-11)
 # dev-ruby/tty-editor not keyworded here yet (Bug #807685)
 app-text/htmltidy test

diff --git a/profiles/arch/base/package.use.mask 
b/profiles/arch/base/package.use.mask
index c71049984f0..94a2b69a910 100644
--- a/profiles/arch/base/package.use.mask
+++ b/profiles/arch/base/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2021-08-14)
+# Needs Raspberry Pi specific applications
+media-video/mjpg-streamer input-raspicam
+
 # Sam James  (2021-07-12)
 # Haskell is only available on amd64/x86 right now in Gentoo
 # bug #801649



[gentoo-commits] repo/gentoo:master commit in: media-video/mjpg-streamer/

2021-08-13 Thread Sam James
commit: 547d473472b58b22729234b9d213f2a2abdca3fd
Author: ChaosEngine  gmail  com>
AuthorDate: Sat May 30 14:11:09 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547d4734

media-video/mjpg-streamer: bump to 0_pre20200524-r1

Closes: https://bugs.gentoo.org/724802
Closes: https://bugs.gentoo.org/665122
Package-Manager: Portage-2.3.99, Repoman 2.3.22
Signed-off-by: Andrzej Pauli  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-video/mjpg-streamer/Manifest |  1 +
 media-video/mjpg-streamer/metadata.xml |  6 ++
 .../mjpg-streamer-0_pre20200524-r1.ebuild  | 91 ++
 3 files changed, 98 insertions(+)

diff --git a/media-video/mjpg-streamer/Manifest 
b/media-video/mjpg-streamer/Manifest
index d7dd0161571..0cc52fbbb0e 100644
--- a/media-video/mjpg-streamer/Manifest
+++ b/media-video/mjpg-streamer/Manifest
@@ -1 +1,2 @@
 DIST mjpg-streamer-0_pre20120621.tar.bz2 471546 BLAKE2B 
3ede2a60062bba7c91ddfa0d7151e32cd8dac11a083cc6a88dc350a523174685b2ff066fa99db13b82a6a4960d370b97b27aa3663ac323fa54908bb0108857d0
 SHA512 
dfc6077ec03fe4f239d8e25b65b7808bd489a954d8cf3aeed444e68fd9536720c2c888a5fa9f4b8d0152dab5ca0bd166a46f2cb22a357ba816eb5bc79ff11332
+DIST mjpg-streamer-0_pre20200524.tar.gz 711183 BLAKE2B 
3a40f20f518a53c0c6046cf37728c46c2a843a1dd0ef0086c77940b5133f1337445b1edb2c21edc1bbacc588f7c7b45b1530871c944695c2ae02cf327fde6847
 SHA512 
d6e910f6693b27c16c33749458affcb4d9336bd15c642156c452fcbc4a8c2ba9f4a6102e6b94f698fc6fb48da9564a09cb0f804a5ac52201e566adf798a70ba2

diff --git a/media-video/mjpg-streamer/metadata.xml 
b/media-video/mjpg-streamer/metadata.xml
index 2e4cb6515fd..3df394f71ec 100644
--- a/media-video/mjpg-streamer/metadata.xml
+++ b/media-video/mjpg-streamer/metadata.xml
@@ -24,6 +24,8 @@
it's content
Plugin that sends video stream from UVC
compatible camera
+   Plugin that takes http-input
+   Plugin that sends video stream from 
PTP2 compatible camera
Plugin that saves received content 
under given
location
Plugin receiving content over UDP and 
storing to
@@ -33,7 +35,11 @@
Auto focusing plugin
Plugin which provides a mechanism to 
take
snapshots with a trigger from a UDP packet
+   Plugin which allows to see output 
with viewer
+   Plugin which provides zmqserver 
processing
Installs WWW content
+   Enable experimental HTTP 
management option
+   Enable camera WXP compatible 
format


mjpg-streamer

diff --git a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild 
b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
new file mode 100644
index 000..e0d1f254f9e
--- /dev/null
+++ b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="MJPG-streamer takes JPGs from Linux-UVC compatible webcams"
+HOMEPAGE="https://github.com/jacksonliam/mjpg-streamer;
+EGIT_COMMIT="85f89a8c321e799fabb1693c5d133f3fb48ee748"
+SRC_URI="https://github.com/jacksonliam/${PN}/archive/${EGIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+INPUT_PLUGINS="input-testpicture input-control input-file input-uvc input-http 
input-ptp2"
+OUTPUT_PLUGINS="output-file output-udp output-http output-autofocus 
output-rtsp output-viewer output-zmqserver"
+IUSE_PLUGINS="${INPUT_PLUGINS} ${OUTPUT_PLUGINS}"
+IUSE="input-testpicture input-control +input-file input-uvc input-http 
input-ptp2
+   output-file output-udp +output-http output-autofocus output-rtsp 
output-viewer output-zmqserver
+   www http-management wxp-compat"
+REQUIRED_USE="|| ( ${INPUT_PLUGINS} )
+   || ( ${OUTPUT_PLUGINS} )"
+
+RDEPEND="virtual/jpeg
+   input-uvc? ( media-libs/libv4l )
+   input-ptp2? ( media-libs/libgphoto2 )
+   output-zmqserver? (
+   dev-libs/protobuf-c
+   net-libs/zeromq
+   )"
+DEPEND="${RDEPEND}
+   input-testpicture? ( media-gfx/imagemagick )"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}/${PN}-experimental"
+
+src_prepare() {
+   sed -i -e "s|.*RPATH.*||g" CMakeLists.txt || die
+   if use wxp-compat; then
+   sed -i -e \
+   's|^add_feature_option(WXP_COMPAT "Enable compatibility 
with WebcamXP" OFF)|add_feature_option(WXP_COMPAT "Enable compatibility with 
WebcamXP" ON)|g' \
+   CMakeLists.txt || die
+   fi
+
+   local flag switch
+   for flag in ${IUSE_PLUGINS}; do
+   use ${flag} && switch='' || switch='#'
+ 

[gentoo-commits] repo/gentoo:master commit in: media-video/mjpg-streamer/

2021-08-13 Thread Sam James
commit: 756b6abf8f45094c7b649fd00878ed7d80db7905
Author: ChaosEngine  gmail  com>
AuthorDate: Fri Dec 18 18:37:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=756b6abf

media-video/mjpg-streamer: Raspberry Pi camera support via the input_raspicam 
plugin

Closes: https://github.com/gentoo/gentoo/pull/16015
Package-Manager: Portage-2.3.99, Repoman 2.3.22
Signed-off-by: Andrzej Pauli  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-video/mjpg-streamer/metadata.xml  | 1 +
 media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild | 7 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/media-video/mjpg-streamer/metadata.xml 
b/media-video/mjpg-streamer/metadata.xml
index 3df394f71ec..8e9f536d7b3 100644
--- a/media-video/mjpg-streamer/metadata.xml
+++ b/media-video/mjpg-streamer/metadata.xml
@@ -26,6 +26,7 @@
compatible camera
Plugin that takes http-input
Plugin that sends video stream from 
PTP2 compatible camera
+   Raspberry Pi camera support via the 
input_raspicam plugin
Plugin that saves received content 
under given
location
Plugin receiving content over UDP and 
storing to

diff --git a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild 
b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
index 231db6a85a2..6e33ef5d6e9 100644
--- a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
+++ b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
@@ -14,10 +14,10 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
 
-INPUT_PLUGINS="input-testpicture input-control input-file input-uvc input-http 
input-ptp2"
+INPUT_PLUGINS="input-testpicture input-control input-file input-uvc input-http 
input-ptp2 input-raspicam"
 OUTPUT_PLUGINS="output-file output-udp output-http output-autofocus 
output-rtsp output-viewer output-zmqserver"
 IUSE_PLUGINS="${INPUT_PLUGINS} ${OUTPUT_PLUGINS}"
-IUSE="input-testpicture input-control +input-file input-uvc input-http 
input-ptp2
+IUSE="input-testpicture input-control +input-file input-uvc input-http 
input-ptp2 input-raspicam
output-file output-udp +output-http output-autofocus output-rtsp 
output-viewer output-zmqserver
www http-management wxp-compat"
 REQUIRED_USE="|| ( ${INPUT_PLUGINS} )
@@ -26,6 +26,9 @@ REQUIRED_USE="|| ( ${INPUT_PLUGINS} )
 RDEPEND="virtual/jpeg
input-uvc? ( media-libs/libv4l acct-group/video )
input-ptp2? ( media-libs/libgphoto2 )
+   input-raspicam? (
+   || ( media-libs/raspberrypi-userland 
media-libs/raspberrypi-userland-bin )
+   )
output-zmqserver? (
dev-libs/protobuf-c
net-libs/zeromq



[gentoo-commits] repo/gentoo:master commit in: media-video/mjpg-streamer/

2021-08-13 Thread Sam James
commit: 7cc95ee5bc24d47a8720bcc29c4f45faceab2e61
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 23:26:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc95ee5

media-video/mjpg-streamer: fix IncorrectCopyright

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

 media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild 
b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
index 6e33ef5d6e9..4e5e920bd58 100644
--- a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
+++ b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mplex/

2021-08-13 Thread Sam James
commit: 3f283cb7764fc47c72b1206e393f5d8de26c256c
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 22:48:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f283cb7

media-plugins/gst-plugins-mplex: subscribe to media-video/mjpegtools subslot

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

 ...t-plugins-mplex-1.16.3.ebuild => gst-plugins-mplex-1.16.3-r1.ebuild} | 2 +-
 ...t-plugins-mplex-1.18.4.ebuild => gst-plugins-mplex-1.18.4-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.16.3.ebuild 
b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.16.3-r1.ebuild
similarity index 83%
rename from media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.16.3.ebuild
rename to media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.16.3-r1.ebuild
index 46aeaecd3d9..49a4f7faf21 100644
--- a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.16.3.ebuild
+++ b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.16.3-r1.ebuild
@@ -10,5 +10,5 @@ DESCRIPTION="MPEG/DVD/SVCD/VCD video/audio multiplexing 
plugin for GStreamer"
 KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
-RDEPEND=">=media-video/mjpegtools-2.1.0-r1[${MULTILIB_USEDEP}]"
+RDEPEND=">=media-video/mjpegtools-2.1.0-r1:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"

diff --git a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.18.4.ebuild 
b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.18.4-r1.ebuild
similarity index 84%
rename from media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.18.4.ebuild
rename to media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.18.4-r1.ebuild
index b309bc75425..3e4132e655b 100644
--- a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.18.4.ebuild
+++ b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.18.4-r1.ebuild
@@ -10,5 +10,5 @@ DESCRIPTION="MPEG/DVD/SVCD/VCD video/audio multiplexing 
plugin for GStreamer"
 KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 IUSE=""
 
-RDEPEND=">=media-video/mjpegtools-2.1.0-r1[${MULTILIB_USEDEP}]"
+RDEPEND=">=media-video/mjpegtools-2.1.0-r1:=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-video/transcode/

2021-08-13 Thread Sam James
commit: 5a00ae2646cfa8ab346e50cde4e5e55938a32880
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 22:04:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a00ae26

media-video/transcode: subscribe to media-video/mjpegtools subslot

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

 .../{transcode-1.1.7-r5.ebuild => transcode-1.1.7-r6.ebuild}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/transcode/transcode-1.1.7-r5.ebuild 
b/media-video/transcode/transcode-1.1.7-r6.ebuild
similarity index 98%
rename from media-video/transcode/transcode-1.1.7-r5.ebuild
rename to media-video/transcode/transcode-1.1.7-r6.ebuild
index 2a8fe279f70..88ed88c76a9 100644
--- a/media-video/transcode/transcode-1.1.7-r5.ebuild
+++ b/media-video/transcode/transcode-1.1.7-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2002-2020 Gentoo Authors
+# Copyright 2002-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -26,7 +26,7 @@ RDEPEND="
imagemagick? ( media-gfx/imagemagick:= )
jpeg? ( virtual/jpeg:0= )
lzo? ( >=dev-libs/lzo-2 )
-   mjpeg? ( media-video/mjpegtools )
+   mjpeg? ( media-video/mjpegtools:= )
mp3? ( media-sound/lame )
mpeg? ( media-libs/libmpeg2 )
ogg? ( media-libs/libogg )



[gentoo-commits] repo/gentoo:master commit in: media-video/mjpg-streamer/

2021-08-13 Thread Sam James
commit: 1f3f26edc5a68c2d536ebc17db6a1bf652a3e8fa
Author: ChaosEngine  gmail  com>
AuthorDate: Sat Dec 12 10:42:19 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f3f26ed

media-video/mjpg-streamer: misc fixes

* Adding ~arm64 keyword
* RDEPEND from acct-group/video when UVC input plugin is enabled with some info

Package-Manager: Portage-2.3.99, Repoman 2.3.22
Signed-off-by: Andrzej Pauli  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 .../mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild  | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild 
b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
index e0d1f254f9e..231db6a85a2 100644
--- a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
+++ b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/jacksonliam/${PN}/archive/${EGIT_COMMIT}.tar.gz -> $
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 INPUT_PLUGINS="input-testpicture input-control input-file input-uvc input-http 
input-ptp2"
 OUTPUT_PLUGINS="output-file output-udp output-http output-autofocus 
output-rtsp output-viewer output-zmqserver"
@@ -24,7 +24,7 @@ REQUIRED_USE="|| ( ${INPUT_PLUGINS} )
|| ( ${OUTPUT_PLUGINS} )"
 
 RDEPEND="virtual/jpeg
-   input-uvc? ( media-libs/libv4l )
+   input-uvc? ( media-libs/libv4l acct-group/video )
input-ptp2? ( media-libs/libgphoto2 )
output-zmqserver? (
dev-libs/protobuf-c
@@ -81,11 +81,17 @@ src_install() {
 }
 
 pkg_postinst() {
+   einfo
elog "Remember to set an input and output plugin for mjpg-streamer."
 
+   if use input-uvc ; then
+   elog "To use the UVC plugin as a regular user, you must be a 
part of the video group"
+   fi
+
if use www ; then
-   echo
+   einfo
elog "An example webinterface has been installed into"
elog "/usr/share/mjpg-streamer/www for your usage."
fi
+   einfo
 }



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mpeg2enc/

2021-08-13 Thread Sam James
commit: ba02eea03233585942abe38d8ce39a1343ad794e
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 22:49:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba02eea0

media-plugins/gst-plugins-mpeg2enc: subscribe to media-video/mjpegtools subslot

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

 ...ugins-mpeg2enc-1.16.3.ebuild => gst-plugins-mpeg2enc-1.16.3-r1.ebuild} | 0
 ...ugins-mpeg2enc-1.18.4.ebuild => gst-plugins-mpeg2enc-1.18.4-r1.ebuild} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.16.3.ebuild 
b/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.16.3-r1.ebuild
similarity index 100%
rename from 
media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.16.3.ebuild
rename to 
media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.16.3-r1.ebuild

diff --git 
a/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.18.4.ebuild 
b/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.18.4-r1.ebuild
similarity index 100%
rename from 
media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.18.4.ebuild
rename to 
media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.18.4-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: media-video/mjpegtools/

2021-08-13 Thread Sam James
commit: 3356dd0bf530582ee8b4ab6bab3324588f373378
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 22:04:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 23:28:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3356dd0b

media-video/mjpegtools: add subslot for 2.2.0

Observed as:
```
>>> package: media-video/mjpegtools-2.2.0
 *  - /usr/lib64/libmjpegutils-2.1.so.0
 *  - /usr/lib64/libmjpegutils-2.1.so.0.0.0
 *  used by /usr/bin/tcextract (media-video/transcode-1.1.7-r5)
 *  used by /usr/bin/tcprobe (media-video/transcode-1.1.7-r5)
 *  used by /usr/lib64/transcode/export_mpeg2enc.so 
(media-video/transcode-1.1.7-r5)
 *  used by 3 other files
Use emerge @preserved-rebuild to rebuild packages using these libraries
```

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

 .../mjpegtools/{mjpegtools-2.2.0.ebuild => mjpegtools-2.2.0-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-video/mjpegtools/mjpegtools-2.2.0.ebuild 
b/media-video/mjpegtools/mjpegtools-2.2.0-r1.ebuild
similarity index 97%
rename from media-video/mjpegtools/mjpegtools-2.2.0.ebuild
rename to media-video/mjpegtools/mjpegtools-2.2.0-r1.ebuild
index a0365f1e4e8..0616cbf4c0a 100644
--- a/media-video/mjpegtools/mjpegtools-2.2.0.ebuild
+++ b/media-video/mjpegtools/mjpegtools-2.2.0-r1.ebuild
@@ -10,7 +10,8 @@ HOMEPAGE="http://mjpeg.sourceforge.net/;
 SRC_URI="mirror://sourceforge/mjpeg/${P}.tar.bz2"
 
 LICENSE="GPL-2"
-SLOT="1"
+# Compare with version in SONAME on major bumps (e.g. 2.1 -> 2.2)
+SLOT="1/2.2"
 KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc 
x86"
 IUSE="cpu_flags_x86_mmx dv gtk png quicktime sdl sdlgfx static-libs"
 REQUIRED_USE="sdlgfx? ( sdl )"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/roccat-tools/files/, sys-apps/roccat-tools/

2021-08-13 Thread David Seifert
commit: dea923aa48ca7c97492b24780c374a0181cb5273
Author: David Seifert  gentoo  org>
AuthorDate: Fri Aug 13 23:24:01 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Aug 13 23:24:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dea923aa

sys-apps/roccat-tools: fix -fno-common / GCC 10

Closes: https://bugs.gentoo.org/776571
Signed-off-by: David Seifert  gentoo.org>

 .../roccat-tools/files/roccat-tools-5.9.0-fno-common.patch| 11 +++
 sys-apps/roccat-tools/roccat-tools-5.9.0-r101.ebuild  |  1 +
 2 files changed, 12 insertions(+)

diff --git a/sys-apps/roccat-tools/files/roccat-tools-5.9.0-fno-common.patch 
b/sys-apps/roccat-tools/files/roccat-tools-5.9.0-fno-common.patch
new file mode 100644
index 000..ba37866efe7
--- /dev/null
+++ b/sys-apps/roccat-tools/files/roccat-tools-5.9.0-fno-common.patch
@@ -0,0 +1,11 @@
+--- a/ryosmk/libroccatryosmk/ryos_device.h
 b/ryosmk/libroccatryosmk/ryos_device.h
+@@ -22,7 +22,7 @@
+ 
+ G_BEGIN_DECLS
+ 
+-enum {
++typedef enum {
+   RYOS_WRITE_CHECK_WAIT_LIGHT_CONTROL = 10,
+ } RyosWriteCheckWait;
+ 

diff --git a/sys-apps/roccat-tools/roccat-tools-5.9.0-r101.ebuild 
b/sys-apps/roccat-tools/roccat-tools-5.9.0-r101.ebuild
index ee1371ca60c..84bfb0cbab3 100644
--- a/sys-apps/roccat-tools/roccat-tools-5.9.0-r101.ebuild
+++ b/sys-apps/roccat-tools/roccat-tools-5.9.0-r101.ebuild
@@ -75,6 +75,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/${PN}-5.9.0-cmake_lua_impl.patch
+   "${FILESDIR}"/${PN}-5.9.0-fno-common.patch
 )
 
 DOCS=( Changelog KNOWN_LIMITATIONS README )



[gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/

2021-08-13 Thread Marek Szuba
commit: 20a82fae33e9c61e233fae35a51292068b571d39
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Aug 13 23:14:59 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Aug 13 23:15:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a82fae

net-p2p/litecoind: block >=dev-libs/leveldb-1.23

Closes: https://bugs.gentoo.org/808047
Signed-off-by: Marek Szuba  gentoo.org>

 net-p2p/litecoind/litecoind-0.18.1-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild 
b/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
index 9bc5f8cbf0f..e7f1f1f2a4d 100644
--- a/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
+++ b/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
@@ -21,11 +21,12 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="cpu_flags_x86_sse2 upnp +wallet"
 
+# uses an internal leveldb API (MemEnv) which newer versions no longer expose
 RDEPEND="
acct-group/litecoin
acct-user/litecoin
dev-libs/boost:=[threads(+)]
-   dev-libs/leveldb:=
+   

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

2021-08-13 Thread David Seifert
commit: 033e141d99d323eb644c54ea1f25aedca6d08b4a
Author: David Seifert  gentoo  org>
AuthorDate: Fri Aug 13 23:05:26 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Aug 13 23:05:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033e141d

media-gfx/ebdftopcf: indent metadata.xml

Signed-off-by: David Seifert  gentoo.org>

 media-gfx/ebdftopcf/metadata.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/media-gfx/ebdftopcf/metadata.xml b/media-gfx/ebdftopcf/metadata.xml
index 4ade55bae66..f9dae48d94a 100644
--- a/media-gfx/ebdftopcf/metadata.xml
+++ b/media-gfx/ebdftopcf/metadata.xml
@@ -1,11 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   robb...@gentoo.org
-
-
-   fo...@gentoo.org
-   Fonts
-
+   
+   robb...@gentoo.org
+   
+   
+   fo...@gentoo.org
+   Fonts
+   
 



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

2021-08-13 Thread David Seifert
commit: a3809dd53c199c3dcac213508932835f028fded7
Author: Bernd Waibel  posteo  net>
AuthorDate: Fri Aug 13 23:05:25 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Aug 13 23:05:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3809dd5

media-gfx/ebdftopcf: don't install manpage

Don't install the font-ebdftopcf.eclass.5 manual page to avoid a
collision with recent app-doc/eclass-manpages package.

Closes: https://github.com/gentoo/gentoo/pull/21979
Closes: https://bugs.gentoo.org/801943
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Bernd Waibel  posteo.net>
Signed-off-by: David Seifert  gentoo.org>

 media-gfx/ebdftopcf/{ebdftopcf-2.ebuild => ebdftopcf-2-r1.ebuild} | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/media-gfx/ebdftopcf/ebdftopcf-2.ebuild 
b/media-gfx/ebdftopcf/ebdftopcf-2-r1.ebuild
similarity index 90%
rename from media-gfx/ebdftopcf/ebdftopcf-2.ebuild
rename to media-gfx/ebdftopcf/ebdftopcf-2-r1.ebuild
index 6db2d76e918..de246685964 100644
--- a/media-gfx/ebdftopcf/ebdftopcf-2.ebuild
+++ b/media-gfx/ebdftopcf/ebdftopcf-2-r1.ebuild
@@ -10,15 +10,14 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE=""
 
 # these apps are used at runtime by ebdftopcf
-RDEPEND="x11-apps/bdftopcf
-   app-arch/gzip"
+RDEPEND="
+   app-arch/gzip
+   x11-apps/bdftopcf"
 
 src_install() {
insinto /usr/share/ebdftopcf
doins Makefile.ebdftopcf
dodoc README
-   doman *.5
 }



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/jdupes/

2021-08-13 Thread Anna Vyalkova
commit: d76d6154411bbaaa51a775817c806c225ea28311
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Fri Aug 13 18:59:41 2021 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Fri Aug 13 19:01:12 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d76d6154

app-misc/jdupes: fix ebuild

Closes: https://bugs.gentoo.org/807961
Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 app-misc/jdupes/Manifest |  2 +-
 app-misc/jdupes/jdupes-1.20.0.ebuild | 28 +---
 app-misc/jdupes/metadata.xml | 10 +-
 3 files changed, 27 insertions(+), 13 deletions(-)

diff --git a/app-misc/jdupes/Manifest b/app-misc/jdupes/Manifest
index 121841923..d6600033b 100644
--- a/app-misc/jdupes/Manifest
+++ b/app-misc/jdupes/Manifest
@@ -1 +1 @@
-DIST v1.20.0.tar.gz 93809 BLAKE2B 
cce6ca06794ee3af9523e3c86550ff2b49a5f42a13278bd61c99099b4c2cab1a392bc973c44593acb23b7e8f99d4f23518f526244182a0d9d3b4084e80cc1015
 SHA512 
62bb78a902e77f0c9acce93c7c139fc2aaa5911aa85322a372dd0e6b375ee5c4992e91b821fa3f9eb407820657f57591303c9bc14a9fe453d9a4c5651caf05ff
+DIST jdupes-1.20.0.tar.gz 93809 BLAKE2B 
cce6ca06794ee3af9523e3c86550ff2b49a5f42a13278bd61c99099b4c2cab1a392bc973c44593acb23b7e8f99d4f23518f526244182a0d9d3b4084e80cc1015
 SHA512 
62bb78a902e77f0c9acce93c7c139fc2aaa5911aa85322a372dd0e6b375ee5c4992e91b821fa3f9eb407820657f57591303c9bc14a9fe453d9a4c5651caf05ff

diff --git a/app-misc/jdupes/jdupes-1.20.0.ebuild 
b/app-misc/jdupes/jdupes-1.20.0.ebuild
index aa250ca62..02b728d3d 100644
--- a/app-misc/jdupes/jdupes-1.20.0.ebuild
+++ b/app-misc/jdupes/jdupes-1.20.0.ebuild
@@ -3,26 +3,32 @@
 
 EAPI=7
 
-#inherit toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Identify and manipulate duplicate files"
-HOMEPAGE="https://www.jodybruchon.com/software/#jdupes;
-SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v1.20.0.tar.gz;
+HOMEPAGE="https://www.jodybruchon.com/software/#jdupes
+https://github.com/jbruchon/jdupes;
+SRC_URI="https://github.com/jbruchon/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="low-memory"
 
-RDEPEND=""
+# ./test.sh: No such file or directory
+RESTRICT="test"
+
+DOCS=( CHANGES README.md README.stupid_dupes )
 
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-#DOCS=( CHANGES CONTRIBUTORS README )
 src_configure() {
-#  econf
-   sed -in 's/local//' Makefile
+   tc-export CC
 }
+
 src_compile() {
-   emake
+   emake ENABLE_DEDUPE=1 HARDEN=1 LOW_MEMORY=$(usex low-memory 1 0)
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+   einstalldocs
 }

diff --git a/app-misc/jdupes/metadata.xml b/app-misc/jdupes/metadata.xml
index 311b7d127..acdd717d8 100644
--- a/app-misc/jdupes/metadata.xml
+++ b/app-misc/jdupes/metadata.xml
@@ -6,10 +6,18 @@
Alex Holcomb


+   jbruchon/jdupes
https://github.com/jbruchon/jdupes/issues


-   jdupes is a program for finding and dealing with duplicate files. It 
was forked from fdupes, and intends to accomplish the same result while adding 
features and being noticeably faster.
+   jdupes is a program for finding and dealing with duplicate
+   files. It was forked from fdupes, and intends to accomplish the
+   same result while adding features and being noticeably faster.

+   
+   
+   Build for low memory usage at the expense of speed and 
features
+   
+   
 
 



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/tuir/

2021-08-13 Thread Anna Vyalkova
commit: d7cca639d80e72550f39309a853f38f912a0c3e9
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Fri Aug 13 18:34:19 2021 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Fri Aug 13 18:34:19 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d7cca639

net-misc/tuir: deselect failing test

Closes: https://bugs.gentoo.org/807921
Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 net-misc/tuir/tuir-1.29.0.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-misc/tuir/tuir-1.29.0.ebuild b/net-misc/tuir/tuir-1.29.0.ebuild
index ada505887..8df2a9031 100644
--- a/net-misc/tuir/tuir-1.29.0.ebuild
+++ b/net-misc/tuir/tuir-1.29.0.ebuild
@@ -26,3 +26,7 @@ RDEPEND="
 BDEPEND="test? ( dev-python/vcrpy )"
 
 distutils_enable_tests pytest
+
+python_test() {
+   epytest --deselect 
tests/test_content.py::test_content_humanize_timestamp
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/, net-libs/nodejs/

2021-08-13 Thread Marek Szuba
commit: fd37af5f175f9afaaa691147a3e6335fac5a7cf5
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Aug 13 22:55:30 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Aug 13 22:55:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd37af5f

net-libs/nodejs: do not purge unneeded bundled dependencies

Turns out this breaks the install phase in at least v16. No idea how
I've managed to get that one slip past my build testing - but there you
go.

Closes: https://bugs.gentoo.org/808063
Signed-off-by: Marek Szuba  gentoo.org>

 net-libs/nodejs/nodejs-12.22.5.ebuild |  8 
 net-libs/nodejs/nodejs-14.17.5.ebuild | 11 ---
 net-libs/nodejs/nodejs-16.6.2.ebuild  | 11 ---
 profiles/package.mask |  5 -
 4 files changed, 35 deletions(-)

diff --git a/net-libs/nodejs/nodejs-12.22.5.ebuild 
b/net-libs/nodejs/nodejs-12.22.5.ebuild
index 19fc9cce0e0..a8662cb49d0 100644
--- a/net-libs/nodejs/nodejs-12.22.5.ebuild
+++ b/net-libs/nodejs/nodejs-12.22.5.ebuild
@@ -88,14 +88,6 @@ src_prepare() {
export V=1
export BUILDTYPE=Release
 
-   # There have been cases of other bundled deps bypassing --shared-foo / 
USE=system-bar,
-   # therefore play it safe and make sure dependencies which are not 
supposed to be bundled
-   # aren't there in the first place.
-   rm -r deps/{brotli,cares,nghttp2,uv,zlib} || die "Failed to remove 
undesired bundled deps"
-   if use system-ssl; then
-   rm -r deps/openssl || die "Failed to remoce bundled OpenSSL"
-   fi
-
# fix compilation on Darwin
# https://code.google.com/p/gyp/issues/detail?id=260
sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || 
die

diff --git a/net-libs/nodejs/nodejs-14.17.5.ebuild 
b/net-libs/nodejs/nodejs-14.17.5.ebuild
index 14e49bf0eb0..d819d8b826f 100644
--- a/net-libs/nodejs/nodejs-14.17.5.ebuild
+++ b/net-libs/nodejs/nodejs-14.17.5.ebuild
@@ -81,17 +81,6 @@ src_prepare() {
export V=1
export BUILDTYPE=Release
 
-   # There have been cases of other bundled deps bypassing --shared-foo / 
USE=system-bar,
-   # therefore play it safe and make sure dependencies which are not 
supposed to be bundled
-   # aren't there in the first place.
-   rm -r deps/{brotli,cares,nghttp2,uv,zlib} || die "Failed to remove 
undesired bundled deps"
-   if use system-icu; then
-   rm -r deps/icu-small || die "Failed to remove bundled ICU"
-   fi
-   if use system-ssl; then
-   rm -r deps/openssl || die "Failed to remoce bundled OpenSSL"
-   fi
-
# fix compilation on Darwin
# https://code.google.com/p/gyp/issues/detail?id=260
sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || 
die

diff --git a/net-libs/nodejs/nodejs-16.6.2.ebuild 
b/net-libs/nodejs/nodejs-16.6.2.ebuild
index df3eeec96e6..44eb7d90f0a 100644
--- a/net-libs/nodejs/nodejs-16.6.2.ebuild
+++ b/net-libs/nodejs/nodejs-16.6.2.ebuild
@@ -73,17 +73,6 @@ src_prepare() {
export V=1
export BUILDTYPE=Release
 
-   # There have been cases of other bundled deps bypassing --shared-foo / 
USE=system-bar,
-   # therefore play it safe and make sure dependencies which are not 
supposed to be bundled
-   # aren't there in the first place.
-   rm -r deps/{brotli,cares,nghttp2,uv,zlib} || die "Failed to remove 
undesired bundled deps"
-   if use system-icu; then
-   rm -r deps/icu-small || die "Failed to remove bundled ICU"
-   fi
-   if use system-ssl; then
-   rm -r deps/openssl || die "Failed to remoce bundled OpenSSL"
-   fi
-
# fix compilation on Darwin
# https://code.google.com/p/gyp/issues/detail?id=260
sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || 
die

diff --git a/profiles/package.mask b/profiles/package.mask
index 33540076bcb..692ee5b10e3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,11 +32,6 @@
 
 #--- END OF EXAMPLES ---
 
-# Sam James  (2021-08-13)
-# Fails to build with make error in src_install phase.
-# See bug #808063.
-=net-libs/nodejs-16.6.2
-
 # David Seifert  (2021-08-13)
 # Dead upstream, new "forked" upstream that just added the last version
 # on Github but doesn't maintain them. Unmaintained for the past 10



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

2021-08-13 Thread Davide Pesavento
commit: e45f1203dd9c91172022b48ba0c18050131be006
Author: Davide Pesavento  gentoo  org>
AuthorDate: Fri Aug 13 22:09:01 2021 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Fri Aug 13 22:09:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e45f1203

dev-python/sip: drop 4.19.25

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Davide Pesavento  gentoo.org>

 dev-python/sip/sip-4.19.25.ebuild | 94 ---
 1 file changed, 94 deletions(-)

diff --git a/dev-python/sip/sip-4.19.25.ebuild 
b/dev-python/sip/sip-4.19.25.ebuild
deleted file mode 100644
index e9338c4d957..000
--- a/dev-python/sip/sip-4.19.25.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit python-r1 toolchain-funcs
-
-DESCRIPTION="Python bindings generator for C/C++ libraries"
-HOMEPAGE="https://www.riverbankcomputing.com/software/sip/;
-
-MY_PN=sip
-MY_P=${MY_PN}-${PV/_pre/.dev}
-if [[ ${PV} == *_pre* ]]; then
-   SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.gz;
-else
-   
SRC_URI="https://www.riverbankcomputing.com/static/Downloads/${MY_PN}/${PV}/${MY_P}.tar.gz;
-fi
-
-# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h
-SLOT="0/12"
-LICENSE="|| ( GPL-2 GPL-3 SIP )"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
-IUSE="doc"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${PN}-4.18-darwin.patch )
-
-src_prepare() {
-   # Sub-slot sanity check
-   local sub_slot=${SLOT#*/}
-   local sip_api_major_nr=$(sed -nre 's:^#define 
SIP_API_MAJOR_NR\s+([0-9]+):\1:p' siplib/sip.h || die)
-   if [[ ${sub_slot} != ${sip_api_major_nr} ]]; then
-   eerror
-   eerror "Ebuild sub-slot (${sub_slot}) does not match 
SIP_API_MAJOR_NR (${sip_api_major_nr})"
-   eerror "Please update SLOT variable as follows:"
-   eerror "SLOT=\"${SLOT%%/*}/${sip_api_major_nr}\""
-   eerror
-   die "sub-slot sanity check failed"
-   fi
-
-   default
-}
-
-src_configure() {
-   configuration() {
-   local incdir=$(python_get_includedir)
-   local myconf=(
-   "${PYTHON}"
-   "${S}"/configure.py
-   --sysroot="${ESYSROOT}/usr"
-   --bindir="${EPREFIX}/usr/bin"
-   --destdir="$(python_get_sitedir)"
-   --incdir="${incdir#${SYSROOT}}"
-   AR="$(tc-getAR) cqs"
-   CC="$(tc-getCC)"
-   CFLAGS="${CFLAGS}"
-   CFLAGS_RELEASE=
-   CXX="$(tc-getCXX)"
-   CXXFLAGS="${CXXFLAGS}"
-   CXXFLAGS_RELEASE=
-   LINK="$(tc-getCXX)"
-   LINK_SHLIB="$(tc-getCXX)"
-   LFLAGS="${LDFLAGS}"
-   LFLAGS_RELEASE=
-   RANLIB=
-   STRIP=
-   )
-   echo "${myconf[@]}"
-   "${myconf[@]}" || die
-   }
-   python_foreach_impl run_in_build_dir configuration
-}
-
-src_compile() {
-   python_foreach_impl run_in_build_dir default
-}
-
-src_install() {
-   installation() {
-   emake DESTDIR="${D}" install
-   python_optimize
-   }
-   python_foreach_impl run_in_build_dir installation
-
-   einstalldocs
-   use doc && dodoc -r doc/html
-}



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

2021-08-13 Thread Mike Gilbert
commit: 637e209c6a230e156d51bc6ac6bdc4b99f05c70d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Aug 13 21:59:18 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Aug 13 22:07:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=637e209c

net-ftp/vsftpd: add 3.0.5

This version drops the large gentoo-specific patch.
The default config file path now matches upstream (/etc/vsftpd.conf).
The init script has been replaced with a simpler declarative file.
The libcap package is now required unconditionally.

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

 net-ftp/vsftpd/Manifest|   1 +
 .../files/vsftpd-3.0.5-fix-link-command.patch  |  25 +
 net-ftp/vsftpd/files/vsftpd.init-3.0.5 |  19 
 net-ftp/vsftpd/files/vsftpd.service-3.0.5  |  10 ++
 net-ftp/vsftpd/files/vsftpd.xinetd |   4 +-
 net-ftp/vsftpd/files/vsftpd_at.service-3.0.5   |   7 ++
 net-ftp/vsftpd/vsftpd-3.0.5.ebuild | 120 +
 7 files changed, 184 insertions(+), 2 deletions(-)

diff --git a/net-ftp/vsftpd/Manifest b/net-ftp/vsftpd/Manifest
index 93494676a05..9ebd3e6c3fa 100644
--- a/net-ftp/vsftpd/Manifest
+++ b/net-ftp/vsftpd/Manifest
@@ -1,2 +1,3 @@
 DIST vsftpd-3.0.3.tar.gz 196649 BLAKE2B 
dbf96e788494c29d78ca49fad6a03641c9725f9a5b01a4059ad009870fdc28520cd467cd8288a8a9a520c411c495a42c3fff57ee1069efc65840adb245792dca
 SHA512 
5a4410a88e72ecf6f60a60a89771bcec300c9f63c2ea83b219bdf65fd9749b9853f9579f7257205b55659aefcd5dab243eba878dbbd4f0ff8532dd6e60884df7
 DIST vsftpd-3.0.4.tar.gz 197637 BLAKE2B 
3a2457bd74076de8ffba7ad2861009157c80dd9f38cdb63033804c72d7482666f7e1a400777e2cff4170f0999d79f9d384339ade3ad48f2a7567b2e684e48817
 SHA512 
a4c3b28ef7bd762dcfe53f5c9b68fc1bb371d2eb61dc88038959cc9f5efba8cc2c45a15956a7fddbac3b1ce03d8555df8fb7b86300e273a78e632f3dac15c2e3
+DIST vsftpd-3.0.5.tar.gz 197778 BLAKE2B 
c197a070f7eef8c97ef0adc1ebb883520e7613d67ba0eabb1380b3adaae272f4ef79110e79ce4aad5ddebd6100fb059308d905203249c5445d3ea64c29dc5ec2
 SHA512 
9e9f9bde8c460fbc6b1d29ca531327fb2e40e336358f1cc19e1da205ef81b553719a148ad4613ceead25499d1ac3f03301a0ecd3776e5c228acccb7f9461a7ee

diff --git a/net-ftp/vsftpd/files/vsftpd-3.0.5-fix-link-command.patch 
b/net-ftp/vsftpd/files/vsftpd-3.0.5-fix-link-command.patch
new file mode 100644
index 000..a4560a8ef6b
--- /dev/null
+++ b/net-ftp/vsftpd/files/vsftpd-3.0.5-fix-link-command.patch
@@ -0,0 +1,25 @@
+From 5c00346f72de5b966ebb0841c87a22c6b11c1b38 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Thu, 12 Aug 2021 16:51:55 -0400
+Subject: [PATCH] Fix link command
+
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index c63ed1b..c3454c3 100644
+--- a/Makefile
 b/Makefile
+@@ -26,7 +26,7 @@ OBJS =   main.o utility.o prelogin.o ftpcmdio.o 
postlogin.o privsock.o \
+   $(CC) -c $*.c $(CFLAGS) $(IFLAGS)
+ 
+ vsftpd: $(OBJS) 
+-  $(CC) -o vsftpd $(OBJS) $(LINK) $(LDFLAGS) $(LIBS)
++  $(CC) -o vsftpd $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)
+ 
+ install:
+   if [ -x /usr/local/sbin ]; then \
+-- 
+2.32.0
+

diff --git a/net-ftp/vsftpd/files/vsftpd.init-3.0.5 
b/net-ftp/vsftpd/files/vsftpd.init-3.0.5
new file mode 100644
index 000..cc9ad7f4a80
--- /dev/null
+++ b/net-ftp/vsftpd/files/vsftpd.init-3.0.5
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2
+
+instance=${RC_SVCNAME#*.}
+
+: ${command=/usr/sbin/vsftpd}
+command_background=true
+
+if [ "${instance}" = "${RC_SVCNAME}" ]; then
+   : ${pidfile=/run/vsftpd.pid}
+else
+   : ${command_args=/etc/vsftpd/${instance}.conf}
+   : ${pidfile=/run/vsftpd.${instance}.pid}
+fi
+
+depend() {
+   use dns logger net
+}

diff --git a/net-ftp/vsftpd/files/vsftpd.service-3.0.5 
b/net-ftp/vsftpd/files/vsftpd.service-3.0.5
new file mode 100644
index 000..209b36636d5
--- /dev/null
+++ b/net-ftp/vsftpd/files/vsftpd.service-3.0.5
@@ -0,0 +1,10 @@
+[Unit]
+Description=Very Secure FTP Daemon
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/sbin/vsftpd
+
+[Install]
+WantedBy=multi-user.target

diff --git a/net-ftp/vsftpd/files/vsftpd.xinetd 
b/net-ftp/vsftpd/files/vsftpd.xinetd
index efa4ff2feee..a4ac0211d21 100644
--- a/net-ftp/vsftpd/files/vsftpd.xinetd
+++ b/net-ftp/vsftpd/files/vsftpd.xinetd
@@ -1,5 +1,5 @@
 # default: off
-# description: Vsftpd is an FTP server, designed to be secure.
+# description: Very Secure FTP Daemon
 
 service ftp
 {
@@ -7,7 +7,7 @@ service ftp
wait= no
user= root
server  = /usr/sbin/vsftpd
-   server_args = /etc/vsftpd/vsftpd.conf
+   server_args = -olisten=NO
log_on_success  += DURATION 
nice= 10
disable = yes

diff --git a/net-ftp/vsftpd/files/vsftpd_at.service-3.0.5 

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

2021-08-13 Thread Sam James
commit: 529aaf5af3e3f642a02d82ee037ba538987009d1
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 21:56:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 21:56:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=529aaf5a

gnome-extra/gnome-shell-extensions: Stabilize 40.3-r1 amd64, #806324

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

 .../gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild
index d824ebfd5d0..114c39cad74 100644
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild
+++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~ppc64 x86"
 
 DEPEND="
>=dev-libs/glib-2.26:2



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

2021-08-13 Thread Sam James
commit: 9909022a683672bda104cb07826e88f001158ade
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 21:56:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 21:56:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9909022a

gnome-base/gnome-shell: Stabilize 40.3 amd64, #806324

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

 gnome-base/gnome-shell/gnome-shell-40.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/gnome-shell/gnome-shell-40.3.ebuild 
b/gnome-base/gnome-shell/gnome-shell-40.3.ebuild
index b485da7a751..67b5f090440 100644
--- a/gnome-base/gnome-shell/gnome-shell-40.3.ebuild
+++ b/gnome-base/gnome-shell/gnome-shell-40.3.ebuild
@@ -15,7 +15,7 @@ IUSE="+bluetooth +browser-extension elogind gtk-doc +ibus 
+networkmanager system
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
?? ( elogind systemd )"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
 # libXfixes-5.0 needed for pointer barriers and #include 

 # FIXME:



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

2021-08-13 Thread Sam James
commit: f668e2b62d992e710910565bd317cee61f98a66e
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 21:56:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 21:56:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f668e2b6

x11-wm/mutter: Stabilize 40.3-r1 amd64, #806324

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

 x11-wm/mutter/mutter-40.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/mutter/mutter-40.3-r1.ebuild 
b/x11-wm/mutter/mutter-40.3-r1.ebuild
index 49d8329a125..8b61619607c 100644
--- a/x11-wm/mutter/mutter-40.3-r1.ebuild
+++ b/x11-wm/mutter/mutter-40.3-r1.ebuild
@@ -17,7 +17,7 @@ REQUIRED_USE="
test? ( wayland )"
 RESTRICT="!test? ( test )"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
 # gnome-settings-daemon is build checked, but used at runtime only for 
org.gnome.settings-daemon.peripherals.keyboard gschema
 # xorg-server is needed at build and runtime with USE=wayland for Xwayland



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

2021-08-13 Thread Sam James
commit: 1c0195d24c7b5c8caf99d7045a29fe6c8b7274e3
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 21:55:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 21:55:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c0195d2

gnome-extra/gnome-shell-extensions: Stabilize 40.3-r1 x86, #806324

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

 .../gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild
index f879892a324..d824ebfd5d0 100644
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild
+++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3-r1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc64 x86"
 
 DEPEND="
>=dev-libs/glib-2.26:2



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

2021-08-13 Thread Sam James
commit: bc96d53c7186fc77de91f1a9b702263a75493786
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 21:55:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 21:55:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc96d53c

x11-libs/libxcvt: Stabilize 0.1.0 amd64, #806324

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

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

diff --git a/x11-libs/libxcvt/libxcvt-0.1.0.ebuild 
b/x11-libs/libxcvt/libxcvt-0.1.0.ebuild
index aae6c7a4eeb..0a95e89c5bc 100644
--- a/x11-libs/libxcvt/libxcvt-0.1.0.ebuild
+++ b/x11-libs/libxcvt/libxcvt-0.1.0.ebuild
@@ -7,7 +7,7 @@ XORG_TARBALL_SUFFIX="xz"
 inherit xorg-3 meson
 
 if [[ ${PV} != ** ]]; then
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc x86"
 fi
 
 DESCRIPTION="X.Org xcvt library and cvt program"



  1   2   3   >